/* NIYOO FARM SERVICES - Main Stylesheet */
:root {
    --brown: #4A2410;
    --yellow: #F5B312;
    --bg: #FFF9F0;
    --white: #FFFFFF;
    --text: #222222;
    --text-light: #666666;
    --shadow: 0 4px 24px rgba(74, 36, 16, 0.08);
    --shadow-hover: 0 8px 32px rgba(74, 36, 16, 0.14);
    --radius: 24px;
    --radius-sm: 16px;
    --radius-xs: 12px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-h: 76px;
    --bottom-nav-h: 72px;
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.app-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: calc(var(--bottom-nav-h) + var(--safe-bottom));
}

.main-content { flex: 1; }

/* Top Bar - Desktop */
.top-bar {
    display: none;
    background: var(--brown);
    color: var(--white);
    font-size: 13px;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a { color: var(--yellow); font-weight: 500; }

/* Header */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(74, 36, 16, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 12px;
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo img {
    height: 56px;
    width: auto;
    max-width: none;
    object-fit: contain;
}

@media (max-width: 1023px) {
    .menu-toggle { display: flex; align-items: center; justify-content: center; }
}
.desktop-nav { display: none; gap: 32px; }
.desktop-nav a {
    font-weight: 500;
    color: var(--text);
    transition: color var(--transition);
    position: relative;
}
.desktop-nav a.active,
.desktop-nav a:hover { color: var(--brown); }
.desktop-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 8px; }
.header-icon {
    position: relative;
    padding: 10px;
    color: var(--brown);
    border-radius: 50%;
    transition: background var(--transition);
}
.header-icon:hover { background: var(--bg); }

.cart-badge, .nav-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--yellow);
    color: var(--brown);
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.bottom-nav .nav-badge {
    top: -2px;
    right: 50%;
    transform: translateX(16px);
}

.desktop-only { display: none; }
.mobile-only { display: flex; }

.header-search {
    display: none;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 2px solid rgba(74, 36, 16, 0.1);
    border-radius: 50px;
    padding: 0 16px;
    min-width: 200px;
    max-width: 260px;
    height: 42px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.header-search:focus-within {
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(245, 179, 18, 0.18);
}

.header-search svg {
    flex-shrink: 0;
    color: var(--text-light);
}

.header-search input {
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    width: 100%;
    min-width: 0;
    outline: none;
    color: var(--text);
}

.header-search input::placeholder {
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition);
    border: 2px solid transparent;
    min-height: 48px;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--yellow);
    color: var(--brown);
    box-shadow: 0 4px 16px rgba(245, 179, 18, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(245, 179, 18, 0.45);
}

.btn-secondary {
    background: var(--white);
    color: var(--brown);
    border-color: var(--brown);
}
.btn-secondary:hover { background: var(--bg); }

.btn-outline {
    background: transparent;
    color: var(--brown);
    border-color: rgba(74, 36, 16, 0.2);
}
.btn-in-cart {
    background: var(--white);
    color: var(--brown);
    border: 2px solid var(--yellow);
    box-shadow: none;
    cursor: pointer;
}
.btn-in-cart:hover {
    background: var(--bg);
    transform: none;
}

.btn-ghost {
    background: transparent;
    color: var(--brown);
    border: 2px solid rgba(74, 36, 16, 0.15);
    box-shadow: none;
}
.btn-ghost:hover {
    background: var(--white);
    border-color: rgba(74, 36, 16, 0.25);
    transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: 14px; min-height: 40px; }
.btn-block { width: 100%; }
.btn-icon { padding: 12px; border-radius: 50%; min-height: auto; }

/* Hero */
.hero {
    padding: 24px 0 40px;
    animation: fadeIn 0.6s ease;
}

.hero-integrated {
    position: relative;
    padding: calc(var(--header-h) + 4px) 0 72px;
    overflow: visible;
    background: transparent;
    min-height: clamp(420px, 72vh, 560px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 90% 40%, rgba(245, 179, 18, 0.14) 0%, transparent 60%),
        linear-gradient(160deg, #FFF9F0 0%, #FFF5E6 45%, #FFEFD4 100%);
    z-index: 0;
}

.hero-integrated .hero-inner {
    position: relative;
    z-index: 1;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 1;
    pointer-events: none;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: end;
    gap: 0;
}

.hero-content {
    order: unset;
    min-width: 0;
    padding-bottom: 12px;
    align-self: center;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(1.55rem, 7vw, 3.75rem);
    font-weight: 800;
    color: var(--brown);
    line-height: 1.06;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.hero p {
    font-size: clamp(10px, 2.9vw, 18px);
    color: var(--text-light);
    margin-bottom: 12px;
    max-width: none;
    line-height: 1.45;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 8px;
}

.hero-integrated .hero-buttons .btn {
    padding: 10px 14px;
    font-size: clamp(11px, 2.9vw, 15px);
    min-height: 38px;
    width: 100%;
    max-width: 148px;
}

.hero-image {
    order: unset;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: visible;
    height: clamp(230px, 58vw, 380px);
    margin: 0 -4px 0 -10px;
}

.hero-image img {
    display: block;
    width: auto;
    height: auto;
    max-height: 100%;
    max-width: 185%;
    margin-left: -32%;
    object-fit: contain;
    object-position: 72% center;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.hero-image::after {
    display: none;
}

.hero-badge {
    display: inline-block;
    background: rgba(245, 179, 18, 0.15);
    color: var(--brown);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Integrated header + hero (home page) */
.page-home-hero .top-bar {
    display: none;
}

.page-home-hero .site-header--hero {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    box-shadow: none;
    z-index: 200;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.page-home-hero .site-header--hero.is-scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 16px rgba(74, 36, 16, 0.08);
    backdrop-filter: blur(10px);
}

.page-home-hero .site-header--hero .desktop-nav a.active {
    color: var(--yellow);
}

.page-home-hero .site-header--hero .desktop-nav a.active::after {
    display: none;
}

.page-home-hero .quick-actions {
    padding-top: 8px;
}

.page-home-hero .hero-integrated .container {
    padding-left: 14px;
    padding-right: 6px;
    width: 100%;
}

/* Quick Actions / Feature Cards */
.quick-actions {
    padding: 0 0 32px;
    animation: fadeIn 0.6s ease 0.1s both;
}

    .quick-actions-scroll {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        scrollbar-width: none;
    }
.quick-actions-scroll::-webkit-scrollbar { display: none; }

.quick-action-card {
    flex: 0 0 calc(50% - 6px);
    scroll-snap-align: start;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    min-height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.quick-action-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.quick-action-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: var(--brown);
}

.quick-action-card span:last-child {
    font-weight: 600;
    font-size: 14px;
    color: var(--brown);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--brown);
}

.section-header a {
    color: var(--yellow);
    font-weight: 600;
    font-size: 14px;
    background: var(--brown);
    padding: 6px 14px;
    border-radius: 50px;
}

/* Products Grid */
.featured-products,
.products-section,
.related-products {
    padding: 0 0 40px;
    animation: fadeIn 0.6s ease 0.2s both;
}

.related-products {
    padding-top: 8px;
    border-top: 1px solid rgba(74, 36, 16, 0.08);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid rgba(245, 179, 18, 0.16);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow), #ffd86a);
    z-index: 2;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(245, 179, 18, 0.45);
}

.product-card-image {
    position: relative;
    display: block;
    padding: 14px 14px 0;
    background: linear-gradient(180deg, #fff9ef 0%, var(--white) 100%);
}

.product-card-image-frame {
    display: block;
    height: 190px;
    border-radius: calc(var(--radius-sm) - 4px);
    overflow: hidden;
    background: var(--bg);
    border: 1px solid rgba(74, 36, 16, 0.06);
}

.product-card-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.product-card:hover .product-card-image-frame img {
    transform: scale(1.06);
}

.product-card-category {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 2;
    background: var(--brown);
    color: var(--yellow);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 50px;
    max-width: calc(100% - 44px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card-sale {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 2;
    background: var(--yellow);
    color: var(--brown);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(74, 36, 16, 0.12);
}

.stock-badge {
    position: absolute;
    bottom: 10px;
    left: 22px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(4px);
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(74, 36, 16, 0.1);
    border: 1px solid rgba(74, 36, 16, 0.06);
}

.stock-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}
.stock-in .stock-dot { background: #22c55e; }
.stock-low .stock-dot { background: var(--yellow); }
.stock-out .stock-dot { background: #ef4444; }

.product-card-body {
    padding: 16px 16px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brown);
    line-height: 1.35;
    min-height: 2.7em;
}

.product-card-body h3 a {
    transition: color var(--transition);
}

.product-card-body h3 a:hover {
    color: #6b3a1a;
}

.product-card-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-footer {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px dashed rgba(74, 36, 16, 0.1);
}

.product-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.price-current {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brown);
    background: linear-gradient(135deg, rgba(245, 179, 18, 0.16), rgba(245, 179, 18, 0.06));
    padding: 4px 10px;
    border-radius: 8px;
}

.price-old {
    font-size: 13px;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-card-actions {
    display: flex;
    gap: 8px;
}

.product-card-actions .btn {
    font-size: 13px;
    padding: 11px 14px;
    min-height: 42px;
}

.product-card-actions .btn-primary {
    flex: 1;
}

.product-card-actions .btn-outline {
    flex: 0 0 auto;
    padding-inline: 16px;
}

.product-card-actions .btn:only-child {
    flex: 1;
    width: 100%;
}

/* Category Cards */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 32px;
}

.category-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 14px 10px 12px;
    box-shadow: var(--shadow);
    border: 2px solid rgba(245, 179, 18, 0.22);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow), #ffd86a);
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--yellow);
    background: linear-gradient(180deg, #fffdf5 0%, var(--white) 100%);
}

.category-card-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.category-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    background: linear-gradient(135deg, rgba(245, 179, 18, 0.2), rgba(74, 36, 16, 0.06));
    border: 1px solid rgba(245, 179, 18, 0.35);
    border-radius: 50%;
}

.category-card h3 {
    font-size: 12px;
    font-weight: 700;
    color: var(--brown);
    line-height: 1.3;
}

/* Page Header */
.page-header {
    padding: 32px 0 24px;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--brown);
    margin-bottom: 8px;
}

