.elementor-kit-6{--e-global-color-primary:#5C4033;--e-global-color-secondary:#D2B48C;--e-global-color-text:#2B1B17;--e-global-color-accent:#87A987;--e-global-color-82fc200:#FFFDD0;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;--e-global-typography-280aaa0-font-family:"Cabin Sketch";--e-global-typography-280aaa0-font-size:15px;--e-global-typography-280aaa0-font-weight:500;--e-global-typography-3d2b14b-font-family:"Lora";background-color:transparent;background-image:radial-gradient(at center center, var( --e-global-color-82fc200 ) 65%, var( --e-global-color-accent ) 93%);}.elementor-kit-6 button,.elementor-kit-6 input[type="button"],.elementor-kit-6 input[type="submit"],.elementor-kit-6 .elementor-button{background-color:var( --e-global-color-accent );color:var( --e-global-color-text );}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-kit-6 a{color:var( --e-global-color-text );}.elementor-kit-6 h1{color:var( --e-global-color-text );font-family:"Cabin Sketch", Sans-serif;font-size:42px;font-weight:500;}.elementor-kit-6 h2{color:var( --e-global-color-text );font-family:var( --e-global-typography-280aaa0-font-family ), Sans-serif;font-size:var( --e-global-typography-280aaa0-font-size );font-weight:var( --e-global-typography-280aaa0-font-weight );}.elementor-kit-6 h3{color:var( --e-global-color-text );font-family:var( --e-global-typography-3d2b14b-font-family ), Sans-serif;}.elementor-kit-6 h4{color:var( --e-global-color-text );font-family:var( --e-global-typography-3d2b14b-font-family ), Sans-serif;}.elementor-kit-6 h5{color:var( --e-global-color-text );}.elementor-kit-6 h6{color:var( --e-global-color-text );font-family:var( --e-global-typography-3d2b14b-font-family ), Sans-serif;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-kit-6 h2{font-size:var( --e-global-typography-280aaa0-font-size );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-6 h2{font-size:var( --e-global-typography-280aaa0-font-size );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* Recipe Grid */
.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.recipe-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.recipe-card:hover {
    transform: translateY(-5px);
}

.recipe-card .recipe-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.recipe-card .recipe-content {
    padding: 20px;
}

.recipe-card .recipe-content h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.recipe-card .recipe-content h3 a {
    color: #2C3E50;
    text-decoration: none;
}

.recipe-card .recipe-content p {
    color: #7f8c8d;
    margin-bottom: 15px;
}

.recipe-card .read-more {
    color: #E67E22;
    font-weight: 600;
    text-decoration: none;
}

.recipe-card .read-more:hover {
    color: #d35400;
}

/* Troubleshooting Grid */
.troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.troubleshooting-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    border-left: 4px solid #E67E22;
}

.troubleshooting-card:hover {
    transform: translateY(-5px);
}

.troubleshooting-card .troubleshooting-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.troubleshooting-card .troubleshooting-content {
    padding: 20px;
}

.troubleshooting-card .troubleshooting-content h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.troubleshooting-card .troubleshooting-content h3 a {
    color: #2C3E50;
    text-decoration: none;
}

.troubleshooting-card .troubleshooting-content p {
    color: #7f8c8d;
    margin-bottom: 15px;
}

.troubleshooting-card .read-more {
    color: #E67E22;
    font-weight: 600;
    text-decoration: none;
}

.troubleshooting-card .read-more:hover {
    color: #d35400;
}

@media (max-width: 768px) {
    .recipe-grid,
    .troubleshooting-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */