/**
 * Sungold Kitchen - Global Module Styles
 * Fully responsive using Divi breakpoints:
 * - Desktop: >= 981px
 * - Tablet: 768px - 980px
 * - Mobile: <= 767px
 */

/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */

:root {
    /* Brand Colors */
    --color-basil: #3A5435;
    --color-basil-dark: #2d4229;
    --color-wild-cherry: #DD5728;
    --color-wild-cherry-dark: #c44d23;
    --color-sungold: #E08727;
    --color-corn-husk: #EFE5D3;
    --color-peppercorn: #232323;
    --color-white: #ffffff;

    /* Typography */
    --font-display: 'Espiritu', Georgia, serif;
    --font-heading: 'Broadsheet', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

/* ==========================================================================
   RESPONSIVE TYPOGRAPHY (Mobile-First)
   ========================================================================== */

/* Base (Mobile) */
h1, .heading-1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: 1.1;
    color: var(--color-basil);
    font-weight: 400;
}

h2, .heading-2 {
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1.2;
    color: var(--color-basil);
    font-weight: 400;
}

h3, .heading-3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.3;
    color: var(--color-basil);
    font-weight: 400;
}

h4, .heading-4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.4;
    color: var(--color-basil);
    font-weight: 400;
}

body, p, .body-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-peppercorn);
    font-weight: 400;
}

/* Force Inter font on all Divi text module paragraphs */
.et_pb_text p,
.et_pb_text_inner p,
.et_pb_blurb_description p,
.et_pb_blurb_description,
.et_pb_cta_description p,
.et_pb_slide_description p,
.et_pb_slide_content p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

.accent-label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-basil);
    display: block;
    margin-bottom: var(--spacing-sm);
}

/* Tablet Typography */
@media (min-width: 768px) {
    h1, .heading-1 {
        font-size: 3.5rem;
    }
    h2, .heading-2 {
        font-size: 2.5rem;
    }
    h3, .heading-3 {
        font-size: 1.75rem;
    }
}

/* Desktop Typography */
@media (min-width: 981px) {
    h1, .heading-1 {
        font-size: 4.5rem;
    }
    h2, .heading-2 {
        font-size: 3rem;
    }
    h3, .heading-3 {
        font-size: 2.25rem;
    }
    h4, .heading-4 {
        font-size: 1.5rem;
    }
    body, p, .body-text {
        font-size: 1.0625rem;
    }
}

/* ==========================================================================
   BUTTON STYLES
   ========================================================================== */

.btn,
.sungold-btn,
.et_pb_button {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    border: 2px solid transparent !important;
    border-radius: 0 !important;
    cursor: pointer;
    transition: all var(--transition-normal) !important;
    min-height: 44px;
    text-align: center;
}

.btn-primary,
.sungold-btn-primary {
    background-color: var(--color-basil) !important;
    color: var(--color-corn-husk) !important;
    border-color: var(--color-basil) !important;
}

.btn-primary:hover,
.sungold-btn-primary:hover {
    background-color: var(--color-basil-dark) !important;
    border-color: var(--color-basil-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(58, 84, 53, 0.3);
}

.btn-secondary,
.sungold-btn-secondary {
    background-color: var(--color-wild-cherry) !important;
    color: var(--color-corn-husk) !important;
    border-color: var(--color-wild-cherry) !important;
}

.btn-secondary:hover,
.sungold-btn-secondary:hover {
    background-color: var(--color-wild-cherry-dark) !important;
    border-color: var(--color-wild-cherry-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(221, 87, 40, 0.3);
}

.btn-outline {
    background-color: transparent !important;
    color: var(--color-corn-husk) !important;
    border-color: var(--color-corn-husk) !important;
}

.btn-outline:hover {
    background-color: var(--color-corn-husk) !important;
    color: var(--color-basil) !important;
}

/* Mobile: Full-width buttons */
@media (max-width: 767px) {
    .btn,
    .sungold-btn,
    .sungold-fullwidth-hero .hero-buttons .btn {
        width: 100%;
        display: block;
        margin-bottom: var(--spacing-sm);
    }
}

/* Tablet+ buttons */
@media (min-width: 768px) {
    .btn,
    .sungold-btn {
        padding: 16px 32px;
        font-size: 16px !important;
    }
}

/* ==========================================================================
   SECTION BACKGROUNDS
   ========================================================================== */

.section-corn-husk,
.et_pb_section.section-corn-husk {
    background-color: var(--color-corn-husk) !important;
}

.section-white,
.et_pb_section.section-white {
    background-color: var(--color-white) !important;
}

.section-basil,
.et_pb_section.section-basil {
    background-color: var(--color-basil) !important;
}

.section-peppercorn,
.et_pb_section.section-peppercorn {
    background-color: var(--color-peppercorn) !important;
}

/* ==========================================================================
   SUNGOLD FULLWIDTH HERO MODULE
   ========================================================================== */

.sungold-fullwidth-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 60vh;
    padding: var(--spacing-lg) var(--spacing-md);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.sungold-fullwidth-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(35, 35, 35, 0.5);
    z-index: 1;
}

.sungold-fullwidth-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.sungold-fullwidth-hero h1 {
    color: var(--color-sungold) !important;
    margin-bottom: var(--spacing-sm);
}

.sungold-fullwidth-hero .hero-subheading {
    color: var(--color-corn-husk);
    font-family: var(--font-body);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.sungold-fullwidth-hero .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    justify-content: center;
    align-items: center;
}

.sungold-fullwidth-hero .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--color-corn-husk);
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Tablet Hero */
@media (min-width: 768px) {
    .sungold-fullwidth-hero {
        min-height: 80vh;
        padding: var(--spacing-xl) var(--spacing-lg);
    }
    .sungold-fullwidth-hero .hero-subheading {
        font-size: 1.5rem;
    }
    .sungold-fullwidth-hero .hero-buttons {
        flex-direction: row;
        gap: var(--spacing-md);
    }
}