.page-header p {
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

/* About Page */
.about-section {
    padding: 8px 0 48px;
    animation: fadeIn 0.5s ease both;
}

.about-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 20px;
    box-shadow: var(--shadow);
    border: 2px solid rgba(245, 179, 18, 0.18);
    position: relative;
    overflow: hidden;
}

.about-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow), #ffd86a);
}

.about-showcase-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brown);
    background: rgba(245, 179, 18, 0.18);
    padding: 6px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.about-showcase-content h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--brown);
    line-height: 1.2;
    margin-bottom: 18px;
}

.about-showcase-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-showcase-text p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.75;
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.about-highlight {
    font-size: 12px;
    font-weight: 700;
    color: var(--brown);
    background: var(--bg);
    border: 1px solid rgba(245, 179, 18, 0.28);
    padding: 8px 12px;
    border-radius: 50px;
}

.about-showcase-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.about-showcase-media {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-showcase-image {
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(74, 36, 16, 0.08);
    background: var(--bg);
    aspect-ratio: 16 / 10;
}

.about-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-showcase-image-secondary img {
    object-position: center 30%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
}

.about-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
}

.about-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 10px;
}

.about-card p, .about-card li {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.about-card ul { margin-top: 8px; }
.about-card li { padding: 4px 0; padding-left: 20px; position: relative; }
.about-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: 700;
}

/* Farm Tips */
.farm-tips-section,
.farm-faq-section {
    padding: 8px 0 40px;
    animation: fadeIn 0.5s ease both;
}

.farm-faq-section {
    padding-top: 0;
}

.section-header-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 6px;
    font-weight: 400;
}

.incubation-guide {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 2px solid rgba(245, 179, 18, 0.16);
    overflow: hidden;
}

