/* =========================================================
   Soil To Bowl Header + Announcement + Mobile Footer CSS
   Optimized for Desktop, Mobile, iPhone Safe Area
========================================================= */

/* ---------- Reset ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #f9fafb;
}

/* ---------- Theme Variables ---------- */
:root {
    --primary: #4E7D24;
    --primary-dark: #3f671d;
    --primary-light: #f2faea;

    --secondary: #4b5563;
    --background: #ffffff;
    --surface: #f9fafb;
    --border: #e5e7eb;

    --text: #1f2937;
    --text-secondary: #6b7280;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.10);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --mobile-footer-height: 70px;
    --mobile-footer-radius: 22px;
}

/* =========================================================
   Announcement Slider
========================================================= */

.announcement-slider {
    position: relative;
    background: var(--primary);
    color: #ffffff;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 90px);
    max-width: 560px;
    height: 100%;
    position: relative;
}

.slider-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    margin: 0 8px;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.slide {
    min-width: 100%;
    height: 100%;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
}

.slide span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: slideTextIn 0.5s ease-out;
    gap: 8px;
    
}
.slide span svg {
    flex: 0 0 auto;
    display: block;
    
}
@keyframes slideTextIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-nav {
    width: 32px;
    height: 32px;
    padding: 8px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    opacity: 0.75;
    border-radius: 6px;
    transition: var(--transition);
}

.slider-nav:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.12);
}

.slider-nav:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

.slider-nav svg {
    width: 12px;
    height: 12px;
}

.announcement-close-btn {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 50%;

    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;

    cursor: pointer;
    z-index: 2;
    transition: background 0.25s ease, transform 0.25s ease;
}

.announcement-close-btn:hover {
    transform: translateY(-50%) rotate(180deg);
    background: rgba(255, 255, 255, 0.25);
}
@media (max-width: 767px) {
    .announcement-slider .slider-nav.prev,
    .announcement-slider .slider-nav.next {
        display: none;
    }
}
/* =========================================================
   Header / Navbar
========================================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow: var(--shadow-md);
}

.navbar {
    max-width: 1200px;
    height: 82px;
    margin: 0 auto;
    padding: 0 1.5rem;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ---------- Logo ---------- */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;

    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;

    transition: transform 0.25s ease;
}

.logo img {
    height: 80px;
    width: auto;
    max-width: 190px;
    display: block;
    object-fit: contain;
}

.logo:hover {
    transform: scale(1.03);
}

/* ---------- Desktop Navigation ---------- */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    position: relative;

    display: flex;
    align-items: center;
    gap: 0.5rem;

    padding: 0.5rem 0;

    color: #000000;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.3;

    transition: var(--transition);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: var(--primary);
    border-radius: 999px;
    transition: width 0.25s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

/* =========================================================
   Mega Menu
========================================================= */

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;

    width: 100%;

    background: var(--background);
    box-shadow: var(--shadow-lg);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    border-radius: 0 0 16px 16px;
    overflow: hidden;

    transition: var(--transition);
}

.mega-menu-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mega-menu-column {
    padding: 1rem;
    border-radius: 12px;
    transition: var(--transition);
}

.mega-menu-column:hover {
    background: var(--surface);
}

.mega-menu-column h3 {
    margin-bottom: 1rem;

    display: flex;
    align-items: center;
    gap: 0.5rem;

    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
}

.mega-menu-column ul {
    list-style: none;
}

.mega-menu-column ul li {
    margin-bottom: 0.75rem;
}

.mega-menu-column ul li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;

    padding: 0.5rem;
    border-radius: 6px;

    color: var(--text-secondary);
    text-decoration: none;

    transition: var(--transition);
}

.mega-menu-column ul li a:hover {
    color: var(--primary);
    background: rgba(78, 125, 36, 0.07);
    transform: translateX(5px);
}

/* Desktop mega menu hover */
@media (min-width: 1025px) {
    .has-submenu:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* =========================================================
   Mobile Bottom Footer Navigation
   Main iPhone Fix Area
========================================================= */

/* =========================================================
   Fixed Premium Mobile Bottom Footer
   Perfect Alignment + Half Floating Menu Button
========================================================= */

.mobile-footer {
    display: none;
}

.footer-item {
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 1024px) {
    body {
        padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
    }

    .nav-links {
        display: none;
    }

    .navbar {
        height: 74px;
        justify-content: center;
        padding: 0 1rem;
    }

    .logo img {
        height: 70px;
        max-width: 180px;
    }

    .mobile-footer {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: max(12px, env(safe-area-inset-bottom, 12px));

        height: 78px;
        padding: 8px 8px 7px;

        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        align-items: stretch;
        justify-items: center;
        gap: 4px;

        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(20px) saturate(170%);
        -webkit-backdrop-filter: blur(20px) saturate(170%);

        border: 1px solid rgba(78, 125, 36, 0.16);
        border-radius: 28px;

        box-shadow:
            0 16px 38px rgba(16, 24, 40, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.75);

        z-index: 1500;
        overflow: visible;
    }

    .mobile-footer::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        pointer-events: none;
        background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.75),
            rgba(255, 255, 255, 0.18)
        );
        z-index: -1;
    }

    .footer-item {
        position: relative;
        width: 100%;
        min-width: 0;
        height: 100%;

        padding: 6px 2px 5px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 5px;

        color: #374151;
        text-decoration: none;
        border-radius: 20px;

        overflow: hidden;
        touch-action: manipulation;

        transition:
            transform 0.22s ease,
            color 0.22s ease,
            background 0.22s ease;
    }

    .footer-item:active {
        transform: scale(0.95);
    }

    .footer-icon {
        width: 28px;
        height: 28px;
        flex: 0 0 28px;

        display: flex;
        align-items: center;
        justify-content: center;

        line-height: 0;
        border-radius: 14px;

        transition:
            transform 0.22s ease,
            background 0.22s ease,
            box-shadow 0.22s ease;
    }

    .footer-icon svg,
    .footer-item svg {
        width: 24px;
        height: 24px;
        display: block;
        stroke: currentColor;
    }

    .footer-label {
        display: block;
        width: 100%;
        max-width: 100%;

        font-size: 11px;
        font-weight: 700;
        line-height: 1.1;
        text-align: center;

        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;

        letter-spacing: -0.2px;
    }

    /* Normal active item */
    .footer-item.active {
        color: #4E7D24;
        background: rgba(78, 125, 36, 0.10);
    }

    .footer-item.active .footer-icon {
        background: #ffffff;
        box-shadow: 0 6px 14px rgba(78, 125, 36, 0.16);
    }

    .footer-item.active::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 4px;
        transform: translateX(-50%);

        width: 24px;
        height: 3px;

        border-radius: 999px;
        background: linear-gradient(90deg, #4E7D24, #7ab948);
    }

    /* =====================================================
       Center Menu Button Fix
       Half button inside bar, half button outside bar
    ===================================================== */

    .footer-item.menu-toggle {
        overflow: visible;
        background: transparent;
        padding: 0;
        justify-content: flex-end;
        transform: none;
        z-index: 5;
    }

    .footer-item.menu-toggle .footer-icon {
        position: absolute;
        top: -28px;
        left: 50%;
        transform: translateX(-50%);

        width: 62px;
        height: 62px;
        flex: none;

        border-radius: 50%;

        color: #ffffff;
        background:
            radial-gradient(circle at 32% 22%, rgba(255,255,255,0.42), transparent 34%),
            linear-gradient(145deg, #70b542, #4E7D24);

        box-shadow:
            0 14px 28px rgba(78, 125, 36, 0.34),
            inset 0 1px 0 rgba(255, 255, 255, 0.35);

        border: 4px solid rgba(255, 255, 255, 0.88);
    }

    .footer-item.menu-toggle .footer-icon svg {
        width: 28px;
        height: 28px;
    }

    .footer-item.menu-toggle .footer-label {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 7px;

        color: #4E7D24;
        font-size: 10.5px;
        font-weight: 800;
        line-height: 1;
        text-align: center;
    }

    .footer-item.menu-toggle.active,
    .footer-item.menu-toggle:hover {
        background: transparent;
        box-shadow: none;
    }

    .footer-item.menu-toggle.active::after {
        display: none;
    }

    .footer-item.menu-toggle:active {
        transform: scale(0.96);
    }

    .footer-item.menu-toggle:active .footer-icon {
        transform: translateX(-50%) scale(0.96);
    }
}

/* iPhone SE / Small Mobile */
@media (max-width: 380px) {
    body {
        padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
    }

    .mobile-footer {
        left: 7px;
        right: 7px;
        height: 74px;
        padding: 7px 5px 6px;
        border-radius: 24px;
        gap: 1px;
    }

    .footer-item {
        padding: 5px 1px 4px;
        gap: 4px;
        border-radius: 17px;
    }

    .footer-icon {
        width: 25px;
        height: 25px;
        flex-basis: 25px;
    }

    .footer-icon svg,
    .footer-item svg {
        width: 21px;
        height: 21px;
    }

    .footer-label {
        font-size: 9.6px;
        line-height: 1.05;
        letter-spacing: -0.25px;
    }

    .footer-item.active::after {
        width: 22px;
        height: 3px;
        bottom: 3px;
    }

    .footer-item.menu-toggle .footer-icon {
        top: -25px;
        width: 56px;
        height: 56px;
        border-width: 4px;
    }

    .footer-item.menu-toggle .footer-icon svg {
        width: 25px;
        height: 25px;
    }

    .footer-item.menu-toggle .footer-label {
        bottom: 6px;
        font-size: 9.5px;
    }
}

/* Extra small mobile */
@media (max-width: 340px) {
    .mobile-footer {
        left: 5px;
        right: 5px;
    }

    .footer-label {
        font-size: 8.8px;
    }

    .footer-icon svg,
    .footer-item svg {
        width: 20px;
        height: 20px;
    }

    .footer-item.menu-toggle .footer-icon {
        width: 52px;
        height: 52px;
        top: -23px;
    }
}

/* =========================================================
   Mobile Menu Panel
========================================================= */

/* =========================================================
   Premium Mobile Menu Panel
   Modern Bottom Sheet + Glass Header + Icon List
========================================================= */

.mobile-menu {
    position: fixed;
    left: 8px;
    right: 8px;
    bottom: 8px;

    width: auto;
    height: min(82vh, 680px);

    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 253, 247, 0.98));

    z-index: 2200;

    transform: translateY(calc(100% + 24px));
    transition:
        transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.25s ease;

    border-radius: 30px 30px 24px 24px;
    border: 1px solid rgba(78, 125, 36, 0.14);

    box-shadow:
        0 -18px 55px rgba(15, 23, 42, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);

    overflow: hidden;
    opacity: 0;

    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

/* Small top drag handle */
.mobile-menu::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);

    width: 46px;
    height: 5px;

    background: rgba(78, 125, 36, 0.20);
    border-radius: 999px;

    z-index: 3;
}

/* Soft green glow */
.mobile-menu::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -90px;

    width: 230px;
    height: 230px;

    background: radial-gradient(circle, rgba(111, 181, 66, 0.22), transparent 68%);
    pointer-events: none;
    z-index: 0;
}

/* Header */
.mobile-menu-header {
    position: relative;
    z-index: 2;

    min-height: 88px;
    padding: 28px 22px 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background:
        linear-gradient(135deg, rgba(244, 251, 239, 0.96), rgba(255, 255, 255, 0.92));

    border-bottom: 1px solid rgba(78, 125, 36, 0.10);
}

.mobile-menu-header h2 {
    position: relative;

    color: #172033;
    font-size: 26px;
    font-weight: 850;
    line-height: 1;

    letter-spacing: -0.7px;
}

/* Small subtitle under Menu */
.mobile-menu-header h2::after {
    content: "Explore fresh categories";
    display: block;

    margin-top: 8px;

    color: #6b7280;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
}

/* Close Button */
.close-menu {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(145deg, #ffffff, #f2f6ef);

    border: 1px solid rgba(78, 125, 36, 0.10);
    border-radius: 18px;

    color: #566173;
    cursor: pointer;

    position: relative;
    overflow: hidden;

    box-shadow:
        0 10px 22px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);

    transition:
        transform 0.22s ease,
        background 0.22s ease,
        color 0.22s ease;
}

.close-menu:hover {
    color: #4E7D24;
    background: #ffffff;
}

.close-menu:active {
    transform: scale(0.94);
}

.close-menu svg {
    width: 24px;
    height: 24px;
}

/* Content Area */
.mobile-menu-content {
    position: relative;
    z-index: 2;

    height: calc(100% - 88px);
    padding: 16px 16px 22px;

    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* Hide scrollbar but keep scroll */
.mobile-menu-content::-webkit-scrollbar {
    width: 0;
    height: 0;
}

/* Cloned nav wrapper */
.mobile-menu .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;

    width: 100%;
    list-style: none;
}

/* Each item as premium card */
.mobile-menu .nav-item {
    width: 100%;
    border: none;
    opacity: 0;
    transform: translateY(12px);
    animation: premiumMenuItemIn 0.42s ease forwards;
}

/* Stagger animation */
.mobile-menu.active .nav-item:nth-child(1) { animation-delay: 0.04s; }
.mobile-menu.active .nav-item:nth-child(2) { animation-delay: 0.08s; }
.mobile-menu.active .nav-item:nth-child(3) { animation-delay: 0.12s; }
.mobile-menu.active .nav-item:nth-child(4) { animation-delay: 0.16s; }
.mobile-menu.active .nav-item:nth-child(5) { animation-delay: 0.20s; }
.mobile-menu.active .nav-item:nth-child(6) { animation-delay: 0.24s; }
.mobile-menu.active .nav-item:nth-child(7) { animation-delay: 0.28s; }

@keyframes premiumMenuItemIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Link card */
.mobile-menu .nav-link {
    width: 100%;
    min-height: 58px;
    padding: 10px 14px 10px 12px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;

    color: #1f2937;
    text-decoration: none;

    font-size: 15.5px;
    font-weight: 780;
    line-height: 1.2;

    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 244, 0.92));

    border: 1px solid rgba(78, 125, 36, 0.10);
    border-radius: 20px;

    box-shadow:
        0 10px 24px rgba(15, 23, 42, 0.055),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);

    position: relative;
    overflow: hidden;

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background 0.22s ease,
        color 0.22s ease;
}

.mobile-menu .nav-link::after {
    display: none;
}

/* Icon bubble before every item */
.mobile-menu .nav-link::before {
    content: attr(data-icon);

    width: 38px;
    height: 38px;
    min-width: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: linear-gradient(145deg, #f0f8e9, #ffffff);
    color: #4E7D24;

    font-size: 18px;
    line-height: 1;

    box-shadow:
        0 8px 18px rgba(78, 125, 36, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}



/* Right arrow */
.mobile-menu .nav-link {
    padding-right: 44px;
}

.mobile-menu .nav-link::selection {
    background: transparent;
}

.mobile-menu .nav-link span {
    display: inline-block;
}

.mobile-menu .nav-link:hover {
    color: #4E7D24;
    background:
        linear-gradient(145deg, #ffffff, #f3faed);
    box-shadow:
        0 14px 28px rgba(78, 125, 36, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.mobile-menu .nav-link:active {
    transform: scale(0.98);
}

/* Arrow using pseudo on li */
.mobile-menu .nav-item::after {
    content: "›";
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);

    color: rgba(78, 125, 36, 0.55);
    font-size: 26px;
    font-weight: 500;
    line-height: 1;

    pointer-events: none;
}

/* Fix nav-item position for arrow */
.mobile-menu .nav-item {
    position: relative;
}

/* Submenu support if future dropdowns are enabled */
.mobile-menu .mega-menu {
    position: static;

    width: auto;
    margin: 8px 0 0;
    padding: 0;

    opacity: 1;
    visibility: visible;
    transform: none;

    background: transparent;
    box-shadow: none;
    border-radius: 0;

    max-height: 0;
    overflow: hidden;

    transition:
        max-height 0.36s ease,
        padding 0.36s ease;
}

.mobile-menu .mega-menu.active {
    max-height: 1000px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.mobile-menu .mega-menu-content {
    padding: 0;

    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;

    opacity: 0;
    transform: translateY(-6px);

    transition:
        transform 0.3s ease 0.08s,
        opacity 0.3s ease 0.08s;
}

.mobile-menu .mega-menu.active .mega-menu-content {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu .mega-menu-column {
    padding: 0;
}

.mobile-menu .mega-menu-column h3 {
    margin: 10px 6px 8px;

    color: #6b7280;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-menu .mega-menu-column ul {
    list-style: none;
}

.mobile-menu .mega-menu-column ul li {
    margin-bottom: 8px;
}

.mobile-menu .mega-menu-column ul li a {
    padding: 12px 14px;
    border-radius: 16px;

    color: #374151;
    background: rgba(255, 255, 255, 0.78);

    text-decoration: none;
    font-weight: 650;

    display: block;
}

.mobile-menu .mega-menu-column ul li a:hover {
    color: #4E7D24;
    background: #ffffff;
    transform: none;
}

.mobile-menu .nav-link svg {
    margin-left: auto;
    transition: transform 0.25s ease;
}

.mobile-menu .nav-link.active svg {
    transform: rotate(180deg);
}

/* =========================================================
   Small iPhone Fix
========================================================= */

@media (max-width: 380px) {
    .mobile-menu {
        left: 6px;
        right: 6px;
        bottom: 6px;
        height: min(84vh, 650px);
        border-radius: 26px 26px 22px 22px;
    }

    .mobile-menu-header {
        min-height: 82px;
        padding: 26px 18px 16px;
    }

    .mobile-menu-header h2 {
        font-size: 23px;
    }

    .mobile-menu-header h2::after {
        font-size: 11px;
        margin-top: 7px;
    }

    .close-menu {
        width: 46px;
        height: 46px;
        border-radius: 16px;
    }

    .mobile-menu-content {
        height: calc(100% - 82px);
        padding: 14px 12px 18px;
    }

    .mobile-menu .nav-links {
        gap: 8px;
    }

    .mobile-menu .nav-link {
        min-height: 54px;
        padding: 9px 38px 9px 10px;

        font-size: 14.5px;
        border-radius: 18px;
        gap: 10px;
    }

    .mobile-menu .nav-link::before {
        width: 34px;
        height: 34px;
        min-width: 34px;
        border-radius: 13px;
        font-size: 16px;
    }

    .mobile-menu .nav-item::after {
        right: 24px;
        font-size: 24px;
    }
}

/* Extra small mobile */
@media (max-width: 340px) {
    .mobile-menu .nav-link {
        font-size: 13.8px;
    }

    .mobile-menu .nav-link::before {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 15px;
    }

    .mobile-menu-header h2 {
        font-size: 22px;
    }
}

/* Motion accessibility */
@media (prefers-reduced-motion: reduce) {
    .mobile-menu,
    .mobile-menu .nav-item,
    .mobile-menu .nav-link,
    .close-menu {
        animation: none !important;
        transition: none !important;
    }
}
@media (max-width: 1024px) {
    body.menu-open::before {
        content: "";
        position: fixed;
        inset: 0;

        background:
            radial-gradient(circle at top, rgba(111, 181, 66, 0.16), transparent 36%),
            rgba(15, 23, 42, 0.38);

        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);

        z-index: 2100;
    }
}


/* =========================================================
   Mobile / Tablet Header Call Button
   Premium Animated Call Button
========================================================= */

.mobile-call-btn {
    display: none;
}

@media (max-width: 1024px) {
    .navbar {
        position: relative;
        justify-content: center;
        height: 74px;
        padding: 0 1rem;
    }

    .logo {
        position: relative;
        z-index: 2;
    }

    .logo img {
        height: 68px;
        max-width: 165px;
        object-fit: contain;
    }

    .mobile-call-btn {
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);

        height: 44px;
        min-width: 44px;

        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;

        padding: 0 13px;

        color: #ffffff;
        text-decoration: none;

        background:
            radial-gradient(circle at 30% 20%, rgba(255,255,255,0.35), transparent 34%),
            linear-gradient(135deg, #70b542, #4E7D24);

        border-radius: 999px;
        border: 2px solid rgba(255, 255, 255, 0.9);

        box-shadow:
            0 10px 24px rgba(78, 125, 36, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.35);

        z-index: 5;
        overflow: visible;

        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;

        animation: callButtonFloat 2.4s ease-in-out infinite;
    }

    .call-icon {
        width: 21px;
        height: 21px;

        display: flex;
        align-items: center;
        justify-content: center;

        line-height: 0;
        position: relative;
        z-index: 2;
    }

    .call-icon svg {
        width: 20px;
        height: 20px;
        display: block;
    }

    .call-text {
        font-size: 13px;
        font-weight: 800;
        line-height: 1;
        letter-spacing: -0.2px;
        position: relative;
        z-index: 2;
    }

    .call-pulse {
        position: absolute;
        inset: -5px;

        border-radius: 999px;
        border: 2px solid rgba(78, 125, 36, 0.30);

        animation: callPulse 1.8s ease-out infinite;
        pointer-events: none;
    }

    .mobile-call-btn:active {
        transform: translateY(-50%) scale(0.94);
        animation: none;
    }
}

@keyframes callPulse {
    0% {
        transform: scale(0.92);
        opacity: 0.75;
    }

    70% {
        transform: scale(1.22);
        opacity: 0;
    }

    100% {
        transform: scale(1.22);
        opacity: 0;
    }
}

@keyframes callButtonFloat {
    0%, 100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(calc(-50% - 2px));
    }
}

/* Small Mobile Fix */
@media (max-width: 480px) {
    .navbar {
        height: 68px;
        padding: 0 0.75rem;
    }

    .logo img {
        height: 62px;
        max-width: 145px;
    }

    .mobile-call-btn {
        right: 10px;
        height: 42px;
        min-width: 42px;
        padding: 0 11px;
        gap: 6px;
    }

    .call-icon {
        width: 20px;
        height: 20px;
    }

    .call-icon svg {
        width: 19px;
        height: 19px;
    }

    .call-text {
        font-size: 12px;
    }
}

/* Very Small iPhone Fix */
@media (max-width: 380px) {
    .logo img {
        height: 58px;
        max-width: 132px;
    }

    .mobile-call-btn {
        right: 8px;
        width: 40px;
        height: 40px;
        min-width: 40px;
        padding: 0;
        border-width: 2px;
    }

    .call-text {
        display: none;
    }

    .call-icon svg {
        width: 19px;
        height: 19px;
    }
}

/* iPhone SE / very small screens */
@media (max-width: 380px) {
    .navbar {
        height: 78px;
        padding-left: 52px;
        padding-right: 52px;
    }

    .logo img {
        height: 68px;
        max-width: 160px;
    }

    .mobile-call-btn {
        right: 8px;
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .call-icon svg {
        width: 20px;
        height: 20px;
    }
}

/*header end  */

/*slider bnanner*/

.stb-slider {
    width: 100%;
    max-width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0 auto;

    position: relative;
}

.stb-slider-container {
    width: 100%;
    height: 100%;
    display: flex;
    
    transition: transform .3s ease-in-out;
}

.stb-slider-item {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.stb-slider-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;

}

.stb-slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.stb-slider-nav button {
    width: 40px;
    height: 40px;
    margin: 0 10px;
    border: none;
    border-radius: 50%;
    background: #f0f0f0;
    cursor: pointer;
    pointer-events: all;
    transition: .3s;
    padding: 0 !important;
}

.stb-slider-nav button:focus {
    outline: none;
}

.stb-slider-nav button svg {
    width: 100%;
    height: 100%;
    fill: #333;
    transition: .3s;
}

.stb-slider-nav button:hover {
    transform: scale(1.1);
}

.stb-slider-nav button:hover svg {
    fill: #007aff;
}

@media (max-width:767px){

    .stb-slider-nav button{
        width:30px;
        height:30px;
    }

}


/*slider banner */


/* Keep one continuous homepage background (#fffdf8) below the hero. */
        .stb-category-section,
        .stb-basket-section,
        .stb-dairy-section,
        .stb-mustard-section,
        .stb-honey-section,
        .stb-reviews-section {
            background: transparent !important;
            background-image: none !important;
        }

/* USP */
/* USP SECTION */

.usp-section {
    width: 100%;
    padding: 22px 6%;
    background: #fffdf8;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.usp-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 8px 25px;
    border-right: 1px solid #d8d2c5;
}

.usp-item:last-child {
    border-right: none;
}

.usp-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    background: #4a6f1f;
    border: 4px solid #dce8c7;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 0 0 2px rgba(255,255,255,.25) inset;
}

.usp-icon i {
    color: #fff;
    font-size: 26px;
}

.usp-item h4 {
    margin: 0 0 5px;
    font-size: 17px;
    font-weight: 800;
    color: #151515;
}

.usp-item p {
    margin: 0;
    font-size: 14px;
    color: #444;
}

* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

/* TABLET */

@media (min-width: 577px) and (max-width: 991px) {

    .usp-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 14px;
        padding: 22px 18px;
    }

    .usp-item {
        justify-content: flex-start;
        border-right: none;
        padding: 10px 8px;
    }

    .usp-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .usp-icon i {
        font-size: 22px;
    }

    .usp-item h4 {
        font-size: 15px;
    }

    .usp-item p {
        font-size: 13px;
    }
}

/* MOBILE */

@media (max-width: 576px) {

    .usp-section {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
        padding: 10px 6px;
    }

    .usp-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        padding: 0 3px;
        border: none;
    }

    .usp-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        border-width: 3px;
    }

    .usp-icon i {
        font-size: 16px;
    }

    .usp-item h4 {
        font-size: 9.5px;
        line-height: 1.15;
        margin: 0;
    }

    .usp-item p {
        display: none;
    }
    .usp-svg{
    width:28px;
    height:28px;
    display:block;
}
}
/* USP  */

/*homepage categories start*/
/* =========================================================
   Soil To Bowl - Shop By Category Section
========================================================= */

.stb-category-section {
    position: relative;
    padding: 76px 18px 84px;
    background:
        radial-gradient(circle at top left, rgba(104, 156, 61, 0.10), transparent 28%),
        radial-gradient(circle at bottom right, rgba(232, 187, 49, 0.14), transparent 30%),
        linear-gradient(180deg, #fffdf5 0%, #fbfff6 100%);
    overflow: hidden;
}

.stb-category-section::before {
    content: "";
    position: absolute;
    top: -70px;
    left: -60px;
    width: 220px;
    height: 220px;
    background:
        radial-gradient(circle, rgba(78, 125, 36, 0.16), transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.stb-category-section::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 260px;
    height: 260px;
    background:
        radial-gradient(circle, rgba(232, 187, 49, 0.18), transparent 68%);
    border-radius: 50%;
    pointer-events: none;
}

.stb-category-container {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
}

/* Heading */
.stb-section-heading {
    text-align: center;
    margin-bottom: 44px;
}

.stb-leaf-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 14px;
}

.stb-leaf-divider span {
    width: 74px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4E7D24, transparent);
}

.stb-leaf-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(78, 125, 36, 0.22);
    color: #4E7D24;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 22px rgba(78, 125, 36, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.stb-leaf-icon svg {
    width: 24px;
    height: 24px;
}


.stb-section-heading h1 {
    margin: 0;
    color: #2f641f;
    font-size: clamp(34px, 4.4vw, 62px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1.4px;
    font-family: Georgia, "Times New Roman", serif;
}

.stb-section-heading h1 span {
    color: #3b2415;
}


.stb-section-heading h2 {
    margin: 0;
    color: #2f641f;
    font-size: clamp(34px, 4.4vw, 62px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1.4px;
    font-family: Georgia, "Times New Roman", serif;
}

.stb-section-heading h2 span {
    color: #3b2415;
}

.stb-section-heading p {
    margin: 16px auto 0;
    max-width: 650px;
    color: #344054;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 500;
}

/* Grid */
.stb-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

/* Card */
.stb-category-card {
    position: relative;
    min-height: 420px;
    padding: 28px 22px 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 253, 244, 0.96));
    border: 1px solid rgba(78, 125, 36, 0.20);
    border-radius: 24px;
    text-align: center;
    text-decoration: none;
    color: #1f2937;
    box-shadow:
        0 16px 36px rgba(16, 24, 40, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

.stb-category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top, rgba(78, 125, 36, 0.08), transparent 42%);
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.stb-category-card:hover {
    transform: translateY(-8px);
    border-color: rgba(78, 125, 36, 0.38);
    box-shadow:
        0 22px 48px rgba(78, 125, 36, 0.17),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.stb-category-card:hover::before {
    opacity: 1;
}

/* Image */
.stb-category-image-wrap {
    position: relative;
    width: 190px;
    height: 190px;
    margin: 0 auto 34px;
}

.stb-category-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(78, 125, 36, 0.78);
    box-shadow:
        0 12px 28px rgba(78, 125, 36, 0.18),
        0 0 0 8px rgba(78, 125, 36, 0.06);
    transition: transform 0.3s ease;
}

.stb-category-card:hover .stb-category-image {
    transform: scale(1.04);
}

/* Small icon */
.stb-category-mini-icon {
    position: absolute;
    left: 50%;
    bottom: -19px;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.35), transparent 34%),
        linear-gradient(145deg, #6ca83b, #4E7D24);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #fffdf5;
    box-shadow: 0 10px 22px rgba(78, 125, 36, 0.26);
}

.stb-category-mini-icon svg {
    width: 34px;
    height: 34px;
}

/* Text */
.stb-category-card h3 {
    margin: 0 0 14px;
    color: #1e3c18;
    font-size: 25px;
    font-weight: 900;
    line-height: 1.15;
    font-family: Georgia, "Times New Roman", serif;
}

.stb-category-card p {
    margin: 0 auto;
    max-width: 220px;
    color: #425466;
    font-size: 15.5px;
    font-weight: 500;
    line-height: 1.6;
}

/* Badge */
.stb-category-badge {
    width: fit-content;
    min-width: 156px;
    margin: 26px auto 0;
    padding: 11px 18px;
    border-radius: 999px;
    background: #f1f3e8;
    color: #426d20;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.stb-category-badge span {
    font-size: 15px;
}
.stb-badge-svg-icon {
    width: 27px;
    height: 25px;
    display: block;
    flex: 0 0 auto;
}

.stb-badge-svg-icon .leaf-fill {
    fill: currentColor;
}

.stb-badge-svg-icon .leaf-cut {
    fill: var(--badge-bg);
}
/* =========================================================
   Tablet
========================================================= */

@media (max-width: 1024px) {
    .stb-category-section {
        padding: 62px 16px 76px;
    }

    .stb-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
        max-width: 760px;
        margin: 0 auto;
    }

    .stb-category-card {
        min-height: 390px;
    }
}

/* =========================================================
   Mobile
========================================================= */

@media (max-width: 600px) {
    .stb-category-section {
        padding: 48px 12px 66px;
        background:
            radial-gradient(circle at top left, rgba(104, 156, 61, 0.11), transparent 32%),
            linear-gradient(180deg, #fffdf5 0%, #fbfff6 100%);
    }

    .stb-section-heading {
        margin-bottom: 28px;
    }

    .stb-leaf-divider {
        gap: 10px;
        margin-bottom: 12px;
    }

    .stb-leaf-divider span {
        width: 48px;
    }

    .stb-leaf-icon {
        width: 40px;
        height: 40px;
    }

    .stb-leaf-icon svg {
        width: 21px;
        height: 21px;
    }

    .stb-section-heading h2 {
        font-size: 34px;
        line-height: 1.05;
        letter-spacing: -0.8px;
    }

    .stb-section-heading p {
        max-width: 310px;
        margin-top: 12px;
        font-size: 14px;
        line-height: 1.55;
    }

    .stb-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .stb-category-card {
        min-height: auto;
        padding: 16px 10px 18px;
        border-radius: 18px;
    }

    .stb-category-image-wrap {
        width: 128px;
        height: 128px;
        margin-bottom: 28px;
    }

    .stb-category-image {
        border-width: 2px;
        box-shadow:
            0 8px 18px rgba(78, 125, 36, 0.16),
            0 0 0 5px rgba(78, 125, 36, 0.06);
    }

    .stb-category-mini-icon {
        width: 38px;
        height: 38px;
        bottom: -15px;
        border-width: 3px;
    }

    .stb-category-mini-icon svg {
        width: 27px;
        height: 27px;
    }

    .stb-category-card h3 {
        margin-bottom: 8px;
        font-size: 17px;
        line-height: 1.15;
    }

    .stb-category-card p {
        max-width: 138px;
        font-size: 11.5px;
        line-height: 1.45;
    }

    .stb-category-badge {
        min-width: auto;
        margin-top: 14px;
        padding: 8px 11px;
        gap: 5px;
        font-size: 10.5px;
    }

    .stb-category-badge span {
        font-size: 11px;
    }
}

/* Very Small Mobile */
@media (max-width: 380px) {
    .stb-category-grid {
        gap: 10px;
    }

    .stb-category-card {
        padding: 14px 8px 16px;
    }

    .stb-category-image-wrap {
        width: 116px;
        height: 116px;
    }

    .stb-category-card h3 {
        font-size: 16px;
    }

    .stb-category-card p {
        font-size: 11px;
    }

    .stb-category-badge {
        font-size: 10px;
        padding: 7px 9px;
    }
}
/*homepage categories end */


/* =========================================================
   Soil To Bowl - Fresh Vegetable Packages Section
========================================================= */

.stb-basket-section {
    position: relative;
    padding: 86px 18px 92px;
    background:
        radial-gradient(circle at top left, rgba(78, 125, 36, 0.10), transparent 30%),
        radial-gradient(circle at bottom right, rgba(232, 187, 49, 0.15), transparent 32%),
        linear-gradient(180deg, #fbfff6 0%, #fffdf5 100%);
    overflow: hidden;
}

.stb-basket-section::before,
.stb-basket-section::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.stb-basket-section::before {
    left: -100px;
    top: 90px;
    background: radial-gradient(circle, rgba(78, 125, 36, 0.13), transparent 68%);
}

.stb-basket-section::after {
    right: -110px;
    bottom: 40px;
    background: radial-gradient(circle, rgba(232, 187, 49, 0.16), transparent 68%);
}

.stb-basket-container {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
}

/* Heading */
.stb-basket-heading {
    text-align: center;
    margin-bottom: 48px;
}

.stb-basket-leaf-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 16px;
}

.stb-basket-leaf-line span {
    width: 84px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4E7D24, transparent);
}

.stb-basket-leaf-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    color: #4E7D24;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(78, 125, 36, 0.18);
    box-shadow:
        0 10px 28px rgba(78, 125, 36, 0.12),
        inset 0 1px 0 rgba(255,255,255,0.9);
}

.stb-basket-leaf-icon svg {
    width: 24px;
    height: 24px;
}

.stb-basket-heading h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4.3vw, 58px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -1.3px;
    color: #2e681f;
}

.stb-basket-heading h2 span {
    color: #3b2415;
}

.stb-basket-heading p {
    margin: 15px auto 0;
    max-width: 650px;
    color: #344054;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
}

/* Grid */
.stb-basket-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: center;
}

/* Card */
.stb-basket-card {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.97), rgba(255,253,245,0.97));
    border: 1px solid rgba(78, 125, 36, 0.18);
    border-radius: 26px;
    overflow: hidden;
    box-shadow:
        0 18px 42px rgba(16, 24, 40, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.95);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.stb-basket-card:hover {
    transform: translateY(-8px);
    border-color: rgba(78, 125, 36, 0.38);
    box-shadow:
        0 28px 60px rgba(78, 125, 36, 0.16),
        inset 0 1px 0 rgba(255,255,255,0.95);
}

/* Featured center card */
.stb-basket-featured {
    border: 2px solid rgba(78, 125, 36, 0.55);
    transform: translateY(-16px);
    box-shadow:
        0 28px 62px rgba(78, 125, 36, 0.18),
        inset 0 1px 0 rgba(255,255,255,0.96);
}

.stb-basket-featured:hover {
    transform: translateY(-24px);
}

.stb-basket-best-badge {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    padding: 9px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #6fae3e, #3f7b24);
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(78, 125, 36, 0.28);
    white-space: nowrap;
}

/* Image */
.stb-basket-image-box {
    position: relative;
    height: 230px;
    margin: 16px 16px 0;
    border-radius: 20px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 12px 14px 0;

    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.22), transparent 28%),
        linear-gradient(180deg, #edf7e6 0%, #f8fbf3 100%);
}

.stb-basket-image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    border-radius: 16px;
    display: block;
    transition: transform 0.35s ease;
}

.stb-basket-card:hover .stb-basket-image-box img {
    transform: scale(1.04);
}

@media (max-width: 767px) {
    .stb-basket-image-box {
        height: 205px;
        padding: 10px 10px 0;
    }

    .stb-basket-image-box img {
        object-fit: contain;
        object-position: center bottom;
    }
}

.stb-basket-card:hover .stb-basket-image-box img {
    transform: scale(1.045);
}

.stb-basket-tag {
    position: absolute;
    left: 14px;
    top: 14px;
    z-index: 2;
    padding: 8px 13px;
    border-radius: 8px;
    color: #ffffff;
    background: rgba(57, 112, 32, 0.95);
    font-size: 12px;
    font-weight: 850;
    box-shadow: 0 8px 16px rgba(0,0,0,0.14);
}

.stb-farm-fresh-badge {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.4), transparent 35%),
        linear-gradient(145deg, #f4e0a2, #d7a746);
    color: #3c260f;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.05;
    border: 3px solid rgba(255,255,255,0.9);
    box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}

/* Content */
.stb-basket-content {
    padding: 24px 24px 28px;
    text-align: center;
}

.stb-basket-card h3 {
    margin: 0;
    color: #1f4a16;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: 900;
    line-height: 1.15;
}

.stb-basket-subtitle {
    margin: 9px auto 18px;
    max-width: 260px;
    color: #344054;
    font-size: 14.5px;
    line-height: 1.5;
    font-weight: 500;
}

.stb-basket-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
}

.stb-basket-pills span {
    padding: 8px 12px;
    border-radius: 999px;
    background: #fbfaf1;
    border: 1px solid rgba(78, 125, 36, 0.14);
    color: #356720;
    font-size: 11.5px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

/* Price box */
.stb-basket-price-box {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    align-items: center;
    overflow: hidden;
    margin: 14px 0 18px;
    border-radius: 16px;
    background: linear-gradient(145deg, #fffdf5, #f4f7ec);
    border: 1px solid rgba(78, 125, 36, 0.14);
}

.stb-basket-price-box > div {
    padding: 14px 8px;
    min-height: 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stb-basket-price-box > div:not(:last-child) {
    border-right: 1px solid rgba(78, 125, 36, 0.14);
}

.stb-basket-price-box small {
    color: #667085;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
}

.stb-basket-price-box strong {
    margin-top: 5px;
    color: #344054;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
}

.stb-basket-main-price {
    background: linear-gradient(135deg, #6fae3e, #3f7b24);
}

.stb-basket-main-price small,
.stb-basket-main-price strong {
    color: #ffffff;
}

.stb-basket-main-price strong {
    font-size: 26px;
}

.stb-save-price {
    color: #d84b16 !important;
}

/* List */
.stb-basket-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    text-align: left;
}

.stb-basket-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 9px;
    color: #344054;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.35;
}

.stb-basket-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #4E7D24;
    font-weight: 900;
}

/* Button */
.stb-basket-btn {
    width: 100%;
    min-height: 48px;
    border-radius: 999px;
    background: linear-gradient(135deg, #6fae3e, #3f7b24);
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(78, 125, 36, 0.28);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.stb-basket-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(78, 125, 36, 0.36);
}

.stb-basket-btn span {
    font-size: 20px;
    line-height: 1;
}

/* Bottom info strip */
.stb-basket-bottom-info {
    margin: 38px auto 0;
    padding: 22px 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(78, 125, 36, 0.13);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    box-shadow:
        0 18px 40px rgba(16, 24, 40, 0.07),
        inset 0 1px 0 rgba(255,255,255,0.9);
}

.stb-basket-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 4px 22px;
}

.stb-basket-info-item:not(:last-child) {
    border-right: 1px solid rgba(78, 125, 36, 0.14);
}

.stb-info-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: linear-gradient(145deg, #6fae3e, #3f7b24);
    color: #ffffff; /* white icon */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(78, 125, 36, 0.25);
}

.stb-info-icon svg {
    width: 40px;
    height: 40px;
    display: block;
    color: #ffffff;
    stroke: currentColor;
}

.stb-basket-info-item h4 {
    margin: 0 0 4px;
    color: #26591a;
    font-size: 15px;
    font-weight: 900;
}

.stb-basket-info-item p {
    margin: 0;
    color: #344054;
    font-size: 13px;
    line-height: 1.35;
}

/* Mobile carousel controls */
.stb-basket-mobile-controls,
.stb-basket-dots {
    display: none;
}

/* =========================================================
   Tablet
========================================================= */

@media (max-width: 1024px) {
    .stb-basket-section {
        padding: 70px 16px 84px;
    }

    .stb-basket-grid {
        gap: 20px;
    }

    .stb-basket-image-box {
        height: 205px;
    }

    .stb-basket-card h3 {
        font-size: 23px;
    }

    .stb-basket-content {
        padding: 22px 18px 24px;
    }

    .stb-basket-main-price strong {
        font-size: 22px;
    }

    .stb-basket-bottom-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .stb-basket-info-item {
        border-right: none !important;
        padding: 0;
    }
}

/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767px) {
    .stb-basket-section {
        padding: 54px 0 78px;
    }

    .stb-basket-container {
        max-width: 100%;
    }

    .stb-basket-heading {
        padding: 0 18px;
        margin-bottom: 28px;
    }

    .stb-basket-leaf-line {
        margin-bottom: 12px;
    }

    .stb-basket-leaf-line span {
        width: 54px;
    }

    .stb-basket-leaf-icon {
        width: 42px;
        height: 42px;
    }

    .stb-basket-heading h2 {
        font-size: 36px;
        line-height: 1.05;
        letter-spacing: -0.8px;
    }

    .stb-basket-heading p {
        margin-top: 12px;
        max-width: 310px;
        font-size: 14.5px;
        line-height: 1.55;
    }

    .stb-basket-grid {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding: 6px 18px 20px;
        -webkit-overflow-scrolling: touch;
    }

    .stb-basket-grid::-webkit-scrollbar {
        display: none;
    }

    .stb-basket-card {
        flex: 0 0 86%;
        max-width: 360px;
        scroll-snap-align: center;
        border-radius: 24px;
    }

    .stb-basket-featured {
        transform: none;
    }

    .stb-basket-featured:hover {
        transform: none;
    }

    .stb-basket-card:hover {
        transform: none;
    }

    .stb-basket-image-box {
        height: 205px;
        margin: 14px 14px 0;
        border-radius: 18px;
    }

    .stb-basket-best-badge {
        top: 14px;
        font-size: 12px;
        padding: 8px 22px;
    }

    .stb-basket-content {
        padding: 20px 18px 22px;
    }

    .stb-basket-card h3 {
        font-size: 25px;
    }

    .stb-basket-subtitle {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .stb-basket-pills {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .stb-basket-pills span {
        padding: 9px 7px;
        font-size: 11px;
    }

    .stb-basket-price-box {
        margin-top: 16px;
    }

    .stb-basket-price-box strong {
        font-size: 15px;
    }

    .stb-basket-main-price strong {
        font-size: 23px;
    }

    .stb-basket-list {
        display: none;
    }

    .stb-basket-btn {
        min-height: 48px;
        margin-top: 6px;
    }

    .stb-basket-mobile-controls {
        display: block;
    }

    .stb-basket-arrow {
        position: absolute;
        top: 49%;
        transform: translateY(-50%);
        z-index: 5;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 3px solid rgba(255,255,255,0.9);
        background: linear-gradient(145deg, #6fae3e, #3f7b24);
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 12px 28px rgba(78, 125, 36, 0.28);
        cursor: pointer;
    }

    .stb-basket-arrow svg {
        width: 22px;
        height: 22px;
    }

    .stb-basket-prev {
        left: 8px;
    }

    .stb-basket-next {
        right: 8px;
    }

    .stb-basket-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 2px;
    }

    .stb-basket-dots button {
        width: 9px;
        height: 9px;
        padding: 0;
        border-radius: 50%;
        border: none;
        background: rgba(78, 125, 36, 0.20);
        cursor: pointer;
    }

    .stb-basket-dots button.active {
        width: 22px;
        border-radius: 999px;
        background: #4E7D24;
    }

    .stb-basket-bottom-info {
        margin: 34px 16px 0;
        padding: 18px;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 14px;
        border-radius: 22px;
    }

    .stb-basket-info-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .stb-info-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 21px;
    }

    .stb-basket-info-item h4 {
        font-size: 13px;
        margin-bottom: 3px;
    }

    .stb-basket-info-item p {
        font-size: 11.5px;
        line-height: 1.3;
    }
}

/* Small mobile */
@media (max-width: 380px) {
    .stb-basket-heading h2 {
        font-size: 32px;
    }

    .stb-basket-card {
        flex-basis: 88%;
    }

    .stb-basket-image-box {
        height: 188px;
    }

    .stb-basket-card h3 {
        font-size: 22px;
    }

    .stb-basket-pills span {
        font-size: 10.2px;
    }

    .stb-basket-main-price strong {
        font-size: 20px;
    }

    .stb-basket-arrow {
        width: 38px;
        height: 38px;
    }
}
.stb-price-duration {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 7px;
    padding: 4px 10px;

    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.2px;
    text-transform: uppercase;

    color: #3f7b24;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

/* =========================================================
   Vegetable Basket Mobile Price Crop Fix
========================================================= */

@media (max-width: 767px) {
    .stb-basket-price-box {
        width: 100%;
        grid-template-columns: 1fr 1.08fr 1fr;
        border-radius: 16px;
        overflow: hidden;
        margin: 16px 0 18px;
    }

    .stb-basket-price-box > div {
        min-width: 0;
        padding: 12px 4px;
        min-height: 74px;
        text-align: center;
    }

    .stb-basket-price-box small {
        font-size: 11px;
        line-height: 1.1;
        white-space: nowrap;
    }

    .stb-basket-price-box strong {
        font-size: 16px;
        line-height: 1.05;
        white-space: nowrap;
    }

    .stb-basket-main-price strong {
        font-size: 19.5px;
        line-height: 1;
    }

    .stb-save-price {
        font-size: 15px !important;
        white-space: nowrap;
    }

    .stb-price-duration {
        margin-top: 6px;
        padding: 4px 8px;
        font-size: 9px;
        max-width: 92px;
        white-space: nowrap;
    }
}

/* Extra small devices */
@media (max-width: 380px) {
    .stb-basket-price-box {
        grid-template-columns: 0.95fr 1.1fr 0.95fr;
    }

    .stb-basket-price-box > div {
        padding: 11px 3px;
    }

    .stb-basket-price-box small {
        font-size: 9.5px;
    }

    .stb-basket-price-box strong {
        font-size: 14px;
    }

    .stb-basket-main-price strong {
        font-size: 18px;
    }

    .stb-save-price {
        font-size: 13px !important;
    }

    .stb-price-duration {
        font-size: 8px;
        padding: 3px 7px;
    }
}

/* =========================================================
   Soil To Bowl - Dairy Products Section
========================================================= */

.stb-dairy-section {
    position: relative;
    padding: 86px 18px 92px;
    background:
        radial-gradient(circle at top left, rgba(230, 246, 218, 0.85), transparent 32%),
        radial-gradient(circle at bottom right, rgba(232, 187, 49, 0.13), transparent 34%),
        linear-gradient(180deg, #fffdf5 0%, #fbfff6 100%);
    overflow: hidden;
}

.stb-dairy-section::before {
    content: "";
    position: absolute;
    left: -80px;
    top: 90px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78, 125, 36, 0.11), transparent 68%);
    pointer-events: none;
}

.stb-dairy-section::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: 70px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 187, 49, 0.15), transparent 70%);
    pointer-events: none;
}