/* Desktop Hero */
@media (min-width: 981px) {
    .sungold-fullwidth-hero {
        min-height: 100vh;
    }
    .sungold-fullwidth-hero .hero-subheading {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   SUNGOLD INTRO SECTION MODULE (Crafted with Care)
   ========================================================================== */

/* Section wrapper with vine background */
.sungold-intro-section {
    position: relative;
    overflow: hidden;
}

/* Vine background image - positioned behind text column */
.sungold-intro-section .et_pb_column:first-child {
    position: relative;
}

.sungold-intro-section .et_pb_column:first-child::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background-image: url('https://staging.victoriacortes.com/design-reference/Illustrations/Tomato%20Vine/Illustration_TomatoVine_Basil_NoOutline_4x.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

/* Ensure text content is above vine background */
.sungold-intro-section .et_pb_column:first-child .et_pb_text {
    position: relative;
    z-index: 1;
}

/* Accent label styling */
.sungold-intro-section .accent-label,
.sungold-intro-section span.accent-label {
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: var(--color-basil) !important;
    display: block !important;
    margin: 0 0 0 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
}

/* Heading styling */
.sungold-intro-section h2 {
    font-family: var(--font-display) !important;
    font-size: 48px !important;
    line-height: 1.3 !important;
    color: var(--color-basil) !important;
    margin-top: 25px !important;
    margin-bottom: 20px !important;
}

/* Paragraph styling */
.sungold-intro-section p {
    font-family: var(--font-body) !important;
    font-size: 17px !important;
    line-height: 1.8 !important;
    color: var(--color-peppercorn) !important;
    margin-bottom: 20px !important;
}

/* Image styling */
.sungold-intro-section .et_pb_image img {
    width: 100%;
    height: 400px !important;
    object-fit: cover !important;
    border-radius: var(--radius-md) !important;
}

/* Vertically center columns on desktop */
.sungold-intro-section .et_pb_row {
    display: flex !important;
    align-items: center !important;
}

.sungold-intro-section .et_pb_column {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

/* Make image slightly taller than text for visual balance */
.sungold-intro-section .et_pb_image img {
    height: 450px !important;
}

/* Tablet: Stack columns, image below text */
@media (max-width: 980px) {
    .sungold-intro-section .et_pb_row {
        flex-direction: column !important;
    }

    .sungold-intro-section .et_pb_column {
        width: 100% !important;
    }

    /* Text column first, image column second */
    .sungold-intro-section .et_pb_column:first-child {
        order: 1 !important;
    }

    .sungold-intro-section .et_pb_column:last-child {
        order: 2 !important;
        margin-top: 40px !important;
    }

    .sungold-intro-section h2 {
        font-size: 36px !important;
    }

    .sungold-intro-section .et_pb_column:first-child::before {
        width: 280px;
        height: 280px;
    }

    .sungold-intro-section .et_pb_image img {
        height: 350px !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .sungold-intro-section h2 {
        font-size: 28px !important;
    }

    .sungold-intro-section .et_pb_column:first-child::before {
        width: 220px;
        height: 220px;
    }

    .sungold-intro-section .et_pb_image img {
        height: 300px !important;
    }

    .sungold-intro-section .et_pb_column:last-child {
        margin-top: 30px !important;
    }
}

/* Legacy class support */
.sungold-intro {
    position: relative;
}

.sungold-intro .intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    align-items: center;
}

.sungold-intro .intro-text {
    position: relative;
    z-index: 1;
}

.sungold-intro .intro-text h2 {
    margin-bottom: var(--spacing-sm);
}

.sungold-intro .intro-text p {
    margin-bottom: var(--spacing-sm);
}

.sungold-intro .vine-illustration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.sungold-intro .intro-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

/* Tablet Intro */
@media (min-width: 768px) {
    .sungold-intro .intro-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }
    .sungold-intro .intro-image img {
        height: 400px;
    }
    .sungold-intro.image-left .intro-image {
        order: -1;
    }
    .sungold-intro .vine-illustration {
        width: 350px;
        height: 350px;
    }
}

/* Desktop Intro */
@media (min-width: 981px) {
    .sungold-intro .intro-grid {
        gap: 60px;
    }
    .sungold-intro .intro-image img {
        height: 450px;
    }
}

/* ==========================================================================
   SUNGOLD SERVICES SECTION
   ========================================================================== */

/* Services section with tomato vine background */
.sungold-services-section {
    position: relative;
    overflow: hidden;
}

/* Tomato vine background - right side, centered vertically */
.sungold-services-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 500px;
    height: 600px;
    background-image: url('https://staging.victoriacortes.com/wp-content/uploads/2025/12/Illustration_TomatoVine_Sungold_NoOutline_4x.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

/* Ensure content is above background */
.sungold-services-section .et_pb_row {
    position: relative;
    z-index: 1;
}

/* Services section title */
.sungold-services-section .et_pb_text h2 {
    font-family: var(--font-display) !important;
    font-size: 48px !important;
    color: var(--color-basil) !important;
    text-align: center !important;
    margin-bottom: 60px !important;
}

/* Service card styling */
.sungold-services-section .et_pb_blurb {
    text-align: center !important;
    padding: 30px !important;
    background: var(--color-corn-husk) !important;
    border-radius: var(--radius-md) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    height: 100% !important;
    position: relative !important;
    overflow: hidden !important;
}

.sungold-services-section .et_pb_blurb:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Card 1 - 4-Week Program: Tomato Icon */
.sungold-services-section .et_pb_column:nth-child(1) .et_pb_blurb::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 160px;
    background-image: url('https://staging.victoriacortes.com/wp-content/uploads/2025/12/Illustration_Icon_Sungold_4x.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

/* Card 2 - Chef's Choice: Small Batch Crafted */
.sungold-services-section .et_pb_column:nth-child(2) .et_pb_blurb::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 120px;
    background-image: url('https://staging.victoriacortes.com/wp-content/uploads/2025/12/Illustration_SmallBatchCrafted_Sungold_4x.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

/* Card 3 - Personal Chef: Tomato 02 */
.sungold-services-section .et_pb_column:nth-child(3) .et_pb_blurb::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 160px;
    background-image: url('https://staging.victoriacortes.com/wp-content/uploads/2025/12/Illustration_Tomato_02_Sungold_4x.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

/* Ensure card content is above illustration */
.sungold-services-section .et_pb_blurb .et_pb_main_blurb_image,
.sungold-services-section .et_pb_blurb .et_pb_module_header,
.sungold-services-section .et_pb_blurb .et_pb_blurb_description {
    position: relative;
    z-index: 1;
}

/* Service card image */
.sungold-services-section .et_pb_blurb .et_pb_main_blurb_image img {
    width: 120px !important;
    height: 120px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    margin-bottom: 20px !important;
}

/* Service card title - force Broadsheet font with high specificity */
.sungold-services-section .et_pb_blurb h3,
.sungold-services-section .et_pb_blurb h4,
.sungold-services-section .et_pb_blurb .et_pb_module_header,
.sungold-services-section .et_pb_blurb .et_pb_module_header span,
.sungold-services-section .et_pb_blurb h3 span,
.sungold-services-section .et_pb_blurb h4 span,
body .sungold-services-section .et_pb_blurb .et_pb_module_header,
body .sungold-services-section .et_pb_blurb .et_pb_module_header span {
    font-family: 'Broadsheet', Georgia, serif !important;
    font-size: 24px !important;
    color: var(--color-basil) !important;
    margin-bottom: 15px !important;
    line-height: 1.4 !important;
    font-weight: 400 !important;
}

/* Service card description */
.sungold-services-section .et_pb_blurb .et_pb_blurb_description,
.sungold-services-section .et_pb_blurb .et_pb_blurb_description p {
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: var(--color-peppercorn) !important;
}

/* Mobile adjustments */
@media (max-width: 980px) {
    .sungold-services-section::before {
        width: 400px;
        height: 400px;
    }

    .sungold-services-section .et_pb_text h2 {
        font-size: 36px !important;
        margin-bottom: 40px !important;
    }
}

@media (max-width: 767px) {
    .sungold-services-section::before {
        width: 280px;
        height: 280px;
    }

    .sungold-services-section .et_pb_text h2 {
        font-size: 28px !important;
    }

    .sungold-services-section .et_pb_blurb {
        margin-bottom: 20px !important;
    }
}

/* ==========================================================================
   SUNGOLD SERVICE CARD MODULE (Legacy)
   ========================================================================== */

.sungold-service-card {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--color-corn-husk);
    border-radius: var(--radius-md);
    transition: transform var(--transition-normal);
}

.sungold-service-card:hover {
    transform: translateY(-8px);
}

.sungold-service-card .service-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto var(--spacing-sm);
}

.sungold-service-card h3 {
    margin-bottom: var(--spacing-xs);
}

.sungold-service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.sungold-service-card .service-link {
    color: var(--color-wild-cherry);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.sungold-service-card .service-link:hover {
    color: var(--color-wild-cherry-dark);
}

/* Tablet Service Card */
@media (min-width: 768px) {
    .sungold-service-card {
        padding: 30px;
    }
    .sungold-service-card .service-image {
        width: 120px;
        height: 120px;
    }
}

/* ==========================================================================
   SUNGOLD MENU HIGHLIGHTS SECTION
   ========================================================================== */

.sungold-menu-highlights-section {
    position: relative;
}

/* Feature rows - image left, text right */
.sungold-menu-highlights-section .sungold-feature-row .et_pb_row {
    display: flex !important;
    align-items: center !important;
}

.sungold-menu-highlights-section .et_pb_image img {
    width: 100% !important;
    height: 300px !important;
    object-fit: cover !important;
    border-radius: var(--radius-md) !important;
}

/* Vertically center columns */
.sungold-menu-highlights-section .et_pb_row {
    display: flex !important;
    align-items: center !important;
}

/* Reverse row - text left, image right (for alternating layout) */
@media (min-width: 981px) {
    .sungold-menu-highlights-section .et_pb_row.sungold-feature-row-reverse {
        flex-direction: row-reverse !important;
    }
}

/* Tomato bullet styling */
.tomato-bullet {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: var(--color-sungold);
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}

/* Tablet/Mobile: Stack columns */
@media (max-width: 980px) {
    .sungold-menu-highlights-section .et_pb_row {
        flex-direction: column !important;
    }

    .sungold-menu-highlights-section .et_pb_column {
        width: 100% !important;
    }

    .sungold-menu-highlights-section .et_pb_image {
        margin-bottom: 30px !important;
    }
}

/* ==========================================================================
   SUNGOLD FEATURE ROW MODULE
   ========================================================================== */

.sungold-feature-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.sungold-feature-row .feature-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.sungold-feature-row h3 {
    margin-bottom: var(--spacing-xs);
}

.sungold-feature-row p {
    margin-bottom: var(--spacing-sm);
}

.sungold-feature-row .tomato-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sungold-feature-row .tomato-bullets li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
}

.sungold-feature-row .tomato-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: var(--color-sungold);
    border-radius: 50%;
}

/* Tablet Feature Row */
@media (min-width: 768px) {
    .sungold-feature-row {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }
    .sungold-feature-row .feature-image img {
        height: 300px;
    }
    .sungold-feature-row.image-right .feature-image {
        order: 1;
    }
    .sungold-feature-row.image-right .feature-content {
        order: 0;
    }
}

/* Desktop Feature Row */
@media (min-width: 981px) {
    .sungold-feature-row {
        gap: 60px;
    }
}

/* ==========================================================================
   SUNGOLD PRICING CARD MODULE
   ========================================================================== */

.sungold-pricing-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sungold-pricing-card.highlighted {
    border-top: 4px solid var(--color-sungold);
}

.sungold-pricing-card h3 {
    margin-bottom: var(--spacing-xs);
}

.sungold-pricing-card .pricing-description {
    color: #666;
    margin-bottom: var(--spacing-md);
}

.sungold-pricing-card .price-list {
    flex-grow: 1;
    margin-bottom: var(--spacing-md);
}

.sungold-pricing-card .price-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.sungold-pricing-card .price-item:last-child {
    border-bottom: none;
}

.sungold-pricing-card .price-item .item-name {
    font-weight: 500;
}

.sungold-pricing-card .price-item .item-price {
    font-weight: 700;
    color: var(--color-basil);
}

.sungold-pricing-card .btn {
    width: 100%;
}

/* Tablet Pricing Card */
@media (min-width: 768px) {
    .sungold-pricing-card {
        padding: 30px;
    }
}

/* ==========================================================================
   SUNGOLD MENU DAY MODULE
   ========================================================================== */

.sungold-menu-day {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sungold-menu-day .menu-day-header {
    background: var(--color-basil);
    color: var(--color-corn-husk);
    padding: var(--spacing-sm);
    font-family: var(--font-display);
    font-size: 1.125rem;
    text-align: center;
}

.sungold-menu-day .menu-day-content {
    padding: var(--spacing-sm);
}

.sungold-menu-day .meal-item {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.sungold-menu-day .meal-item:last-child {
    border-bottom: none;
}

/* Mobile: Accordion behavior */
@media (max-width: 767px) {
    .sungold-menu-day .menu-day-header {
        cursor: pointer;
        position: relative;
    }
    .sungold-menu-day .menu-day-header::after {
        content: '+';
        position: absolute;
        right: var(--spacing-sm);
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.25rem;
    }
    .sungold-menu-day.is-expanded .menu-day-header::after {
        content: '−';
    }
    .sungold-menu-day .menu-day-content {
        display: none;
    }
    .sungold-menu-day.is-expanded .menu-day-content {
        display: block;
    }
}

/* ==========================================================================
   SUNGOLD GALLERY ITEM MODULE
   ========================================================================== */

.sungold-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
}

.sungold-gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.sungold-gallery-item:hover img {
    transform: scale(1.05);
}

.sungold-gallery-item .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(35, 35, 35, 0.8));
    padding: var(--spacing-md) var(--spacing-sm);
    color: var(--color-corn-husk);
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.sungold-gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.sungold-gallery-item .gallery-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.sungold-gallery-item .gallery-description {
    font-size: 14px;
    opacity: 0.9;
}

/* ==========================================================================
   GALLERY PAGE STYLES
   ========================================================================== */

/* Gallery grid row */
.sungold-gallery-grid {
    margin-bottom: 0 !important;
}

.sungold-gallery-grid .et_pb_column {
    margin-bottom: 20px !important;
}

/* Gallery item container */
.sungold-gallery-item {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    cursor: pointer !important;
}

.sungold-gallery-item .et_pb_image_wrap,
.sungold-gallery-item span.et_pb_image_wrap {
    position: relative !important;
    display: block !important;
    overflow: hidden !important;
    border-radius: 8px !important;
}

/* Gallery image */
.sungold-gallery-item img {
    width: 100% !important;
    height: 280px !important;
    object-fit: cover !important;
    transition: transform 0.5s ease !important;
    border-radius: 8px !important;
}

.sungold-gallery-item:hover img {
    transform: scale(1.1) !important;
}

/* Hide Divi's default overlay icon */
.sungold-gallery-item .et_overlay {
    display: none !important;
}

/* Gallery overlay - dynamically created by JavaScript */
.sungold-gallery-item .gallery-overlay {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: linear-gradient(transparent, rgba(35, 35, 35, 0.85)) !important;
    padding: 40px 20px 20px !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
    z-index: 10 !important;
    pointer-events: none !important;
    border-radius: 0 0 8px 8px !important;
}

.sungold-gallery-item:hover .gallery-overlay {
    opacity: 1 !important;
}

/* Gallery overlay title (h4) */
.sungold-gallery-item .gallery-overlay h4 {
    color: var(--color-corn-husk) !important;
    font-family: 'Broadsheet', Georgia, serif !important;
    font-size: 16px !important;
    line-height: 1.3 !important;
    margin: 0 0 5px 0 !important;
    font-weight: 400 !important;
}

/* Gallery overlay description (p) */
.sungold-gallery-item .gallery-overlay p {
    color: rgba(239, 229, 211, 0.8) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}

/* Responsive */
@media (min-width: 768px) {
    .sungold-gallery-item img {
        height: 300px !important;
    }
}

@media (min-width: 981px) {
    .sungold-gallery-item img {
        height: 320px !important;
    }
}

/* ==========================================================================
   DEFAULT DIVI MODULE OVERRIDES
   ========================================================================== */

/* ==========================================================================
   SUNGOLD TESTIMONIALS SLIDER SECTION
   ========================================================================== */

.sungold-testimonials-section .et_pb_slider {
    background-color: var(--color-corn-husk) !important;
    border-radius: var(--radius-md) !important;
    border-left: 4px solid var(--color-sungold) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Slide content styling */
.sungold-testimonials-section .et_pb_slide {
    background-color: transparent !important;
    position: relative !important;
}

/* Different illustration for each slide */
.sungold-testimonials-section .et_pb_slide::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

/* Slide 1: Tomato Icon */
.sungold-testimonials-section .et_pb_slide_0::before {
    background-image: url('https://staging.victoriacortes.com/wp-content/uploads/2025/12/Illustration_Icon_Sungold_4x.png');
}

/* Slide 2: Tomato 01 */
.sungold-testimonials-section .et_pb_slide_1::before {
    background-image: url('https://staging.victoriacortes.com/wp-content/uploads/2025/12/Illustration_Tomato_01_Sungold_4x.png');
}

/* Slide 3: Tomato Vine */
.sungold-testimonials-section .et_pb_slide_2::before {
    background-image: url('https://staging.victoriacortes.com/wp-content/uploads/2025/12/Illustration_TomatoVine_Sungold_NoOutline_4x.png');
}

/* Ensure slide content is above illustration */
.sungold-testimonials-section .et_pb_slide .et_pb_container {
    position: relative;
    z-index: 1;
}

.sungold-testimonials-section .et_pb_slide_description {
    text-align: center !important;
    padding: 20px !important;
}

/* Quote text */
.sungold-testimonials-section .et_pb_slide_content,
.sungold-testimonials-section .et_pb_slide_content p {
    font-family: 'Broadsheet', Georgia, serif !important;
    font-size: 22px !important;
    line-height: 1.6 !important;
    color: var(--color-peppercorn) !important;
    font-style: italic !important;
    padding-bottom: 40px !important;
}

/* Author name */
.sungold-testimonials-section .et_pb_slide_title {
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--color-basil) !important;
    margin-top: 20px !important;
}

/* Navigation arrows */
.sungold-testimonials-section .et-pb-arrow-prev,
.sungold-testimonials-section .et-pb-arrow-next {
    color: var(--color-basil) !important;
    font-size: 24px !important;
    opacity: 0.6 !important;
    transition: opacity 0.3s ease !important;
}

.sungold-testimonials-section .et-pb-arrow-prev:hover,
.sungold-testimonials-section .et-pb-arrow-next:hover {
    opacity: 1 !important;
}

/* Pagination dots */
.sungold-testimonials-section .et_pb_slider .et-pb-controllers a {
    background-color: var(--color-basil) !important;
    opacity: 0.3 !important;
}

.sungold-testimonials-section .et_pb_slider .et-pb-controllers a.et-pb-active-control {
    opacity: 1 !important;
    background-color: var(--color-sungold) !important;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .sungold-testimonials-section .et_pb_slide_content,
    .sungold-testimonials-section .et_pb_slide_content p {
        font-size: 18px !important;
    }

    .sungold-testimonials-section .et_pb_slider {
        padding: 40px 20px !important;
    }
}

/* Testimonial Module Styling (legacy) */
.sungold-testimonial,
.et_pb_testimonial.sungold-testimonial {
    background: var(--color-corn-husk) !important;
    border-radius: var(--radius-md) !important;
    border-left: 4px solid var(--color-sungold) !important;
    padding: var(--spacing-md) !important;
}

.sungold-testimonial .et_pb_testimonial_description,
.sungold-testimonial .et_pb_testimonial_description p {
    font-family: var(--font-heading) !important;
    font-style: italic !important;
    font-size: 1.125rem !important;
    line-height: 1.6 !important;
    color: var(--color-peppercorn) !important;
}

.sungold-testimonial .et_pb_testimonial_author {
    font-family: var(--font-body) !important;
    font-weight: 700 !important;
    font-style: normal !important;
    color: var(--color-basil) !important;
}

.sungold-testimonial .et_pb_testimonial_meta {
    font-family: var(--font-body) !important;
    color: #666 !important;
}

/* Dark testimonial variant for quote sections */
.sungold-testimonial-dark,
.et_pb_testimonial.sungold-testimonial-dark {
    background: transparent !important;
    border-left-color: var(--color-sungold) !important;
}

.sungold-testimonial-dark .et_pb_testimonial_description,
.sungold-testimonial-dark .et_pb_testimonial_description p {
    color: var(--color-corn-husk) !important;
}

.sungold-testimonial-dark .et_pb_testimonial_author {
    color: var(--color-sungold) !important;
}

.sungold-testimonial-dark .et_pb_testimonial_meta {
    color: rgba(239, 229, 211, 0.8) !important;
}

/* CTA Module Styling */
.sungold-cta-bright-meals,
.et_pb_cta.sungold-cta-bright-meals {
    background: transparent !important;
    text-align: center !important;
}

.sungold-cta-bright-meals h2,
.sungold-cta-bright-meals .et_pb_module_header {
    font-family: var(--font-display) !important;
    color: var(--color-basil) !important;
}

.sungold-cta-bright-meals .et_pb_cta_description {
    color: var(--color-peppercorn) !important;
}

/* ==========================================================================
   CONTACT PAGE - Hide default page title
   ========================================================================== */

.page-id-571 .entry-title,
.page-id-571 .et_pb_title_container,
.page-id-571 .et_post_meta_wrapper h1 {
    display: none !important;
}

/* ==========================================================================
   SINGLE BLOG POST STYLES
   ========================================================================== */

/* Post title styling */
.single-post .entry-title {
    font-family: 'Espiritu', Georgia, serif !important;
    font-size: 42px !important;
    color: var(--color-basil) !important;
    line-height: 1.2 !important;
}

/* Responsive */
@media (max-width: 980px) {
    .single-post .entry-title {
        font-size: 36px !important;
    }
}

@media (max-width: 767px) {
    .single-post .entry-title {
        font-size: 28px !important;
    }
}

/* ==========================================================================
   BLOG PAGE STYLES
   ========================================================================== */

/* Fixed height for title area to align cards */
.et_pb_blog_grid .et_pb_post h2.entry-title,
.et_pb_blog_grid .et_pb_post .entry-title {
    min-height: 65px !important;
    max-height: 65px !important;
    overflow: hidden !important;
    line-height: 1.3 !important;
}

/* Remove ugly overlay on hover */
.et_pb_blog_grid .et_pb_post .et_overlay {
    display: none !important;
}

/* Read more button styling */
.et_pb_blog_grid .et_pb_post a.more-link {
    display: inline-block !important;
    margin-top: 15px !important;
    padding: 12px 24px !important;
    background-color: var(--color-wild-cherry) !important;
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
}

.et_pb_blog_grid .et_pb_post a.more-link:hover {
    background-color: var(--color-wild-cherry-dark) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(221, 87, 40, 0.3) !important;
}

/* Fix hero padding on fullwidth sections */
.et_pb_fullwidth_section,
.et_pb_fullwidth_section.et_pb_section,
.et_pb_fullwidth_header,
.et_pb_fullwidth_header .et_pb_fullwidth_header_container,
.et_pb_fullwidth_header .header-content-container,
.et_pb_fullwidth_header .et_pb_fullwidth_header_overlay {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

/* Hero title font - Espiritu for all fullwidth headers */
.et_pb_fullwidth_header h1,
.et_pb_fullwidth_header h1.et_pb_module_header,
.et_pb_fullwidth_header .et_pb_module_header,
.et_pb_fullwidth_header_title {
    font-family: 'Espiritu', Georgia, serif !important;
    font-weight: 400 !important;
}

/* ==========================================================================
   SUNGOLD CTA SECTION (Ready for Bright Meals)
   ========================================================================== */

.sungold-cta-section {
    position: relative;
    overflow: hidden;
}

/* Vertically center the columns */
.sungold-cta-section .et_pb_row {
    display: flex !important;
    align-items: center !important;
}

.sungold-cta-section .et_pb_column {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

/* Illustration styling */
.sungold-cta-section .et_pb_image {
    opacity: 0.9;
}

/* CTA Button styling - matches Supper Club button */
.sungold-cta-section .et_pb_button,
.sungold-cta-section .sungold-cta-btn,
.sungold-cta-btn {
    background-color: var(--color-wild-cherry) !important;
    color: var(--color-corn-husk) !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 16px 32px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
}

.sungold-cta-section .et_pb_button:hover,
.sungold-cta-section .sungold-cta-btn:hover,
.sungold-cta-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(221, 87, 40, 0.4) !important;
    background-color: var(--color-wild-cherry) !important;
}

/* Remove Divi button arrow */
.sungold-cta-section .et_pb_button:after,
.sungold-cta-btn:after {
    display: none !important;
}

/* Tablet: Stack columns */
@media (max-width: 980px) {
    .sungold-cta-section .et_pb_row {
        flex-direction: column !important;
    }

    .sungold-cta-section .et_pb_column {
        width: 100% !important;
    }

    .sungold-cta-section .et_pb_column:first-child {
        order: 2 !important;
        margin-top: 40px !important;
    }

    .sungold-cta-section .et_pb_column:last-child {
        order: 1 !important;
        text-align: center !important;
    }

    .sungold-cta-section .et_pb_text {
        text-align: center !important;
    }

    .sungold-cta-section .et_pb_button_wrapper {
        text-align: center !important;
    }

    .sungold-cta-section .et_pb_image {
        max-width: 200px !important;
        margin: 0 auto !important;
    }
}

/* ==========================================================================
   SUNGOLD SUPPER CLUB SECTION
   ========================================================================== */

.sungold-supper-club-section {
    position: relative;
    overflow: hidden;
}

/* Logo styling - larger since it replaces the title */
.sungold-supper-club-section .et_pb_image {
    margin-bottom: 30px !important;
    text-align: center !important;
}

.sungold-supper-club-section .et_pb_image img {
    max-width: 450px !important;
    height: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
}

/* Supper Club button - Sungold orange with hover shadow */
.sungold-supper-club-section .et_pb_button,
.sungold-supper-club-section .sungold-supper-club-btn {
    background-color: var(--color-sungold) !important;
    color: var(--color-corn-husk) !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 16px 32px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
}

.sungold-supper-club-section .et_pb_button:hover,
.sungold-supper-club-section .sungold-supper-club-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(224, 135, 39, 0.4) !important;
    background-color: var(--color-sungold) !important;
}

/* Remove Divi button arrow */
.sungold-supper-club-section .et_pb_button:after {
    display: none !important;
}

/* Tablet adjustments */
@media (max-width: 980px) {
    .sungold-supper-club-section .et_pb_image img {
        max-width: 350px !important;
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .sungold-supper-club-section .et_pb_image img {
        max-width: 280px !important;
    }
}

/* Legacy Supper Club Styling */
.sungold-supper-club .et_pb_fullwidth_header_container {
    text-align: center !important;
}

.sungold-supper-club h1,
.sungold-supper-club .et_pb_fullwidth_header_title {
    font-family: var(--font-display) !important;
    color: var(--color-sungold) !important;
}

.sungold-supper-club .et_pb_fullwidth_header_subhead {
    font-family: var(--font-body) !important;
    color: var(--color-corn-husk) !important;
    font-size: 1.125rem !important;
}

/* ==========================================================================
   HEADER OVERRIDES - Colors Only (Layout via Divi Theme Options)
   ========================================================================== */

/* Header background color */
#main-header,
#main-header.et-fixed-header {
    background-color: var(--color-basil) !important;
}

/* Navigation link colors and font */
#top-menu li a {
    font-family: var(--font-display) !important;
    color: var(--color-corn-husk) !important;
}

#top-menu li a:hover {
    color: var(--color-sungold) !important;
    opacity: 1 !important;
}

#top-menu li.current-menu-item a,
#top-menu li.current_page_item a {
    color: var(--color-sungold) !important;
}

/* Fixed/Sticky header - same colors */
.et-fixed-header #top-menu li a {
    color: var(--color-corn-husk) !important;
}