.incubation-species {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 16px;
    border-bottom: 1px solid rgba(74, 36, 16, 0.08);
    scrollbar-width: none;
    background: linear-gradient(180deg, #fffdf8 0%, var(--white) 100%);
}

.incubation-species::-webkit-scrollbar { display: none; }

.incubation-species-btn {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 88px;
    padding: 10px 8px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    background: var(--white);
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
    cursor: pointer;
}

.incubation-species-btn:hover {
    border-color: rgba(245, 179, 18, 0.35);
    transform: translateY(-2px);
}

.incubation-species-btn.is-active {
    border-color: var(--yellow);
    background: rgba(245, 179, 18, 0.12);
}

.incubation-species-thumb {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(245, 179, 18, 0.25);
    background: var(--bg);
}

.incubation-species-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.incubation-species-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--brown);
    text-align: center;
}

.incubation-panel {
    padding: 20px 16px 24px;
    display: none;
}

.incubation-panel.is-active {
    display: block;
}

.incubation-panel-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.incubation-panel-image {
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    box-shadow: var(--shadow);
    border: 1px solid rgba(74, 36, 16, 0.08);
}

.incubation-panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.incubation-panel-intro h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--brown);
    margin-bottom: 8px;
}

.incubation-period {
    font-size: 14px;
    color: var(--brown);
    margin-bottom: 8px;
}

.incubation-panel-tip {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.incubation-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(74, 36, 16, 0.08);
}

.incubation-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.incubation-table thead {
    background: var(--brown);
    color: var(--white);
}

.incubation-table th,
.incubation-table td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
    line-height: 1.5;
}

.incubation-table tbody tr:nth-child(even) {
    background: var(--bg);
}

.incubation-table tbody tr:hover {
    background: rgba(245, 179, 18, 0.08);
}

@media (max-width: 767px) {
    .incubation-table-wrap {
        overflow-x: visible;
        border: none;
        background: transparent;
    }

    .incubation-table {
        font-size: 13px;
    }

    .incubation-table thead {
        display: none;
    }

    .incubation-table tbody tr {
        display: block;
        background: var(--white);
        border-radius: var(--radius-sm);
        margin-bottom: 12px;
        padding: 4px 14px;
        box-shadow: var(--shadow);
        border: 1px solid rgba(74, 36, 16, 0.08);
    }

    .incubation-table tbody tr:nth-child(even) {
        background: var(--white);
    }

    .incubation-table tbody tr:hover {
        background: var(--white);
    }

    .incubation-table td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 16px;
        padding: 12px 0;
        border-bottom: 1px dashed rgba(74, 36, 16, 0.1);
        text-align: right;
    }

    .incubation-table td:last-child {
        border-bottom: none;
    }

    .incubation-table td::before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--brown);
        text-align: left;
        flex-shrink: 0;
    }
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    border: 1px solid rgba(74, 36, 16, 0.08);
    overflow: hidden;
}

.faq-item summary {
    padding: 18px 20px;
    font-weight: 700;
    color: var(--brown);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--yellow);
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 20px 18px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    border-top: 1px dashed rgba(74, 36, 16, 0.1);
    margin-top: -2px;
    padding-top: 14px;
}

.farm-tips-cta {
    padding: 0 0 48px;
    text-align: center;
}

.farm-tips-cta h2 {
    font-size: 1.35rem;
    color: var(--brown);
    margin-bottom: 10px;
}

.farm-tips-cta p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.farm-tips-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 40px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
}

.contact-card h3 { font-weight: 700; color: var(--brown); margin-bottom: 6px; }
.contact-card p, .contact-card a { font-size: 15px; color: var(--text-light); }
.contact-card a:hover { color: var(--brown); }

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 280px;
    margin-bottom: 40px;
}

.map-container iframe { width: 100%; height: 100%; border: 0; }

/* Product Detail */
.product-detail {
    padding: 24px 0 40px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.product-gallery-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
    aspect-ratio: 1;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    overflow-x: auto;
}

.gallery-thumb {
    flex: 0 0 72px;
    height: 72px;
    border-radius: var(--radius-xs);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color var(--transition);
}

.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--yellow); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--brown);
    margin-bottom: 8px;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.product-category-tag {
    background: var(--bg);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--brown);
}

.product-info .product-price { margin-bottom: 20px; }
.product-info .price-current { font-size: 1.75rem; }

.product-description {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.qty-selector {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 50px;
    border: 2px solid rgba(74, 36, 16, 0.1);
    overflow: hidden;
}

.qty-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
    font-weight: 600;
    color: var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
}
.qty-btn:hover { background: var(--bg); }

