:root {
    --bg: #f6f3e9;
    --surface: #ffffff;
    --surface-alt: #eef7ea;
    --line: #dbe4d2;
    --text: #1f2a1b;
    --muted: #5f6d57;
    --brand: #0b8f3a;
    --brand-dark: #0b5f29;
    --accent: #f4b522;
    --danger: #c33d2f;
    --shadow: 0 20px 50px rgba(18, 58, 25, 0.08);
    --radius: 24px;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(244, 181, 34, 0.24), transparent 25%),
        linear-gradient(180deg, #fbf8ef 0%, #f3f8ef 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 48px 0; }
.muted-section { background: linear-gradient(180deg, rgba(11, 143, 58, 0.06), rgba(11, 143, 58, 0.02)); }
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: rgba(250, 249, 244, 0.94);
    border-bottom: 1px solid rgba(11, 95, 41, 0.08);
}
.topbar, .site-nav, .section-head, .price-row, .inline-actions, .summary-row, .top-actions, .hero-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.topbar { padding: 16px 0 8px; }
.site-nav {
    padding: 12px 0 18px;
    overflow-x: auto;
}
.site-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 600;
    white-space: nowrap;
}
.site-nav a.active, .site-nav a:hover, .filters a.active-filter {
    background: var(--brand);
    color: #fff;
}
.brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brand-dark);
}
.solid-btn, .ghost-btn, button {
    border: none;
    border-radius: 999px;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.solid-btn, button.solid-btn {
    background: linear-gradient(135deg, var(--brand), #1aaf49);
    color: #fff;
    box-shadow: var(--shadow);
}
.ghost-btn {
    background: rgba(11, 143, 58, 0.08);
    color: var(--brand-dark);
}
.solid-btn:hover, .ghost-btn:hover, button:hover { transform: translateY(-1px); }
.hero {
    padding: 72px 0;
    background:
        linear-gradient(120deg, rgba(11, 143, 58, 0.94), rgba(10, 88, 36, 0.88)),
        url('/images/green-bg.jpg') center/cover;
    color: #fff;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 28px;
    align-items: center;
}
.hero h1 { font-size: clamp(2.4rem, 4vw, 4.8rem); line-height: 0.95; margin: 12px 0; max-width: 10ch; }
.hero p { font-size: 1.08rem; max-width: 62ch; color: rgba(255,255,255,0.9); }
.eyebrow {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.hero-card, .product-card, .plan-card, .category-card, .admin-panel, .cart-summary, .status-card, .auth-card, .empty-state, .contact-panel {
    background: var(--surface);
    border: 1px solid rgba(11, 95, 41, 0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.hero-card {
    color: var(--text);
    padding: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(238,247,234,0.96));
}
.check-list {
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.7;
}
.section-head { margin-bottom: 24px; flex-wrap: wrap; }
.section-head h1, .section-head h2 { margin: 0; }
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.category-card, .product-card, .plan-card {
    padding: 22px;
}
.category-card {
    min-height: 160px;
    background: linear-gradient(160deg, rgba(255,255,255,0.96), rgba(244, 248, 239, 0.96));
}
.category-card strong { display: block; font-size: 1.2rem; margin-bottom: 8px; color: var(--brand-dark); }
.category-card span, .product-card p, .plan-card p, .summary-item, .flash, .faq-list p, .contact-panel p, .admin-panel p {
    color: var(--muted);
}
.product-card img {
    height: 220px;
    width: 100%;
    object-fit: contain;
    background: linear-gradient(180deg, #fff, #f6faef);
    border-radius: 18px;
    margin-bottom: 16px;
}
.product-card h3, .plan-card h3 { margin: 8px 0; }
.product-meta, .plan-period {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand);
    font-weight: 800;
}
.price-row strong, .plan-pricing strong, .stat-card strong {
    font-size: 1.5rem;
    color: var(--brand-dark);
}
.plan-pricing span {
    text-decoration: line-through;
    color: #9aa292;
    margin-right: 10px;
}
.inline-actions { margin-top: 18px; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; }
.filters a {
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
}
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.product-image-panel, .product-copy {
    background: rgba(255,255,255,0.84);
    border-radius: var(--radius);
    padding: 26px;
    border: 1px solid rgba(11, 95, 41, 0.08);
}
.product-image-panel img {
    max-height: 420px;
    object-fit: contain;
    margin: 0 auto;
}
.large-price strong { font-size: 2.1rem; }
.product-buy-form, .checkout-form, .admin-form, .auth-card, .mini-form {
    display: grid;
    gap: 16px;
}
.product-buy-form input[type="number"] {
    width: 110px;
}
.cart-layout, .checkout-layout, .admin-two-col {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 24px;
}
.cart-offer-panel {
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 22px;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(11, 95, 41, 0.08);
    background:
        radial-gradient(circle at top right, rgba(244, 181, 34, 0.16), transparent 30%),
        linear-gradient(135deg, rgba(232, 242, 226, 0.92), rgba(255, 248, 232, 0.98));
    box-shadow: var(--shadow);
}
.cart-offer-copy h2 {
    margin: 0 0 10px;
    font-size: clamp(1.6rem, 2vw, 2.2rem);
    color: var(--brand-dark);
}
.cart-offer-copy h2 span { color: var(--brand); }
.cart-offer-copy > p {
    margin: 0 0 18px;
    color: var(--muted);
    max-width: 62ch;
}
.cart-offer-kicker {
    margin: 0 0 8px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand);
}
.cart-goal-track {
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(11, 95, 41, 0.08);
}
.cart-goal-scale {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--brand-dark);
}
.cart-goal-caption {
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.76rem;
}
.cart-goal-caption strong {
    font-size: inherit;
    color: inherit;
}
.cart-goal-bar {
    margin-top: 10px;
    height: 12px;
    border-radius: 999px;
    background: rgba(29, 109, 58, 0.12);
    overflow: hidden;
}
.cart-goal-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #1aaf49, #f4b522);
}
.cart-offer-actions {
    margin-top: 18px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.cart-coupon-claim-form { margin: 0; }
.cart-coupon-pill {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(11, 95, 41, 0.08);
    color: var(--brand-dark);
    font-weight: 700;
}
.cart-coupon-pill.is-applied {
    background: rgba(11, 143, 58, 0.12);
    color: var(--brand-dark);
}
.cart-offer-recos h3 {
    margin: 4px 0 14px;
    font-size: 1.05rem;
}
.cart-offer-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}
.cart-offer-tab {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    border: 1px solid rgba(24, 77, 46, 0.1);
    background: rgba(81, 134, 73, 0.1);
    color: var(--brand-dark);
    font-weight: 800;
}
.cart-offer-tab.is-active {
    background: var(--forest);
    color: #fff;
}
.cart-offer-panel-body {
    display: none;
}
.cart-offer-panel-body.is-active {
    display: block;
}
.cart-upsell-grid {
    display: grid;
    gap: 14px;
}
.cart-upsell-card {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(11, 95, 41, 0.08);
}
.cart-upsell-image {
    display: block;
    width: 92px;
    height: 92px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(180deg, #f8f4e8, #edf3e5);
}
.cart-upsell-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.cart-upsell-body h4 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.cart-upsell-body p {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 0.9rem;
}
.cart-upsell-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.cart-coupon-stack {
    display: grid;
    gap: 12px;
    margin-bottom: 16px;
}
.cart-coupon-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(243, 248, 238, 0.96), rgba(255, 250, 239, 0.98));
    border: 1px solid rgba(11, 95, 41, 0.08);
}
.cart-coupon-card.is-active {
    background: linear-gradient(135deg, rgba(232, 247, 228, 0.98), rgba(248, 240, 216, 0.98));
    border-color: rgba(26, 175, 73, 0.18);
}
.cart-coupon-card strong {
    display: block;
    margin-bottom: 4px;
    color: var(--brand-dark);
}
.cart-coupon-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
}
.cart-coupon-card-meta {
    display: grid;
    justify-items: end;
    gap: 8px;
}
.cart-coupon-card-meta > span:first-child {
    color: var(--brand);
    font-weight: 800;
}
.cart-items, .checkout-form {
    display: grid;
    gap: 18px;
}
.cart-actions-row {
    display: grid;
    grid-template-columns: 90px 1fr minmax(170px, 202px) auto;
    gap: 16px;
    align-items: start;
}
.cart-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-column: 3;
    justify-self: stretch;
    align-self: start;
    width: 100%;
    min-width: 0;
    max-width: none;
    padding: 10px 20px;
    line-height: 1.1;
}
.cart-primary-btn {
    min-height: 44px;
    box-shadow: var(--shadow);
}
.cart-item, .summary-item {
    display: grid;
    grid-template-columns: 90px 1fr auto auto;
    gap: 16px;
    align-items: center;
    padding: 18px;
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(11, 95, 41, 0.08);
    border-radius: 20px;
}
.cart-item img { width: 90px; height: 90px; object-fit: contain; }
.cart-summary, .status-card, .empty-state, .contact-panel {
    padding: 24px;
    height: fit-content;
}
.summary-row { padding: 12px 0; border-bottom: 1px dashed var(--line); }
.summary-row.total { border-bottom: none; padding-top: 18px; }
.summary-item {
    grid-template-columns: 1fr auto;
    padding: 8px 0;
    background: transparent;
    border: none;
    border-radius: 0;
}
.full-btn { width: 100%; text-align: center; display: inline-block; }
input, textarea, select {
    width: 100%;
    border: 1px solid #cfdcc7;
    border-radius: 16px;
    padding: 13px 14px;
    font: inherit;
    background: #fff;
}
textarea { resize: vertical; }
label { display: grid; gap: 8px; font-weight: 600; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.payment-panel {
    padding: 20px;
    background: rgba(11, 143, 58, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(11, 143, 58, 0.1);
}
.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}
.payment-option input { width: auto; }
.flash-stack { padding-top: 18px; }
.flash {
    padding: 14px 18px;
    border-radius: 18px;
    margin-bottom: 12px;
    background: #fff;
    border: 1px solid var(--line);
}
.flash-success { border-color: rgba(11, 143, 58, 0.3); }
.flash-error { border-color: rgba(195, 61, 47, 0.25); color: var(--danger); }
.site-footer {
    margin-top: 40px;
    padding: 44px 0 24px;
    background: #11331a;
    color: rgba(255,255,255,0.9);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 24px;
}
.footer-grid p, .footer-grid a, .footer-bottom { color: rgba(255,255,255,0.74); }
.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}
.footer-social-links a {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
}
.footer-bottom {
    padding-top: 18px;
    margin-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.auth-shell { display: flex; justify-content: center; }
.auth-card { width: min(480px, 100%); padding: 28px; }
.admin-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}
.admin-tabs a {
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
}
.admin-tabs a.active { background: var(--brand); color: #fff; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}
.stat-card {
    padding: 24px;
    background: linear-gradient(180deg, #fff, #eff7ea);
    border-radius: 24px;
    border: 1px solid rgba(11, 95, 41, 0.08);
}
.stat-card span { display: block; margin-top: 10px; color: var(--muted); font-weight: 600; }
.admin-panel { padding: 24px; }
.admin-console {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    min-height: calc(100vh - 130px);
}
.admin-sidebar {
    position: sticky;
    top: 96px;
    align-self: start;
    min-height: calc(100vh - 120px);
    padding: 24px 20px;
    background: linear-gradient(180deg, #0c7e33, #0b5f29);
    color: rgba(255,255,255,0.92);
    border-right: 1px solid rgba(255,255,255,0.08);
    display: grid;
    gap: 24px;
}
.admin-sidebar-brand h1 {
    margin: 8px 0;
    font-size: 1.7rem;
}
.admin-sidebar-brand p {
    color: rgba(255,255,255,0.74);
    margin: 0;
}
.admin-sidebar-nav {
    display: grid;
    gap: 20px;
}
.admin-nav-section {
    display: grid;
    gap: 8px;
}
.admin-nav-label {
    margin: 0 0 6px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.62);
}
.admin-nav-link {
    display: block;
    padding: 12px 14px;
    border-radius: 16px;
    color: rgba(255,255,255,0.9);
    font-weight: 700;
}
.admin-nav-link:hover,
.admin-nav-link.active {
    background: rgba(255,255,255,0.14);
}
.admin-sidebar-footer {
    display: grid;
    gap: 10px;
    align-content: end;
}
.admin-sidebar-footer .ghost-btn {
    background: rgba(255,255,255,0.12);
    color: #fff;
}
.admin-main {
    padding: 32px;
}
.admin-grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 24px;
}
.admin-subpanel {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px dashed var(--line);
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
}
.admin-table th, .admin-table td {
    padding: 12px 10px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}
.actions-cell, .mini-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.actions-cell a { color: var(--brand-dark); font-weight: 700; }
.toggle-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.admin-fieldset {
    margin: 0;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 18px;
    display: grid;
    gap: 10px;
}
.admin-fieldset legend {
    padding: 0 8px;
    color: var(--forest);
    font-weight: 700;
}
.admin-fieldset label {
    display: flex;
    align-items: center;
    gap: 8px;
}
.admin-fieldset input { width: auto; }
.toggle-row label { display: flex; align-items: center; gap: 8px; }
.toggle-row input { width: auto; }
.faq-list {
    display: grid;
    gap: 18px;
}
.account-shell {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 24px;
}
.account-nav,
.account-panel {
    background: #fff;
    border: 1px solid rgba(11, 95, 41, 0.08);
    border-radius: 24px;
    box-shadow: var(--shadow);
}
.account-nav {
    padding: 18px;
    display: grid;
    gap: 10px;
    height: fit-content;
}
.account-nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 16px;
    font-weight: 700;
    color: var(--brand-dark);
}
.account-nav a.active,
.account-nav a:hover {
    background: rgba(11, 143, 58, 0.1);
}
.account-panel {
    padding: 24px;
}
.social-links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}
.social-link-pill {
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(11, 143, 58, 0.08);
    border: 1px solid rgba(11, 143, 58, 0.12);
    font-weight: 700;
    color: var(--brand-dark);
}
.social-feed-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.social-feed-card,
.social-preview-card {
    background: #fff;
    border: 1px solid rgba(11, 95, 41, 0.08);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 20px;
}
.social-feed-card iframe,
.social-preview-card iframe {
    width: 100%;
    min-height: 260px;
    border: 0;
    border-radius: 18px;
    background: #f3f6ef;
}
.social-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
}
.header-search {
    flex: 1;
    max-width: 420px;
}
.header-search input {
    width: 100%;
}
.filter-panel {
    margin-bottom: 24px;
}
.pagination-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.review-card {
    background: #fff;
    border: 1px solid rgba(11, 95, 41, 0.08);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 18px;
}
.product-reviews-shell {
    display: grid;
    gap: 24px;
}
.review-summary-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
    gap: 24px;
}
.review-summary-card,
.review-breakdown-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
}
.review-summary-score {
    display: flex;
    align-items: end;
    gap: 12px;
    margin-bottom: 14px;
}
.review-summary-score strong {
    font-size: clamp(2.8rem, 5vw, 4rem);
    line-height: 0.95;
    color: var(--forest);
}
.review-summary-score span {
    color: var(--muted);
    font-weight: 700;
}
.rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #d6a32d;
}
.rating-stars.small {
    gap: 4px;
}
.rating-stars.small .star {
    font-size: 0.96rem;
}
.star {
    font-size: 1.16rem;
    line-height: 1;
}
.star.is-empty {
    color: rgba(214, 163, 45, 0.28);
}
.review-summary-meta {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}
.review-summary-meta p {
    margin: 0;
}
.review-breakdown-list {
    display: grid;
    gap: 14px;
}
.review-breakdown-row {
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr) 54px;
    gap: 14px;
    align-items: center;
}
.review-breakdown-row strong,
.review-breakdown-row span:last-child {
    color: var(--forest);
}
.review-breakdown-bar {
    height: 12px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(24, 77, 46, 0.08);
}
.review-breakdown-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #d8ab49, #4f8a4d);
}
.review-card-list {
    display: grid;
    gap: 18px;
}
.review-card-head,
.review-card-meta,
.review-card-images {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.review-card-head {
    justify-content: space-between;
}
.review-card h3,
.review-card p {
    margin: 0;
}
.review-card-body {
    display: grid;
    gap: 12px;
}
.review-card-meta {
    color: var(--muted);
    font-size: 0.9rem;
}
.verified-chip {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(79, 138, 77, 0.12);
    color: var(--brand-dark);
    font-size: 0.78rem;
    font-weight: 800;
}
.review-card-images img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(24, 77, 46, 0.1);
}
.review-empty-state {
    text-align: center;
    padding: 28px;
}
.review-empty-state p {
    margin: 0;
}
.review-form {
    margin-top: 22px;
}
.muted-text {
    color: var(--muted);
}
.content-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.content-card {
    background: #fff;
    border: 1px solid rgba(11, 95, 41, 0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.content-card img,
.story-hero {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #f3f6ef;
}
.content-card-body {
    padding: 20px;
    display: grid;
    gap: 12px;
}
.content-meta,
.recipe-meta-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    color: var(--muted);
    font-size: 0.95rem;
}
.content-meta a {
    font-weight: 700;
    color: var(--brand-dark);
}
.story-layout {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}
.story-excerpt {
    font-size: 1.1rem;
    color: var(--muted);
}
.story-content {
    background: #fff;
    border: 1px solid rgba(11, 95, 41, 0.08);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 28px;
    line-height: 1.8;
    white-space: normal;
}
.footer-policy-links {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
}
.footer-policy-links a {
    color: inherit;
}
.table-note {
    margin: 16px 0 0;
    color: var(--muted);
}

@media (max-width: 980px) {
    .hero-grid, .product-detail, .cart-layout, .checkout-layout, .admin-two-col, .footer-grid, .admin-grid-2, .social-feed-grid, .social-preview-grid, .account-shell, .content-grid {
        grid-template-columns: 1fr;
    }
    .card-grid, .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .admin-console {
        grid-template-columns: 1fr;
    }
    .admin-sidebar {
        position: static;
        min-height: auto;
    }
}

@media (max-width: 700px) {
    .card-grid, .stats-grid, .form-grid {
        grid-template-columns: 1fr;
    }
    .cart-item {
        grid-template-columns: 1fr;
    }
    .hero h1 { max-width: none; }
    .topbar, .site-nav, .section-head, .inline-actions { align-items: flex-start; }
    .header-search {
        max-width: none;
        width: 100%;
        order: 3;
    }
}

/* Public redesign overrides */
:root {
    --forest: #184d2e;
    --leaf: #4f8a4d;
    --cream: #f7f2e8;
    --sand: #e8dbc0;
    --earth: #8c6843;
    --text: #1d281f;
    --muted: #5d6b5d;
    --border: rgba(24, 77, 46, 0.12);
    --shadow-sm: 0 12px 28px rgba(22, 56, 28, 0.08);
    --shadow-md: 0 24px 52px rgba(22, 56, 28, 0.12);
    --radius-sm: 18px;
    --radius-md: 28px;
    --container-width: 1240px;
    --surface: #fffdf9;
    --surface-alt: #eff4e8;
    --line: #d8dfd0;
    --brand: #2e6f3f;
    --brand-dark: #184d2e;
    --accent: #d8ab49;
    --shadow: var(--shadow-md);
    --radius: var(--radius-md);
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(216, 171, 73, 0.14), transparent 24%),
        linear-gradient(180deg, #fcfaf4 0%, #f4f5ec 100%);
}

.wrap { width: min(var(--container-width), calc(100% - 32px)); }
.section { padding: 56px 0; }
.section-kicker {
    margin: 0 0 10px;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--leaf);
    font-weight: 800;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.site-header {
    background: rgba(252, 250, 244, 0.92);
    border-bottom: 1px solid transparent;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.site-header.is-scrolled {
    background: rgba(252, 250, 244, 0.97);
    border-color: var(--border);
    box-shadow: 0 8px 24px rgba(24, 77, 46, 0.08);
}
.utility-strip {
    background: #f0ead8;
    border-bottom: 1px solid rgba(24, 77, 46, 0.08);
}
.utility-strip-inner, .utility-links, .header-main, .header-actions, .site-nav, .hero-trust-points, .product-meta-row, .plan-top, .footer-bottom, .trust-strip, .story-panel, .content-dual-grid {
    display: flex;
    align-items: center;
    gap: 16px;
}
.utility-strip-inner {
    justify-content: space-between;
    min-height: 42px;
}
.announcement-ticker {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    position: relative;
    --ticker-distance: 50%;
    --ticker-duration: 32s;
}
.announcement-ticker-track {
    display: flex;
    align-items: center;
    gap: 0;
    min-width: max-content;
    white-space: nowrap;
}
.announcement-ticker.is-ready .announcement-ticker-track {
    animation: announcement-scroll var(--ticker-duration) linear infinite;
}
.announcement-ticker.is-ready:hover .announcement-ticker-track,
.announcement-ticker.is-ready:focus-within .announcement-ticker-track {
    animation-play-state: paused;
}
.announcement-ticker.is-static .announcement-ticker-track {
    display: flex;
    min-width: 0;
    animation: none;
}
.announcement-group {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}
.announcement-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    font-size: 0.88rem;
    color: var(--forest);
}
.announcement-item + .announcement-item::before {
    content: "\2022";
    margin: 0 18px;
    color: rgba(24, 77, 46, 0.6);
}
.announcement-item a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
}
.announcement-item strong {
    font-size: 0.82rem;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(24, 77, 46, 0.08);
}
@keyframes announcement-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-1 * var(--ticker-distance))); }
}
.utility-links {
    flex-wrap: wrap;
    justify-content: flex-end;
}
.utility-links a {
    font-size: 0.88rem;
    color: var(--forest);
    font-weight: 600;
}
.header-main {
    padding: 18px 0;
    justify-content: space-between;
}
.brand { color: var(--forest); }
.brand-mark {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}
.brand-mark strong {
    display: block;
    font-size: 1.2rem;
}
.brand-mark small {
    display: block;
    max-width: 260px;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.35;
}
.brand-seal {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    flex: 0 0 auto;
}
.brand-seal svg { width: 100%; height: 100%; display: block; }
.header-search {
    flex: 1;
    max-width: 560px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.search-field input {
    border: 0;
    padding: 0;
    background: transparent;
}
.search-field input:focus { outline: none; }
.search-icon {
    width: 20px;
    height: 20px;
    color: var(--leaf);
}
.search-icon svg { width: 100%; height: 100%; }
.search-submit { min-width: 108px; }
.header-actions {
    justify-content: flex-end;
}
.header-action-link, .whatsapp-chip {
    min-height: 52px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.86);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-action-link.has-cart-items {
    background: linear-gradient(135deg, rgba(233, 245, 230, 0.98), rgba(255, 248, 232, 0.98));
    border-color: rgba(26, 175, 73, 0.2);
}
.header-action-link.has-cart-items .action-icon {
    color: var(--brand-dark);
}
.header-action-link.has-cart-items small {
    color: var(--brand);
    font-weight: 700;
}
.header-action-link strong, .whatsapp-chip span { display: block; font-size: 0.95rem; }
.header-action-link small {
    display: block;
    color: var(--muted);
    font-size: 0.76rem;
}
.action-icon, .whatsapp-chip svg, .trust-icon {
    width: 20px;
    height: 20px;
    color: var(--brand);
    flex: 0 0 auto;
}
.action-icon svg, .whatsapp-chip svg, .trust-icon svg { width: 100%; height: 100%; }
.whatsapp-chip {
    background: linear-gradient(135deg, #e6f5e3, #f8fbf3);
    color: var(--brand-dark);
    font-weight: 700;
}
.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 0;
}
.menu-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--forest);
    border-radius: 999px;
}
.site-nav-wrap {
    border-top: 1px solid rgba(24, 77, 46, 0.08);
}
.site-nav {
    justify-content: flex-start;
    padding: 12px 0;
    gap: 8px;
}
.site-nav a, .nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}
.site-nav a {
    padding: 0 16px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 700;
    cursor: pointer;
}
.site-nav a.active, .site-nav a:hover, .nav-dropdown.active > .nav-dropdown-trigger > a {
    color: #fff;
    background: var(--brand);
}
.nav-dropdown {
    position: relative;
    flex: 0 0 auto;
}
.nav-dropdown-trigger {
    gap: 6px;
    white-space: nowrap;
}
.nav-dropdown-trigger a {
    padding-right: 12px;
}
.nav-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 16px;
}
.nav-dropdown-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    min-width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(24, 77, 46, 0.08);
    color: var(--muted);
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.nav-dropdown-arrow svg {
    width: 16px;
    height: 16px;
}
.nav-dropdown:hover > .nav-dropdown-trigger > .nav-dropdown-arrow,
.nav-dropdown:focus-within > .nav-dropdown-trigger > .nav-dropdown-arrow,
.nav-dropdown.is-open > .nav-dropdown-trigger > .nav-dropdown-arrow,
.nav-dropdown.active > .nav-dropdown-trigger > .nav-dropdown-arrow {
    background: var(--brand);
    color: #fff;
}
.nav-dropdown:hover > .nav-dropdown-trigger > a,
.nav-dropdown:focus-within > .nav-dropdown-trigger > a {
    color: #fff;
    background: var(--brand);
}
.nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 230px;
    padding: 14px;
    display: grid;
    gap: 8px;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 5;
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel,
.nav-dropdown.is-open .nav-dropdown-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.nav-dropdown:hover > .nav-dropdown-trigger > .nav-dropdown-arrow svg,
.nav-dropdown:focus-within > .nav-dropdown-trigger > .nav-dropdown-arrow svg,
.nav-dropdown.is-open > .nav-dropdown-trigger > .nav-dropdown-arrow svg {
    transform: rotate(180deg);
}
.nav-dropdown-panel a {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 14px;
}

.flash-stack { padding-top: 16px; }
.flash {
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    background: rgba(255, 255, 255, 0.94);
}

.hero {
    padding: 56px 0 42px;
    color: var(--text);
    background:
        linear-gradient(135deg, rgba(249, 243, 229, 0.96), rgba(228, 239, 214, 0.92)),
        radial-gradient(circle at top right, rgba(216, 171, 73, 0.18), transparent 22%);
}
.hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 32px;
}
.hero-copy {
    display: grid;
    gap: 18px;
    align-content: center;
}
.hero h1 {
    margin: 0;
    max-width: 11ch;
    color: var(--forest);
    font-size: clamp(2.5rem, 5vw, 4.9rem);
    line-height: 0.96;
}
.hero p {
    margin: 0;
    max-width: 60ch;
    color: var(--muted);
    font-size: 1.04rem;
}
.eyebrow {
    background: rgba(46, 111, 63, 0.08);
    color: var(--brand-dark);
}
.hero-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
}
.solid-btn, button.solid-btn {
    background: linear-gradient(135deg, #2f6f40, #518649);
    box-shadow: var(--shadow-sm);
}
.ghost-btn {
    background: rgba(46, 111, 63, 0.08);
    color: var(--brand-dark);
    border: 1px solid rgba(46, 111, 63, 0.12);
}
.hero-trust-points {
    flex-wrap: wrap;
    justify-content: flex-start;
}
.hero-trust-points span, .stock-badge, .badge {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(24, 77, 46, 0.1);
    color: var(--forest);
    font-size: 0.86rem;
    font-weight: 700;
}
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-visual img {
    width: 100%;
    max-width: 640px;
    border-radius: 32px;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.4);
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.trust-card, .info-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.trust-card .trust-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
}
.trust-card h3, .info-card h3, .category-card strong, .product-card h3, .plan-card h3 {
    margin: 0 0 8px;
    color: var(--forest);
}
.trust-card p, .info-card p { margin: 0; color: var(--muted); }

.section-head {
    margin-bottom: 26px;
    align-items: flex-end;
}
.section-head > div > h2,
.section-head > div > h1,
.section-head h2,
.section-head h1 { margin: 0 0 8px; color: var(--forest); }
.section-head > div > p:last-child {
    margin: 0;
    color: var(--muted);
    max-width: 64ch;
}
.compact-head { margin-bottom: 16px; }
.compact-head h3 { margin: 0; color: var(--forest); }

.card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}
.card-grid > * { height: 100%; }
.category-card, .product-card, .plan-card, .content-card {
    overflow: hidden;
    padding: 0;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.category-card img, .content-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: linear-gradient(180deg, #f8f4e8, #edf3e5);
}
.product-card > img {
    width: calc(100% - 32px);
    margin: 16px 16px 0;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    border-radius: 20px;
    background: #fff;
}
.category-card-body, .product-card-body, .content-card-body {
    padding: 22px;
    display: grid;
    gap: 14px;
}
.category-card-body small {
    color: var(--leaf);
    font-weight: 700;
}
.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
}
.product-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card .inline-actions {
    margin-top: auto;
    padding: 0 22px 22px;
    align-items: stretch;
    gap: 12px;
}
.product-card .inline-actions form,
.product-card .inline-actions .solid-btn,
.product-card .inline-actions .ghost-btn {
    flex: 1;
}
.product-card .inline-actions form {
    display: flex;
}
.product-card .inline-actions button,
.product-card .inline-actions a {
    width: 100%;
    text-align: center;
}
.product-meta-row { justify-content: space-between; }
.product-meta {
    color: var(--leaf);
    font-size: 0.78rem;
}
.product-card .price-row {
    margin-top: 4px;
}
.merch-section {
    padding-top: 30px;
    padding-bottom: 10px;
}
.merch-showcase-section {
    padding-top: 24px;
}
.merch-highlights-section,
.top-picks-section {
    background:
        radial-gradient(circle at top left, rgba(244, 228, 196, 0.34), transparent 22%),
        linear-gradient(180deg, rgba(255, 251, 243, 0.92), rgba(246, 250, 240, 0.94));
    border-block: 1px solid rgba(24, 77, 46, 0.06);
}
.merch-section-head {
    gap: 18px;
}
.merch-section-head > div > p:last-child {
    max-width: 48ch;
}
.merch-head-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.product-slideshow-section {
    padding-top: 24px;
    padding-bottom: 12px;
}
.product-slideshow-shell {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(24, 77, 46, 0.08);
    border-radius: 32px;
    background:
        radial-gradient(circle at top left, rgba(255, 246, 224, 0.96), transparent 30%),
        radial-gradient(circle at bottom right, rgba(205, 232, 199, 0.72), transparent 28%),
        linear-gradient(135deg, #fffdf7 0%, #f3f8ed 100%);
    box-shadow: var(--shadow-sm);
}
.product-slideshow-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}
.product-slideshow-header p:last-child {
    max-width: 54ch;
    margin-bottom: 0;
}
.product-slideshow-controls {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.product-slideshow-btn {
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(24, 77, 46, 0.14);
    background: rgba(255, 255, 255, 0.92);
    color: var(--forest);
    font-size: 1.5rem;
    line-height: 1;
    box-shadow: var(--shadow-sm);
}
.product-slideshow-viewport {
    position: relative;
    min-height: 460px;
}
.product-slideshow-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 28px;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transform: translateX(30px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.product-slideshow-slide.is-active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}
.product-slideshow-copy {
    display: grid;
    align-content: center;
    gap: 16px;
    min-width: 0;
}
.product-slideshow-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.product-slideshow-meta .merch-badge {
    position: static;
}
.product-slideshow-category {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.product-slideshow-copy h3 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3.25rem);
    line-height: 1.02;
}
.product-slideshow-copy h3 a {
    color: var(--forest);
}
.product-slideshow-copy p {
    max-width: 54ch;
    margin: 0;
    color: var(--muted);
    font-size: 1.02rem;
}
.product-slideshow-price {
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
}
.product-slideshow-price strong {
    font-size: clamp(1.8rem, 2.6vw, 2.5rem);
    color: var(--forest);
}
.product-slideshow-price span,
.product-slideshow-price small {
    color: var(--muted);
    font-size: 0.98rem;
}
.product-slideshow-price small {
    text-decoration: line-through;
}
.product-slideshow-media {
    display: block;
    padding: 20px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: inset 0 0 0 1px rgba(24, 77, 46, 0.06);
}
.product-slideshow-media img {
    display: block;
    width: 100%;
    max-height: 420px;
    object-fit: contain;
}
.product-slideshow-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}
.product-slideshow-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 0;
    background: rgba(24, 77, 46, 0.18);
    transition: width 0.2s ease, background 0.2s ease;
}
.product-slideshow-dot.is-active {
    width: 34px;
    background: var(--forest);
}
.merch-carousel-controls {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.merch-carousel-btn {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(24, 77, 46, 0.14);
    background: #fff;
    color: var(--forest);
    font-size: 1.5rem;
    line-height: 1;
    box-shadow: var(--shadow-sm);
}
.merch-carousel {
    overflow: hidden;
}
.merch-carousel-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 60px) / 4);
    grid-auto-rows: 1fr;
    align-items: stretch;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
}
.merch-carousel-track::-webkit-scrollbar {
    height: 8px;
}
.merch-carousel-track::-webkit-scrollbar-thumb {
    background: rgba(35, 87, 50, 0.24);
    border-radius: 999px;
}
.merch-product-card {
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    border: 1px solid rgba(24, 77, 46, 0.1);
    background: #fff;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    scroll-snap-align: start;
}
.merch-product-card[data-card-href] {
    cursor: pointer;
}
.merch-card-media {
    position: relative;
    padding: 14px 14px 0;
}
.merch-card-image-link {
    display: block;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(180deg, #fff7ea, #f3f8ed);
}
.merch-card-image-link img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: block;
}
.merch-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 1;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
}
.badge-new-launch { background: #315f1f; }
.badge-trending { background: #ef7f1a; }
.badge-best-seller { background: #0b8d3a; }
.badge-featured-product { background: #946c18; }
.badge-offer-product { background: #8f2d56; }
.wishlist-icon-form {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 1;
}
.wishlist-icon-button {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(24, 77, 46, 0.14);
    background: rgba(255, 255, 255, 0.94);
    color: var(--forest);
    box-shadow: var(--shadow-sm);
}
.wishlist-icon-button svg {
    width: 19px;
    height: 19px;
}
.wishlist-icon-button.is-active {
    background: rgba(46, 111, 63, 0.12);
    color: #1b7c3d;
}
.merch-card-body {
    display: grid;
    grid-template-rows: auto auto minmax(3.4em, auto) auto 1fr;
    align-content: start;
    gap: 10px;
    padding: 18px;
}
.merch-card-body h3 {
    margin: 0;
    font-size: 1.16rem;
    line-height: 1.2;
    min-height: 2.5em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.merch-card-body h3 a {
    color: var(--forest);
}
.merch-card-caption {
    margin: 0;
    color: var(--muted);
    min-height: 3.4em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.merch-card-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.86rem;
}
.merch-card-rating strong {
    color: var(--forest);
    font-size: 0.88rem;
}
.merch-buy-form {
    display: grid;
    grid-template-rows: minmax(48px, auto) auto auto;
    align-content: end;
    gap: 10px;
    margin-top: 4px;
}
.merch-card-select-wrap {
    min-height: 48px;
}
.merch-variant-select,
.merch-static-variant {
    width: 100%;
    min-height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(24, 77, 46, 0.14);
    background: #fff;
    color: var(--text);
    padding: 0 14px;
    font-weight: 600;
}
.merch-static-variant {
    display: inline-flex;
    align-items: center;
}
.merch-price-block {
    min-height: 42px;
    justify-self: center;
    align-items: center;
    text-align: center;
}
.merch-cart-btn {
    width: 100%;
}
.top-picks-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}
.top-picks-tab {
    min-height: 48px;
    padding: 0 22px;
    border-radius: 12px;
    border: 1px solid rgba(24, 77, 46, 0.1);
    background: rgba(81, 134, 73, 0.14);
    color: var(--brand-dark);
    font-weight: 800;
}
.top-picks-tab.is-active {
    background: var(--forest);
    color: #fff;
}
.top-picks-panel {
    display: none;
}
.top-picks-panel.is-active {
    display: block;
}
.top-picks-panel-actions {
    justify-content: flex-end;
    margin-bottom: 14px;
}
.discount-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;
    background: #f8e2aa;
}
.stock-badge {
    min-height: 28px;
    padding: 0 10px;
    background: rgba(140, 104, 67, 0.08);
    color: var(--earth);
    font-size: 0.74rem;
}
.stock-badge.in-stock {
    background: rgba(79, 138, 77, 0.12);
    color: var(--brand-dark);
}
.price-row {
    align-items: flex-end;
}
.price-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.price-block strong,
.price-block span,
.plan-pricing strong,
.plan-pricing span {
    white-space: nowrap;
}
.price-block strong { font-size: clamp(1.15rem, 1.2vw, 1.35rem); }
.price-block span, .plan-pricing span {
    color: #91856d;
    text-decoration: line-through;
    font-size: 0.9rem;
}
.price-row small { color: var(--muted); }

.soft-section {
    background: linear-gradient(180deg, rgba(239, 244, 232, 0.88), rgba(247, 242, 232, 0.9));
}
.subscription-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.home-subscription-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.plan-card {
    padding: 0;
    position: relative;
    display: grid;
    gap: 0;
    height: 100%;
}
.plan-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    background: linear-gradient(180deg, #f8f4e8, #edf3e5);
}
.plan-card-body {
    padding: 22px;
    display: grid;
    grid-template-rows: minmax(30px, auto) auto minmax(3.1em, auto) minmax(2.8em, auto) minmax(6.8em, 1fr) auto auto;
    gap: 16px;
}
.plan-badge-slot {
    min-height: 30px;
}
.plan-card-featured {
    border-color: rgba(216, 171, 73, 0.34);
    box-shadow: 0 26px 48px rgba(58, 89, 49, 0.14);
}
.featured-badge {
    background: #f7e2ad;
}
.badge-soft {
    background: rgba(46, 111, 63, 0.08);
}
.plan-period { margin: 0; }
.plan-top {
    justify-content: space-between;
    align-items: start;
    min-height: 32px;
}
.plan-card-body h3 {
    min-height: 3.1em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.plan-product-name {
    min-height: 2.8em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.plan-benefits {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    display: grid;
    gap: 8px;
    align-content: start;
}
.plan-pricing {
    display: flex;
    align-items: baseline;
    gap: 10px;
    justify-content: flex-start;
    flex-wrap: wrap;
    min-height: 40px;
}
.product-plan-card .plan-card-body {
    grid-template-rows: minmax(30px, auto) auto minmax(3.1em, auto) minmax(2.8em, auto) minmax(5.6em, 1fr) auto auto;
}
.product-plan-card .plan-benefits {
    min-height: 5.6em;
}
.product-plan-card .solid-btn {
    width: 100%;
}

.why-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.story-panel {
    align-items: stretch;
    gap: 24px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.story-panel > * { flex: 1; }
.story-visual img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 24px;
}
.story-copy {
    display: grid;
    align-content: center;
    gap: 16px;
}
.story-copy h2, .cta-panel h2 { margin: 0; color: var(--forest); }
.story-copy p, .cta-panel p { margin: 0; color: var(--muted); }

.content-preview-section .content-dual-grid {
    align-items: flex-start;
}
.content-dual-grid > * { flex: 1; min-width: 0; }
.content-preview-grid {
    display: grid;
    gap: 18px;
}
.content-card-body a {
    font-weight: 700;
    color: var(--brand-dark);
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 26px 28px;
    background: linear-gradient(135deg, #f4e8c7, #edf4df);
    border-radius: 28px;
    border: 1px solid rgba(24, 77, 46, 0.1);
}

.home-tile-section {
    padding-top: 22px;
    padding-bottom: 18px;
}
.home-tile-rail {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
}
.home-tile-card {
    display: grid;
    justify-items: center;
    gap: 10px;
    text-align: center;
    color: var(--forest);
    padding: 10px 8px 6px;
    transition: transform 0.2s ease, filter 0.2s ease;
}
.home-tile-card:hover {
    transform: translateY(-3px);
    filter: saturate(1.05);
}
.home-tile-visual {
    width: min(100%, 138px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    padding: 10px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 46%, rgba(30, 82, 178, 0.16), rgba(30, 82, 178, 0.16) 50%, transparent 51%),
        linear-gradient(180deg, #5d88ff, #3f6fe0);
    box-shadow: 0 16px 28px rgba(55, 91, 178, 0.18);
}
.home-tile-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid rgba(21, 63, 156, 0.78);
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.14);
}
.home-tile-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 5px 12px;
    border-radius: 10px;
    background: #2d61da;
    color: #fff;
    font-size: 0.98rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.01em;
}
.home-tile-card small {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 700;
}
.source-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(216, 171, 73, 0.18);
    color: var(--forest);
    font-size: 0.76rem;
    font-weight: 800;
}
.source-line {
    font-size: 0.9rem;
}
.source-product-card {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}
.source-product-card > img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #f8f4e8;
}
.source-product-card > div {
    padding: 20px;
    display: grid;
    grid-template-rows: auto auto auto 1fr auto auto;
    gap: 11px;
}
.source-product-card p {
    margin: 0;
    color: var(--muted);
}
.product-mini-card {
    display: grid;
    gap: 10px;
}
.product-mini-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 16px;
    background: #f8f4e8;
}
.product-mini-card a {
    color: var(--brand-dark);
    font-weight: 800;
}
.need-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.need-grid a {
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 14px 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    color: var(--forest);
    font-weight: 800;
}
.need-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.need-card-grid .need-card,
.home-subscription-grid .plan-card {
    height: 100%;
}
.need-card .category-card-body small {
    color: var(--leaf);
}
.process-section {
    background: linear-gradient(180deg, rgba(250, 246, 235, 0.9), rgba(234, 243, 225, 0.92));
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}
.process-card {
    padding: 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}
.process-card span {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: var(--forest);
    color: #fff;
    font-weight: 800;
}
.process-card h3 {
    margin: 12px 0 8px;
    color: var(--forest);
}
.process-card p {
    margin: 0;
    color: var(--muted);
}
.source-panel {
    padding: 18px;
    border-radius: 18px;
    background: rgba(46, 111, 63, 0.06);
    border: 1px solid rgba(46, 111, 63, 0.12);
    display: grid;
    gap: 10px;
}
.source-panel h3,
.source-panel p {
    margin: 0;
}
.farm-page-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
}
.farm-page-hero h1 {
    margin: 0 0 14px;
    color: var(--forest);
    font-size: 3rem;
    line-height: 1;
}
.farm-page-hero p {
    color: var(--muted);
}
.farm-page-hero img {
    width: 100%;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    background: #f8f4e8;
}
.farmer-registration-form {
    display: grid;
    gap: 18px;
}
.farmer-registration-form h2 {
    margin: 12px 0 0;
    color: var(--forest);
}

.site-footer {
    margin-top: 32px;
    padding: 44px 0 22px;
    background: #18351f;
}
.footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 22px;
}
.footer-grid h3, .footer-grid h4 { margin: 0 0 12px; color: #fff; }
.footer-grid p, .footer-grid a, .footer-bottom { color: rgba(255, 255, 255, 0.78); }
.footer-column p, .footer-brand p { margin: 0 0 10px; line-height: 1.55; }
.footer-social-links {
    margin-top: 16px;
}
.footer-social-links a {
    background: rgba(255, 255, 255, 0.08);
}
.footer-bottom {
    justify-content: space-between;
    padding-top: 18px;
    margin-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1180px) {
    .header-action-link span:last-child { display: none; }
    .whatsapp-chip span { display: none; }
    .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .trust-strip, .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-tile-rail { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .product-slideshow-slide {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
    }
    .merch-carousel-track {
        grid-auto-columns: minmax(290px, 38vw);
    }
}

@media (max-width: 980px) {
    .header-main {
        flex-wrap: wrap;
        align-items: stretch;
    }
    .brand-mark { width: 100%; }
    .header-search {
        order: 3;
        max-width: none;
        width: 100%;
    }
    .hero-grid,
    .story-panel,
    .content-dual-grid {
        display: grid;
        grid-template-columns: 1fr;
    }
    .card-grid, .subscription-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .home-tile-rail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .farm-page-hero {
        grid-template-columns: 1fr;
    }
    .product-slideshow-viewport {
        min-height: 0;
    }
    .product-slideshow-slide {
        grid-template-columns: 1fr;
    }
    .product-slideshow-media img {
        max-height: 320px;
    }
    .need-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .need-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .merch-carousel-track {
        grid-auto-columns: minmax(280px, 72vw);
    }
}

@media (max-width: 760px) {
    .utility-strip-inner,
    .header-actions,
    .cta-panel,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .utility-links { justify-content: flex-start; }
    .menu-toggle { display: inline-block; margin-left: auto; }
    .header-action-link,
    .header-action-compact,
    .whatsapp-chip { min-width: 48px; }
    .header-action-link span:last-child,
    .whatsapp-chip span { display: none; }
    .site-nav {
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px 0 18px;
    }
    .site-nav.is-open { display: flex; }
    .site-nav a,
    .nav-dropdown-trigger {
        width: 100%;
    }
    .nav-dropdown-trigger {
        justify-content: space-between;
    }
    .nav-dropdown-trigger a {
        flex: 1 1 auto;
        padding-right: 16px;
    }
    .nav-dropdown-arrow {
        flex: 0 0 auto;
    }
    .nav-dropdown-panel {
        position: static;
        display: none;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        box-shadow: none;
        margin-top: 10px;
    }
    .nav-dropdown:hover .nav-dropdown-panel,
    .nav-dropdown:focus-within .nav-dropdown-panel,
    .nav-dropdown.is-open .nav-dropdown-panel {
        display: grid;
    }
    .hero {
        padding-top: 36px;
    }
    .hero h1 { max-width: none; }
    .hero-visual img {
        max-width: 100%;
        min-height: 240px;
        object-fit: cover;
    }
    .card-grid, .trust-strip, .why-grid, .subscription-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .home-tile-section {
        padding-top: 16px;
        padding-bottom: 6px;
    }
    .home-tile-rail {
        display: flex;
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
    }
    .home-tile-card {
        min-width: 132px;
        scroll-snap-align: start;
    }
    .home-tile-visual {
        width: 112px;
    }
    .home-tile-label {
        font-size: 0.88rem;
        min-height: 32px;
    }
    .process-grid,
    .need-grid {
        grid-template-columns: 1fr;
    }
    .need-card-grid {
        grid-template-columns: 1fr;
    }
    .product-slideshow-shell {
        padding: 22px 18px;
        border-radius: 24px;
    }
    .product-slideshow-header,
    .product-slideshow-copy {
        align-items: flex-start;
    }
    .product-slideshow-header {
        flex-direction: column;
        margin-bottom: 18px;
    }
    .product-slideshow-controls {
        align-self: flex-end;
    }
    .product-slideshow-copy h3 {
        font-size: 2rem;
    }
    .product-slideshow-media {
        padding: 14px;
    }
    .merch-section {
        padding-top: 22px;
    }
    .merch-section-head,
    .top-picks-panel-actions {
        align-items: flex-start;
    }
    .merch-head-actions {
        width: 100%;
        justify-content: space-between;
    }
    .merch-carousel-track {
        grid-auto-columns: 84vw;
    }
    .top-picks-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 6px;
    }
    .top-picks-tab {
        white-space: nowrap;
    }
    .farm-page-hero h1 {
        font-size: 2.2rem;
    }
    .section { padding: 44px 0; }
    .search-submit { min-width: 92px; padding-inline: 14px; }
}

/* Header stability overrides: keep desktop header compact even when SVG rules cascade. */
.site-header .header-main {
    display: grid;
    grid-template-columns: minmax(230px, 320px) minmax(280px, 1fr) auto;
    gap: 16px;
    align-items: center;
}
.site-header .brand-mark {
    width: auto;
    min-width: 0;
}
.site-header .brand-mark small {
    max-width: 230px;
}
.site-header .header-search {
    width: 100%;
    min-width: 0;
    max-width: none;
}
.site-header .search-field {
    min-width: 0;
}
.site-header .search-field input {
    min-width: 0;
}
.site-header .header-actions {
    flex: 0 0 auto;
    flex-wrap: nowrap;
    gap: 10px;
}
.site-header .header-action-link,
.site-header .whatsapp-chip {
    flex: 0 0 auto;
}
.site-header .action-icon,
.site-header .action-icon svg,
.site-header .whatsapp-chip > svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    max-width: 20px;
    min-height: 20px;
    max-height: 20px;
}
.site-header .whatsapp-chip {
    width: auto;
    min-width: 0;
    max-width: 190px;
}
.site-header .whatsapp-chip span {
    white-space: nowrap;
}
.site-header .site-nav-wrap .wrap {
    display: flex;
    justify-content: center;
}
.site-header .site-nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: visible;
    row-gap: 0;
    column-gap: 8px;
    justify-content: center;
    width: 100%;
}
.site-header .site-nav a,
.site-header .nav-dropdown-trigger a {
    min-height: 40px;
    padding-inline: 14px;
}
.site-header .nav-dropdown-trigger {
    width: auto;
}