.et-fixed-header #top-menu li a:hover {
    color: var(--color-sungold) !important;
}

.et-fixed-header #top-menu li.current-menu-item a,
.et-fixed-header #top-menu li.current_page_item a {
    color: var(--color-sungold) !important;
}

/* Search icon color */
#et_search_icon:before {
    color: var(--color-corn-husk) !important;
}

/* Cart icon color */
#et-top-navigation .et-cart-info span {
    color: var(--color-corn-husk) !important;
}

/* ==========================================================================
   REMOVE WHITE SPACE BETWEEN SECTIONS
   ========================================================================== */

/* Remove gaps around fullwidth sections and hero */
#page-container,
#main-content,
.et_pb_section:first-child,
.et_pb_fullwidth_section {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Remove bottom padding/margin from fullwidth hero section */
.et_pb_fullwidth_section {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Hero section - remove all bottom spacing */
.et_pb_fullwidth_section .et_pb_fullwidth_header {
    padding-bottom: 0 !important;
}

/* Hero section - center content vertically */
.et_pb_fullwidth_header .et_pb_fullwidth_header_container {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-height: 600px !important;
}

.et_pb_fullwidth_header .header-content-container {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    flex-grow: 1 !important;
}

.et_pb_fullwidth_header .header-content {
    margin-top: auto !important;
    margin-bottom: auto !important;
}

/* Scroll down chevron bounce animation */
.et_pb_fullwidth_header .et_pb_fullwidth_header_scroll,
.et_pb_fullwidth_header .et_pb_fullwidth_header_scroll a,
.et_pb_fullwidth_header .et_pb_fullwidth_header_scroll .et-pb-icon {
    animation: chevronBounce 2s ease-in-out infinite !important;
}

@keyframes chevronBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(12px);
    }
}