.qty-input {
    width: 48px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    border: none;
    background: transparent;
    color: var(--brown);
}

.detail-section {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.detail-section h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bg);
}

.spec-list, .feature-list, .benefit-list {
    display: grid;
    gap: 10px;
}

.spec-list li, .feature-list li, .benefit-list li {
    display: flex;
    gap: 10px;
    font-size: 15px;
    color: var(--text-light);
    padding: 8px 0;
    border-bottom: 1px solid var(--bg);
}

.spec-list li:last-child, .feature-list li:last-child, .benefit-list li:last-child { border-bottom: none; }

.spec-list strong { color: var(--brown); min-width: 140px; }

.feature-list li::before, .benefit-list li::before {
    content: '✓';
    color: var(--yellow);
    font-weight: 700;
    flex-shrink: 0;
}

/* Cart & Checkout */
.cart-page, .checkout-page {
    padding: 24px 0 calc(48px + var(--bottom-nav-h) + var(--safe-bottom));
}

.cart-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 0;
}

.cart-summary {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    position: static;
    z-index: 1;
    flex-shrink: 0;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.cart-empty-icon { font-size: 64px; margin-bottom: 16px; }
.cart-empty h2 { color: var(--brown); margin-bottom: 8px; }
.cart-empty p { color: var(--text-light); margin-bottom: 24px; }

.cart-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 16px;
    align-items: center;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xs);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg);
}

.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }

.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info h3 { font-size: 15px; font-weight: 700; color: var(--brown); margin-bottom: 4px; }
.cart-item-price { font-weight: 700; color: var(--brown); font-size: 14px; }

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.remove-item {
    color: #ef4444;
    font-size: 13px;
    font-weight: 500;
    padding: 4px 8px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px;
}

.cart-summary-total {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brown);
    padding-top: 12px;
    border-top: 2px solid var(--bg);
    margin-bottom: 20px;
}

/* Checkout Form */
.checkout-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(74, 36, 16, 0.1);
    border-radius: var(--radius-xs);
    font-family: inherit;
    font-size: 16px;
    color: var(--text);
    background: var(--bg);
    transition: border-color var(--transition);
    min-height: 48px;
}

.form-control:focus {
    outline: none;
    border-color: var(--yellow);
    background: var(--white);
}

textarea.form-control { min-height: 100px; resize: vertical; }

.order-preview {
    background: var(--bg);
    border-radius: var(--radius-xs);
    padding: 16px;
    margin-bottom: 24px;
    font-size: 14px;
    white-space: pre-wrap;
    line-height: 1.8;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }

.filter-chip {
    flex-shrink: 0;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    background: var(--white);
    color: var(--brown);
    border: 2px solid rgba(74, 36, 16, 0.1);
    transition: all var(--transition);
    min-height: 44px;
}

.filter-chip.active, .filter-chip:hover {
    background: var(--brown);
    color: var(--white);
    border-color: var(--brown);
}

.filter-chip-child {
    font-size: 13px;
    padding: 8px 16px;
    opacity: 0.92;
}

.filter-bar-sub {
    margin-top: -8px;
    margin-bottom: 4px;
}

.filter-chip-type {
    background: rgba(245, 179, 18, 0.18);
    border-color: rgba(245, 179, 18, 0.45);
    font-weight: 700;
}

.filter-chip-type.active,
.filter-chip-type:hover {
    background: var(--yellow);
    color: var(--brown);
    border-color: var(--yellow);
}

.search-box {
    margin-bottom: 20px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 14px 18px 14px 48px;
    border: 2px solid rgba(74, 36, 16, 0.1);
    border-radius: 50px;
    font-family: inherit;
    font-size: 16px;
    background: var(--white);
    min-height: 48px;
}

.search-box input:focus { outline: none; border-color: var(--yellow); }

.search-box svg {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition);
}

.mobile-menu.open {
    pointer-events: auto;
    opacity: 1;
}

.mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(74, 36, 16, 0.5);
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(300px, 85vw);
    background: var(--white);
    transform: translateX(-100%);
    transition: transform var(--transition);
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.mobile-menu.open .mobile-menu-panel { transform: translateX(0); }

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.mobile-menu-header img {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.menu-close {
    font-size: 32px;
    color: var(--brown);
    line-height: 1;
    padding: 4px;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-nav a {
    padding: 16px;
    font-size: 17px;
    font-weight: 600;
    color: var(--brown);
    border-radius: var(--radius-xs);
    transition: background var(--transition);
}

.mobile-menu-nav a:hover { background: var(--bg); }

/* Bottom Nav */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: calc(var(--bottom-nav-h) + var(--safe-bottom));
    padding-bottom: var(--safe-bottom);
    box-shadow: 0 -4px 24px rgba(74, 36, 16, 0.08);
    z-index: 100;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    color: var(--text-light);
    font-size: 11px;
    font-weight: 500;
    position: relative;
    transition: color var(--transition);
    min-width: 56px;
}

.bottom-nav-item.active { color: var(--yellow); }
.bottom-nav-item.active svg { stroke: var(--yellow); }

/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    bottom: calc(var(--bottom-nav-h) + 16px + var(--safe-bottom));
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: transform var(--transition);
}

.whatsapp-fab:hover { transform: scale(1.08); }

/* Footer */
.site-footer {
    background: var(--brown);
    color: rgba(255, 255, 255, 0.8);
    padding: 40px 0 24px;
    margin-bottom: calc(var(--bottom-nav-h) + var(--safe-bottom));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-brand img {
    height: 80px;
    width: auto;
    margin-bottom: 16px;
    object-fit: contain;
}
.footer-brand p { font-size: 14px; line-height: 1.7; }

.social-links {
    margin-top: 18px;
}

.social-links-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--brown);
}

.social-links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-links-row--secondary {
    margin-top: 10px;
}