.stb-dairy-container {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
}

/* Heading */
.stb-dairy-heading {
    text-align: center;
    margin-bottom: 48px;
}

.stb-dairy-top-badge {
    width: fit-content;
    margin: 0 auto 16px;
    padding: 8px 18px;
    border-radius: 999px;
    background: #edf7e6;
    color: #3f7b24;
    border: 1px solid rgba(78, 125, 36, 0.14);
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.stb-dairy-heading h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4.5vw, 64px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1.4px;
    color: #3b2415;
}

.stb-dairy-heading h2 span {
    color: #2e681f;
}

.stb-dairy-heading p {
    margin: 14px auto 0;
    max-width: 650px;
    color: #344054;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
}

/* Grid */
.stb-dairy-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

/* Card */
.stb-dairy-card {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,253,246,0.98));
    border: 1px solid rgba(78, 125, 36, 0.17);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 18px 42px rgba(16, 24, 40, 0.075),
        inset 0 1px 0 rgba(255,255,255,0.95);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

.stb-dairy-card:hover {
    transform: translateY(-8px);
    border-color: rgba(78, 125, 36, 0.34);
    box-shadow:
        0 28px 60px rgba(78, 125, 36, 0.15),
        inset 0 1px 0 rgba(255,255,255,0.95);
}

.stb-dairy-image-box {
    position: relative;
    height: 245px;
    margin: 16px 16px 0;
    border-radius: 20px;
    overflow: hidden;
    background: #edf5e8;
    clip-path: inset(0 round 20px);
    -webkit-clip-path: inset(0 round 20px);
}

.stb-dairy-image-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
}

.stb-dairy-card:hover .stb-dairy-image-box img {
    transform: scale(1.045);
}

.stb-dairy-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 8px 13px;
    border-radius: 8px;
    background: linear-gradient(135deg, #65a83b, #3f7b24);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(38, 89, 26, 0.22);
}

.stb-dairy-icon {
    position: absolute;
    left: 50%;
    bottom: -26px;
    transform: translateX(-50%);
    z-index: 3;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.36), transparent 35%),
        linear-gradient(145deg, #6fae3e, #3f7b24);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #fffdf5;
    box-shadow: 0 12px 26px rgba(78, 125, 36, 0.28);
}

.stb-dairy-icon svg {
    width: 36px;
    height: 90px;
    display: block;
}

/* Content */
.stb-dairy-content {
    padding: 42px 22px 26px;
    text-align: center;
}

.stb-dairy-content h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: #1f4a16;
    font-size: 25px;
    font-weight: 900;
    line-height: 1.15;
}

.stb-dairy-content p {
    margin: 13px auto 18px;
    max-width: 240px;
    color: #344054;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 500;
}

.stb-dairy-tags {
    min-height: 30px;
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-bottom: 22px;
}

.stb-dairy-tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
    line-height: 1;
    padding: 3px 10px;
    border-radius: 999px;
    background: #eef2e8;
    color: #3f7624;
    font-size: 10px;
    font-weight: 700;
}

.stb-dairy-btn {
    min-width: 150px;
    min-height: 42px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1.5px solid #4E7D24;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 900;
    background: linear-gradient(135deg, #6fae3e, #3f7b24);
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.stb-dairy-btn:hover {
    background: linear-gradient(135deg, #6fae3e, #3f7b24);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(78, 125, 36, 0.25);
}

/* Benefits Strip */
.stb-dairy-benefits {
    margin: 38px auto 0;
    padding: 22px 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255, 255, 255, 0.80);
    border: 1px solid rgba(78, 125, 36, 0.13);
    border-radius: 22px;
    backdrop-filter: blur(12px);
    box-shadow:
        0 18px 42px rgba(16, 24, 40, 0.07),
        inset 0 1px 0 rgba(255,255,255,0.9);
}

.stb-dairy-benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 22px;
}

.stb-dairy-benefit-item:not(:last-child) {
    border-right: 1px solid rgba(78, 125, 36, 0.14);
}

.stb-dairy-benefit-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.34), transparent 34%),
        linear-gradient(145deg, #6fae3e, #3f7b24);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(78, 125, 36, 0.25);
}

.stb-dairy-benefit-icon svg {
    width: 40px;
    height: 40px;
    display: block;
}

.stb-dairy-benefit-item h4 {
    margin: 0 0 5px;
    color: #26591a;
    font-size: 15px;
    font-weight: 900;
}

.stb-dairy-benefit-item p {
    margin: 0;
    color: #344054;
    font-size: 13px;
    line-height: 1.35;
}

/* CTA Banner */
.stb-dairy-cta {
    position: relative;
    margin-top: 34px;
    min-height: 170px;
    border-radius: 24px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(238, 248, 229, 0.96) 0%, rgba(238, 248, 229, 0.82) 46%, rgba(238, 248, 229, 0.20) 100%),
        url("/frontend/assets/theme/dist/img/dairy-products/dairy-banner-desktop.webp") center right / cover no-repeat;
    border: 1px solid rgba(78, 125, 36, 0.15);
    box-shadow:
        0 18px 42px rgba(16, 24, 40, 0.07),
        inset 0 1px 0 rgba(255,255,255,0.9);
}

.stb-dairy-cta::before {
    content: "";
    position: absolute;
    left: -70px;
    bottom: -80px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255,255,255,0.78), transparent 70%);
    border-radius: 50%;
}

.stb-dairy-cta-content {
    position: relative;
    z-index: 2;
    max-width: 540px;
    padding: 34px 42px;
}

.stb-dairy-cta-kicker {
    display: block;
    margin-bottom: 5px;
    color: #2f681d;
    font-size: 20px;
    font-weight: 900;
    font-family: Georgia, "Times New Roman", serif;
}

.stb-dairy-cta h3 {
    margin: 0;
    color: #3b2415;
    font-size: 34px;
    line-height: 1.12;
    font-weight: 900;
    font-family: Georgia, "Times New Roman", serif;
}

.stb-dairy-cta p {
    margin: 12px 0 20px;
    color: #344054;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
}

.stb-dairy-cta-btn {
    min-height: 44px;
    padding: 0 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #6fae3e, #3f7b24);
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(78, 125, 36, 0.28);
}

/* Mobile Controls */
.stb-dairy-mobile-controls,
.stb-dairy-dots {
    display: none;
}

/* =========================================================
   Tablet
========================================================= */

@media (max-width: 1024px) {
    .stb-dairy-section {
        padding: 74px 16px 86px;
    }

    .stb-dairy-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 760px;
        margin: 0 auto;
    }

    .stb-dairy-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .stb-dairy-benefit-item {
        border-right: none !important;
        padding: 0;
    }
}

/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767px) {
    .stb-dairy-section {
        padding: 56px 0 82px;
    }

    .stb-dairy-container {
        max-width: 100%;
    }

    .stb-dairy-heading {
        padding: 0 18px;
        margin-bottom: 30px;
    }

    .stb-dairy-top-badge {
        font-size: 12px;
        padding: 7px 14px;
        margin-bottom: 13px;
    }

    .stb-dairy-heading h2 {
        font-size: 38px;
        line-height: 1.05;
        letter-spacing: -0.8px;
    }

    .stb-dairy-heading p {
        max-width: 310px;
        font-size: 14.5px;
        line-height: 1.55;
    }

    .stb-dairy-grid {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding: 6px 18px 20px;
        -webkit-overflow-scrolling: touch;
    }

    .stb-dairy-grid::-webkit-scrollbar {
        display: none;
    }

    .stb-dairy-card {
        flex: 0 0 84%;
        max-width: 350px;
        scroll-snap-align: center;
        border-radius: 24px;
    }

    .stb-dairy-card:hover {
        transform: none;
    }

    .stb-dairy-image-box {
        height: 220px;
        margin: 14px 14px 0;
        border-radius: 18px;
        clip-path: inset(0 round 18px);
        -webkit-clip-path: inset(0 round 18px);
    }

    .stb-dairy-card-badge {
        font-size: 11px;
        padding: 7px 11px;
    }

    .stb-dairy-icon {
        width: 54px;
        height: 54px;
        bottom: -25px;
    }

    .stb-dairy-icon svg {
        width: 24px;
        height: 24px;
    }

    .stb-dairy-content {
        padding: 40px 18px 24px;
    }

    .stb-dairy-content h3 {
        font-size: 25px;
    }

    .stb-dairy-content p {
        max-width: 250px;
        font-size: 13.5px;
    }

    .stb-dairy-tags {
        min-height: auto;
        gap: 6px;
    }

    .stb-dairy-tags span {
        font-size: 10px;
        padding: 7px 9px;
    }

    .stb-dairy-mobile-controls {
        display: block;
    }

    .stb-dairy-arrow {
        position: absolute;
        top: 47%;
        transform: translateY(-50%);
        z-index: 5;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 3px solid rgba(255,255,255,0.9);
        background: linear-gradient(145deg, #6fae3e, #3f7b24);
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 12px 28px rgba(78, 125, 36, 0.28);
        cursor: pointer;
    }

    .stb-dairy-arrow svg {
        width: 22px;
        height: 22px;
    }

    .stb-dairy-prev {
        left: 8px;
    }

    .stb-dairy-next {
        right: 8px;
    }

    .stb-dairy-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 2px;
    }

    .stb-dairy-dots button {
        width: 9px;
        height: 9px;
        padding: 0;
        border: none;
        border-radius: 50%;
        background: rgba(78, 125, 36, 0.20);
        cursor: pointer;
    }

    .stb-dairy-dots button.active {
        width: 22px;
        border-radius: 999px;
        background: #4E7D24;
    }

    .stb-dairy-benefits {
        margin: 34px 16px 0;
        padding: 18px;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 14px;
        border-radius: 22px;
    }

    .stb-dairy-benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .stb-dairy-benefit-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }

    .stb-dairy-benefit-icon svg {
        width: 40px;
        height: 35px;
    }

    .stb-dairy-benefit-item h4 {
        font-size: 13px;
        margin-bottom: 3px;
    }

    .stb-dairy-benefit-item p {
        font-size: 11.5px;
        line-height: 1.3;
    }

    .stb-dairy-cta {
        margin: 28px 16px 0;
        min-height: 230px;
        border-radius: 22px;
        background:
            linear-gradient(180deg, rgba(238, 248, 229, 0.98) 0%, rgba(238, 248, 229, 0.88) 52%, rgba(238, 248, 229, 0.25) 100%),
            url("/frontend/assets/theme/dist/img/dairy-products/dairy-banner-mobile.webp") center bottom / cover no-repeat;
    }

    .stb-dairy-cta-content {
        padding: 24px 20px;
        max-width: 100%;
    }

    .stb-dairy-cta-kicker {
        font-size: 17px;
    }

    .stb-dairy-cta h3 {
        font-size: 26px;
    }

    .stb-dairy-cta p {
        font-size: 13.5px;
        max-width: 260px;
    }

    .stb-dairy-cta-btn {
        min-height: 42px;
        padding: 0 18px;
        font-size: 12.5px;
    }
}

/* Small Mobile */
@media (max-width: 380px) {
    .stb-dairy-heading h2 {
        font-size: 34px;
    }

    .stb-dairy-card {
        flex-basis: 86%;
    }

    .stb-dairy-image-box {
        height: 198px;
    }

    .stb-dairy-content h3 {
        font-size: 23px;
    }

    .stb-dairy-tags span {
        font-size: 9.5px;
    }

    .stb-dairy-arrow {
        width: 38px;
        height: 38px;
    }
}
/* =========================================================
   Dairy Card Icon Crop Fix
========================================================= */

.stb-dairy-card .stb-dairy-image-box {
    overflow: visible !important;
    clip-path: none !important;
    -webkit-clip-path: none !important;
    isolation: visible !important;
}

/* Image rounded rahe, but icon crop na ho */
.stb-dairy-card .stb-dairy-image-box img {
    border-radius: 20px !important;
    clip-path: inset(0 round 20px);
    -webkit-clip-path: inset(0 round 20px);
}

/* Icon full visible */
.stb-dairy-card .stb-dairy-icon {
    bottom: -29px !important;
    z-index: 10 !important;
}

/* Content ko thoda neeche push karo so icon ke saath overlap na ho */
.stb-dairy-card .stb-dairy-content {
    padding-top: 48px !important;
}

/* Mobile fix */
@media (max-width: 767px) {
    .stb-dairy-card .stb-dairy-image-box img {
        border-radius: 18px !important;
        clip-path: inset(0 round 18px);
        -webkit-clip-path: inset(0 round 18px);
    }

    .stb-dairy-card .stb-dairy-icon {
        bottom: -27px !important;
    }

    .stb-dairy-card .stb-dairy-content {
        padding-top: 46px !important;
    }
}

/* =========================================================
   Soil To Bowl - Mustard Oil Section Final CSS
========================================================= */

.stb-mustard-section {
    position: relative;
    padding: 86px 18px 92px;
    background:
        radial-gradient(circle at top left, rgba(232, 187, 49, 0.13), transparent 32%),
        radial-gradient(circle at bottom right, rgba(78, 125, 36, 0.12), transparent 34%),
        linear-gradient(180deg, #fffdf5 0%, #fbfff6 100%);
    overflow: hidden;
}

.stb-mustard-container {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Heading */
.stb-mustard-heading {
    text-align: center;
    margin-bottom: 42px;
}

.stb-mustard-badge {
    width: fit-content;
    margin: 0 auto 15px;
    padding: 8px 18px;
    border-radius: 999px;
    background: #fffaf0;
    border: 1px solid rgba(78, 125, 36, 0.18);
    color: #2f681d;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.stb-mustard-heading h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4.7vw, 66px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -1.4px;
    color: #2e681f;
}

.stb-mustard-heading h2 span {
    color: #3b2415;
}

.stb-mustard-heading-line {
    margin: 13px auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
}

.stb-mustard-heading-line span {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4E7D24, transparent);
}

.stb-mustard-heading-line i {
    font-style: normal;
    font-size: 18px;
}

.stb-mustard-heading p {
    margin: 0 auto;
    max-width: 690px;
    color: #344054;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.6;
}

/* Main Layout */
.stb-mustard-main {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 34px;
    align-items: flex-start;
}

/* Left Main Image */
.stb-mustard-image-box {
    height: 520px;
    border-radius: 26px;
    overflow: hidden;
    background: #fff8e8;
    border: 1px solid rgba(78, 125, 36, 0.15);
    box-shadow:
        0 20px 48px rgba(16, 24, 40, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.9);
}

.stb-mustard-image-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

/* Right Content */
.stb-mustard-content {
    display: flex;
    flex-direction: column;
}

/* Benefit List */
.stb-mustard-benefit-list {
    display: grid;
    gap: 15px;
    padding-bottom: 18px;
    border-bottom: 1px dashed rgba(78, 125, 36, 0.25);
}

.stb-mustard-benefit {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 13px;
    align-items: flex-start;
}

.stb-mustard-check {
    width: 28px;
    height: 28px;
    margin-top: 2px;
    border-radius: 50%;
    background: linear-gradient(145deg, #6fae3e, #3f7b24);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(78, 125, 36, 0.22);
}

.stb-mustard-check svg {
    width: 15px;
    height: 15px;
}

.stb-mustard-benefit h3 {
    margin: 0 0 3px;
    color: #1f4a16;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.15;
}

.stb-mustard-benefit p {
    margin: 0;
    color: #344054;
    font-size: 13.2px;
    line-height: 1.35;
    font-weight: 500;
}

/* Pack Sizes */
.stb-pack-size-box {
    margin-top: 18px;
    padding: 18px 16px 17px;
    border-radius: 20px;
    background: rgba(255, 253, 245, 0.92);
    border: 1px solid rgba(78, 125, 36, 0.16);
    box-shadow:
        0 16px 36px rgba(16, 24, 40, 0.06),
        inset 0 1px 0 rgba(255,255,255,0.95);
}

.stb-pack-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 13px;
}

.stb-pack-title span {
    width: 44px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #b38b28, transparent);
}

.stb-pack-title h3 {
    margin: 0;
    color: #416b20;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}

.stb-pack-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.stb-pack-card {
    position: relative;
    min-height: 178px;
    padding: 14px 10px 13px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(78, 125, 36, 0.14);
    text-align: center;
    box-shadow: 0 8px 18px rgba(16, 24, 40, 0.05);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.stb-pack-card:hover {
    transform: translateY(-4px);
    border-color: rgba(78, 125, 36, 0.35);
    box-shadow: 0 14px 28px rgba(78, 125, 36, 0.12);
}

.stb-pack-popular {
    border: 1.5px solid rgba(78, 125, 36, 0.48);
    background: linear-gradient(180deg, #ffffff, #fbfff6);
}

.stb-pack-popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #6fae3e, #3f7b24);
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(78, 125, 36, 0.22);
}

.stb-pack-img {
    height: 165px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 9px;
}

.stb-pack-img img {
    width: auto;
    max-width: 92%;
    max-height: 165px;
    object-fit: contain;
    display: block;
}
.stb-pack-card h4 {
    margin: 0 0 3px;
    color: #1f4a16;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.1;
}

.stb-pack-card p {
    margin: 0;
    color: #344054;
    font-size: 12px;
    font-weight: 600;
}

/* Tags */
.stb-mustard-tags {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
}

.stb-mustard-tags span {
    padding: 8px 12px;
    border-radius: 999px;
    background: #fffaf0;
    border: 1px solid rgba(78, 125, 36, 0.13);
    color: #356720;
    font-size: 11.5px;
    font-weight: 850;
    line-height: 1;
}

/* Bottom Feature Strip */
.stb-mustard-bottom-features {
    margin-top: 36px;
    padding: 22px 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(78, 125, 36, 0.13);
    border-radius: 22px;
    backdrop-filter: blur(12px);
    box-shadow:
        0 18px 42px rgba(16, 24, 40, 0.07),
        inset 0 1px 0 rgba(255,255,255,0.9);
}

.stb-mustard-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 22px;
}

.stb-mustard-feature-item:not(:last-child) {
    border-right: 1px solid rgba(78, 125, 36, 0.14);
}

.stb-mustard-feature-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
    background: #fffaf0;
    border: 1px solid rgba(78, 125, 36, 0.16);
    color: #3f7b24;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.stb-mustard-feature-icon svg {
    width: 26px;
    height: 26px;
}

.stb-mustard-feature-item h4 {
    margin: 0 0 5px;
    color: #26591a;
    font-size: 15px;
    font-weight: 900;
}

.stb-mustard-feature-item p {
    margin: 0;
    color: #344054;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 500;
}

/* =========================================================
   Tablet
========================================================= */

@media (max-width: 1024px) {
    .stb-mustard-section {
        padding: 74px 16px 86px;
    }

    .stb-mustard-main {
        grid-template-columns: 1fr;
        max-width: 760px;
        margin: 0 auto;
    }

    .stb-mustard-image-box {
        height: 430px;
    }

    .stb-mustard-bottom-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .stb-mustard-feature-item {
        border-right: none;
        padding: 0;
    }
}

/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767px) {
    .stb-mustard-section {
        padding: 56px 12px 82px;
    }

    .stb-mustard-heading {
        margin-bottom: 30px;
    }

    .stb-mustard-badge {
        font-size: 12px;
        padding: 7px 14px;
    }

    .stb-mustard-heading h2 {
        font-size: 38px;
        letter-spacing: -0.8px;
    }

    .stb-mustard-heading-line span {
        width: 48px;
    }

    .stb-mustard-heading p {
        max-width: 310px;
        font-size: 14.5px;
    }

    .stb-mustard-main {
        gap: 22px;
    }

    .stb-mustard-image-box {
        height: 300px;
        border-radius: 22px;
    }

    .stb-mustard-benefit-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding-bottom: 20px;
    }

    .stb-mustard-benefit {
        display: block;
        text-align: center;
        padding: 13px 8px;
        border-radius: 16px;
        background: rgba(255,255,255,0.74);
        border: 1px solid rgba(78, 125, 36, 0.12);
    }

    .stb-mustard-check {
        width: 38px;
        height: 38px;
        margin: 0 auto 8px;
    }

    .stb-mustard-check svg {
        width: 18px;
        height: 18px;
    }

    .stb-mustard-benefit h3 {
        font-size: 10.5px;
        margin-bottom: 4px;
    }

    .stb-mustard-benefit p {
        display: none;
    }

    .stb-pack-size-box {
        margin-top: 22px;
        padding: 18px 12px 16px;
        border-radius: 20px;
    }

    .stb-pack-title h3 {
        font-size: 18px;
    }

    .stb-pack-title span {
        width: 32px;
    }

    .stb-pack-grid {
        gap: 10px;
    }

    .stb-pack-card {
        min-height: 152px;
        padding: 12px 7px 10px;
        border-radius: 14px;
    }

    .stb-pack-img {
        height: 110px;
        margin-bottom: 8px;
    }

    .stb-pack-img img {
        max-height: 90px;
        max-width: 100%;
    }

    .stb-pack-card h4 {
        font-size: 13.5px;
    }

    .stb-pack-card p {
        font-size: 10.8px;
    }

    .stb-pack-popular-badge {
        font-size: 8.5px;
        padding: 4px 10px;
    }

    .stb-mustard-tags {
        gap: 7px;
    }

    .stb-mustard-tags span {
        font-size: 10.5px;
        padding: 8px 10px;
    }

    .stb-mustard-enquiry {
        padding: 15px;
        border-radius: 18px;
    }

    .stb-mustard-enquiry-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }

    .stb-mustard-enquiry-icon svg {
        width: 22px;
        height: 22px;
    }

    .stb-mustard-enquiry-text h3 {
        font-size: 16px;
    }

    .stb-mustard-enquiry-text p {
        font-size: 12.5px;
    }

    .stb-mustard-actions {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .stb-mustard-btn {
        min-height: 46px;
        font-size: 13px;
    }

    .stb-mustard-bottom-features {
        margin-top: 28px;
        padding: 18px;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 14px;
        border-radius: 22px;
    }

    .stb-mustard-feature-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .stb-mustard-feature-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }

    .stb-mustard-feature-icon svg {
        width: 22px;
        height: 22px;
    }

    .stb-mustard-feature-item h4 {
        font-size: 13px;
        margin-bottom: 3px;
    }

    .stb-mustard-feature-item p {
        font-size: 11.5px;
    }
}

/* Small Mobile */
@media (max-width: 380px) {
    .stb-mustard-heading h2 {
        font-size: 34px;
    }

    .stb-mustard-image-box {
        height: 255px;
    }

     .stb-pack-card {
        min-height: 140px;
    }

    .stb-pack-img {
        height: 110px;
    }

    .stb-pack-img img {
        max-height: 110px;
    }

    .stb-pack-card h4 {
        font-size: 12px;
    }

    .stb-pack-card p {
        font-size: 10px;
    }
}
/* Compact Know More Button */
.stb-mustard-compact-action {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.stb-mustard-know-btn {
    min-height: 46px;
    min-width: 190px;
    padding: 0 28px;
    border-radius: 999px;

    background: linear-gradient(135deg, #6fae3e, #3f7b24);
    color: #ffffff;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    font-size: 14px;
    font-weight: 900;

    box-shadow: 0 12px 26px rgba(78, 125, 36, 0.26);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stb-mustard-know-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(78, 125, 36, 0.34);
}

.stb-mustard-know-btn span {
    font-size: 18px;
    line-height: 1;
}
@media (max-width: 767px) {
    .stb-mustard-compact-action {
        margin-top: 16px;
    }

    .stb-mustard-know-btn {
        width: 100%;
        min-height: 46px;
        font-size: 13.5px;
    }
}

/* =========================================================
   Soil To Bowl - Pure Honey Section
========================================================= */

.stb-honey-section {
    position: relative;
    padding: 86px 18px 92px;
    background:
        radial-gradient(circle at top left, rgba(245, 174, 35, 0.10), transparent 32%),
        radial-gradient(circle at bottom right, rgba(78, 125, 36, 0.10), transparent 34%),
        linear-gradient(180deg, #fbfff6 0%, #fffdf5 100%);
    overflow: hidden;
}

.stb-honey-container {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}


    .stb-honey-panel {
    position: relative;
    overflow: hidden;
    padding: 68px 56px 38px;
    border-radius: 30px;

    background-image:
        linear-gradient(
            110deg,
            rgba(255, 255, 255, 0.78) 0%,
            rgba(255, 250, 238, 0.58) 42%,
            rgba(255, 244, 218, 0.30) 100%
        ),
        url("/frontend/assets/theme/dist/img/honey/desktop-bg.webp");

    background-size:
        100% 100%,
        100% 100%;

    background-position:
        center,
        center;

    background-repeat:
        no-repeat,
        no-repeat;

    border: 1px solid rgba(171, 122, 20, 0.18);
    box-shadow:
        0 24px 64px rgba(16, 24, 40, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.94);
}

/* Honeycomb texture */
.stb-honey-panel::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    width: 210px;
    height: 210px;
    opacity: 0.28;
    background-image:
        linear-gradient(30deg, rgba(214, 147, 21, 0.45) 12%, transparent 12.5%, transparent 87%, rgba(214, 147, 21, 0.45) 87.5%, rgba(214, 147, 21, 0.45)),
        linear-gradient(150deg, rgba(214, 147, 21, 0.45) 12%, transparent 12.5%, transparent 87%, rgba(214, 147, 21, 0.45) 87.5%, rgba(214, 147, 21, 0.45)),
        linear-gradient(30deg, rgba(214, 147, 21, 0.45) 12%, transparent 12.5%, transparent 87%, rgba(214, 147, 21, 0.45) 87.5%, rgba(214, 147, 21, 0.45)),
        linear-gradient(150deg, rgba(214, 147, 21, 0.45) 12%, transparent 12.5%, transparent 87%, rgba(214, 147, 21, 0.45) 87.5%, rgba(214, 147, 21, 0.45)),
        linear-gradient(60deg, rgba(214, 147, 21, 0.35) 25%, transparent 25.5%, transparent 75%, rgba(214, 147, 21, 0.35) 75%, rgba(214, 147, 21, 0.35)),
        linear-gradient(60deg, rgba(214, 147, 21, 0.35) 25%, transparent 25.5%, transparent 75%, rgba(214, 147, 21, 0.35) 75%, rgba(214, 147, 21, 0.35));
    background-position: 0 0, 0 0, 18px 32px, 18px 32px, 0 0, 18px 32px;
    background-size: 36px 64px;
    pointer-events: none;
}

.stb-honey-panel::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -90px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 174, 35, 0.16), transparent 68%);
    pointer-events: none;
}

/* Bees */
.stb-honey-bee {
    position: absolute;
    z-index: 3;
    font-size: 24px;
    filter: drop-shadow(0 8px 12px rgba(78, 55, 20, 0.15));
    pointer-events: none;
}

.stb-honey-bee-one {
    left: 92px;
    top: 92px;
    transform: rotate(-18deg);
}

.stb-honey-bee-two {
    right: 260px;
    top: 70px;
    transform: rotate(12deg);
}

.stb-honey-bee-three {
    left: 52%;
    top: 275px;
    transform: rotate(-8deg);
}

/* Hero */
.stb-honey-hero {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    align-items: center;
    gap: 28px;
}

.stb-honey-left {
    max-width: 470px;
}

.stb-honey-badge {
    width: fit-content;
    margin-bottom: 18px;
    padding: 10px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff6db, #f7d58d);
    color: #6f4912;
    border: 1px solid rgba(196, 132, 23, 0.20);
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    box-shadow: 0 10px 24px rgba(196, 132, 23, 0.13);
}

.stb-honey-badge span {
    width: 20px;
    height: 20px;
    color: #d09015;
    display: inline-flex;
}

.stb-honey-badge svg {
    width: 20px;
    height: 20px;
}

.stb-honey-left h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: #2e681f;
    font-size: clamp(56px, 6vw, 60px);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -2.4px;
}

.stb-honey-left h2 span {
    display: block;
    color: #3b2415;
}

.stb-honey-title-line {
    margin: 24px 0 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.stb-honey-title-line span {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, #4E7D24, transparent);
}

.stb-honey-title-line i {
    font-style: normal;
    font-size: 16px;
}

.stb-honey-subtitle {
    margin: 0;
    max-width: 360px;
    color: #3b2b1c;
    font-size: 17px;
    line-height: 1.55;
    font-weight: 600;
}

/* Mini features */
.stb-honey-mini-features {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    width: min(680px, 100%);
}

.stb-honey-mini-item {
    text-align: center;
}

.stb-honey-mini-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 12px;
    clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(210, 143, 20, 0.42);
    color: #c98712;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 12px 26px rgba(196, 132, 23, 0.10),
        inset 0 1px 0 rgba(255,255,255,0.9);
}

.stb-honey-mini-icon svg {
    width: 31px;
    height: 31px;
}

.stb-honey-mini-item span {
    display: block;
    color: #3b2b1c;
    font-size: 13px;
    font-weight: 700;
}

/* Product Image */
.stb-honey-product-visual {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.stb-honey-product-visual::before {
    content: "";
    position: absolute;
    right: 42px;
    bottom: 8px;
    width: 78%;
    height: 48%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 174, 35, 0.20), transparent 68%);
    filter: blur(10px);
}

.stb-honey-product-visual img {
    position: relative;
    z-index: 2;
    width: min(640px, 100%);
    height: auto;
    display: block;
    filter: drop-shadow(0 28px 34px rgba(104, 65, 12, 0.20));
}

/* Middle */
.stb-honey-middle {
    position: relative;
    z-index: 2;
    margin-top: 34px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 42px;
    align-items: center;
}

.stb-honey-pack-box {
    min-width: 0;
}

.stb-honey-pack-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 22px;
}

.stb-honey-pack-title span {
    width: 116px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #b98316, transparent);
}

.stb-honey-pack-title h3 {
    margin: 0;
    color: #3f7b24;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.stb-honey-pack-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.stb-honey-pack-card {
    position: relative;
    min-height: 142px;
    padding: 18px 22px;
    border-radius: 20px;
    background: rgba(255,255,255,0.76);
    border: 1px solid rgba(196, 132, 23, 0.22);
    text-decoration: none;
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 18px;
    align-items: center;
    color: inherit;
    box-shadow:
        0 14px 32px rgba(16, 24, 40, 0.06),
        inset 0 1px 0 rgba(255,255,255,0.9);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.stb-honey-pack-card:hover {
    transform: translateY(-4px);
    border-color: rgba(196, 132, 23, 0.40);
    box-shadow:
        0 20px 42px rgba(196, 132, 23, 0.13),
        inset 0 1px 0 rgba(255,255,255,0.95);
}

.stb-honey-pack-card::before {
    content: "";
    position: absolute;
    left: -14px;
    bottom: -18px;
    width: 74px;
    height: 74px;
    opacity: 0.22;
    background-image:
        linear-gradient(30deg, #d69315 12%, transparent 12.5%, transparent 87%, #d69315 87.5%, #d69315),
        linear-gradient(150deg, #d69315 12%, transparent 12.5%, transparent 87%, #d69315 87.5%, #d69315),
        linear-gradient(30deg, #d69315 12%, transparent 12.5%, transparent 87%, #d69315 87.5%, #d69315),
        linear-gradient(150deg, #d69315 12%, transparent 12.5%, transparent 87%, #d69315 87.5%, #d69315),
        linear-gradient(60deg, #d69315 25%, transparent 25.5%, transparent 75%, #d69315 75%, #d69315),
        linear-gradient(60deg, #d69315 25%, transparent 25.5%, transparent 75%, #d69315 75%, #d69315);
    background-position: 0 0, 0 0, 12px 21px, 12px 21px, 0 0, 12px 21px;
    background-size: 24px 42px;
    pointer-events: none;
}

.stb-honey-pack-img {
    height: 106px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stb-honey-pack-img img {
    /*max-width: 100%; */
    max-height: 270px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 12px 18px rgba(104, 65, 12, 0.15));
}

.stb-honey-pack-content h4 {
    margin: 0 0 8px;
    color: #3f7b24;
    font-size: 24px;
    font-weight: 900;
    font-family: Georgia, "Times New Roman", serif;
}

.stb-honey-pack-content p {
    margin: 0;
    color: #3b2b1c;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
}

.stb-honey-pack-content i {
    display: block;
    margin-top: 10px;
    color: #d09015;
    font-size: 18px;
    font-style: normal;
}

/* CTA */
.stb-honey-cta-card {
    position: relative;
    padding: 34px 34px 30px;
    border-left: 1px solid rgba(196, 132, 23, 0.25);
    text-align: center;
}

.stb-honey-cta-bee {
    font-size: 28px;
    margin-bottom: 10px;
}

.stb-honey-cta-card h3 {
    margin: 0;
    color: #3b2b1c;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 600;
}

.stb-honey-cta-card h3 span {
    color: #3f7b24;
    font-weight: 900;
}

.stb-honey-btn {
    width: fit-content;
    min-width: 210px;
    min-height: 54px;
    margin: 26px auto 15px;
    padding: 0 28px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.35), transparent 30%),
        linear-gradient(135deg, #edae2f, #c9820d);
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 17px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(196, 132, 23, 0.32);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stb-honey-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(196, 132, 23, 0.40);
}

.stb-honey-btn span {
    width: 36px;
    height: 36px;
    margin-right: -16px;
    border-radius: 50%;
    background: #ffffff;
    color: #c9820d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.stb-honey-cta-card p {
    margin: 0;
    color: #3f7b24;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.stb-honey-cta-card p svg {
    width: 18px;
    height: 18px;
}

/* Bottom features */
.stb-honey-bottom-features {
    position: relative;
    z-index: 2;
    margin-top: 38px;
    padding: 24px 28px;
    border-radius: 22px;
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(196, 132, 23, 0.18);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    box-shadow:
        0 16px 36px rgba(16, 24, 40, 0.06),
        inset 0 1px 0 rgba(255,255,255,0.95);
}

.stb-honey-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 22px;
}

.stb-honey-feature-item:not(:last-child) {
    border-right: 1px solid rgba(196, 132, 23, 0.20);
}

.stb-honey-feature-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
    background: #fff8e8;
    border: 1px solid rgba(196, 132, 23, 0.22);
    color: #c98712;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stb-honey-feature-icon svg {
    width: 45px;
    height: 45px;
}

.stb-honey-feature-item h4 {
    margin: 0 0 5px;
    color: #3f7b24;
    font-size: 15px;
    font-weight: 900;
}

.stb-honey-feature-item p {
    margin: 0;
    color: #344054;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 500;
}

/* =========================================================
   Tablet
========================================================= */

@media (max-width: 1024px) {
    .stb-honey-section {
        padding: 74px 16px 86px;
    }

    .stb-honey-panel {
        padding: 58px 32px 34px;
    }

    .stb-honey-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stb-honey-left {
        max-width: 100%;
        margin: 0 auto;
    }

    .stb-honey-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .stb-honey-title-line {
        justify-content: center;
    }

    .stb-honey-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .stb-honey-mini-features {
        margin-left: auto;
        margin-right: auto;
    }

    .stb-honey-product-visual {
        min-height: auto;
        justify-content: center;
    }

    .stb-honey-product-visual img {
        width: min(620px, 100%);
    }

    .stb-honey-middle {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .stb-honey-cta-card {
        border-left: none;
        border-top: 1px solid rgba(196, 132, 23, 0.22);
    }

    .stb-honey-bottom-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .stb-honey-feature-item {
        border-right: none !important;
        padding: 0;
    }
    .stb-honey-pack-img img {
    max-height: 210px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(rgba(104, 65, 12, 0.15) 0px 12px 18px);
}
}

/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767px) {
    .stb-honey-panel {
        padding: 28px 14px 22px;
        border-radius: 26px;

        background-image:
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.74) 0%,
                rgba(255, 250, 238, 0.50) 48%,
                rgba(255, 244, 218, 0.24) 100%
            ),
            url("/frontend/assets/theme/dist/img/honey/mobile-bg.webp");

        background-size:
            100% 100%,
            100% 100%;

        background-position:
            center,
            center;

        background-repeat:
            no-repeat,
            no-repeat;
    }


    .stb-honey-panel::before {
        left: auto;
        right: -10px;
        top: -10px;
        width: 150px;
        height: 150px;
        opacity: 0.26;
    }

    .stb-honey-bee-one {
        left: 20px;
        top: 82px;
        font-size: 19px;
    }

    .stb-honey-bee-two,
    .stb-honey-bee-three {
        display: none;
    }

    .stb-honey-hero {
        gap: 20px;
    }

    .stb-honey-badge {
        margin-top: 12px;
        margin-bottom: 14px;
        padding: 8px 15px;
        font-size: 10.5px;
        letter-spacing: 0.7px;
    }

    .stb-honey-left h2 {
        font-size: 52px;
        line-height: 0.94;
        letter-spacing: -1.2px;
    }

    .stb-honey-title-line {
        margin: 15px 0 12px;
    }

    .stb-honey-title-line span {
        width: 54px;
    }

    .stb-honey-subtitle {
        max-width: 300px;
        font-size: 14px;
        line-height: 1.5;
    }

    .stb-honey-product-visual img {
        width: 100%;
        max-width: 360px;
    }

    .stb-honey-product-visual::before {
        width: 92%;
        right: 4%;
        bottom: 0;
    }

    .stb-honey-mini-features {
        margin-top: 18px;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .stb-honey-mini-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 8px;
    }

    .stb-honey-mini-icon svg {
        width: 26px;
        height: 26px;
    }

    .stb-honey-mini-item span {
        font-size: 11px;
        line-height: 1.25;
    }

    .stb-honey-middle {
        margin-top: 24px;
        gap: 22px;
    }

    .stb-honey-pack-title {
        gap: 10px;
        margin-bottom: 15px;
    }

    .stb-honey-pack-title span {
        width: 46px;
    }

    .stb-honey-pack-title h3 {
        font-size: 14px;
    }

    .stb-honey-pack-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stb-honey-pack-card {
        min-height: 98px;
        padding: 12px 14px;
        border-radius: 16px;
        grid-template-columns: 82px 1fr 26px;
        gap: 12px;
    }

    .stb-honey-pack-card::after {
        content: "›";
        width: 26px;
        height: 26px;
        border-radius: 50%;
        border: 1px solid rgba(196, 132, 23, 0.30);
        color: #c98712;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        line-height: 1;
    }

    .stb-honey-pack-img {
        height: 76px;
    }

    .stb-honey-pack-img img {
        max-height: 125px;
    }

    .stb-honey-pack-content h4 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .stb-honey-pack-content p {
        font-size: 12px;
        line-height: 1.35;
    }

    .stb-honey-pack-content i {
        display: none;
    }

    .stb-honey-cta-card {
        padding: 6px 10px 4px;
        border-top: none;
    }

    .stb-honey-cta-bee {
        display: none;
    }

    .stb-honey-cta-card h3 {
        display: none;
    }

    .stb-honey-btn {
        width: 100%;
        min-height: 52px;
        margin: 0 auto 12px;
        font-size: 16px;
    }

    .stb-honey-cta-card p {
        font-size: 12px;
    }

    .stb-honey-bottom-features {
        margin-top: 20px;
        padding: 16px;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 12px;
        border-radius: 20px;
    }

    .stb-honey-feature-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .stb-honey-feature-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }

    .stb-honey-feature-icon svg {
        width: 40px;
        height: 40px;
    }

    .stb-honey-feature-item h4 {
        font-size: 13px;
        margin-bottom: 3px;
    }

    .stb-honey-feature-item p {
        font-size: 11.2px;
        line-height: 1.3;
    }
}

/* Small Mobile */
@media (max-width: 380px) {
    .stb-honey-left h2 {
        font-size: 46px;
    }

    .stb-honey-mini-icon {
        width: 50px;
        height: 50px;
    }

    .stb-honey-mini-icon svg {
        width: 23px;
        height: 23px;
    }

    .stb-honey-mini-item span {
        font-size: 10px;
    }

    .stb-honey-pack-card {
        grid-template-columns: 72px 1fr 24px;
    }

    .stb-honey-pack-img {
        height: 68px;
    }

    .stb-honey-pack-img img {
        max-height: 125px;
    }

    .stb-honey-pack-content h4 {
        font-size: 18px;
    }
}


/*  best seller animation badge vegetables */
/* Best Seller Pulse Badge */
.stb-best-seller-pulse {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 5;

    width: 86px;
    height: 86px;
    border-radius: 50%;

    background: linear-gradient(145deg, #f4c85a, #c78617);
    color: #3b2415;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;

    font-size: 14px;
    font-weight: 900;
    line-height: 1.05;
    text-align: center;

    border: 4px solid #fffdf5;
    box-shadow:
        0 14px 30px rgba(196, 132, 23, 0.35),
        inset 0 1px 0 rgba(255,255,255,0.55);

    animation: stbBestSellerFloat 2.6s ease-in-out infinite;
}

.stb-best-seller-pulse span {
    font-size: 15px;
    line-height: 1;
}

/* Outer pulse ring */
.stb-best-seller-pulse::before,
.stb-best-seller-pulse::after {
    content: "";
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 2px solid rgba(244, 200, 90, 0.75);
    animation: stbBestSellerPulse 2.1s ease-out infinite;
    pointer-events: none;
}

.stb-best-seller-pulse::after {
    animation-delay: 1.05s;
}

/* Soft shine */
.stb-best-seller-pulse::selection {
    background: transparent;
}

@keyframes stbBestSellerPulse {
    0% {
        transform: scale(0.88);
        opacity: 0.8;
    }

    70% {
        transform: scale(1.28);
        opacity: 0;
    }

    100% {
        transform: scale(1.28);
        opacity: 0;
    }
}

@keyframes stbBestSellerFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-4px) scale(1.03);
    }
}

/* Tablet Best Seller Pulse Badge */
@media (min-width: 768px) and (max-width: 1024px) {
    .stb-best-seller-pulse {
        width: 62px;
        height: 62px;
        right: 7px;
        bottom: 14px;

        font-size: 13px;
        line-height: 1.05;
        border-width: 3.5px;

        box-shadow:
            0 12px 26px rgba(196, 132, 23, 0.32),
            inset 0 1px 0 rgba(255,255,255,0.55);
    }

    .stb-best-seller-pulse span {
        font-size: 14px;
    }

    .stb-best-seller-pulse::before,
    .stb-best-seller-pulse::after {
        inset: -6px;
        border-width: 2px;
    }
}

@media (max-width: 767px) {
    .stb-best-seller-pulse {
        width: 60px;
        height: 60px;
        right: 12px;
        bottom: 12px;

        font-size: 11px;
        border-width: 3px;
    }

    .stb-best-seller-pulse span {
        font-size: 13px;
    }

    .stb-best-seller-pulse::before,
    .stb-best-seller-pulse::after {
        inset: -5px;
    }
}
/*  best seller animation badge vegetables end */