@media (max-width: 1220px) {
    .site-header .header-main {
        grid-template-columns: minmax(220px, 290px) minmax(260px, 1fr) auto;
    }
    .site-header .site-nav {
        flex-wrap: wrap;
        row-gap: 8px;
        justify-content: center;
    }
    .site-header .header-action-link span:last-child,
    .site-header .whatsapp-chip span {
        display: none;
    }
}

@media (max-width: 980px) {
    .site-header .header-main {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    .site-header .brand-mark {
        width: calc(100% - 64px);
    }
    .site-header .header-search {
        order: 3;
        width: 100%;
    }
    .site-header .header-actions {
        margin-left: auto;
    }
}

@media (max-width: 760px) {
    .site-header .utility-strip-inner,
    .site-header .header-actions {
        flex-direction: row;
        align-items: center;
    }
    .site-header .utility-strip-inner {
        flex-wrap: wrap;
    }
    .site-header .brand-mark {
        width: 100%;
    }
    .site-header .header-actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .announcement-item,
    .announcement-item a {
        gap: 6px;
    }
    .announcement-item + .announcement-item::before {
        margin: 0 12px;
    }
    .site-header .site-nav {
        display: none;
        overflow-x: visible;
    }
    .site-header .site-nav.is-open {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 900px) {
    .cart-offer-panel,
    .cart-layout,
    .checkout-layout,
    .admin-two-col {
        grid-template-columns: 1fr;
    }
    .cart-coupon-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .cart-coupon-card-meta {
        width: 100%;
        justify-items: start;
    }
    .review-summary-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .cart-offer-panel,
    .cart-summary,
    .cart-item {
        padding: 18px;
    }
    .cart-actions-row {
        grid-template-columns: 72px 1fr;
    }
    .cart-item {
        grid-template-columns: 72px 1fr;
    }
    .cart-actions-row .cart-action-btn,
    .cart-item label,
    .cart-item strong {
        grid-column: 2;
    }
    .cart-upsell-card {
        grid-template-columns: 1fr;
    }
    .cart-upsell-image {
        width: 100%;
        height: 170px;
    }
    .cart-upsell-footer {
        flex-direction: column;
        align-items: stretch;
    }
.cart-upsell-footer form,
.cart-upsell-footer button {
    width: 100%;
}
}

.seo-breadcrumbs {
    margin-bottom: 18px;
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.92rem;
}
.seo-breadcrumbs a {
    color: var(--forest);
    text-decoration: none;
}
.seo-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.95fr);
    gap: 24px;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, #f7f4e7 0%, #ffffff 55%, #eef7ef 100%);
    border: 1px solid rgba(11, 76, 52, 0.08);
    box-shadow: 0 18px 40px rgba(38, 67, 52, 0.08);
}
.seo-hero-copy h1 {
    margin: 0 0 14px;
    color: var(--forest);
}
.seo-hero-copy > p:last-of-type {
    margin: 0;
    color: var(--muted);
}
.seo-hero-panel {
    display: flex;
    align-items: stretch;
}
.seo-hero-panel .stats-grid {
    width: 100%;
}
.seo-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.seo-chip {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(20, 92, 61, 0.08);
    color: var(--forest);
    font-size: 0.88rem;
    font-weight: 600;
}
.seo-link-card a {
    word-break: break-word;
}
.seo-product-card {
    height: 100%;
}
.seo-product-card .content-card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}
.seo-price-line {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 0;
}
.seo-price-line strong {
    color: var(--forest);
}
.seo-copy-grid,
.seo-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.seo-note {
    margin: 0 0 18px;
    color: var(--muted);
}

@media (max-width: 1100px) {
    .seo-hero,
    .seo-copy-grid,
    .seo-faq-grid {
        grid-template-columns: 1fr;
    }
}
