
  :root {
    --green-deep: #1a4a1a;
    --green-mid: #2d6a2d;
    --green-soft: #4a8c4a;
    --green-pale: #e8f0e0;
    --green-mist: #f3f7ee;
    --cream: #faf8f3;
    --ink: #1c1c1a;
    --muted: #6b6b60;
    --rule: rgba(28,28,26,0.1);
    --r: 0px;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(250,248,243,0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--rule);
  }

  .nav-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo img { height: 48px; width: auto; display: block; }

  .nav-links {
    display: flex;
    gap: 0;
    list-style: none;
  }

  .nav-links a {
    display: block;
    padding: 0.4rem 1.2rem;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--ink); }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
  }

  .nav-icon {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--rule);
    border-radius: 50%;
    cursor: pointer;
    transition: border-color 0.2s;
    background: none;
  }

  .nav-icon:hover { border-color: var(--green-mid); }

  .nav-icon svg { width: 18px; height: 18px; stroke: var(--ink); fill: none; stroke-width: 1.5; }

  .cart-btn {
    position: relative;
  }

  .cart-count {
    position: absolute;
    top: -4px; right: -4px;
    width: 16px; height: 16px;
    background: var(--green-mid);
    color: white;
    font-size: 10px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 500;
  }

  .btn-nav {
    padding: 0.55rem 1.4rem;
    background: var(--green-deep);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
  }

  .btn-nav:hover { background: var(--green-mid); }

  /* HERO */
  .hero {
    margin-top: 72px;
    min-height: calc(100vh - 72px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
  }

  .hero-left {
    background: var(--green-mist);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 5rem 6rem 6rem;
    position: relative;
  }

  .hero-left::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-left: 24px solid var(--green-mist);
    z-index: 1;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-soft);
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--green-soft);
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 5vw, 5rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--green-deep);
    margin-bottom: 1.8rem;
    letter-spacing: -0.02em;
  }

  .hero-title em {
    font-style: italic;
    font-weight: 400;
  }

  .hero-desc {
    font-size: 1rem;
    color: var(--muted);
    max-width: 400px;
    line-height: 1.8;
    margin-bottom: 2.8rem;
  }

  .hero-actions {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    padding: 0.85rem 2.4rem;
    background: var(--green-deep);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s;
  }

  .btn-primary:hover {
    background: var(--green-mid);
    transform: translateY(-2px);
  }

  .btn-ghost {
    padding: 0.85rem 2rem;
    background: transparent;
    color: var(--green-deep);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid var(--green-deep);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s;
  }

  .btn-ghost:hover {
    background: var(--green-deep);
    color: white;
  }

  .hero-badges {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--rule);
    display: flex;
    gap: 2.5rem;
  }

  .hero-badge {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .hero-badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--green-deep);
    line-height: 1;
  }

  .hero-badge-label {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .hero-right {
    position: relative;
    background: #c8d8b8;
    overflow: hidden;
  }

  .hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(26,74,26,0.15) 0%, rgba(26,74,26,0.3) 100%);
    z-index: 1;
  }

  .hero-img-main {
    position: absolute;
    inset: 0;
    background: url('../../img/0.png') center/cover no-repeat;
  }

  .hero-tag {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    background: var(--cream);
    padding: 1.2rem 1.6rem;
    z-index: 2;
    max-width: 200px;
  }

  .hero-tag-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.3rem;
  }

  .hero-tag-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--green-deep);
  }

  /* MARQUEE */
  .marquee-strip {
    background: var(--green-deep);
    color: rgba(255,255,255,0.7);
    padding: 0.9rem 0;
    overflow: hidden;
  }

  .marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
    gap: 0;
  }

  .marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 1.8rem;
    padding: 0 3rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .marquee-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--green-soft);
  }

  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* WHY */
  .section-why {
    padding: 7rem 0;
    background: var(--cream);
  }

  .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .section-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 5rem;
  }

  .section-tag {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-soft);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .section-tag::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--green-soft);
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 3.5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--green-deep);
    letter-spacing: -0.02em;
  }

  .section-desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.9;
    margin-top: auto;
    padding-top: 1rem;
    max-width: 440px;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .benefit-item {
    padding: 3rem 2.5rem;
    border: 1px solid var(--rule);
    border-right: none;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
  }

  .benefit-item:last-child { border-right: 1px solid var(--rule); }

  .benefit-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--green-mid);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .benefit-item:hover { background: var(--green-mist); }
  .benefit-item:hover::after { transform: scaleX(1); }

  .benefit-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--green-soft);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.04em;
  }

  .benefit-icon {
    width: 48px; height: 48px;
    margin-bottom: 1.4rem;
    opacity: 0.75;
  }

  .benefit-icon svg { width: 100%; height: 100%; stroke: var(--green-deep); fill: none; stroke-width: 1; }

  .benefit-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--green-deep);
    margin-bottom: 0.8rem;
  }

  .benefit-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.8;
  }

  /* PRODUCTS */
  .section-products {
    padding: 7rem 0;
    background: var(--green-mist);
  }

  .products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
  }

  .view-all {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-mid);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
  }

  .view-all:hover { gap: 0.8rem; }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .product-card {
    background: var(--cream);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .product-card:hover { transform: translateY(-6px); }

  .product-card:hover .product-actions { opacity: 1; transform: translateY(0); }

  .product-img-wrap {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--green-pale);
    position: relative;
  }

  .product-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
  }

  .product-card:hover .product-img-wrap img { transform: scale(1.04); }

  .product-badge {
    position: absolute;
    top: 1rem; left: 1rem;
    background: var(--green-deep);
    color: white;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    z-index: 2;
  }

  .product-actions {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1rem;
    background: rgba(26,74,26,0.95);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
    z-index: 2;
  }

  .product-actions button {
    width: 100%;
    padding: 0.7rem;
    background: white;
    color: var(--green-deep);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
  }

  .product-actions button:hover { background: var(--cream); }

  .product-info {
    padding: 1.2rem 0;
  }

  .product-category {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.4rem;
  }

  .product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.6rem;
  }

  .product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .product-price {
    font-size: 1rem;
    font-weight: 500;
    color: var(--green-deep);
  }

  .product-rating {
    font-size: 0.75rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }

  .stars { color: #b8860b; letter-spacing: -1px; }

  /* FEATURE SPLIT */
  .section-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
  }

  .feature-img {
    background: url('../../img/1.png') center/cover no-repeat;
  }

  .feature-content {
    background: var(--green-deep);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem;
  }

  .feature-tag {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .feature-tag::before {
    content: '';
    width: 24px; height: 1px;
    background: rgba(255,255,255,0.4);
    display: block;
  }

  .feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3vw, 3.2rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
  }

  .feature-list {
    list-style: none;
    margin-bottom: 3rem;
  }

  .feature-list li {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .feature-list li::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    flex-shrink: 0;
  }

  .btn-white {
    display: inline-block;
    padding: 0.85rem 2.4rem;
    background: white;
    color: var(--green-deep);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    font-weight: 500;
  }

  .btn-white:hover {
    background: var(--cream);
    transform: translateY(-2px);
  }

  /* CATEGORIES */
  .section-categories {
    padding: 7rem 0;
    background: var(--cream);
  }

  .categories-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 1rem;
    margin-top: 3.5rem;
  }

  .cat-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .cat-card:first-child { grid-row: span 2; }

  .cat-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
  }

  .cat-card:hover .cat-img { transform: scale(1.06); }

  .cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,74,26,0.7) 0%, rgba(26,74,26,0.05) 60%);
    transition: opacity 0.3s;
  }

  .cat-label {
    position: absolute;
    bottom: 1.8rem;
    left: 2rem;
    right: 2rem;
    z-index: 1;
  }

  .cat-label h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: white;
    margin-bottom: 0.3rem;
  }

  .cat-label span {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
  }

  /* TESTIMONIALS */
  .section-testimonials {
    padding: 7rem 0;
    background: var(--green-mist);
    overflow: hidden;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 4rem;
  }

  .testimonial {
    background: var(--cream);
    padding: 3rem 2.5rem;
  }

  .testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--green-deep);
    margin-bottom: 2rem;
    font-style: italic;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--green-pale);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--green-deep);
    flex-shrink: 0;
  }

  .author-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 0.1rem;
  }

  .author-loc {
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.03em;
  }

  /* NEWSLETTER */
  .section-newsletter {
    background: var(--green-deep);
    padding: 6rem 0;
  }

  .newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .newsletter-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3vw, 3rem);
    font-weight: 300;
    color: white;
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .newsletter-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
  }

  .newsletter-form {
    display: flex;
    gap: 0;
  }

  .newsletter-input {
    flex: 1;
    padding: 1rem 1.4rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-right: none;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
  }

  .newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
  .newsletter-input:focus { border-color: rgba(255,255,255,0.35); }

  .newsletter-btn {
    padding: 1rem 2rem;
    background: white;
    color: var(--green-deep);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
  }

  .newsletter-btn:hover { background: var(--cream); }

  .newsletter-note {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    margin-top: 0.8rem;
  }

  /* FOOTER */
  footer {
    background: var(--ink);
    color: rgba(255,255,255,0.65);
    padding: 5rem 0 2.5rem;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: 1.2rem;
    max-width: 280px;
  }

  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: white;
    letter-spacing: 0.02em;
  }

  .footer-col h5 {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 1.5rem;
    font-weight: 400;
  }

  .footer-col ul { list-style: none; }

  .footer-col li { margin-bottom: 0.8rem; }

  .footer-col a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }

  .footer-col a:hover { color: white; }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
  }

  .footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; }
  .footer-bottom a:hover { color: rgba(255,255,255,0.6); }

  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.8rem;
  }

  .social-link {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s;
  }

  .social-link:hover { border-color: rgba(255,255,255,0.4); }

  .social-link svg { width: 15px; height: 15px; stroke: rgba(255,255,255,0.6); fill: none; stroke-width: 1.5; }

  /* HAMBURGER */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }

  .hamburger span {
    display: block;
    width: 22px; height: 1.5px;
    background: var(--ink);
    transition: all 0.3s;
  }

  /* RESPONSIVE */
  @media (max-width: 1100px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .cat-card:first-child { grid-row: span 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .feature-content { padding: 4rem; }
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 4rem 2rem; }
    .hero-left::after { display: none; }
    .hero-right { height: 55vw; min-height: 300px; }

    .section-header { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
    .benefits-grid { grid-template-columns: 1fr; }
    .benefit-item { border-right: 1px solid var(--rule); }

    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .section-feature { grid-template-columns: 1fr; }
    .feature-img { height: 300px; }
    .feature-content { padding: 3.5rem 2rem; }

    .categories-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .cat-card { height: 240px; }

    .testimonials-grid { grid-template-columns: 1fr; }
    .newsletter-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .newsletter-form { flex-direction: column; }
    .newsletter-input { border-right: 1px solid rgba(255,255,255,0.15); border-bottom: none; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

    .hero-badges { gap: 1.5rem; }
    .section-why, .section-products, .section-categories, .section-testimonials { padding: 4.5rem 0; }
  }

  @media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.8rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow { animation: fadeUp 0.7s ease both; }
  .hero-title { animation: fadeUp 0.7s 0.12s ease both; }
  .hero-desc { animation: fadeUp 0.7s 0.22s ease both; }
  .hero-actions { animation: fadeUp 0.7s 0.32s ease both; }
  .hero-badges { animation: fadeUp 0.7s 0.42s ease both; }

/* MoringWell app layer — forms, dashboard, auth, admin */
.nav-links a.active { color: var(--ink); font-weight: 500; }
.flash-wrap { max-width: 1320px; margin: 88px auto 0; padding: 0 2rem; }
.alert { padding: 1rem 1.25rem; margin-bottom: 1rem; font-size: .9rem; }
.alert-success { background: #dff7df; color: #1a4a1a; }
.alert-error { background: #fde8e8; color: #9b1c1c; }
.alert-info { background: #e8f4fd; color: #1e40af; }
.page-pad { padding: 7rem 0 4rem; margin-top: 72px; background: var(--cream); min-height: 60vh; }
.form-control, select.form-control, textarea.form-control { width: 100%; padding: .85rem 1rem; border: 1px solid var(--rule); background: #fff; font-family: inherit; font-size: .95rem; outline: none; }
.form-control:focus { border-color: var(--green-mid); }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-block { width: 100%; text-align: center; }
table.data { width: 100%; border-collapse: collapse; }
table.data th, table.data td { padding: .85rem 1rem; border-bottom: 1px solid var(--rule); text-align: left; font-size: .9rem; }
table.data th { background: var(--green-pale); }
.badge { display: inline-block; padding: .2rem .55rem; border-radius: 20px; font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.badge-success { background: #dff7df; color: #1f7a1f; }
.badge-warning { background: #fff4d8; color: #b8860b; }
.badge-danger { background: #fde8e8; color: #9b1c1c; }
.badge-info { background: var(--green-pale); color: var(--green-deep); }
.cart-summary { background: #fff; padding: 1.5rem; border: 1px solid var(--rule); }
.cart-summary .row { display: flex; justify-content: space-between; padding: .45rem 0; }
.cart-summary .total { font-weight: 600; border-top: 1px solid var(--rule); margin-top: .5rem; padding-top: .75rem; }
.plans-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; margin-top: 2rem; }
.plan-card { background: #fff; border: 1px solid var(--rule); padding: 1.75rem; }
.plan-card.featured { border-color: var(--green-mid); box-shadow: 0 10px 30px rgba(26,74,26,.08); }
.plan-price { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--green-deep); margin: .75rem 0; }
.plan-features { list-style: none; font-size: .88rem; color: var(--muted); }
.plan-features li { padding: .35rem 0; border-bottom: 1px solid var(--rule); }
.plan-features li::before { content: '✓ '; color: var(--green-mid); }
.auth-split { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.auth-left { background: linear-gradient(rgba(26,74,26,.55),rgba(26,74,26,.55)), url('../../img/0.png') center/cover; display:flex; align-items:center; justify-content:center; color:#fff; padding:3rem; }
.auth-left h1 { font-family:'Cormorant Garamond',serif; font-size:3.5rem; font-weight:300; margin-bottom:1rem; }
.auth-right { display:flex; align-items:center; justify-content:center; padding:2rem; background:var(--cream); }
.auth-card { width:100%; max-width:520px; background:#fff; padding:2.5rem; box-shadow:0 20px 40px rgba(0,0,0,.06); }
.auth-card .logo img { height:56px; display:block; margin:0 auto 1.5rem; }
.auth-card h2 { font-family:'Cormorant Garamond',serif; font-size:2.5rem; font-weight:300; color:var(--green-deep); text-align:center; margin-bottom:.25rem; }
.auth-card .sub { text-align:center; color:var(--muted); margin-bottom:1.5rem; }
.dash-body { background: var(--green-mist); min-height: 100vh; }
.dash-wrap { display: flex; min-height: 100vh; }
.dash-sidebar { width: 260px; background: var(--green-deep); color: #fff; padding: 30px; flex-shrink: 0; position: fixed; top: 0; left: 0; height: 100vh; overflow-y: auto; z-index: 50; }
.dash-sidebar .logo img { height: 42px; margin-bottom: 2rem; }
.dash-menu { list-style: none; }
.dash-menu a { display: block; color: rgba(255,255,255,.75); text-decoration: none; padding: 14px 16px; border-radius: 10px; font-size: .9rem; margin-bottom: 4px; }
.dash-menu a:hover, .dash-menu a.active { background: rgba(255,255,255,.12); color: #fff; }
.dash-main { margin-left: 260px; flex: 1; padding: 35px; min-height: 100vh; }
.dash-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 35px; flex-wrap: wrap; gap: 1rem; }
.dash-topbar h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: var(--green-deep); }
.dash-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; margin-bottom: 30px; }
.dash-card { background: #fff; padding: 25px; border-radius: 18px; box-shadow: 0 10px 25px rgba(0,0,0,.05); }
.dash-card h3 { font-size: 14px; color: var(--muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .06em; }
.dash-card .value { font-size: 32px; color: var(--green-deep); font-weight: 600; font-family: 'Cormorant Garamond', serif; }
.dash-panel { background: #fff; padding: 25px; border-radius: 18px; box-shadow: 0 10px 25px rgba(0,0,0,.05); margin-bottom: 25px; }
.dash-panel h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--green-deep); margin-bottom: 1rem; font-weight: 400; }
.profile-pill { display: flex; align-items: center; gap: 12px; }
.avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--green-deep); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.admin-body { display: flex; min-height: 100vh; background: var(--green-mist); }
.admin-sidebar { width: 240px; background: var(--ink); color: #fff; padding: 1.5rem 0; flex-shrink: 0; }
.admin-sidebar .brand { padding: 0 1.5rem 1.5rem; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 1rem; }
.admin-sidebar nav a { display: block; padding: .7rem 1.5rem; color: rgba(255,255,255,.75); text-decoration: none; font-size: .9rem; }
.admin-sidebar nav a:hover { background: rgba(255,255,255,.1); color: #fff; }
.admin-main { flex: 1; }
.admin-topbar { background: #fff; padding: 1rem 2rem; border-bottom: 1px solid var(--rule); display: flex; justify-content: space-between; align-items: center; }
.admin-content { padding: 2rem; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.product-detail-img { aspect-ratio: 3/4; background: var(--green-pale); overflow: hidden; }
.product-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.product-name a { color: inherit; text-decoration: none; }
@media (max-width: 900px) { .auth-split { grid-template-columns: 1fr; } .auth-left { display: none; } .dash-sidebar { position: relative; width: 100%; height: auto; } .dash-main { margin-left: 0; } .dash-wrap { flex-direction: column; } .form-row, .product-detail-grid { grid-template-columns: 1fr; } }