/* =========================================================
   Soil To Bowl - Why Choose Section
========================================================= */

.stb-why-section {
    position: relative;
    padding: 86px 18px 92px;
    background:
        radial-gradient(circle at top left, rgba(78, 125, 36, 0.09), transparent 32%),
        radial-gradient(circle at bottom right, rgba(232, 187, 49, 0.12), transparent 34%),
        linear-gradient(180deg, #fffdf5 0%, #fbfff6 100%);
    overflow: hidden;
}

.stb-why-container {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stb-why-panel {
    position: relative;
    display: grid;
    grid-template-columns: 390px 1fr;
    gap: 42px;
    align-items: center;

    padding: 38px 44px;
    border-radius: 30px;

    background:
        linear-gradient(120deg, rgba(255,255,255,0.94) 0%, rgba(255,252,242,0.84) 52%, rgba(245,250,238,0.80) 100%),
        url("/frontend/assets/theme/dist/img/why-choose/why-bg.jpg") center / cover no-repeat;

    border: 1px solid rgba(78, 125, 36, 0.16);
    box-shadow:
        0 24px 64px rgba(16, 24, 40, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.94);
    overflow: hidden;
}

/* subtle farm illustration */
.stb-why-panel::after {
    content: "";
    position: absolute;
    right: 50px;
    top: 96px;
    width: 300px;
    height: 150px;
    opacity: 0.11;
    background: url("/frontend/assets/theme/dist/img/why-choose/farm-line-art.png") center / contain no-repeat;
    pointer-events: none;
}

.stb-why-leaf {
    position: absolute;
    z-index: 2;
    font-size: 52px;
    opacity: 0.75;
    pointer-events: none;
    filter: drop-shadow(0 8px 14px rgba(78, 125, 36, 0.12));
}

.stb-why-leaf-left {
    left: -4px;
    top: 18px;
    transform: rotate(-18deg);
}

.stb-why-leaf-right {
    right: 2px;
    bottom: 42px;
    transform: rotate(18deg);
}

/* Left Image */
.stb-why-image-wrap {
    position: relative;
    z-index: 3;
}

.stb-why-image-card {
    position: relative;
    height: 500px;
    border-radius: 34px 110px 34px 34px;
    overflow: hidden;
    border: 1px solid rgba(196, 132, 23, 0.28);
    box-shadow: 0 22px 44px rgba(16, 24, 40, 0.13);
    background: #eef7e8;
}

.stb-why-image-card::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 28px 96px 28px 28px;
    border: 1px solid rgba(255, 255, 255, 0.70);
    pointer-events: none;
}

.stb-why-image-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.stb-why-image-badge {
    position: absolute;
    left: 28px;
    bottom: 30px;
    width: 132px;
    height: 132px;
    border-radius: 50%;

    background: rgba(255, 253, 232, 0.94);
    border: 2px dashed #4E7D24;
    color: #2e681f;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    box-shadow: 0 16px 34px rgba(16, 24, 40, 0.16);
    text-align: center;
}

.stb-why-image-badge span,
.stb-why-image-badge em {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-style: normal;
    color: #b37a17;
    line-height: 1;
}

.stb-why-image-badge strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    line-height: 1.02;
    font-weight: 900;
}

/* Content */
.stb-why-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.stb-why-heading {
    max-width: 680px;
    margin: 0 auto 28px;
}

.stb-why-badge {
    width: fit-content;
    margin: 0 auto 12px;
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff8dd, #f6e6b5);
    border: 1px solid rgba(196, 132, 23, 0.22);
    color: #6f4912;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 26px rgba(196, 132, 23, 0.12);
}

.stb-why-heading h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: #2e681f;
    font-size: clamp(42px, 4.5vw, 66px);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -1.6px;
}

.stb-why-heading h2 span {
    display: block;
    color: #3b2415;
}

.stb-why-title-line {
    margin: 18px auto 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.stb-why-title-line span {
    width: 90px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4E7D24, transparent);
}

.stb-why-title-line i {
    font-style: normal;
    font-size: 18px;
}

.stb-why-heading p {
    margin: 0 auto;
    max-width: 560px;
    color: #273244;
    font-size: 17px;
    line-height: 1.55;
    font-weight: 600;
}

/* Cards */
.stb-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stb-why-card {
    position: relative;
    min-height: 245px;
    padding: 26px 18px 22px;
    border-radius: 20px;
    background: rgba(255,255,255,0.80);
    border: 1px solid rgba(196, 132, 23, 0.18);
    box-shadow:
        0 16px 34px rgba(16, 24, 40, 0.07),
        inset 0 1px 0 rgba(255,255,255,0.95);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.stb-why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(78, 125, 36, 0.28);
    box-shadow:
        0 22px 46px rgba(78, 125, 36, 0.13),
        inset 0 1px 0 rgba(255,255,255,0.95);
}

.stb-why-card::after {
    content: "🌿";
    position: absolute;
    right: 16px;
    bottom: 14px;
    opacity: 0.16;
    font-size: 28px;
    pointer-events: none;
}

.stb-why-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.34), transparent 36%),
        linear-gradient(145deg, #6fae3e, #3f7b24);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid rgba(231, 241, 220, 0.95);
    box-shadow:
        0 14px 28px rgba(78, 125, 36, 0.26),
        inset 0 1px 0 rgba(255,255,255,0.35);
}

.stb-why-icon svg {
    width: 38px;
    height: 38px;
    display: block;
}

.stb-why-card h3 {
    margin: 0 0 10px;
    color: #234f18;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    line-height: 1.12;
    font-weight: 900;
}

.stb-why-card p {
    margin: 0;
    color: #2f3645;
    font-size: 14px;
    line-height: 1.48;
    font-weight: 500;
}

.stb-why-card-line {
    margin: 18px auto 0;
    width: 70px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196, 132, 23, 0.65), transparent);
    position: relative;
}

.stb-why-card-line span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: #d08a12;
}

/* CTA */
.stb-why-action {
    margin-top: 24px;
}

.stb-why-btn {
    min-width: 310px;
    min-height: 52px;
    padding: 0 16px 0 32px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.18), transparent 34%),
        linear-gradient(135deg, #5fa437, #2f721d);
    color: #ffffff;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    font-size: 16px;
    font-weight: 900;
    box-shadow:
        0 14px 30px rgba(78, 125, 36, 0.28),
        inset 0 1px 0 rgba(255,255,255,0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stb-why-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 18px 40px rgba(78, 125, 36, 0.36),
        inset 0 1px 0 rgba(255,255,255,0.25);
}

.stb-why-btn span {
    width: 38px;
    height: 38px;
    margin-right: -7px;
    border-radius: 50%;
    background: #ffffff;
    color: #3f7b24;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* =========================================================
   Tablet Layout
========================================================= */

@media (max-width: 1024px) {
    .stb-why-section {
        padding: 74px 16px 86px;
    }

    .stb-why-panel {
        grid-template-columns: 250px 1fr;
        gap: 28px;
        padding: 30px;
        border-radius: 26px;
    }

    .stb-why-panel::after {
        right: 26px;
        top: 76px;
        width: 250px;
        height: 125px;
    }

    .stb-why-image-card {
        height: 310px;
        border-radius: 28px 80px 28px 28px;
    }

    .stb-why-image-card::after {
        border-radius: 22px 68px 22px 22px;
    }

    .stb-why-image-badge {
        width: 92px;
        height: 92px;
        left: 16px;
        bottom: 18px;
    }

    .stb-why-image-badge span,
    .stb-why-image-badge em {
        font-size: 12px;
    }

    .stb-why-image-badge strong {
        font-size: 22px;
    }

    .stb-why-heading {
        margin-bottom: 20px;
    }

    .stb-why-heading h2 {
        font-size: 38px;
    }

    .stb-why-heading p {
        max-width: 520px;
        font-size: 14.5px;
    }

    .stb-why-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .stb-why-card {
        min-height: 150px;
        padding: 18px 12px 15px;
        border-radius: 16px;
    }

    .stb-why-icon {
        width: 54px;
        height: 54px;
        border-width: 4px;
        margin-bottom: 10px;
    }

    .stb-why-icon svg {
        width: 28px;
        height: 28px;
    }

    .stb-why-card h3 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .stb-why-card p {
        font-size: 11.5px;
        line-height: 1.35;
    }

    .stb-why-card-line {
        display: none;
    }

    .stb-why-action {
        margin-top: 18px;
    }

    .stb-why-btn {
        min-width: 280px;
        min-height: 46px;
        font-size: 14px;
    }

    .stb-why-btn span {
        width: 34px;
        height: 34px;
    }
}

/* =========================================================
   Mobile Layout - 2x2 USP Grid
========================================================= */

@media (max-width: 767px) {
    .stb-why-section {
        padding: 56px 12px 82px;
    }

    .stb-why-panel {
        display: block;
        padding: 26px 14px 22px;
        border-radius: 26px;
        background:
            linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,252,242,0.86) 55%, rgba(245,250,238,0.84) 100%),
            url("/frontend/assets/theme/dist/img/why-choose/why-bg-mobile.jpg") center / cover no-repeat;
    }

    .stb-why-panel::after {
        display: none;
    }

    .stb-why-leaf-left {
        left: -14px;
        top: 160px;
        font-size: 46px;
    }

    .stb-why-leaf-right {
        right: -13px;
        bottom: 70px;
        font-size: 46px;
    }

    .stb-why-content {
        display: flex;
        flex-direction: column;
    }

    .stb-why-heading {
        margin-bottom: 22px;
    }

    .stb-why-badge {
        padding: 8px 16px;
        font-size: 12px;
        letter-spacing: 1.2px;
        margin-bottom: 13px;
    }

    .stb-why-heading h2 {
        font-size: 42px;
        line-height: 0.98;
        letter-spacing: -1px;
    }

    .stb-why-title-line {
        margin: 16px auto 13px;
    }

    .stb-why-title-line span {
        width: 62px;
    }

    .stb-why-heading p {
        max-width: 330px;
        font-size: 15px;
        line-height: 1.5;
    }

    .stb-why-image-wrap {
        margin: 0 0 22px;
    }

    .stb-why-image-card {
        height: 100%;
        border-radius: 22px;
    }

    .stb-why-image-card::after {
        inset: 8px;
        border-radius: 18px;
    }

    .stb-why-image-card img {
        object-position: center;
    }

    .stb-why-image-badge {
        width: 98px;
        height: 98px;
        left: 14px;
        bottom: 14px;
    }

    .stb-why-image-badge span,
    .stb-why-image-badge em {
        font-size: 12px;
    }

    .stb-why-image-badge strong {
        font-size: 23px;
    }

    .stb-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stb-why-card {
        min-height: 210px;
        padding: 18px 12px 16px;
        border-radius: 18px;
    }

    .stb-why-card:hover {
        transform: none;
    }

    .stb-why-icon {
        width: 62px;
        height: 62px;
        border-width: 4px;
        margin-bottom: 12px;
    }

    .stb-why-icon svg {
        width: 31px;
        height: 31px;
    }

    .stb-why-card h3 {
        font-size: 17px;
        line-height: 1.14;
        margin-bottom: 8px;
    }

    .stb-why-card p {
        font-size: 12.5px;
        line-height: 1.38;
    }

    .stb-why-card-line {
        display: none;
    }

    .stb-why-action {
        margin-top: 20px;
    }

    .stb-why-btn {
        width: 100%;
        min-width: 0;
        min-height: 52px;
        padding: 0 10px 0 24px;
        font-size: 15px;
        gap: 14px;
    }

    .stb-why-btn span {
        width: 38px;
        height: 38px;
        margin-right: -4px;
    }
}

/* Small Mobile */
@media (max-width: 380px) {
    .stb-why-heading h2 {
        font-size: 37px;
    }

    .stb-why-heading p {
        font-size: 14px;
    }

    .stb-why-image-card {
        height: 100%;
    }

    .stb-why-grid {
        gap: 10px;
    }

    .stb-why-card {
        min-height: 190px;
        padding: 16px 9px 14px;
    }

    .stb-why-icon {
        width: 54px;
        height: 54px;
    }

    .stb-why-icon svg {
        width: 27px;
        height: 27px;
    }

    .stb-why-card h3 {
        font-size: 15px;
    }

    .stb-why-card p {
        font-size: 11.5px;
    }
}


/* =========================================================
   Soil To Bowl - Delivery Cities Section
========================================================= */

.stb-city-section {
    position: relative;
    padding: 86px 18px 92px;
    background:
        radial-gradient(circle at top left, rgba(78, 125, 36, 0.10), transparent 32%),
        radial-gradient(circle at bottom right, rgba(232, 187, 49, 0.13), transparent 34%),
        linear-gradient(180deg, #fbfff6 0%, #fffdf5 100%);
    overflow: hidden;
}

.stb-city-container {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stb-city-panel {
    position: relative;
    padding: 48px;
    border-radius: 30px;
    overflow: hidden;

    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 42px;
    align-items: center;

    background-image:
        linear-gradient(
            120deg,
            rgba(255, 255, 255, 0.88) 0%,
            rgba(255, 252, 242, 0.78) 48%,
            rgba(245, 250, 238, 0.70) 100%
        ),
        url("/frontend/assets/theme/dist/img/delivery-cities/city-bg.webp");

    background-size:
        100% 100%,
        cover;

    background-position:
        center,
        center;

    background-repeat:
        no-repeat,
        no-repeat;

    border: 1px solid rgba(78, 125, 36, 0.16);
    box-shadow:
        0 24px 64px rgba(16, 24, 40, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.94);
}



.stb-city-panel::after {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -90px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78, 125, 36, 0.12), transparent 70%);
    pointer-events: none;
}

.stb-city-leaf {
    position: absolute;
    z-index: 2;
    font-size: 52px;
    opacity: 0.70;
    pointer-events: none;
    filter: drop-shadow(0 8px 14px rgba(78, 125, 36, 0.12));
}

.stb-city-leaf-one {
    left: -8px;
    top: 28px;
    transform: rotate(-18deg);
}

.stb-city-leaf-two {
    right: -6px;
    bottom: 82px;
    transform: rotate(18deg);
}

/* Left Content */
.stb-city-content {
    position: relative;
    z-index: 3;
}

.stb-city-badge {
    width: fit-content;
    margin-bottom: 16px;
    padding: 9px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff8dd, #f6e6b5);
    border: 1px solid rgba(196, 132, 23, 0.22);
    color: #6f4912;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    box-shadow: 0 12px 26px rgba(196, 132, 23, 0.12);
}