/* Hero buttons with colored shadow on hover */
.et_pb_fullwidth_header .et_pb_button {
    transition: all 0.3s ease !important;
}

/* Primary button (View Menu - Basil green) - green shadow on hover */
.et_pb_fullwidth_header .et_pb_button_one.et_pb_button {
    box-shadow: none !important;
    border-radius: 6px !important;
}

.et_pb_fullwidth_header .et_pb_button_one.et_pb_button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(58, 84, 53, 0.4) !important;
}

/* Secondary button (Contact Us - Wild Cherry/orange) - orange shadow on hover */
.et_pb_fullwidth_header .et_pb_button_two.et_pb_button {
    box-shadow: none !important;
    border-radius: 6px !important;
}

.et_pb_fullwidth_header .et_pb_button_two.et_pb_button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(221, 87, 40, 0.4) !important;
}

/* Ensure sections following fullwidth have no top gap */
.et_pb_fullwidth_section + .et_pb_section {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Mobile Header - Tablet and below */
@media (max-width: 980px) {
    /* Hamburger menu icon color */
    .mobile_menu_bar:before {
        color: var(--color-corn-husk) !important;
    }

    /* Mobile dropdown menu colors */
    #mobile_menu {
        background-color: var(--color-basil) !important;
    }

    #mobile_menu a {
        font-family: var(--font-display) !important;
        color: var(--color-corn-husk) !important;
    }

    #mobile_menu a:hover {
        color: var(--color-sungold) !important;
    }

    #mobile_menu .current-menu-item a,
    #mobile_menu .current_page_item a {
        color: var(--color-sungold) !important;
    }
}

