        :root {
            /* Playful Harvest palette: saturated toffee brown, punchy amber & fresh leaf green */
            --primary: #6b3f1d;        /* Toffee Brown */
            --primary-light: #9c6b3e;  /* Warm Caramel */
            --accent: #ff9f1c;         /* Playful Golden Amber */
            --accent-hover: #f08700;
            --bg-cream: #fff8ec;       /* Soft Cream */
            --bg-soft-peach: #ffe7c2;  /* Subtle Wave Overlay Color */
            --card-bg: #ffffff;
            --text-main: #3a2a18;
            --text-muted: #8a7561;
            --border-subtle: #f2e1c4;
            --gold-accent: #ffc93c;
            --leaf-green: #3fa34d;     /* Playful pop accent */
            --radius-lg: 20px;
            --radius-md: 12px;
            --shadow-soft: 0 10px 30px rgba(107, 63, 29, 0.08);
            --shadow-hover: 0 15px 35px rgba(107, 63, 29, 0.16);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Nunito', sans-serif;
        }

        body {
            background-color: var(--bg-cream);
            color: var(--text-main);
            overflow-x: hidden;
            line-height: 1.5;
        }

        h1, h2, h3, h4, .serif-font,
        .btn-main, .btn-secondary-white, .btn-buy-card, .btn-disabled-card, .modal-submit,
        .hero-tag, .card-badge, .marquee-label, .logo-fallback, .nav-links a, .price-current {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        /* --- Announcement Bar (Moving Marquee Ribbon) --- */
        .announcement-bar {
            background-color: var(--primary);
            color: #ffffff;
            font-size: 0.82rem;
            padding: 9px 0;
            font-weight: 500;
            letter-spacing: 0.3px;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
        }

        .announcement-bar.accent-ribbon {
            background-color: var(--accent);
        }

        .marquee-track {
            display: inline-flex;
            align-items: center;
            gap: 26px;
            width: max-content;
            animation: marquee-scroll 34s linear infinite;
            will-change: transform;
        }

        .marquee-track:hover {
            animation-play-state: paused;
        }

        .marquee-track.reverse {
            animation-direction: reverse;
            animation-duration: 28s;
        }

        .marquee-item {
            display: inline-flex;
            align-items: center;
            gap: 12px;
        }

        .marquee-icon {
            flex-shrink: 0;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.14);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            color: var(--gold-accent);
        }

        .marquee-copy {
            display: inline-flex;
            align-items: baseline;
            gap: 8px;
            white-space: nowrap;
        }

        .marquee-label {
            font-weight: 800;
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--gold-accent);
        }

        .marquee-text {
            font-weight: 400;
            font-size: 0.82rem;
            opacity: 0.85;
        }

        .marquee-divider {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--gold-accent);
            opacity: 0.45;
            flex-shrink: 0;
        }

        .marquee-live {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(255, 82, 82, 0.16);
            border: 1px solid rgba(255, 82, 82, 0.4);
            color: #ff8080;
            font-size: 0.66rem;
            font-weight: 800;
            letter-spacing: 0.5px;
            padding: 2px 8px 2px 6px;
            border-radius: 20px;
        }

        .marquee-live-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #ff5252;
            animation: live-pulse 1.6s infinite;
        }

        /* Accent (amber) ribbon: swap to dark text/icons for contrast on the lighter background */
        .announcement-bar.accent-ribbon .marquee-icon {
            background: rgba(107, 63, 29, 0.12);
            color: var(--primary);
        }

        .announcement-bar.accent-ribbon .marquee-label {
            color: var(--primary);
        }

        .announcement-bar.accent-ribbon .marquee-text {
            color: var(--primary);
            opacity: 0.75;
        }

        .announcement-bar.accent-ribbon .marquee-divider {
            background: var(--primary);
            opacity: 0.3;
        }

        @keyframes marquee-scroll {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        @keyframes live-pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.55); }
            70% { box-shadow: 0 0 0 6px rgba(255, 82, 82, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 82, 82, 0); }
        }

        /* --- Header / Navigation --- */
        header {
            background: rgba(252, 248, 242, 0.96);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 99;
            border-bottom: 1px solid var(--border-subtle);
        }

        .nav-top {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px 6%;
            gap: 30px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 34px;
            flex: 1;
            min-width: 0;
        }

        .nav-links-left {
            justify-content: flex-start;
        }

        .nav-links-right {
            justify-content: flex-end;
        }

        .nav-links a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 0.3px;
            white-space: nowrap;
            transition: color 0.25s;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .logo-wrapper {
            display: flex;
            align-items: center;
            text-decoration: none;
            flex-shrink: 0;
        }

        .logo-wrapper img {
            height: 92px;
            width: auto;
            object-fit: contain;
        }

        .logo-fallback {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .nav-rice-anim {
            width: 90px;
            height: 104px;
            flex-shrink: 0;
            align-self: flex-end;
            margin-bottom: -12px;
            pointer-events: none;
        }

        .nav-rice-anim:nth-of-type(1) {
            margin-right: 60px;
        }

        .nav-rice-anim:nth-of-type(2) {
            margin-left: 60px;
        }

        @media (max-width: 768px) {
            .nav-top {
                flex-wrap: wrap;
                justify-content: center;
                padding: 14px 6%;
            }
            .nav-links {
                flex: none;
                width: 100%;
                justify-content: center;
                order: 2;
                gap: 24px;
            }
            .logo-wrapper {
                order: 1;
            }
            .logo-wrapper img {
                height: 72px;
            }
            .nav-rice-anim {
                display: none;
            }
        }

        /* --- Hero Section (Inverted Layout: Big Left, 2 Small Right) --- */
        .hero-section {
            padding: 20px 6% 30px;
        }

        /* Width cap keeps the hero cards from stretching to an awkward,
           overly-wide banner on very large monitors, while still letting
           them scale up generously (via grid item stretch) rather than
           sitting small with empty margins on either side */
        .hero-grid {
            display: grid;
            grid-template-columns: 1.3fr 0.9fr;
            gap: 22px;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* LEFT SIDE: Big Featured Banner (stretches to match the height of the
           two 16:9 cards stacked on the right, via grid item stretch) */
        .hero-big-card {
            background: url('public/1image.png') center/cover;
            border-radius: var(--radius-lg);
            padding: 42px 44px;
            color: #ffffff;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            min-height: 320px;
            position: relative;
            box-shadow: var(--shadow-soft);
            overflow: hidden;
            cursor: pointer;
        }

        .hero-big-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(to top, rgba(35, 20, 8, 0.88) 0%, rgba(35, 20, 8, 0.55) 32%, rgba(35, 20, 8, 0.12) 60%, transparent 78%);
            z-index: 1;
        }

        .hero-big-content {
            position: relative;
            z-index: 2;
            max-width: 520px;
        }

        .hero-tag {
            display: inline-block;
            background: var(--gold-accent);
            color: #111;
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .hero-big-card h1 {
            font-size: 3rem;
            line-height: 1.15;
            margin-bottom: 12px;
            color: #ffffff;
            text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
        }

        .hero-big-card p {
            font-size: 1.05rem;
            color: #f1ede7;
            margin-bottom: 22px;
            text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
        }

        /* RIGHT SIDE: 2 Small Stacked Cards, each locked to 16:9 so their
           background images (which carry their own baked-in text/graphics)
           are never cropped */
        .hero-right-stack {
            display: grid;
            grid-template-rows: auto auto;
            gap: 22px;
        }

        .hero-small-card {
            aspect-ratio: 16 / 9;
            border-radius: var(--radius-lg);
            padding: 28px 32px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: transform 0.3s;
            text-decoration: none;
            color: inherit;
        }

        .hero-small-card:hover {
            transform: translateY(-3px);
        }

        .card-top {
            background: #f0e4d4 url('public/Types-of-Grains.png') center/cover;
            color: #ffffff;
            position: relative;
        }

        .card-top::before {
            content: '';
            position: absolute;
            top:0; left:0; right:0; bottom:0;
            background: rgba(107, 63, 29, 0.38);
        }

        .card-bottom {
            background: #f0e4d4 url('public/sales.jpeg') center/cover;
            padding: 0;
        }

        .card-inner {
            position: relative;
            z-index: 2;
        }

        .hero-small-card h3 {
            font-size: 1.7rem;
            margin-bottom: 8px;
        }

        .hero-small-card p {
            font-size: 0.95rem;
            margin-bottom: 16px;
            opacity: 0.9;
        }

        .card-top h3,
        .card-top p,
        .card-top .hero-tag {
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
        }

        /* --- Buttons --- */
        .btn-main {
            display: inline-block;
            position: relative;
            isolation: isolate;
            overflow: hidden;
            background-color: var(--accent);
            color: #ffffff;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.92rem;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: transform 0.3s ease;
            box-shadow: 0 4px 12px rgba(255, 159, 28, 0.35);
        }

        .btn-main::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -1;
            background-color: var(--accent-hover);
            clip-path: circle(0% at 50% 100%);
            transition: clip-path 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-main:hover {
            transform: translateY(-2px);
        }

        .btn-main:hover::before {
            clip-path: circle(150% at 50% 100%);
        }

        .btn-secondary-white {
            position: relative;
            isolation: isolate;
            overflow: hidden;
            background-color: #ffffff;
            color: var(--primary);
            padding: 10px 22px;
            border-radius: 30px;
            font-weight: 800;
            font-size: 0.85rem;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary-white::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -1;
            background-color: var(--bg-cream);
            clip-path: circle(0% at 50% 100%);
            transition: clip-path 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-secondary-white:hover::before {
            clip-path: circle(150% at 50% 100%);
        }

        /* --- Category Icons Ribbon --- */
        .ribbon-categories {
            padding: 30px 6%;
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .ribbon-item {
            text-align: center;
            text-decoration: none;
            color: var(--text-main);
            width: 90px;
        }

        .ribbon-icon-circle {
            width: 70px;
            height: 70px;
            background-color: var(--primary);
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            margin: 0 auto 10px;
            transition: transform 0.3s, background 0.3s;
            box-shadow: 0 6px 16px rgba(0,0,0,0.06);
        }

        .ribbon-item:hover .ribbon-icon-circle {
            transform: translateY(-5px);
            background-color: var(--accent);
        }

        .ribbon-item span {
            font-size: 0.82rem;
            font-weight: 700;
            display: block;
        }

        /* --- Flying Bird Clipart & Section Headers --- */
        .section-title-wrap {
            position: relative;
            text-align: center;
            margin: 50px 0 35px;
            padding: 0 20px;
        }

        .flying-bird-clipart {
            position: absolute;
            top: -38px;
            left: calc(50% - 160px);
            width: 70px;
            height: 70px;
            object-fit: contain;
            transform: rotate(-12deg);
        }

        .section-title-wrap h2 {
            font-size: 2.6rem;
            color: var(--primary);
        }

        .section-title-wrap p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-top: 5px;
        }

        /* --- Spotlight wavy background, fading out toward the bottom --- */
        .spotlight-wave {
            position: absolute;
            z-index: -1;
            left: 50%;
            top: 50px;
            transform: translateX(-50%);
            width: 100vw;
            height: clamp(380px, 44vw, 580px);
            pointer-events: none;
            -webkit-mask-image: linear-gradient(to bottom, #000 55%, transparent 92%);
            mask-image: linear-gradient(to bottom, #000 55%, transparent 92%);
        }

        .spotlight-wave path {
            fill: var(--bg-soft-peach);
        }

        .spotlight-title-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
        }

        .spotlight-title-row h2 {
            margin: 0;
        }

        .spotlight-star-cluster {
            position: relative;
            width: 48px;
            height: 46px;
            flex-shrink: 0;
        }

        .spotlight-star-cluster-flip {
            transform: scaleX(-1);
        }

        .spotlight-star-img {
            position: absolute;
            object-fit: contain;
            pointer-events: none;
        }

        .spotlight-star-big-img {
            width: 34px;
            height: 34px;
            top: 50%;
            left: 7px;
            transform: translateY(-50%);
        }

        .spotlight-star-small-img {
            width: 15px;
            height: 15px;
        }

        .spotlight-star-up {
            top: -6px;
            left: -4px;
        }

        .spotlight-star-down {
            bottom: -6px;
            right: -2px;
        }

        /* --- Big Thick Ribbon Banner (before "Most Loved Harvest") --- */
        .grain-price-ribbon-wrap {
            margin: 50px 0 10px;
        }

        .ribbon-dashed-line {
            height: 6px;
            background-image: repeating-linear-gradient(to right, var(--primary) 0, var(--primary) 16px, transparent 16px, transparent 28px);
            background-size: 28px 6px;
            background-repeat: repeat-x;
        }

        .ribbon-dashed-line:first-child {
            margin-bottom: 7px;
            animation: dashSlideRight 1.4s linear infinite;
        }

        .ribbon-dashed-line:last-child {
            margin-top: 7px;
            animation: dashSlideLeft 1.4s linear infinite;
        }

        @keyframes dashSlideRight {
            from { background-position: 0 0; }
            to { background-position: 28px 0; }
        }

        @keyframes dashSlideLeft {
            from { background-position: 0 0; }
            to { background-position: -28px 0; }
        }

        .grain-price-ribbon {
            position: relative;
            padding: 26px 20px;
            background: var(--primary);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .grain-price-ribbon span {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: clamp(1.1rem, 3vw, 2rem);
            letter-spacing: 1px;
            color: #ffffff;
        }

        /* --- 1409 Rice Benefits Ribbon: full-bleed band, circular photo cutouts, no fade --- */
        .rice-benefits-section {
            padding: 10px 0 0;
        }

        .rice-benefits-ribbon {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--primary);
            padding: 46px 0;
            overflow: hidden;
            position: relative;
        }

        /* Big circles positioned independently of the (centered) content, pushed
           past the ribbon's own edge (= screen edge, since the section is
           full-bleed) so only a slice stays visible — cut off left/right by the
           screen edge and top/bottom by the ribbon's height. Decoupling them from
           flex flow keeps the content truly centered with a tight, consistent gap
           to the visible photo edge, on any screen width. */
        .rice-benefits-photo-circle {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 1000px;
            height: 1000px;
            border-radius: 50%;
            overflow: hidden;
        }

        .rice-benefits-photo-circle.circle-left {
            left: -620px;
        }

        .rice-benefits-photo-circle.circle-right {
            right: -620px;
        }

        .rice-benefits-photo-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .rice-benefits-content {
            position: relative;
            z-index: 1;
            max-width: 560px;
            padding: 0 8px;
            text-align: center;
            color: #ffffff;
        }

        .rice-benefits-content h2 {
            font-size: 1.9rem;
            color: #ffffff;
            margin: 6px 0 8px;
        }

        .rice-benefits-content > p {
            color: #e9d3ae;
            font-size: 0.92rem;
            margin-bottom: 26px;
        }

        .rice-benefits-list {
            list-style: none;
            text-align: left;
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 28px;
        }

        .rice-benefits-list li {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .rice-benefits-list i {
            background: var(--accent);
            color: #ffffff;
            width: 34px;
            height: 34px;
            min-width: 34px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
        }

        .rice-benefits-list strong {
            display: block;
            font-family: 'Poppins', sans-serif;
            font-size: 0.98rem;
            margin-bottom: 1px;
        }

        .rice-benefits-list span {
            display: block;
            font-size: 0.82rem;
            color: #e9d3ae;
            line-height: 1.4;
        }

        @media (max-width: 860px) {
            .rice-benefits-ribbon {
                padding: 34px 0;
            }

            .rice-benefits-photo-circle {
                width: 500px;
                height: 500px;
            }

            .rice-benefits-photo-circle.circle-left {
                left: -340px;
            }

            .rice-benefits-photo-circle.circle-right {
                right: -340px;
            }
        }

        @media (max-width: 560px) {
            .rice-benefits-ribbon {
                padding: 26px 0;
            }

            .rice-benefits-photo-circle {
                width: 320px;
                height: 320px;
            }

            .rice-benefits-photo-circle.circle-left {
                left: -230px;
            }

            .rice-benefits-photo-circle.circle-right {
                right: -230px;
            }
        }

        /* --- Product Grid Section ("Most Loved") --- */
        .products-container {
            padding: 0 6% 60px;
            position: relative;
        }

        /* Wave Background Layer behind products */
        .wave-bg-overlay {
            background-color: var(--bg-soft-peach);
            border-radius: 30px;
            padding: 40px 30px;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .product-card {
            background: var(--card-bg);
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            box-shadow: var(--shadow-soft);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }

        .product-card.coming-soon {
            filter: grayscale(0.2);
            opacity: 0.92;
        }

        .card-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            z-index: 5;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 0.7rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .badge-active {
            background-color: var(--leaf-green);
            color: white;
        }

        .badge-soon {
            background-color: #777777;
            color: white;
        }

        .product-img-box {
            height: 220px;
            width: 100%;
            overflow: hidden;
            position: relative;
            background: #f2ece4;
        }

        .product-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-img-box img {
            transform: scale(1.06);
        }

        .product-details {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .product-title {
            font-size: 1.25rem;
            color: var(--primary);
            margin-bottom: 6px;
        }

        .product-subtitle {
            font-size: 0.82rem;
            color: var(--text-muted);
            margin-bottom: 15px;
            flex-grow: 1;
            line-height: 1.4;
        }

        .product-price-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .price-current {
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--primary);
        }

        .price-original {
            font-size: 0.85rem;
            color: #999;
            text-decoration: line-through;
            margin-left: 6px;
            font-weight: 400;
        }

        .pilot-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(107, 63, 29, 0.1);
            color: var(--primary);
            font-weight: 800;
            font-size: 0.68rem;
            padding: 4px 10px;
            border-radius: 12px;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }

        .pilot-badge i {
            font-size: 0.64rem;
            color: var(--accent-hover);
        }

        .stars-count {
            font-size: 0.8rem;
            color: var(--gold-accent);
            font-weight: 700;
        }

        .btn-buy-card {
            position: relative;
            isolation: isolate;
            overflow: hidden;
            width: 100%;
            padding: 11px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
        }

        .btn-buy-card::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -1;
            background-color: var(--primary-light);
            clip-path: circle(0% at 50% 100%);
            transition: clip-path 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-buy-card:hover::before {
            clip-path: circle(150% at 50% 100%);
        }

        .btn-disabled-card {
            width: 100%;
            padding: 11px;
            background-color: #e2ded7;
            color: #888888;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: not-allowed;
        }

        /* --- Sales Partner Feature Section --- */
        .partner-banner-wrap {
            padding: 40px 6%;
        }

        .partner-box {
            background: linear-gradient(90deg, #6b3f1d 0%, #9c6b3e 100%);
            border-radius: var(--radius-lg);
            color: white;
            padding: 45px 45px 0 45px;
            min-height: 460px;
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: flex-end;
            gap: 30px;
            position: relative;
            overflow: visible;
            box-shadow: var(--shadow-soft);
        }

        .partner-content {
            flex: 1 1 0;
            min-width: 0;
            padding-bottom: 45px;
            position: relative;
            z-index: 2;
        }

        .partner-content .btn-main {
            margin-top: 8px;
            padding: 15px 34px;
            font-size: 1.02rem;
        }

        .partner-box h3 {
            font-size: 2.6rem;
            line-height: 1.15;
            margin-bottom: 16px;
            color: #ffffff;
        }

        .partner-box p {
            color: #edd9be;
            font-size: 1.1rem;
            line-height: 1.6;
            max-width: 720px;
            margin-bottom: 24px;
        }

        .partner-perks {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 26px;
        }

        .perk-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.98rem;
            font-weight: 600;
        }

        .perk-item i {
            color: var(--gold-accent);
        }

        .partner-image-wrap {
            flex: 0 0 auto;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding-top: 16px;
            z-index: 1;
        }

        .partner-salesperson-img {
            display: block;
            width: auto;
            max-height: 450px;
            filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.35));
        }

        /* --- Spotlight / Reviews Cards --- */
        .spotlight-section {
            padding: 50px 6%;
            position: relative;
            isolation: isolate;
        }

        .spotlight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
        }

        .spotlight-card-img,
        .spotlight-card-quote {
            height: 300px;
            border-radius: var(--radius-md);
        }

        .spotlight-card-img {
            overflow: hidden;
        }

        .spotlight-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .spotlight-card-quote {
            background-color: #e8590c; /* Vivid rust accent */
            color: white;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            overflow: hidden;
        }

        .spotlight-card-quote h4 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: #ffffff;
        }

        .spotlight-card-quote p {
            font-size: 0.88rem;
            opacity: 0.9;
            margin-bottom: 15px;
            font-style: italic;
        }

        .quote-author {
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            color: var(--gold-accent);
        }

        /* --- FOOTER WITH DETAILED FARM ILLUSTRATION ---
           Footer bg matches the illustration's sky tone so the text block
           and the artwork below read as one continuous surface. */
        .footer-wrapper {
            background-color: var(--bg-cream);
            color: var(--text-main);
            position: relative;
            margin-top: 30px;
            scroll-margin-top: 120px;
        }

        /* The illustration is shown uncropped at its top (plain sky) so the
           seam against .footer-wrapper's matching cream background disappears;
           only the lower, artwork-heavy part (field/tractor/trees) is visible
           art — nothing sits on top of it. */
        .footer-illustration-wrap {
            position: relative;
            width: 100%;
            line-height: 0;
        }

        .footer-illustration {
            display: block;
            width: 100%;
            height: auto;
            pointer-events: none;
        }

        .footer-main-content {
            padding: 55px 6% 35px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1.3fr;
            gap: 40px;
            position: relative;
        }

        .footer-brand p {
            color: var(--text-muted);
            font-size: 0.88rem;
            margin-bottom: 20px;
            max-width: 300px;
        }

        .footer-col h4 {
            font-size: 1.05rem;
            margin-bottom: 18px;
            color: var(--primary);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.88rem;
            transition: color 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-col ul li a:hover {
            color: var(--accent-hover);
        }

        .newsletter-box h4 {
            font-size: 1.1rem;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .newsletter-box p {
            font-size: 0.82rem;
            color: var(--text-muted);
            margin-bottom: 15px;
        }

        .subscribe-form {
            display: flex;
            background: #ffffff;
            border-radius: 30px;
            padding: 4px;
            border: 1px solid var(--border-subtle);
        }

        .subscribe-form input {
            background: transparent;
            border: none;
            padding: 10px 15px;
            color: var(--text-main);
            outline: none;
            width: 100%;
            font-size: 0.85rem;
        }

        .subscribe-form input::placeholder {
            color: var(--text-muted);
        }

        .subscribe-form button {
            position: relative;
            isolation: isolate;
            overflow: hidden;
            background: var(--accent);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
        }

        .subscribe-form button::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -1;
            background-color: var(--accent-hover);
            clip-path: circle(0% at 50% 100%);
            transition: clip-path 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .subscribe-form button:hover::before {
            clip-path: circle(150% at 50% 100%);
        }

        .footer-bottom {
            position: absolute;
            left: 0;
            right: 0;
            top: 20px;
            padding: 0 6%;
            text-align: center;
            font-size: 0.82rem;
            color: var(--text-main);
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 24px;
        }

        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            font-size: 1.05rem;
            text-decoration: none;
            box-shadow: 0 2px 8px rgba(0,0,0,0.25);
            transition: background 0.25s, transform 0.25s;
        }

        .footer-social a:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
        }

        /* --- Floating WhatsApp Button --- */
        .whatsapp-float {
            position: fixed;
            right: 24px;
            bottom: 24px;
            width: 58px;
            height: 58px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.7rem;
            box-shadow: 0 6px 18px rgba(0,0,0,0.25);
            z-index: 998;
            text-decoration: none;
            transition: transform 0.25s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.08);
            color: #fff;
        }

        @media (max-width: 768px) {
            .whatsapp-float {
                right: 16px;
                bottom: 16px;
                width: 52px;
                height: 52px;
                font-size: 1.5rem;
            }
        }

        /* --- Modals --- */
        .modal-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.65);
            backdrop-filter: blur(5px);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-card {
            background: #ffffff;
            width: 90%;
            max-width: 480px;
            border-radius: var(--radius-lg);
            padding: 35px;
            position: relative;
            transform: translateY(20px);
            transition: transform 0.3s ease;
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }

        .modal-overlay.active .modal-card {
            transform: translateY(0);
        }

        .modal-close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.4rem;
            background: none;
            border: none;
            color: #888;
            cursor: pointer;
        }

        .modal-card h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 6px;
        }

        .modal-card p {
            font-size: 0.88rem;
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        .input-group {
            margin-bottom: 16px;
        }

        .input-group label {
            display: block;
            font-size: 0.82rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--primary);
        }

        .input-group input, 
        .input-group select, 
        .input-group textarea {
            width: 100%;
            padding: 11px;
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            font-size: 0.9rem;
            outline: none;
        }

        .input-group input:focus,
        .input-group select:focus,
        .input-group textarea:focus {
            border-color: var(--primary);
        }

        .modal-submit {
            position: relative;
            isolation: isolate;
            overflow: hidden;
            width: 100%;
            padding: 13px;
            background-color: var(--accent);
            color: white;
            border: none;
            border-radius: 30px;
            font-weight: 800;
            font-size: 0.95rem;
            cursor: pointer;
            margin-top: 10px;
        }

        .modal-submit::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -1;
            background-color: var(--accent-hover);
            clip-path: circle(0% at 50% 100%);
            transition: clip-path 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .modal-submit:hover::before {
            clip-path: circle(150% at 50% 100%);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-grid {
                grid-template-columns: 1fr;
            }
            .partner-box {
                flex-direction: column;
                align-items: stretch;
                min-height: 0;
                padding: 45px 45px 0 45px;
            }
            .partner-content {
                max-width: 100%;
                padding-bottom: 24px;
            }
            .partner-image-wrap {
                padding-top: 0;
                justify-content: center;
            }
            .partner-salesperson-img {
                max-height: 220px;
            }
            .footer-main-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 600px) {
            .footer-main-content {
                grid-template-columns: 1fr;
            }
            .hero-big-card h1 {
                font-size: 2.2rem;
            }
        }

        /* ================================================================
           ADDITIONAL MOBILE RESPONSIVE PASS
           Covers gaps left by the breakpoints above: hero spacing, partner
           box typography, product/spotlight grids on very narrow screens,
           section headers, and modal padding.
           ================================================================ */

        @media (max-width: 768px) {
            .hero-section {
                padding: 14px 5% 20px;
            }
            .hero-grid {
                gap: 16px;
            }
            .hero-big-card {
                padding: 28px 24px;
                min-height: 260px;
            }
            .hero-big-card p {
                font-size: 0.95rem;
            }
            .hero-small-card {
                padding: 22px 20px;
            }
            .hero-small-card h3 {
                font-size: 1.4rem;
            }
            .ribbon-categories {
                gap: 24px;
                padding: 24px 5%;
            }
            .ribbon-item {
                width: 74px;
            }
            .ribbon-icon-circle {
                width: 58px;
                height: 58px;
                font-size: 1.3rem;
            }
            .section-title-wrap h2 {
                font-size: 2rem;
            }
            .flying-bird-clipart {
                width: 50px;
                height: 50px;
                top: -28px;
                left: calc(50% - 110px);
            }
            .products-container {
                padding: 0 5% 44px;
            }
            .wave-bg-overlay {
                padding: 26px 18px;
                border-radius: 20px;
            }
            .partner-banner-wrap {
                padding: 24px 5%;
            }
            .partner-box h3 {
                font-size: 1.9rem;
            }
            .partner-box p {
                font-size: 0.95rem;
            }
            .rice-benefits-content h2 {
                font-size: 1.5rem;
            }
            .spotlight-section {
                padding: 36px 5%;
            }
            .spotlight-card-img,
            .spotlight-card-quote {
                height: auto;
                min-height: 220px;
            }
            .footer-main-content {
                padding: 40px 5% 28px;
                gap: 28px;
            }
            .modal-card {
                padding: 26px 20px;
            }
            .modal-card h3 {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 480px) {
            .nav-links {
                gap: 16px;
            }
            .nav-links a {
                font-size: 0.82rem;
            }
            .logo-wrapper img {
                height: 58px;
            }
            .hero-big-card h1 {
                font-size: 1.7rem;
            }
            .hero-tag {
                font-size: 0.68rem;
                padding: 3px 10px;
            }
            .hero-big-card .btn-main {
                padding: 10px 20px;
                font-size: 0.85rem;
            }
            .grain-price-ribbon {
                padding: 18px 14px;
            }
            .product-grid {
                grid-template-columns: 1fr;
            }
            .spotlight-grid {
                grid-template-columns: 1fr;
            }
            .partner-box {
                padding: 30px 24px 0 24px;
            }
            .partner-perks {
                gap: 12px;
            }
            .perk-item {
                font-size: 0.85rem;
            }
            .footer-brand img {
                height: 140px !important;
            }
            .whatsapp-float {
                right: 12px;
                bottom: 12px;
                width: 48px;
                height: 48px;
                font-size: 1.35rem;
            }
        }