.stb-city-content h2 {
    margin: 0;
    max-width: 500px;
    font-family: Georgia, "Times New Roman", serif;
    color: #2e681f;
    font-size: clamp(42px, 4.6vw, 64px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -1.5px;
}

.stb-city-content h2 span {
    display: block;
    color: #3b2415;
}

.stb-city-title-line {
    margin: 20px 0 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.stb-city-title-line span {
    width: 90px;
    height: 1px;
    background: linear-gradient(90deg, #4E7D24, transparent);
}

.stb-city-title-line i {
    font-style: normal;
    font-size: 18px;
}

.stb-city-content p {
    margin: 0;
    max-width: 470px;
    color: #273244;
    font-size: 16.5px;
    line-height: 1.6;
    font-weight: 600;
}

.stb-city-points {
    margin-top: 26px;
    display: grid;
    gap: 12px;
}

.stb-city-point {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stb-city-point-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: linear-gradient(145deg, #6fae3e, #3f7b24);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(78, 125, 36, 0.22);
}

.stb-city-point span {
    color: #263345;
    font-size: 14.5px;
    font-weight: 800;
}

/* City Cards */
.stb-city-card-area {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.stb-city-card {
    position: relative;
    min-height: 310px;
    padding: 26px 24px 24px;
    border-radius: 24px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(196, 132, 23, 0.18);
    box-shadow:
        0 16px 34px rgba(16, 24, 40, 0.07),
        inset 0 1px 0 rgba(255,255,255,0.95);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.stb-city-card:hover {
    transform: translateY(-6px);
    border-color: rgba(78, 125, 36, 0.30);
    box-shadow:
        0 22px 46px rgba(78, 125, 36, 0.13),
        inset 0 1px 0 rgba(255,255,255,0.95);
}

.stb-city-card::after {
    content: "🌿";
    position: absolute;
    right: 18px;
    bottom: 16px;
    opacity: 0.14;
    font-size: 34px;
    pointer-events: none;
}

.stb-city-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 22px;
}

.stb-city-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.34), transparent 36%),
        linear-gradient(145deg, #6fae3e, #3f7b24);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid rgba(231, 241, 220, 0.95);
    box-shadow:
        0 14px 28px rgba(78, 125, 36, 0.26),
        inset 0 1px 0 rgba(255,255,255,0.35);
}

.stb-city-icon svg {
    width: 35px;
    height: 35px;
    display: block;
}

.stb-city-status {
    padding: 8px 13px;
    border-radius: 999px;
    background: #edf7e6;
    color: #2f681d;
    border: 1px solid rgba(78, 125, 36, 0.16);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.stb-city-card h3 {
    margin: 0 0 12px;
    color: #234f18;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    line-height: 1;
    font-weight: 900;
}

.stb-city-card p {
    margin: 0;
    color: #2f3645;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

.stb-city-products {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.stb-city-products span {
    padding: 8px 11px;
    border-radius: 999px;
    background: #fffaf0;
    border: 1px solid rgba(196, 132, 23, 0.16);
    color: #356720;
    font-size: 11px;
    font-weight: 850;
    line-height: 1;
}

/* Bottom Strip */
.stb-city-bottom {
    grid-column: 1 / -1;
    position: relative;
    z-index: 3;
    margin-top: 10px;
    padding: 20px 24px;
    border-radius: 22px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(78, 125, 36, 0.13);
    box-shadow:
        0 16px 34px rgba(16, 24, 40, 0.06),
        inset 0 1px 0 rgba(255,255,255,0.95);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.stb-city-bottom h3 {
    margin: 0 0 4px;
    color: #3b2415;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 900;
}

.stb-city-bottom p {
    margin: 0;
    color: #344054;
    font-size: 14px;
    font-weight: 600;
}

.stb-city-btn {
    min-height: 46px;
    min-width: 190px;
    padding: 0 16px 0 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #5fa437, #2f721d);
    color: #ffffff;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    font-size: 13.5px;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(78, 125, 36, 0.26);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
}

.stb-city-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(78, 125, 36, 0.34);
}

.stb-city-btn span {
    width: 32px;
    height: 32px;
    margin-right: -7px;
    border-radius: 50%;
    background: #ffffff;
    color: #3f7b24;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

/* =========================================================
   Tablet
========================================================= */

@media (max-width: 1024px) {
    .stb-city-section {
        padding: 74px 16px 86px;
    }

    .stb-city-panel {
        padding: 34px 28px;
        grid-template-columns: 1fr;
        gap: 30px;
        border-radius: 26px;
        text-align: center;
    }

    .stb-city-panel::before {
        right: 30px;
        top: 34px;
        width: 260px;
        height: 130px;
    }

    .stb-city-badge,
    .stb-city-title-line {
        margin-left: auto;
        margin-right: auto;
    }

    .stb-city-title-line {
        justify-content: center;
    }

    .stb-city-title-line span {
        background: linear-gradient(90deg, transparent, #4E7D24, transparent);
    }

    .stb-city-content h2,
    .stb-city-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .stb-city-points {
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .stb-city-point {
        justify-content: center;
        padding: 12px;
        border-radius: 16px;
        background: rgba(255,255,255,0.72);
        border: 1px solid rgba(78, 125, 36, 0.12);
    }

    .stb-city-card-area {
        max-width: 760px;
        margin: 0 auto;
    }

    .stb-city-card {
        min-height: 280px;
    }

    .stb-city-bottom {
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767px) {
    .stb-city-section {
        padding: 56px 12px 82px;
    }

    .stb-city-panel {
        padding: 26px 14px 20px;
        border-radius: 26px;
        background:
            linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,252,242,0.88) 55%, rgba(245,250,238,0.86) 100%),
            url("/frontend/assets/theme/dist/img/delivery-cities/city-bg-mobile.jpg") center / cover no-repeat;
    }

    .stb-city-panel::before {
        display: none;
    }

    .stb-city-leaf-one {
        left: -14px;
        top: 110px;
        font-size: 44px;
    }

    .stb-city-leaf-two {
        right: -14px;
        bottom: 92px;
        font-size: 44px;
    }

    .stb-city-badge {
        padding: 8px 15px;
        font-size: 11.5px;
        margin-bottom: 14px;
    }

    .stb-city-content h2 {
        font-size: 40px;
        line-height: 1;
        letter-spacing: -1px;
    }

    .stb-city-title-line {
        margin: 16px auto 13px;
    }

    .stb-city-title-line span {
        width: 58px;
    }

    .stb-city-content p {
        max-width: 330px;
        font-size: 14.5px;
        line-height: 1.52;
    }

    .stb-city-points {
        margin-top: 20px;
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .stb-city-point {
        justify-content: flex-start;
        text-align: left;
        padding: 11px 13px;
    }

    .stb-city-point-icon {
        width: 26px;
        height: 26px;
        min-width: 26px;
        font-size: 14px;
    }

    .stb-city-point span {
        font-size: 13.2px;
    }

    .stb-city-card-area {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .stb-city-card {
        min-height: auto;
        padding: 20px 18px 18px;
        border-radius: 20px;
        text-align: left;
    }

    .stb-city-card:hover {
        transform: none;
    }

    .stb-city-card-top {
        margin-bottom: 16px;
    }

    .stb-city-icon {
        width: 58px;
        height: 58px;
        min-width: 58px;
        border-width: 4px;
    }

    .stb-city-icon svg {
        width: 29px;
        height: 29px;
    }

    .stb-city-status {
        font-size: 10px;
        padding: 7px 11px;
    }

    .stb-city-card h3 {
        font-size: 32px;
        margin-bottom: 9px;
    }

    .stb-city-card p {
        font-size: 13.2px;
        line-height: 1.45;
    }

    .stb-city-products {
        margin-top: 15px;
        gap: 7px;
    }

    .stb-city-products span {
        font-size: 10.5px;
        padding: 7px 9px;
    }

    .stb-city-bottom {
        margin-top: 2px;
        padding: 18px 16px;
        border-radius: 20px;
        display: block;
        text-align: center;
    }

    .stb-city-bottom h3 {
        font-size: 22px;
    }

    .stb-city-bottom p {
        font-size: 13px;
        line-height: 1.4;
    }

    .stb-city-btn {
        width: 100%;
        margin-top: 15px;
        min-width: 0;
        min-height: 48px;
        font-size: 13px;
    }
}

/* Small Mobile */
@media (max-width: 380px) {
    .stb-city-content h2 {
        font-size: 36px;
    }

    .stb-city-content p {
        font-size: 13.5px;
    }

    .stb-city-card h3 {
        font-size: 29px;
    }

    .stb-city-products span {
        font-size: 9.8px;
    }
}

@media (max-width: 767px) {
    .stb-city-panel {
        background-image:
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.90) 0%,
                rgba(255, 252, 242, 0.78) 52%,
                rgba(245, 250, 238, 0.70) 100%
            ),
            url("/frontend/assets/theme/dist/img/delivery-cities/city-bg-mobile.webp");

        background-size:
            100% 100%,
            cover;

        background-position:
            center,
            center;

        background-repeat:
            no-repeat,
            no-repeat;
    }
}

/* =========================================================
   Soil To Bowl - Customer Reviews Section
========================================================= */

.stb-reviews-section {
    position: relative;
    padding: 86px 18px 92px;
    background:
        radial-gradient(circle at top left, rgba(78, 125, 36, 0.10), transparent 32%),
        radial-gradient(circle at bottom right, rgba(232, 187, 49, 0.12), transparent 34%),
        linear-gradient(180deg, #fffdf5 0%, #fbfff6 100%);
    overflow: hidden;
}

.stb-reviews-section::before {
    content: "❞";
    position: absolute;
    left: 4%;
    top: 70px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 170px;
    line-height: 1;
    color: rgba(78, 125, 36, 0.055);
    pointer-events: none;
}

.stb-reviews-section::after {
    content: "🌿";
    position: absolute;
    right: 4%;
    bottom: 68px;
    font-size: 90px;
    opacity: 0.10;
    pointer-events: none;
}

.stb-reviews-container {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Heading */
.stb-reviews-heading {
    text-align: center;
    margin-bottom: 42px;
}

.stb-reviews-badge {
    width: fit-content;
    margin: 0 auto 14px;
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff8dd, #f6e6b5);
    border: 1px solid rgba(196, 132, 23, 0.22);
    color: #6f4912;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 26px rgba(196, 132, 23, 0.12);
}

.stb-reviews-heading h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: #2e681f;
    font-size: clamp(40px, 4.8vw, 66px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -1.5px;
}

.stb-reviews-heading h2 span {
    color: #3b2415;
}

.stb-reviews-title-line {
    margin: 17px auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.stb-reviews-title-line span {
    width: 90px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4E7D24, transparent);
}

.stb-reviews-title-line i {
    font-style: normal;
    font-size: 18px;
}

.stb-reviews-heading p {
    margin: 0 auto;
    max-width: 720px;
    color: #273244;
    font-size: 16.5px;
    line-height: 1.6;
    font-weight: 600;
}

/* Main Layout */
.stb-reviews-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 28px;
    align-items: stretch;
}

/* Rating Card */
.stb-rating-card {
    position: relative;
    min-height: 420px;
    padding: 34px 28px;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.90), rgba(255,252,242,0.82)),
        url("/frontend/assets/theme/dist/img/reviews/reviews-bg.jpg") center / cover no-repeat;
    border: 1px solid rgba(78, 125, 36, 0.16);
    box-shadow:
        0 20px 50px rgba(16, 24, 40, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.95);
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.stb-rating-card::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 22px;
    border: 1px dashed rgba(196, 132, 23, 0.22);
    pointer-events: none;
}

.stb-rating-leaf {
    position: absolute;
    right: 20px;
    top: 18px;
    font-size: 34px;
    opacity: 0.18;
}

.stb-rating-icon {
    width: 86px;
    height: 86px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.34), transparent 36%),
        linear-gradient(145deg, #f2bd49, #c9820d);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 6px solid rgba(255, 247, 222, 0.95);
    box-shadow:
        0 14px 30px rgba(196, 132, 23, 0.30),
        inset 0 1px 0 rgba(255,255,255,0.35);
}

.stb-rating-icon svg {
    width: 42px;
    height: 42px;
}

.stb-rating-card h3 {
    margin: 0;
    color: #234f18;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 64px;
    line-height: 1;
    font-weight: 900;
}

.stb-rating-card h3 span {
    font-size: 28px;
    color: #3b2415;
}

.stb-rating-stars,
.stb-review-stars {
    color: #d08a12;
    letter-spacing: 2px;
    font-size: 18px;
    line-height: 1;
}

.stb-rating-stars {
    margin: 15px 0 14px;
}

.stb-rating-card p {
    margin: 0 auto;
    max-width: 210px;
    color: #344054;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
}

.stb-rating-tags {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.stb-rating-tags span {
    padding: 8px 11px;
    border-radius: 999px;
    background: #fffaf0;
    border: 1px solid rgba(196, 132, 23, 0.16);
    color: #356720;
    font-size: 11px;
    font-weight: 850;
    line-height: 1;
}

/* Review Cards */

/* =========================================================
   Soil To Bowl - Customer Reviews Section
   Fresh Final CSS with True Infinite Slider
========================================================= */

.stb-reviews-section {
    position: relative;
    padding: 86px 18px 92px;
    background:
        radial-gradient(circle at top left, rgba(78, 125, 36, 0.10), transparent 32%),
        radial-gradient(circle at bottom right, rgba(232, 187, 49, 0.12), transparent 34%),
        linear-gradient(180deg, #fffdf5 0%, #fbfff6 100%);
    overflow: hidden;
}

.stb-reviews-section::before {
    content: "❞";
    position: absolute;
    left: 4%;
    top: 70px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 170px;
    line-height: 1;
    color: rgba(78, 125, 36, 0.055);
    pointer-events: none;
}

.stb-reviews-section::after {
    content: "🌿";
    position: absolute;
    right: 4%;
    bottom: 68px;
    font-size: 90px;
    opacity: 0.10;
    pointer-events: none;
}

.stb-reviews-container {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* =========================================================
   Heading
========================================================= */

.stb-reviews-heading {
    text-align: center;
    margin-bottom: 42px;
}

.stb-reviews-badge {
    width: fit-content;
    margin: 0 auto 14px;
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff8dd, #f6e6b5);
    border: 1px solid rgba(196, 132, 23, 0.22);
    color: #6f4912;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 26px rgba(196, 132, 23, 0.12);
}

.stb-reviews-heading h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: #2e681f;
    font-size: clamp(40px, 4.8vw, 66px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -1.5px;
}

.stb-reviews-heading h2 span {
    color: #3b2415;
}

.stb-reviews-title-line {
    margin: 17px auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.stb-reviews-title-line span {
    width: 90px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4E7D24, transparent);
}

.stb-reviews-title-line i {
    font-style: normal;
    font-size: 18px;
}

.stb-reviews-heading p {
    margin: 0 auto;
    max-width: 720px;
    color: #273244;
    font-size: 16.5px;
    line-height: 1.6;
    font-weight: 600;
}

/* =========================================================
   Main Layout
========================================================= */

.stb-reviews-main {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 30px;
    align-items: stretch;
}

/* =========================================================
   Rating Card
========================================================= */

.stb-reviews-rating-card {
    position: relative;
    min-height: 420px;
    padding: 20px;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.90), rgba(255,252,242,0.82)),
        url("/frontend/assets/theme/dist/img/reviews/reviews-bg.jpg") center / cover no-repeat;
    border: 1px solid rgba(78, 125, 36, 0.16);
    box-shadow:
        0 20px 50px rgba(16, 24, 40, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.95);
    overflow: hidden;
}

.stb-reviews-rating-inner {
    height: 100%;
    min-height: 380px;
    border-radius: 22px;
    border: 1px dashed rgba(196, 132, 23, 0.24);
    padding: 32px 22px;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stb-reviews-rating-icon {
    width: 86px;
    height: 86px;
    margin-bottom: 20px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.34), transparent 36%),
        linear-gradient(145deg, #f2bd49, #c9820d);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 6px solid rgba(255, 247, 222, 0.95);
    box-shadow:
        0 14px 30px rgba(196, 132, 23, 0.30),
        inset 0 1px 0 rgba(255,255,255,0.35);
    font-size: 42px;
    line-height: 1;
}

.stb-reviews-rating-card h3 {
    margin: 0;
    color: #234f18;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 64px;
    line-height: 1;
    font-weight: 900;
}

.stb-reviews-rating-card h3 span {
    font-size: 28px;
    color: #3b2415;
}

.stb-reviews-stars {
    margin: 15px 0 14px;
    color: #d08a12;
    letter-spacing: 3px;
    font-size: 18px;
    line-height: 1;
}

.stb-reviews-rating-card p {
    margin: 0 auto;
    max-width: 220px;
    color: #344054;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
}

.stb-reviews-rating-tags {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.stb-reviews-rating-tags span {
    padding: 8px 11px;
    border-radius: 999px;
    background: #fffaf0;
    border: 1px solid rgba(196, 132, 23, 0.16);
    color: #356720;
    font-size: 11px;
    font-weight: 850;
    line-height: 1;
}

/* =========================================================
   Slider Area - True Infinite Transform Slider
========================================================= */

.stb-reviews-slider-area {
    position: relative;
    min-width: 0;
    padding: 0 20px;
    overflow: hidden;
}

.stb-reviews-track {
    display: flex;
    gap: 22px;
    overflow: visible;
    scroll-snap-type: none;
    scroll-behavior: auto;
    padding: 4px 0 18px;
    will-change: transform;
     touch-action: pan-y;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.stb-reviews-track.is-no-transition {
    transition: none !important;
}

/* =========================================================
   Review Card
========================================================= */

.stb-review-card {
    position: relative;
    flex: 0 0 calc((100% - 22px) / 2);
    min-width: calc((100% - 22px) / 2);
    max-width: calc((100% - 22px) / 2);
    min-height: 300px;

    padding: 28px 26px 24px;
    border-radius: 24px;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(196, 132, 23, 0.18);
    box-shadow:
        0 16px 34px rgba(16, 24, 40, 0.07),
        inset 0 1px 0 rgba(255,255,255,0.95);

    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.stb-review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(78, 125, 36, 0.30);
    box-shadow:
        0 22px 46px rgba(78, 125, 36, 0.13),
        inset 0 1px 0 rgba(255,255,255,0.95);
}

.stb-review-card::after {
    content: "🌿";
    position: absolute;
    right: 18px;
    bottom: 14px;
    opacity: 0.12;
    font-size: 32px;
    pointer-events: none;
}

.stb-review-quote {
    position: absolute;
    right: 22px;
    top: 8px;
    color: rgba(78, 125, 36, 0.10);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 90px;
    line-height: 1;
    pointer-events: none;
}

.stb-review-stars {
    position: relative;
    z-index: 2;
    margin-bottom: 16px;
    color: #d08a12;
    letter-spacing: 2px;
    font-size: 15px;
    line-height: 1;
}

.stb-review-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #2f3645;
    font-size: 15px;
    line-height: 1.58;
    font-weight: 600;
}

.stb-review-user {
    position: relative;
    z-index: 2;
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.stb-review-avatar {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.28), transparent 36%),
        linear-gradient(145deg, #6fae3e, #3f7b24);
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(78, 125, 36, 0.22);
}

.stb-review-user h4 {
    margin: 0 0 3px;
    color: #234f18;
    font-size: 15px;
    font-weight: 900;
}

.stb-review-user span {
    display: block;
    color: #7a5414;
    font-size: 12px;
    font-weight: 800;
}

/* =========================================================
   Arrows
========================================================= */

.stb-reviews-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.28), transparent 36%),
        linear-gradient(145deg, #6fae3e, #3f7b24);
    color: #ffffff;
    font-size: 34px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 14px 30px rgba(78, 125, 36, 0.28),
        inset 0 1px 0 rgba(255,255,255,0.30);

    transform: translateY(-50%);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.stb-reviews-arrow:hover {
    transform: translateY(-50%) scale(1.06);
    box-shadow:
        0 18px 40px rgba(78, 125, 36, 0.36),
        inset 0 1px 0 rgba(255,255,255,0.30);
}

.stb-reviews-prev {
    left: 0;
}

.stb-reviews-next {
    right: 0;
}

/* =========================================================
   Dots
========================================================= */

.stb-reviews-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 6px;
}

.stb-reviews-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(78, 125, 36, 0.24);
    cursor: pointer;
    transition:
        width 0.25s ease,
        background 0.25s ease;
}

.stb-reviews-dot.is-active {
    width: 24px;
    background: #4E7D24;
}

/* =========================================================
   Bottom CTA
========================================================= */

.stb-reviews-bottom {
    margin-top: 30px;
    padding: 20px 24px;
    border-radius: 22px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(78, 125, 36, 0.13);
    box-shadow:
        0 16px 34px rgba(16, 24, 40, 0.06),
        inset 0 1px 0 rgba(255,255,255,0.95);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.stb-reviews-bottom h3 {
    margin: 0 0 4px;
    color: #3b2415;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 900;
}

.stb-reviews-bottom p {
    margin: 0;
    color: #344054;
    font-size: 14px;
    font-weight: 600;
}

.stb-reviews-btn {
    min-height: 46px;
    min-width: 190px;
    padding: 0 16px 0 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #5fa437, #2f721d);
    color: #ffffff;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    font-size: 13.5px;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(78, 125, 36, 0.26);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
    white-space: nowrap;
}

.stb-reviews-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(78, 125, 36, 0.34);
}

.stb-reviews-btn span {
    width: 32px;
    height: 32px;
    margin-right: -7px;
    border-radius: 50%;
    background: #ffffff;
    color: #3f7b24;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

/* =========================================================
   Tablet
========================================================= */

@media (max-width: 1024px) {
    .stb-reviews-section {
        padding: 74px 16px 86px;
    }

    .stb-reviews-main {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 820px;
        margin: 0 auto;
    }

    .stb-reviews-rating-card {
        min-height: auto;
    }

    .stb-reviews-rating-inner {
        min-height: auto;
        padding: 30px 22px;
    }

    .stb-reviews-slider-area {
        padding: 0 30px;
    }

    .stb-reviews-track {
        gap: 18px;
    }

    .stb-review-card {
        flex-basis: calc((100% - 18px) / 2);
        min-width: calc((100% - 18px) / 2);
        max-width: calc((100% - 18px) / 2);
        min-height: 280px;
    }

    .stb-reviews-bottom {
        max-width: 820px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767px) {
    .stb-reviews-section {
        padding: 56px 12px 82px;
    }

    .stb-reviews-section::before {
        font-size: 120px;
        top: 40px;
        left: 0;
    }

    .stb-reviews-section::after {
        font-size: 64px;
        right: -8px;
        bottom: 60px;
    }

    .stb-reviews-heading {
        margin-bottom: 30px;
    }

    .stb-reviews-badge {
        padding: 8px 15px;
        font-size: 11.5px;
    }

    .stb-reviews-heading h2 {
        font-size: 38px;
        line-height: 1.05;
        letter-spacing: -0.9px;
    }

    .stb-reviews-heading h2 span {
        display: block;
    }

    .stb-reviews-title-line {
        margin: 15px auto 12px;
    }

    .stb-reviews-title-line span {
        width: 58px;
    }

    .stb-reviews-heading p {
        max-width: 330px;
        font-size: 14.2px;
        line-height: 1.55;
    }

    .stb-reviews-main {
        gap: 18px;
    }

    .stb-reviews-rating-card {
        border-radius: 24px;
        padding: 14px;
    }

    .stb-reviews-rating-inner {
        border-radius: 18px;
        padding: 24px 16px;
    }

    .stb-reviews-rating-icon {
        width: 72px;
        height: 72px;
        border-width: 5px;
        margin-bottom: 14px;
        font-size: 36px;
    }

    .stb-reviews-rating-card h3 {
        font-size: 52px;
    }

    .stb-reviews-rating-card h3 span {
        font-size: 23px;
    }

    .stb-reviews-stars {
        font-size: 16px;
    }

    .stb-reviews-rating-card p {
        font-size: 13px;
    }

    .stb-reviews-rating-tags {
        margin-top: 18px;
        gap: 7px;
    }

    .stb-reviews-rating-tags span {
        font-size: 10.5px;
        padding: 7px 9px;
    }

    .stb-reviews-slider-area {
        padding: 0 20px;
    }

    .stb-reviews-track {
        gap: 14px;
        padding: 2px 0 16px;
    }

    .stb-review-card {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        min-height: 245px;
        padding: 23px 20px 21px;
        border-radius: 22px;
    }

    .stb-review-card:hover {
        transform: none;
    }

    .stb-review-stars {
        font-size: 14px;
        margin-bottom: 13px;
    }

    .stb-review-card p {
        font-size: 14px;
        line-height: 1.52;
    }

    .stb-review-user {
        margin-top: 18px;
    }

    .stb-review-avatar {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 16px;
    }

    .stb-reviews-arrow {
        width: 38px;
        height: 38px;
        font-size: 28px;
    }

    .stb-reviews-prev {
        left: 0;
    }

    .stb-reviews-next {
        right: 0;
    }

    .stb-reviews-dots {
        margin-top: 4px;
    }

    .stb-reviews-bottom {
        margin-top: 20px;
        padding: 18px 16px;
        border-radius: 20px;
        display: block;
        text-align: center;
    }

    .stb-reviews-bottom h3 {
        font-size: 21px;
        line-height: 1.15;
    }

    .stb-reviews-bottom p {
        font-size: 13px;
        line-height: 1.4;
    }

    .stb-reviews-btn {
        width: 100%;
        margin-top: 15px;
        min-width: 0;
        min-height: 48px;
        font-size: 13px;
    }
}

/* =========================================================
   Small Mobile
========================================================= */

@media (max-width: 380px) {
    .stb-reviews-heading h2 {
        font-size: 34px;
    }

    .stb-reviews-slider-area {
        padding: 0 10px;
    }

    .stb-review-card {
        min-height: 260px;
        padding: 22px 18px 20px;
    }

    .stb-review-card p {
        font-size: 13.2px;
    }

    .stb-reviews-arrow {
        width: 34px;
        height: 34px;
        font-size: 25px;
    }
}

/* =========================================================
   Reviews Desktop Rating Card Height Match Fix
========================================================= */

@media (min-width: 1025px) {
    .stb-reviews-main {
        align-items: flex-start;
    }

    .stb-reviews-rating-card {
        min-height: 300px;
        height: 300px;
        padding: 16px;
        border-radius: 24px;
    }

    .stb-reviews-rating-inner {
        min-height: 100%;
        height: 100%;
        padding: 22px 18px;
        border-radius: 20px;
    }

    .stb-reviews-rating-icon {
        width: 43px;
        height: 43px;
        margin-bottom: 14px;
        border-width: 5px;
        font-size: 34px;
    }

    .stb-reviews-rating-card h3 {
        font-size: 54px;
    }

    .stb-reviews-rating-card h3 span {
        font-size: 24px;
    }

    .stb-reviews-stars {
        margin: 10px 0 12px;
        font-size: 16px;
    }

    .stb-reviews-rating-card p {
        font-size: 13px;
        line-height: 1.35;
    }

    .stb-reviews-rating-tags {
        margin-top: 16px;
        gap: 7px;
    }

    .stb-reviews-rating-tags span {
        padding: 7px 10px;
        font-size: 10.5px;
    }

    .stb-review-card {
        min-height: 300px;
    }
}

/* =========================================================
   Soil To Bowl - Premium Footer V2
========================================================= */

.stb-footer-v2 {
    position: relative;
    overflow: hidden;
    padding: 118px 18px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(78, 125, 36, 0.12), transparent 28%),
        radial-gradient(circle at 92% 86%, rgba(213, 157, 40, 0.15), transparent 30%),
        linear-gradient(180deg, #fbfff6 0%, #fff9ea 100%);
    border-top: 1px solid rgba(78, 125, 36, 0.10);
}

.stb-footer-v2::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #4E7D24, #d59d28, #4E7D24);
    z-index: 4;
}

.stb-footer-v2-wave {
    position: absolute;
    left: 0;
    top: -1px;
    width: 100%;
    height: 110px;
    z-index: 1;
    pointer-events: none;
}

.stb-footer-v2-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.stb-footer-v2-wave path {
    fill: #fffdf5;
}

.stb-footer-v2-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

/* Background Decorations */
.stb-footer-v2-pattern {
    position: absolute;
    right: -40px;
    top: 78px;
    width: 420px;
    height: 240px;
    opacity: 0.07;
    background:
        linear-gradient(30deg, #4E7D24 12%, transparent 12.5%, transparent 87%, #4E7D24 87.5%, #4E7D24),
        linear-gradient(150deg, #4E7D24 12%, transparent 12.5%, transparent 87%, #4E7D24 87.5%, #4E7D24),
        linear-gradient(30deg, #4E7D24 12%, transparent 12.5%, transparent 87%, #4E7D24 87.5%, #4E7D24),
        linear-gradient(150deg, #4E7D24 12%, transparent 12.5%, transparent 87%, #4E7D24 87.5%, #4E7D24);
    background-position: 0 0, 0 0, 18px 32px, 18px 32px;
    background-size: 36px 64px;
    pointer-events: none;
    z-index: 1;
}

.stb-footer-v2-farmline {
    position: absolute;
    left: 50%;
    bottom: 88px;
    transform: translateX(-50%);
    width: 680px;
    height: 130px;
    opacity: 0.08;
    background: url("/frontend/assets/theme/dist/img/footer/footer-farm-line.png") center / contain no-repeat;
    pointer-events: none;
    z-index: 1;
}

.stb-footer-v2-leaf {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.13;
    filter: drop-shadow(0 10px 20px rgba(78, 125, 36, 0.15));
}

.stb-footer-v2-leaf-left {
    left: 2%;
    top: 150px;
    font-size: 120px;
    transform: rotate(-22deg);
}

.stb-footer-v2-leaf-right {
    right: 1%;
    bottom: 85px;
    font-size: 130px;
    transform: rotate(18deg);
}

/* CTA Strip */
.stb-footer-v2-cta-strip {
    position: relative;
    margin-bottom: 58px;
    padding: 22px 26px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.86), rgba(255,250,239,0.76));
    border: 1px solid rgba(78, 125, 36, 0.14);
    box-shadow:
        0 18px 44px rgba(16, 24, 40, 0.07),
        inset 0 1px 0 rgba(255,255,255,0.94);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    overflow: hidden;
}

.stb-footer-v2-cta-strip::after {
    content: "";
    position: absolute;
    right: -30px;
    top: -55px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(213, 157, 40, 0.13), transparent 70%);
    pointer-events: none;
}

.stb-footer-v2-cta-strip > div {
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 16px;
    align-items: center;
}

.stb-footer-v2-cta-strip > div > span {
    grid-row: span 2;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.35), transparent 36%),
        linear-gradient(145deg, #6fae3e, #3f7b24);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 12px 24px rgba(78, 125, 36, 0.22);
}

.stb-footer-v2-cta-strip h3 {
    margin: 0 0 4px;
    color: #234f18;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    line-height: 1.15;
    font-weight: 900;
}

.stb-footer-v2-cta-strip p {
    margin: 0;
    color: #344054;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 650;
}

.stb-footer-v2-cta-strip a {
    position: relative;
    z-index: 2;
    min-width: 210px;
    min-height: 52px;
    border-radius: 999px;
    background: linear-gradient(135deg, #5fa437, #2f721d);
    color: #ffffff;
    text-decoration: none;
    padding: 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 15px 32px rgba(78, 125, 36, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stb-footer-v2-cta-strip a:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(78, 125, 36, 0.32);
}

/* Main Layout */
.stb-footer-v2-main {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 58px;
    align-items: flex-start;
}

/* Brand */
.stb-footer-v2-brand {
    position: relative;
    padding-right: 22px;
}

.stb-footer-v2-brand::after {
    content: "";
    position: absolute;
    right: -30px;
    top: 10px;
    width: 1px;
    height: calc(100% - 20px);
    background: linear-gradient(180deg, transparent, rgba(78, 125, 36, 0.18), transparent);
}

.stb-footer-v2-logo {
    width: 108px;
    height: 108px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(78, 125, 36, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(16, 24, 40, 0.07);
    overflow: hidden;
}

.stb-footer-v2-logo img {

    height: 90px;
    object-fit: contain;
    display: block;
}

.stb-footer-v2-brand h2 {
    margin: 0;
    color: #1f5a17;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 35px;
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -0.8px;
}

.stb-footer-v2-tagline {
    margin: 12px 0 19px;
    color: #8c5a12;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.stb-footer-v2-desc {
    margin: 0;
    max-width: 355px;
    color: #344054;
    font-size: 15.5px;
    line-height: 1.72;
    font-weight: 600;
}

.stb-footer-v2-social {
    display: flex;
    gap: 12px;
    margin-top: 26px;
}

.stb-footer-v2-social a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.28), transparent 36%),
        linear-gradient(145deg, #6fae3e, #3f7b24);
    color: #ffffff;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 10px 22px rgba(78, 125, 36, 0.20);

}



/* Columns */
.stb-footer-v2-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.stb-footer-v2-col {
    min-width: 0;
    position: relative;
}

.stb-footer-v2-col:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -16px;
    top: 8px;
    width: 1px;
    height: calc(100% - 16px);
    background: linear-gradient(180deg, transparent, rgba(78, 125, 36, 0.14), transparent);
}

.stb-footer-v2-acc-content h3 {
    margin: 0 0 23px;
    color: #234f18;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    line-height: 1.22;
    font-weight: 900;
}

.stb-footer-v2-acc-content h3::after {
    content: "";
    display: block;
    width: 54px;
    height: 3px;
    margin-top: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, #4E7D24, #d59d28);
}

.stb-footer-v2-acc-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stb-footer-v2-acc-content li:not(:last-child) {
    margin-bottom: 15px;
}

.stb-footer-v2-acc-content ul a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #263345;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 750;
    transition: color 0.25s ease, transform 0.25s ease;
}

.stb-footer-v2-acc-content ul a::before {
    font-size: 11px;
    opacity: 0.8;
}

.stb-footer-v2-acc-content ul a::after {
    content: "";
    position: absolute;
    left: 22px;
    bottom: -4px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #4E7D24, #d59d28);
    transition: width 0.25s ease;
}

.stb-footer-v2-acc-content ul a:hover {
    color: #2f721d;
    transform: translateX(4px);
}

.stb-footer-v2-acc-content ul a:hover::after {
    width: calc(100% - 22px);
}

/* Accordion button hidden on desktop */
.stb-footer-v2-acc-btn {
    display: none;
}

/* City */
.stb-footer-v2-city {
    display: grid;
    gap: 15px;
}

.stb-footer-v2-city a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: inherit;
    text-decoration: none;
}

.stb-footer-v2-city a > span {
    margin-top: 1px;
}

.stb-footer-v2-city strong {
    display: block;
    color: #263345;
    font-size: 16px;
    font-weight: 850;
    margin-bottom: 3px;
}

.stb-footer-v2-city em {
    display: inline-block;
    color: #2f721d;
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.stb-footer-v2-note {
    margin: 17px 0 0;
    color: #8a5c17;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 800;
}

/* Contact */
.stb-footer-v2-contact {
    display: grid;
    gap: 20px;
}

.stb-footer-v2-contact a {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 13px;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.stb-footer-v2-contact a > span {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.28), transparent 36%),
        linear-gradient(145deg, #6fae3e, #3f7b24);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 10px 22px rgba(78, 125, 36, 0.20);
}

.stb-footer-v2-contact strong {
    display: block;
    color: #234f18;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 850;
    margin-bottom: 4px;
}

.stb-footer-v2-contact p {
    margin: 0;
    color: #344054;
    font-size: 14px;
    line-height: 1.48;
    font-weight: 650;
    word-break: break-word;
}

/* Promise */
.stb-footer-v2-promise {
    margin-top: 46px;
    padding: 24px 0;
    border-top: 1px solid rgba(78, 125, 36, 0.13);
    border-bottom: 1px solid rgba(78, 125, 36, 0.13);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stb-footer-v2-promise div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    text-align: center;
}

.stb-footer-v2-promise span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,250,240,0.92);
    border: 1px solid rgba(213, 157, 40, 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
}

.stb-footer-v2-promise strong {
    color: #234f18;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 900;
}

/* Bottom */
.stb-footer-v2-bottom {
    padding: 23px 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.stb-footer-v2-bottom p {
    margin: 0;
    color: #475467;
    font-size: 13px;
    font-weight: 700;
}

.stb-footer-v2-bottom > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
}

.stb-footer-v2-bottom a {
    color: #475467;
    text-decoration: none;
    font-size: 13px;
    font-weight: 750;
    transition: color 0.25s ease;
}

.stb-footer-v2-bottom a:hover {
    color: #2f721d;
}

/* =========================================================
   Tablet
========================================================= */

@media (max-width: 1100px) {
    .stb-footer-v2 {
        padding: 106px 16px 0;
    }

    .stb-footer-v2-cta-strip {
        margin-bottom: 46px;
    }

    .stb-footer-v2-main {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .stb-footer-v2-brand {
        max-width: 760px;
        padding-right: 0;
    }

    .stb-footer-v2-brand::after {
        display: none;
    }

    .stb-footer-v2-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 42px;
    }

    .stb-footer-v2-col:nth-child(2)::after {
        display: none;
    }

    .stb-footer-v2-promise {
        grid-template-columns: repeat(2, 1fr);
    }

    .stb-footer-v2-bottom {
        flex-direction: column;
        text-align: center;
    }

    .stb-footer-v2-bottom > div {
        justify-content: center;
    }
}

/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767px) {
    .stb-footer-v2 {
        padding: 86px 12px 0;
    }

    .stb-footer-v2-wave {
        height: 86px;
    }

    .stb-footer-v2-pattern {
        width: 230px;
        height: 150px;
        right: -50px;
        top: 82px;
        opacity: 0.055;
    }

    .stb-footer-v2-farmline {
        width: 360px;
        height: 90px;
        bottom: 105px;
        opacity: 0.065;
    }

    .stb-footer-v2-leaf-left {
        font-size: 72px;
        left: -28px;
        top: 155px;
    }

    .stb-footer-v2-leaf-right {
        font-size: 78px;
        right: -30px;
        bottom: 110px;
    }

    .stb-footer-v2-cta-strip {
        padding: 20px 16px;
        border-radius: 24px;
        margin-bottom: 36px;
        display: block;
        text-align: center;
    }

    .stb-footer-v2-cta-strip > div {
        display: block;
    }

    .stb-footer-v2-cta-strip > div > span {
        margin: 0 auto 12px;
    }

    .stb-footer-v2-cta-strip h3 {
        font-size: 23px;
    }

    .stb-footer-v2-cta-strip p {
        font-size: 13px;
        max-width: 310px;
        margin: 0 auto;
    }

    .stb-footer-v2-cta-strip a {
        width: 100%;
        min-width: 0;
        margin-top: 18px;
        min-height: 50px;
        font-size: 14px;
    }

    .stb-footer-v2-main {
        gap: 32px;
    }

    .stb-footer-v2-brand {
        text-align: center;
    }

    .stb-footer-v2-logo {
        width: 94px;
        height: 94px;
        margin: 0 auto 18px;
    }

    .stb-footer-v2-logo img {
        height: 78px;
    }

    .stb-footer-v2-brand h2 {
        font-size: 42px;
    }

    .stb-footer-v2-tagline {
        font-size: 11.5px;
        letter-spacing: 1.7px;
    }

    .stb-footer-v2-desc {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.68;
    }

    .stb-footer-v2-social {
        justify-content: center;
        margin-top: 20px;
    }

    .stb-footer-v2-links {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .stb-footer-v2-col {
        border-bottom: 1px solid rgba(78, 125, 36, 0.13);
    }

    .stb-footer-v2-col::after {
        display: none !important;
    }

    .stb-footer-v2-acc-btn {
        width: 100%;
        min-height: 56px;
        padding: 0;
        border: 0;
        background: transparent;
        color: #234f18;
        font-family: inherit;
        font-size: 17px;
        font-weight: 900;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }

    .stb-footer-v2-acc-btn i {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(78, 125, 36, 0.08);
        color: #2f721d;
        display: flex;
        align-items: center;
        justify-content: center;
        font-style: normal;
        font-size: 20px;
        transition: transform 0.25s ease;
    }

    .stb-footer-v2-col.is-open .stb-footer-v2-acc-btn i {
        transform: rotate(180deg);
    }

    .stb-footer-v2-acc-content {
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.35s ease, padding 0.35s ease;
    }

    .stb-footer-v2-col.is-open .stb-footer-v2-acc-content {
        max-height: 460px;
        padding: 0 0 17px;
    }

    .stb-footer-v2-acc-content h3 {
        display: none;
    }

    .stb-footer-v2-acc-content li:not(:last-child) {
        margin-bottom: 12px;
    }

    .stb-footer-v2-acc-content ul a {
        font-size: 15px;
    }

    .stb-footer-v2-contact {
        gap: 14px;
    }

    .stb-footer-v2-contact strong,
    .stb-footer-v2-city strong {
        font-size: 15px;
    }

    .stb-footer-v2-contact p,
    .stb-footer-v2-note {
        font-size: 13px;
    }

    .stb-footer-v2-promise {
        margin-top: 28px;
        padding: 21px 0;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 10px;
    }

    .stb-footer-v2-promise div {
        flex-direction: column;
        gap: 8px;
    }

    .stb-footer-v2-promise strong {
        font-size: 12.5px;
    }

    .stb-footer-v2-bottom {
        padding: 20px 0 88px;
    }

    .stb-footer-v2-bottom p,
    .stb-footer-v2-bottom a {
        font-size: 12px;
    }

    .stb-footer-v2-bottom > div {
        gap: 10px 14px;
    }
}

/* Small mobile */
@media (max-width: 380px) {
    .stb-footer-v2-brand h2 {
        font-size: 37px;
    }

    .stb-footer-v2-cta-strip h3 {
        font-size: 21px;
    }
}


/* button */
/* =========================================================
   Soil To Bowl - Common Pill Button
========================================================= */

/* Common Pill Button */
.stb-btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
margin-top: 10px;
    min-height: 50px;
    padding: 0 8px 0 24px;
    border-radius: 999px;

    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.stb-btn-pill:hover {
    transform: translateY(-2px);
}

/* Dark Green Filled */
.stb-btn-pill--green {
    background: linear-gradient(135deg, #3e8a22, #2f6e18);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.10);

    box-shadow:
        0 10px 22px rgba(47, 110, 24, 0.24),
        inset 0 1px 0 rgba(255,255,255,0.16);
}

.stb-btn-pill--green:hover {
    background: linear-gradient(135deg, #469626, #34791b);
    color: #ffffff;

    box-shadow:
        0 14px 28px rgba(47, 110, 24, 0.30),
        inset 0 1px 0 rgba(255,255,255,0.18);
}

/* White Circle Arrow */
.stb-btn-pill__icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;

    background: #ffffff;
    color: #2f6e18;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 6px 16px rgba(20, 70, 15, 0.20),
        inset 0 1px 0 rgba(255,255,255,0.95);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.stb-btn-pill__icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.stb-btn-pill:hover .stb-btn-pill__icon {
    transform: translate(2px, -2px) scale(1.04);
    background: #fffaf0;
    color: #234f18;
}
@media (max-width: 767px) {
    .stb-btn-pill {
        min-height: 48px;
        padding: 0 7px 0 20px;
        font-size: 13.5px;
        gap: 10px;
    }

    .stb-btn-pill__icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .stb-btn-pill__icon svg {
        width: 17px;
        height: 17px;
    }

    .stb-btn-pill--full-mobile {
        width: 100%;
    }
}
/* button  */


/* dairy icon */
.dairy-svg-icon {
    width: 48px;
    height: 48px;
    color: #1f6b3a;
}

.dairy-svg-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.stb-cow-icon {
    width: 28px;
    height: 28px;
    display: block;
    flex: 0 0 auto;
    color: currentColor;
}

.stb-cow-icon .stb-icon-cut {
    fill: var(--badge-bg, #eef2e8);
}

.stb-cow-icon .stb-icon-line {
    fill: none;
    stroke: var(--badge-bg, #eef2e8);
    stroke-width: 10;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.stb-facebook-icon {
    display: grid;
    place-items: center;
    color: #fff;
}

.stb-facebook-icon svg {
    display: block;
    width: 40px;
    height: 40px;
}
.stb-instagram-icon {
    display: grid;
    place-items: center;
    color: #000;
}

.stb-instagram-icon svg {
    display: block;
    width: 45px;
    height: 45px;
color:white;}

.stb-linkedin-icon {
    display: grid;
    place-items: center;
    color: #ffffff;
}

.stb-linkedin-icon svg {
    display: block;
    width: 27px;
    height: 40px;
}
.stb-vegetables-icon {
     position: absolute;
    left: 50%;
    bottom: -19px;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.35), transparent 34%),
        linear-gradient(145deg, #6ca83b, #4E7D24);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #fffdf5;
    box-shadow: 0 10px 22px rgba(78, 125, 36, 0.26);
}

.stb-vegetables-icon svg {
    display: block;
    width: 35px;
    height: 42px;
}
/* =====================================================
   SOIL TO BOWL — FOOTER CTA FINAL CSS
===================================================== */

.stb-footer-v3-cta,
.stb-footer-v3-cta *,
.stb-footer-v3-cta *::before,
.stb-footer-v3-cta *::after {
    box-sizing: border-box;
}

.stb-footer-v3-cta {
    --stb-green-dark: #0d5928;
    --stb-green: #2f8123;
    --stb-green-light: #eef8ea;
    --stb-text: #17213b;

    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;

    width: 100%;
    min-height: 122px;
    padding: 26px 32px;

    border: 1px solid rgba(42, 105, 29, 0.1);
    border-radius: 34px;

    background:
        linear-gradient(
            120deg,
            rgba(255, 255, 255, 0.99),
            rgba(255, 253, 244, 0.97)
        );

    box-shadow:
        0 16px 42px rgba(31, 82, 24, 0.09);

    overflow: hidden;
    margin-bottom: 20px;
    margin-top: 20px;
}

/* Decorative background glow */

.stb-footer-v3-cta::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: -105px;
    right: -75px;

    width: 270px;
    height: 270px;

    border-radius: 50%;
    background: rgba(112, 170, 72, 0.09);

    pointer-events: none;
}


/* =====================================================
   LEFT CONTENT
===================================================== */

.stb-footer-v3-info {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    align-items: center;
    gap: 20px;

    min-width: 0;
}

.stb-footer-v3-leaf {
    display: grid;
    place-items: center;

    width: 68px;
    height: 68px;

    margin: 0;
    padding: 0;

    border-radius: 50%;

    font-size: 30px;
    line-height: 1;
    box-shadow:
        0 12px 28px rgba(45, 123, 31, 0.24);
}

.stb-footer-v3-copy {
    min-width: 0;
}

.stb-footer-v3-copy h3 {
    margin: 0 0 7px;
    padding: 0;

    color: var(--stb-green-dark);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(27px, 2.1vw, 36px);
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -0.4px;

    word-break: normal;
    overflow-wrap: normal;
    text-wrap: balance;
}

.stb-footer-v3-copy p {
    max-width: 760px;

    margin: 0;
    padding: 0;

    color: var(--stb-text);

    font-size: 16px;
    font-weight: 600;
    line-height: 1.55;

    word-break: normal;
    overflow-wrap: break-word;
    text-wrap: pretty;
}


/* =====================================================
   ACTION BUTTONS
===================================================== */

.stb-footer-v3-actions {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;

    width: auto;
    min-width: 0;

    margin: 0;
    padding: 0;

    overflow: visible;
}

.stb-footer-v3-actions > .stb-footer-v3-btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    flex: 0 0 auto;

    min-width: 158px;
    height: 58px;

    margin: 0;
    padding: 9px 20px;

    border: 1px solid transparent;
    border-radius: 999px;

    appearance: none;
    text-decoration: none;

    font-family: inherit;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.stb-footer-v3-btn-icon {
    position: relative;
    z-index: 2;

    display: grid;
    place-items: center;

    flex: 0 0 36px;

    width: 36px;
    height: 36px;

    margin: 0;
    padding: 0;

    border-radius: 50%;
    background: #ffffff;

    transition: transform 0.25s ease;
}

.stb-footer-v3-btn-icon svg {
    display: block;

    width: 18px;
    height: 18px;

    margin: 0;
    padding: 0;

    fill: currentColor;
}

.stb-footer-v3-btn-label {
    position: relative;
    z-index: 2;

    display: inline-block;

    margin: 0;
    padding: 0;

    color: inherit;
    background: transparent;

    font: inherit;
    line-height: 1;
}


/* Call button */

.stb-footer-v3-actions > .stb-footer-v3-call {
    color: #26751d;

    background: var(--stb-green-light);
    border-color: rgba(45, 126, 31, 0.22);

    box-shadow:
        0 10px 24px rgba(42, 112, 30, 0.13);
}

.stb-footer-v3-call .stb-footer-v3-btn-icon {
    color: #287d1e;
}


/* WhatsApp button */

.stb-footer-v3-actions > .stb-footer-v3-whatsapp {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #4baa34,
            #277c1f
        );

    border-color: #348e28;

    box-shadow:
        0 12px 27px rgba(38, 120, 29, 0.25);
}

.stb-footer-v3-whatsapp .stb-footer-v3-btn-icon {
    color: #2d8c22;
}


/* Focus accessibility */

.stb-footer-v3-actions > .stb-footer-v3-btn:focus-visible {
    outline: 3px solid rgba(64, 143, 43, 0.34);
    outline-offset: 4px;
}


/* Desktop hover only */

@media (min-width: 1081px) and (hover: hover) and (pointer: fine) {

    .stb-footer-v3-actions > .stb-footer-v3-btn:hover {
        transform: translateY(-3px);
    }

    .stb-footer-v3-actions
    > .stb-footer-v3-btn:hover
    .stb-footer-v3-btn-icon {
        transform: scale(1.07);
    }

    .stb-footer-v3-actions > .stb-footer-v3-call:hover {
        color: #ffffff;
        background: #307f24;
        border-color: #307f24;

        box-shadow:
            0 14px 29px rgba(42, 112, 30, 0.24);
    }

    .stb-footer-v3-actions > .stb-footer-v3-whatsapp:hover {
        background:
            linear-gradient(
                135deg,
                #3f9c2d,
                #206a19
            );

        box-shadow:
            0 15px 31px rgba(38, 120, 29, 0.31);
    }
}


/* =====================================================
   TABLET + MOBILE
   STACKED LAYOUT + CENTERED BUTTONS + PULSE
===================================================== */

@media (max-width: 1080px) {

    .stb-footer-v3-cta {
        grid-template-columns: minmax(0, 1fr);
        align-items: stretch;
        gap: 18px;

        min-height: auto;
        padding: 25px 26px;

        border-radius: 28px;
    }

    .stb-footer-v3-actions {
        justify-content: center;

        width: 100%;

        margin: 0 auto;
        padding: 10px 8px 12px;

        gap: 18px;
    }

    .stb-footer-v3-actions > .stb-footer-v3-btn {
        --stb-pulse-rgb: 61, 151, 40;

        isolation: isolate;
    }

    .stb-footer-v3-actions > .stb-footer-v3-whatsapp {
        --stb-pulse-rgb: 37, 211, 102;
    }

    /* First pulse ring */

    .stb-footer-v3-actions > .stb-footer-v3-btn::before {
        content: "";

        position: absolute;
        z-index: -1;
        inset: -3px;

        border: 2px solid
            rgba(var(--stb-pulse-rgb), 0.88);

        border-radius: inherit;

        background:
            rgba(var(--stb-pulse-rgb), 0.08);

        box-shadow:
            0 0 13px rgba(var(--stb-pulse-rgb), 0.55),
            0 0 26px rgba(var(--stb-pulse-rgb), 0.32);

        opacity: 0;
        transform: scale(0.96);

        pointer-events: none;

        animation:
            stb-footer-pulse-one
            2.5s
            cubic-bezier(0.2, 0.7, 0.2, 1)
            infinite;
    }

    /* Second pulse ring */

    .stb-footer-v3-actions > .stb-footer-v3-btn::after {
        content: "";

        position: absolute;
        z-index: -2;
        inset: -3px;

        border: 2px solid
            rgba(var(--stb-pulse-rgb), 0.58);

        border-radius: inherit;

        box-shadow:
            0 0 18px
            rgba(var(--stb-pulse-rgb), 0.38);

        opacity: 0;
        transform: scale(0.96);

        pointer-events: none;

        animation:
            stb-footer-pulse-two
            2.5s
            cubic-bezier(0.2, 0.7, 0.2, 1)
            infinite;
    }

    /* WhatsApp pulse starts later */

    .stb-footer-v3-actions
    > .stb-footer-v3-whatsapp::before {
        animation-delay: 0.55s;
    }

    .stb-footer-v3-actions
    > .stb-footer-v3-whatsapp::after {
        animation-delay: 1.05s;
    }

    .stb-footer-v3-actions > .stb-footer-v3-btn:active {
        transform: scale(0.94);
    }
}


/* =====================================================
   TABLET — TEXT BUTTONS
===================================================== */

@media (min-width: 601px) and (max-width: 1080px) {

    .stb-footer-v3-info {
        grid-template-columns: 60px minmax(0, 1fr);
        gap: 17px;
    }

    .stb-footer-v3-leaf {
        width: 60px;
        height: 60px;

        font-size: 27px;
    }

    .stb-footer-v3-copy h3 {
        margin-bottom: 6px;

        font-size: clamp(26px, 4vw, 31px);
        line-height: 1.18;
    }

    .stb-footer-v3-copy p {
        max-width: 720px;

        font-size: 15px;
        line-height: 1.52;
    }

    .stb-footer-v3-actions > .stb-footer-v3-btn {
        flex: 0 1 170px;

        width: 170px;
        min-width: 150px;
        max-width: 170px;
        height: 56px;

        padding: 8px 16px;

        font-size: 15px;
    }

    .stb-footer-v3-btn-icon {
        flex-basis: 34px;

        width: 34px;
        height: 34px;
    }

    .stb-footer-v3-btn-icon svg {
        width: 17px;
        height: 17px;
    }
}


/* =====================================================
   MOBILE — ICON BUTTONS ONLY
===================================================== */

@media (max-width: 600px) {

    .stb-footer-v3-cta {
        gap: 16px;

        padding: 21px 17px;

        border-radius: 24px;
    }

    .stb-footer-v3-info {
        grid-template-columns: 50px minmax(0, 1fr);
        align-items: start;
        gap: 13px;
    }

    .stb-footer-v3-leaf {
        width: 50px;
        height: 50px;

        margin-top: 2px;

        font-size: 23px;
    }

    .stb-footer-v3-copy h3 {
        margin-bottom: 6px;

        font-size: clamp(21px, 6.2vw, 24px);
        line-height: 1.2;
        letter-spacing: -0.2px;
    }

    .stb-footer-v3-copy p {
        font-size: 13.5px;
        font-weight: 600;
        line-height: 1.48;
    }

    .stb-footer-v3-actions {
        gap: 22px;

        padding-top: 10px;
        padding-bottom: 12px;
    }

    .stb-footer-v3-actions > .stb-footer-v3-btn {
        display: grid;
        place-items: center;

        flex: 0 0 58px;

        width: 58px;
        min-width: 58px;
        max-width: 58px;

        height: 58px;
        min-height: 58px;
        max-height: 58px;

        padding: 0;

        border-radius: 50%;
    }

    .stb-footer-v3-btn-label {
        display: none;
    }

    .stb-footer-v3-btn-icon {
        display: grid;
        place-items: center;

        flex: 0 0 40px;

        width: 40px;
        height: 40px;

        border-radius: 50%;
    }

    .stb-footer-v3-btn-icon svg {
        width: 20px;
        height: 20px;
    }
}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .stb-footer-v3-cta {
        padding: 19px 14px;
    }

    .stb-footer-v3-info {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 11px;
    }

    .stb-footer-v3-leaf {
        width: 46px;
        height: 46px;

        font-size: 21px;
    }

    .stb-footer-v3-copy h3 {
        font-size: 20px;
        line-height: 1.2;
    }

    .stb-footer-v3-copy p {
        font-size: 12.8px;
        line-height: 1.45;
    }

    .stb-footer-v3-actions {
        gap: 18px;
    }

    .stb-footer-v3-actions > .stb-footer-v3-btn {
        flex-basis: 54px;

        width: 54px;
        min-width: 54px;
        max-width: 54px;

        height: 54px;
        min-height: 54px;
        max-height: 54px;
    }

    .stb-footer-v3-btn-icon {
        flex-basis: 37px;

        width: 37px;
        height: 37px;
    }

    .stb-footer-v3-btn-icon svg {
        width: 18px;
        height: 18px;
    }
}


/* =====================================================
   PULSE ANIMATIONS
===================================================== */

@keyframes stb-footer-pulse-one {

    0% {
        opacity: 0;
        transform: scale(0.96);
    }

    12% {
        opacity: 0.95;
    }

    65% {
        opacity: 0;
        transform: scale(1.24);
    }

    100% {
        opacity: 0;
        transform: scale(1.24);
    }
}

@keyframes stb-footer-pulse-two {

    0%,
    28% {
        opacity: 0;
        transform: scale(0.97);
    }

    38% {
        opacity: 0.68;
    }

    86% {
        opacity: 0;
        transform: scale(1.34);
    }

    100% {
        opacity: 0;
        transform: scale(1.34);
    }
}


/* Reduced motion accessibility */

@media (max-width: 1080px) and
(prefers-reduced-motion: reduce) {

    .stb-footer-v3-actions > .stb-footer-v3-btn::before,
    .stb-footer-v3-actions > .stb-footer-v3-btn::after {
        animation: none;
    }
}
.stb-footer-v3-leaf {
    display: grid;
    place-items: center;

    width: 68px;
    height: 68px;
    flex-shrink: 0;

    border-radius: 50%;

    color: #ffffff;

   

    box-shadow:
        0 12px 28px rgba(45, 123, 31, 0.24);
}

.stb-footer-v3-leaf svg {
    display: block;
    width: 47px;
    height: 47px;

    color: #ffffff;
}
@media (max-width: 600px) {
    .stb-footer-v3-leaf {
        width: 50px;
        height: 50px;
    }

    .stb-footer-v3-leaf svg {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 380px) {
    .stb-footer-v3-leaf {
        width: 46px;
        height: 46px;
    }

    .stb-footer-v3-leaf svg {
        width: 33px;
        height: 33px;
    }
}



/* Honey Know More Button - Moving Glow Effect */
.stb-honey-btn {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    min-height: 58px;
    border-radius: 999px;

    background: linear-gradient(135deg, #f4b432, #d58a08);
    color: #ffffff;
    text-decoration: none;

    font-size: 18px;
    font-weight: 900;
    line-height: 1;

    box-shadow:
        0 16px 34px rgba(213, 138, 8, 0.34),
        inset 0 1px 0 rgba(255,255,255,0.28);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* Moving glowing layer */
.stb-honey-btn::before {
    content: "";
    position: absolute;
    top: -45%;
    left: -75%;
    z-index: -1;

    width: 58%;
    height: 190%;

    background: linear-gradient(
        115deg,
        transparent 0%,
        rgba(255, 255, 255, 0.08) 22%,
        rgba(255, 255, 255, 0.62) 48%,
        rgba(255, 244, 178, 0.36) 58%,
        transparent 82%
    );

    transform: rotate(18deg);
    animation: stbHoneyBtnGlowMove 2.8s ease-in-out infinite;
}

/* Soft golden pulse */
.stb-honey-btn::after {
    content: "";
    position: absolute;
    inset: 2px;
    z-index: -2;
    border-radius: inherit;

    background: radial-gradient(
        circle at 20% 50%,
        rgba(255,255,255,0.22),
        transparent 34%
    );

    opacity: 0.8;
    animation: stbHoneyBtnPulse 2.4s ease-in-out infinite;
}

.stb-honey-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 20px 44px rgba(213, 138, 8, 0.44),
        inset 0 1px 0 rgba(255,255,255,0.34);
}

.stb-honey-btn .stb-btn-pill__icon {
    position: relative;
    z-index: 2;

    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;

    background: #ffffff;
    color: #c57d05;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 8px 18px rgba(116, 72, 0, 0.22),
        inset 0 1px 0 rgba(255,255,255,0.95);

    transition:
        transform 0.25s ease,
        color 0.25s ease,
        background 0.25s ease;
}

.stb-honey-btn .stb-btn-pill__icon svg {
    width: 19px;
    height: 19px;
    display: block;
}

.stb-honey-btn:hover .stb-btn-pill__icon {
    transform: translate(3px, -3px) scale(1.04);
    background: #fffaf0;
    color: #9f6500;
}

@keyframes stbHoneyBtnGlowMove {
    0% {
        left: -75%;
        opacity: 0;
    }

    18% {
        opacity: 1;
    }

    52% {
        opacity: 1;
    }

    100% {
        left: 125%;
        opacity: 0;
    }
}

@keyframes stbHoneyBtnPulse {
    0%, 100% {
        opacity: 0.45;
    }

    50% {
        opacity: 0.95;
    }
}
@media (max-width: 767px) {
    .stb-honey-btn {
        min-height: 54px;
        padding: 0 8px 0 28px;
        font-size: 16px;
        gap: 12px;
    }

    .stb-honey-btn .stb-btn-pill__icon {
        width: 39px;
        height: 39px;
        min-width: 39px;
    }

    .stb-honey-btn .stb-btn-pill__icon svg {
        width: 18px;
        height: 18px;
    }
}


/*
   Soil To Bowl — Why Choose / Editorial Premium Section
   All selectors intentionally use the unique stb-wp26 prefix.
*/

.stb-wp26-why {
    --stb-wp26-deep: #154d2c;
    --stb-wp26-deep-2: #0f3c25;
    --stb-wp26-green: #4e7d24;
    --stb-wp26-cream: #fffdf5;
    --stb-wp26-sage: #eff5e8;
    --stb-wp26-line: #d9dfc8;
    --stb-wp26-gold: #e8bb31;
    --stb-wp26-ink: #2d211b;
    --stb-wp26-body: #465046;
    width: 100%;
    padding: clamp(28px, 5vw, 76px) clamp(14px, 3vw, 48px);
    overflow: hidden;
    color: var(--stb-wp26-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: transparent;
}

.stb-wp26-why *,
.stb-wp26-why *::before,
.stb-wp26-why *::after {
    box-sizing: border-box;
}

.stb-wp26-why__shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.62fr) minmax(300px, .88fr);
    grid-template-rows: minmax(390px, auto) auto;
    width: min(100%, 1440px);
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--stb-wp26-line);
    border-radius: clamp(22px, 2.2vw, 32px);
    background: var(--stb-wp26-cream);
    box-shadow: 0 22px 58px rgba(30, 65, 30, .08);
}

.stb-wp26-why__editorial {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: clamp(52px, 6vw, 88px) clamp(28px, 7vw, 112px) clamp(58px, 6vw, 84px);
    isolation: isolate;
    background:
        radial-gradient(circle at 6% 78%, rgba(183, 203, 143, .27), transparent 28%),
        linear-gradient(118deg, #fffdf5 0%, #fffdf5 67%, #fbfcef 100%);
}

.stb-wp26-why__editorial::before {
    position: absolute;
    z-index: -1;
    top: 10%;
    left: -12%;
    width: 46%;
    height: 70%;
    border-radius: 50%;
    background: rgba(235, 242, 218, .52);
    filter: blur(24px);
    content: "";
    transform: rotate(-18deg);
}

.stb-wp26-why__eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: var(--stb-wp26-deep);
    font-size: clamp(10px, .72vw, 12px);
    font-weight: 800;
    letter-spacing: .2em;
    line-height: 1.2;
}

.stb-wp26-why__eyebrow-line {
    display: block;
    width: 42px;
    height: 2px;
    margin: 18px 0 20px;
    background: var(--stb-wp26-gold);
}

.stb-wp26-why__title {
    max-width: 760px;
    margin: 0;
    color: var(--stb-wp26-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5.05vw, 86px);
    font-weight: 500;
    letter-spacing: -.055em;
    line-height: .98;
}

.stb-wp26-why__intro {
    max-width: 650px;
    margin: clamp(22px, 2vw, 30px) 0 0;
    color: var(--stb-wp26-body);
    font-size: clamp(14px, 1.05vw, 17px);
    line-height: 1.7;
}

.stb-wp26-why__cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: fit-content;
    min-width: 238px;
    margin-top: clamp(26px, 3vw, 38px);
    padding: 7px 8px 7px 24px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--stb-wp26-green), var(--stb-wp26-deep));
    box-shadow: 0 12px 22px rgba(52, 117, 39, .2);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}

.stb-wp26-why__cta:hover,
.stb-wp26-why__cta:focus-visible {
    color: #fff;
    box-shadow: 0 15px 28px rgba(52, 117, 39, .28);
    transform: translateY(-2px);
}

.stb-wp26-why__cta:focus-visible {
    outline: 3px solid rgba(232, 187, 49, .62);
    outline-offset: 4px;
}

.stb-wp26-why__cta-arrow {
    display: inline-grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border-radius: 50%;
    color: var(--stb-wp26-deep);
    background: #fff;
}

.stb-wp26-why__cta-arrow svg {
    width: 18px;
    height: 18px;
}

.stb-wp26-why__green-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 390px;
    overflow: hidden;
    padding: clamp(42px, 5vw, 74px) clamp(26px, 4.5vw, 72px);
    color: var(--stb-wp26-cream);
    background:
        radial-gradient(circle at 80% 15%, rgba(102, 145, 79, .22), transparent 35%),
        linear-gradient(135deg, var(--stb-wp26-deep) 0%, var(--stb-wp26-deep-2) 100%);
}

.stb-wp26-why__panel-rule {
    position: absolute;
    top: 14%;
    left: clamp(28px, 4vw, 64px);
    width: 2px;
    height: 68%;
    background: var(--stb-wp26-gold);
}

.stb-wp26-why__panel-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    margin: 0 0 0 clamp(24px, 2.8vw, 45px);
    color: var(--stb-wp26-cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4.25vw, 72px);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: .96;
}