/* ==========================================================================
   FOOTER - Theme Builder Overrides
   ========================================================================== */

footer.et-l--footer h3,
footer.et-l--footer .et_pb_text h3,
footer.et-l--footer h4,
footer.et-l--footer .et_pb_text h4 {
    color: #EFE5D3 !important;
}

/* ==========================================================================
   RESPONSIVE SECTION SPACING
   ========================================================================== */

/* Mobile spacing */
.et_pb_section {
    padding: var(--spacing-lg) var(--spacing-sm) !important;
}

/* Tablet spacing */
@media (min-width: 768px) {
    .et_pb_section {
        padding: var(--spacing-lg) var(--spacing-md) !important;
    }
}

/* Desktop spacing */
@media (min-width: 981px) {
    .et_pb_section {
        padding: var(--spacing-xl) var(--spacing-lg) !important;
    }
}

/* Fullwidth sections - no horizontal padding */
.et_pb_section.et_pb_fullwidth_section {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-basil {
    color: var(--color-basil) !important;
}

.text-sungold {
    color: var(--color-sungold) !important;
}

.text-wild-cherry {
    color: var(--color-wild-cherry) !important;
}

.text-corn-husk {
    color: var(--color-corn-husk) !important;
}

.text-white {
    color: var(--color-white) !important;
}

.bg-basil {
    background-color: var(--color-basil) !important;
}

.bg-corn-husk {
    background-color: var(--color-corn-husk) !important;
}

.bg-white {
    background-color: var(--color-white) !important;
}

/* Hide on specific breakpoints */
@media (max-width: 767px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 980px) {
    .hide-tablet {
        display: none !important;
    }
}

@media (min-width: 981px) {
    .hide-desktop {
        display: none !important;
    }
}