.social-links--footer .social-links-row--footer-all {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.social-links--footer .social-links-row--footer-all::-webkit-scrollbar {
    display: none;
}

.social-links--footer .social-links-row--footer-all .social-link {
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .social-links--footer .social-links-row--footer-all {
        display: grid;
        grid-template-columns: repeat(3, 42px);
        gap: 10px;
        overflow: visible;
        max-width: 146px;
    }
}

@media (max-width: 767px) {
    .social-links--footer .social-links-row--footer-all .social-link {
        width: 36px;
        height: 36px;
    }

    .social-links--footer .social-links-row--footer-all .social-link svg {
        width: 18px;
        height: 18px;
    }
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.social-link:hover {
    transform: translateY(-2px);
    background: var(--yellow);
    color: var(--brown);
    border-color: var(--yellow);
}

.social-links--footer .social-links-title {
    color: var(--yellow);
}

.social-links--contact {
    margin: 8px 0 28px;
    padding: 24px 20px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    border: 2px solid rgba(245, 179, 18, 0.18);
    text-align: center;
}

.social-links--contact .social-links-row {
    justify-content: center;
}

.social-links--contact .social-link {
    width: 48px;
    height: 48px;
    background: var(--bg);
    color: var(--brown);
    border: 1px solid rgba(74, 36, 16, 0.1);
}

.social-links--contact .social-link:hover {
    background: var(--yellow);
    border-color: var(--yellow);
}

.social-link-jiji svg text {
    font-family: 'Outfit', sans-serif;
}

.footer-nav-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.footer-links h4, .footer-contact h4 {
    color: var(--yellow);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links a, .footer-contact p {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color var(--transition);
}

.footer-links a:hover, .footer-contact a:hover { color: var(--yellow); }

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    text-align: center;
}

.footer-copyright {
    width: 100%;
}

.footer-credit {
    width: 100%;
    text-align: right;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-credit a {
    color: var(--yellow);
    font-weight: 500;
    transition: color var(--transition);
}

.footer-credit a:hover {
    color: var(--white);
}

/* Toast */
.toast {
    position: fixed;
    bottom: calc(var(--bottom-nav-h) + 80px + var(--safe-bottom));
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--brown);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    z-index: 300;
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
    white-space: nowrap;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeIn 0.5s ease both; }

/* Tablet */
@media (min-width: 640px) {
    .logo img { height: 64px; }
    .footer-brand img { height: 96px; }
    .quick-action-card { flex: 0 0 calc(33.333% - 8px); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
    .category-card { padding: 16px 12px 14px; }
    .category-card h3 { font-size: 13px; }
    .category-card-icon { width: 48px; height: 48px; font-size: 24px; }
    .about-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }

    .hero-inner {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    }

    .hero-content { padding-bottom: 16px; }

    .hero h1 { font-size: clamp(1.85rem, 5.5vw, 2.4rem); }

    .hero-image {
        height: clamp(280px, 50vw, 440px);
        margin: 0 -8px 0 -16px;
    }

    .hero-image img {
        max-width: 190%;
        margin-left: -30%;
        object-position: 70% center;
    }

    .hero-integrated .hero-buttons .btn { max-width: 170px; }

    .footer-nav-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    :root { --header-h: 88px; }

    .app-wrapper { padding-bottom: 0; }
    .bottom-nav { display: none; }
    .whatsapp-fab { bottom: 24px; }
    .menu-toggle { display: none; }
    .header-inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 20px;
    }

    .logo { justify-self: start; }
    .desktop-nav {
        display: flex;
        justify-self: center;
        gap: 36px;
        font-size: 16px;
        white-space: nowrap;
    }
    .desktop-nav a { white-space: nowrap; }
    .header-actions { justify-self: end; }

    .desktop-only { display: inline-flex; }
    .mobile-only { display: none; }
    .header-search { display: flex; }
    .top-bar { display: block; }

    .page-home-hero .top-bar { display: none; }

    .logo img { height: 72px; }
    .footer-brand img { height: 110px; }
    .mobile-menu-header img { height: 72px; }

    .hero-integrated {
        padding: calc(var(--header-h) + 16px) 0 100px;
        min-height: min(94vh, 860px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow: visible;
    }

    .page-home-hero .hero-integrated .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-wave { height: 100px; }

    .hero-inner {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
        align-items: flex-end;
    }

    .hero-content {
        padding-bottom: 64px;
        align-self: flex-end;
    }

    .hero h1 {
        font-size: clamp(3.25rem, 5.4vw, 4.75rem);
        line-height: 1.02;
        margin-bottom: 20px;
        max-width: 11.5ch;
    }

    .hero p {
        font-size: 20px;
        margin-bottom: 32px;
        max-width: 32rem;
        line-height: 1.65;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 14px;
    }

    .hero-integrated .hero-buttons .btn {
        width: auto;
        max-width: none;
        padding: 14px 28px;
        font-size: 15px;
        min-height: 48px;
    }

    .hero-image {
        height: min(84vh, 800px);
        margin: 0 -20px -68px -56px;
        justify-content: flex-start;
        align-items: flex-end;
        overflow: hidden;
    }

    .hero-image img {
        height: auto;
        width: auto;
        max-width: 175%;
        max-height: min(88vh, 840px);
        margin-left: -42%;
        object-position: 68% bottom;
    }

    .quick-actions-scroll {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        overflow: visible;
        scroll-behavior: auto;
    }

    .quick-action-card { flex: none; }

    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
        gap: 14px;
    }

    .category-card h3 { font-size: 14px; }

    .product-detail-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .about-showcase {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 40px;
        padding: 36px;
        align-items: start;
    }

    .about-showcase-image-main {
        aspect-ratio: 4 / 3;
    }

    .incubation-panel-head {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 24px;
    }

    .incubation-panel {
        padding: 28px 28px 32px;
    }

    .incubation-species-btn {
        min-width: 100px;
    }

    .about-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
    .footer-nav-row { display: contents; }
    .site-footer { margin-bottom: 0; }

    .cart-layout {
        display: grid;
        grid-template-columns: 1fr 360px;
        gap: 32px;
        align-items: start;
    }

    .cart-page, .checkout-page {
        padding-bottom: 40px;
    }

    .cart-summary {
        position: sticky;
        top: calc(var(--header-h) + 16px);
    }

    .checkout-layout {
        display: grid;
        grid-template-columns: 1fr 400px;
        gap: 32px;
        align-items: start;
    }
}

@media (min-width: 1200px) {
    .products-grid { grid-template-columns: repeat(4, 1fr); }
}