.stb-wp26-why__panel-gold {
    color: transparent;
    -webkit-text-stroke: 1px var(--stb-wp26-gold);
}

.stb-wp26-why__panel-leaf {
    position: absolute;
    right: -3%;
    bottom: -6%;
    width: min(46%, 260px);
    color: rgba(224, 236, 205, .36);
}

.stb-wp26-why__panel-leaf svg {
    display: block;
    width: 100%;
    height: auto;
}

.stb-wp26-why__seal {
    position: absolute;
    right: clamp(24px, 3vw, 48px);
    bottom: clamp(22px, 3vw, 44px);
    display: grid;
    width: clamp(88px, 8vw, 124px);
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid var(--stb-wp26-gold);
    border-radius: 50%;
    color: var(--stb-wp26-gold);
    transform: rotate(-12deg);
}

.stb-wp26-why__seal-ring {
    display: flex;
    width: 82%;
    height: 82%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(232, 187, 49, .65);
    border-radius: 50%;
    font-size: clamp(7px, .58vw, 10px);
    font-weight: 800;
    letter-spacing: .17em;
    line-height: 1.4;
    text-align: center;
}

.stb-wp26-why__seal-leaf {
    display: block;
    margin: 2px 0;
    font-family: Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    line-height: .7;
}

.stb-wp26-why__proof-rail {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    min-width: 0;
    padding: 20px clamp(24px, 4vw, 62px);
    border-top: 1px solid var(--stb-wp26-line);
    background: rgba(255, 253, 245, .82);
}

.stb-wp26-why__proof-item,
.stb-wp26-why__service {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.stb-wp26-why__proof-item {
    gap: 12px;
    flex: 1 1 0;
}

.stb-wp26-why__proof-icon,
.stb-wp26-why__service-icon {
    display: inline-grid;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    place-items: center;
    color: var(--stb-wp26-green);
}

.stb-wp26-why__proof-icon svg,
.stb-wp26-why__service-icon svg {
    width: 100%;
    height: 100%;
}

.stb-wp26-why__proof-number {
    color: var(--stb-wp26-gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    line-height: 1;
}

.stb-wp26-why__proof-text {
    color: var(--stb-wp26-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(14px, 1.15vw, 18px);
    line-height: 1.25;
    white-space: nowrap;
}

.stb-wp26-why__proof-divider {
    width: 1px;
    height: 38px;
    flex: 0 0 1px;
    margin: 0 clamp(18px, 3.2vw, 54px);
    background: var(--stb-wp26-line);
}

.stb-wp26-why__service {
    gap: 10px;
    flex: 0 0 auto;
    min-width: 185px;
}

.stb-wp26-why__service-icon {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
}

.stb-wp26-why__service small,
.stb-wp26-why__service strong {
    display: block;
}

.stb-wp26-why__service small {
    color: var(--stb-wp26-body);
    font-size: 10px;
    line-height: 1.4;
}

.stb-wp26-why__service strong {
    color: var(--stb-wp26-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.stb-wp26-why__leaf {
    position: absolute;
    z-index: -1;
    color: rgba(157, 174, 107, .46);
    pointer-events: none;
}

.stb-wp26-why__leaf svg {
    display: block;
    width: 100%;
    height: auto;
}

.stb-wp26-why__leaf--top {
    top: 6%;
    left: -2%;
    width: clamp(92px, 11vw, 170px);
}

.stb-wp26-why__leaf--bottom {
    right: 4%;
    bottom: 4%;
    width: clamp(78px, 9vw, 136px);
    transform: rotate(-5deg);
}

@media (max-width: 980px) {
    .stb-wp26-why__shell {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .stb-wp26-why__editorial {
        align-items: center;
        padding: 64px 48px 58px;
        text-align: center;
    }

    .stb-wp26-why__eyebrow-line {
        margin-right: auto;
        margin-left: auto;
    }

    .stb-wp26-why__intro {
        max-width: 650px;
    }

    .stb-wp26-why__green-panel {
        min-height: 290px;
        padding: 54px 72px;
    }

    .stb-wp26-why__panel-copy {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0 14px;
        max-width: 610px;
        margin-left: 42px;
        font-size: clamp(36px, 5.4vw, 62px);
    }

    .stb-wp26-why__panel-copy span:nth-child(1),
    .stb-wp26-why__panel-copy span:nth-child(2) {
        width: auto;
    }

    .stb-wp26-why__proof-rail {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 18px;
        padding: 22px 28px 24px;
    }

    .stb-wp26-why__proof-item {
        flex: 1 1 30%;
        justify-content: center;
    }

    .stb-wp26-why__proof-divider {
        margin: 0 12px;
    }

    .stb-wp26-why__proof-divider--service {
        display: none;
    }

    .stb-wp26-why__service {
        flex-basis: 100%;
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 620px) {
    .stb-wp26-why {
        padding: 26px 12px 42px;
    }

    .stb-wp26-why__shell {
        border-radius: 24px;
    }

    .stb-wp26-why__editorial {
        align-items: stretch;
        padding: 46px 22px 40px;
        text-align: left;
    }

    .stb-wp26-why__eyebrow {
        font-size: 9px;
        letter-spacing: .14em;
    }

    .stb-wp26-why__eyebrow-line {
        width: 34px;
        margin: 14px 0 17px;
    }

    .stb-wp26-why__title {
        max-width: 330px;
        font-size: clamp(38px, 11vw, 56px);
        line-height: 1;
    }

    .stb-wp26-why__desktop-break {
        display: none;
    }

    .stb-wp26-why__intro {
        margin-top: 18px;
        font-size: 13px;
        line-height: 1.62;
    }

    .stb-wp26-why__cta {
        width: 100%;
        min-width: 0;
        margin-top: 24px;
        padding-left: 20px;
        font-size: 13px;
    }

    .stb-wp26-why__cta-arrow {
        width: 35px;
        height: 35px;
        flex-basis: 35px;
    }

    .stb-wp26-why__green-panel {
        min-height: 215px;
        padding: 38px 22px 42px;
    }

    .stb-wp26-why__panel-rule {
        top: 18%;
        left: 22px;
        height: 62%;
    }

    .stb-wp26-why__panel-copy {
        display: block;
        max-width: 245px;
        margin-left: 28px;
        font-size: clamp(29px, 9vw, 44px);
        line-height: .98;
    }

    .stb-wp26-why__panel-copy span {
        display: inline;
        margin-right: 6px;
    }

    .stb-wp26-why__panel-leaf {
        right: -8%;
        bottom: -10%;
        width: 46%;
    }

    .stb-wp26-why__seal {
        right: 18px;
        bottom: 18px;
        width: 72px;
    }

    .stb-wp26-why__seal-ring {
        font-size: 6px;
        letter-spacing: .12em;
    }

    .stb-wp26-why__seal-leaf {
        margin: 1px 0;
        font-size: 20px;
    }

    .stb-wp26-why__proof-rail {
        display: block;
        padding: 8px 20px 12px;
    }

    .stb-wp26-why__proof-item {
        display: flex;
        justify-content: flex-start;
        min-height: 50px;
        gap: 10px;
        border-bottom: 1px solid var(--stb-wp26-line);
    }

    .stb-wp26-why__proof-item:last-of-type {
        border-bottom: 0;
    }

    .stb-wp26-why__proof-divider {
        display: none;
    }

    .stb-wp26-why__proof-icon {
        width: 27px;
        height: 27px;
        flex-basis: 27px;
    }

    .stb-wp26-why__proof-number {
        min-width: 23px;
        font-size: 17px;
    }

    .stb-wp26-why__proof-text {
        font-size: 15px;
    }

    .stb-wp26-why__service {
        justify-content: flex-start;
        min-height: 53px;
        padding-top: 8px;
    }

    .stb-wp26-why__service strong {
        font-size: 13px;
    }

    .stb-wp26-why__leaf--top {
        top: 3%;
        left: -7%;
        width: 100px;
        opacity: .65;
    }

    .stb-wp26-why__leaf--bottom {
        right: -1%;
        bottom: 3%;
        width: 90px;
        opacity: .65;
    }
}

@media (prefers-reduced-motion: reduce) {
    .stb-wp26-why__cta {
        transition: none;
    }
}

/* =========================================================
   Homepage continuous surface
   Keep the first USP section's cream background throughout
   the homepage while removing later section backgrounds.
========================================================= */

.stb-homepage-surface {
    background-color: #fffdf8;
}

.stb-homepage-surface > .stb-category-section,
.stb-homepage-surface > .stb-basket-section,
.stb-homepage-surface > .stb-dairy-section,
.stb-homepage-surface > .stb-mustard-section,
.stb-homepage-surface > .stb-honey-section,
.stb-homepage-surface > .stb-reviews-section {
    background: transparent !important;
}

.stb-homepage-surface > .stb-category-section::before,
.stb-homepage-surface > .stb-category-section::after,
.stb-homepage-surface > .stb-basket-section::before,
.stb-homepage-surface > .stb-basket-section::after,
.stb-homepage-surface > .stb-dairy-section::before,
.stb-homepage-surface > .stb-dairy-section::after,
.stb-homepage-surface > .stb-reviews-section::before,
.stb-homepage-surface > .stb-reviews-section::after {
    display: none;
}

/* =========================================================
   Homepage performance: reserve the desktop hero's final space
   without changing its rendered dimensions or visual styling.
========================================================= */
@media (min-width: 768px) {
    .stb-slider {
        aspect-ratio: 2.91 / 1;
    }

    .stb-slider-item img {
        aspect-ratio: 2157 / 729;
    }
}

/* Reserve the exact mobile banner space before the LCP image loads. */
@media (max-width: 767px) {
    .stb-slider {
        aspect-ratio: 1113 / 1413;
        line-height: 0;
    }

    .stb-slider-item > a,
    .stb-slider-item picture {
        display: block;
        width: 100%;
        line-height: 0;
    }

    .stb-slider-item img {
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 1113 / 1413;
    }
}
