  :root {
    --green-deep: #1a3a2a;
    --green-mid: #2d5a3d;
    --green-bright: #4a8c5c;
    --green-light: #7ab893;
    --cream: #f5f0e8;
    --warm-white: #fdfbf7;
    --terracotta: #c4623a;
    --gold: #d4a853;
    --text-dark: #1a1a18;
    --text-muted: #6b7a6e;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ─── NAVBAR ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1rem 2rem;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(253,251,247,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26,58,42,0.1);
    transition: box-shadow .3s;
  }
  nav.scrolled { box-shadow: 0 4px 30px rgba(26,58,42,0.12); }

  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 900;
    color: var(--green-deep);
    text-decoration: none;
    display: flex; align-items: center; gap: .5rem;
  }
  .nav-logo span { color: var(--terracotta); }

  .nav-links {
    display: flex; gap: 2rem; list-style: none;
  }
  .nav-links a {
    text-decoration: none; color: var(--text-dark);
    font-size: .9rem; font-weight: 500; letter-spacing: .03em;
    position: relative; padding-bottom: 2px;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1.5px;
    background: var(--terracotta);
    transition: width .3s;
  }
  .nav-links a:hover::after { width: 100%; }

  .nav-actions { display: flex; gap: 1rem; align-items: center; }
  .cart-btn {
    background: var(--green-deep);
    color: white;
    border: none; cursor: pointer;
    padding: .55rem 1.2rem;
    border-radius: 50px;
    font-size: .85rem; font-weight: 600;
    display: flex; align-items: center; gap: .4rem;
    transition: background .25s, transform .2s;
    position: relative;
  }
  .cart-btn:hover { background: var(--terracotta); transform: translateY(-1px); }
  .cart-count {
    background: var(--gold);
    color: var(--green-deep);
    border-radius: 50%;
    width: 18px; height: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: .7rem; font-weight: 700;
  }

  .hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--green-deep); border-radius: 2px; transition: .3s; }

  .mobile-menu {
    display: none; position: fixed; top: 70px; left: 0; right: 0; z-index: 999;
    background: var(--warm-white);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(26,58,42,0.1);
    flex-direction: column; gap: 1rem;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { text-decoration: none; color: var(--text-dark); font-size: 1rem; font-weight: 500; }

  /* ─── HERO ─── */
  #hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 8rem 4rem 4rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 60%);
    position: relative; overflow: hidden;
  }

  #hero::before {
    content: '';
    position: absolute; right: -100px; top: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(74,140,92,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
  }

  @keyframes pulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.05);} }

  .hero-badge {
    display: inline-block;
    background: rgba(74,140,92,0.12);
    color: var(--green-bright);
    border: 1px solid rgba(74,140,92,0.3);
    border-radius: 50px;
    padding: .35rem 1rem;
    font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeUp .8s ease both;
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--green-deep);
    margin-bottom: 1.5rem;
    animation: fadeUp .8s .15s ease both;
  }
  .hero-title em { color: var(--terracotta); font-style: italic; }

  .hero-sub {
    font-size: 1.05rem; color: var(--text-muted); line-height: 1.7;
    max-width: 480px; margin-bottom: 2.5rem;
    animation: fadeUp .8s .3s ease both;
  }

  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp .8s .45s ease both; }

  .btn-primary {
    background: var(--green-deep); color: white;
    padding: .85rem 2rem; border-radius: 50px;
    text-decoration: none; font-weight: 600; font-size: .95rem;
    transition: background .25s, transform .2s, box-shadow .25s;
    display: inline-flex; align-items: center; gap: .5rem;
  }
  .btn-primary:hover { background: var(--terracotta); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,98,58,0.35); }

  .btn-outline {
    border: 2px solid var(--green-deep); color: var(--green-deep);
    padding: .85rem 2rem; border-radius: 50px;
    text-decoration: none; font-weight: 600; font-size: .95rem;
    transition: all .25s;
    display: inline-flex; align-items: center; gap: .5rem;
  }
  .btn-outline:hover { background: var(--green-deep); color: white; transform: translateY(-2px); }

  .hero-visual {
    display: flex; justify-content: center; align-items: center;
    position: relative; animation: fadeLeft .9s .2s ease both;
  }

  .hero-plant-card {
    width: 380px; height: 480px;
    background: linear-gradient(145deg, #2d5a3d, #1a3a2a);
    border-radius: 40px 40px 60px 40px;
    display: flex; align-items: center; justify-content: center;
    font-size: 10rem;
    box-shadow: 30px 30px 80px rgba(26,58,42,0.3);
    position: relative; overflow: hidden;
    animation: float 4s ease-in-out infinite;
  }

  @keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-12px);} }

  .hero-plant-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
    background: linear-gradient(transparent, rgba(0,0,0,0.2));
    border-radius: 0 0 60px 40px;
  }

  .floating-tag {
    position: absolute;
    background: white;
    border-radius: 14px;
    padding: .7rem 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    font-size: .82rem; font-weight: 600;
    display: flex; align-items: center; gap: .5rem;
  }
  .floating-tag.tag1 { top: 40px; right: -30px; animation: float 3.5s .5s ease-in-out infinite; }
  .floating-tag.tag2 { bottom: 60px; left: -40px; animation: float 4.2s 1s ease-in-out infinite; }
  .tag-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright); }

  @keyframes fadeUp { from{opacity:0;transform:translateY(24px);} to{opacity:1;transform:none;} }
  @keyframes fadeLeft { from{opacity:0;transform:translateX(30px);} to{opacity:1;transform:none;} }

  /* ─── SECTION COMMONS ─── */
  section { padding: 6rem 4rem; }
  .section-label {
    display: inline-block;
    color: var(--terracotta); font-size: .78rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    margin-bottom: .75rem;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700; color: var(--green-deep);
    margin-bottom: 1rem;
  }
  .section-desc {
    color: var(--text-muted); font-size: 1rem; line-height: 1.7;
    max-width: 540px; margin-bottom: 3rem;
  }

  /* ─── SEARCH & FILTER BAR ─── */
  #products { background: var(--cream); }

  .search-filter-bar {
    display: flex; gap: 1rem; flex-wrap: wrap;
    margin-bottom: 2.5rem; align-items: center;
  }
  .search-wrap {
    flex: 1; min-width: 220px;
    position: relative;
  }
  .search-wrap input {
    width: 100%;
    padding: .75rem 1rem .75rem 2.75rem;
    border: 1.5px solid rgba(26,58,42,0.15);
    border-radius: 50px;
    background: white;
    font-size: .9rem; font-family: inherit;
    transition: border-color .25s, box-shadow .25s;
    outline: none;
  }
  .search-wrap input:focus { border-color: var(--green-bright); box-shadow: 0 0 0 3px rgba(74,140,92,0.12); }
  .search-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: .9rem; }

  .filter-tabs { display: flex; gap: .5rem; flex-wrap: wrap; }
  .filter-tab {
    padding: .55rem 1.1rem;
    border: 1.5px solid rgba(26,58,42,0.15);
    border-radius: 50px;
    background: white;
    font-size: .83rem; font-weight: 500;
    cursor: pointer;
    transition: all .22s;
    font-family: inherit;
    color: var(--text-dark);
  }
  .filter-tab:hover, .filter-tab.active {
    background: var(--green-deep); color: white; border-color: var(--green-deep);
  }

  .sort-select {
    padding: .55rem 1.1rem;
    border: 1.5px solid rgba(26,58,42,0.15);
    border-radius: 50px;
    background: white;
    font-size: .83rem; font-family: inherit;
    cursor: pointer; outline: none;
    transition: border-color .25s;
    color: var(--text-dark);
  }
  .sort-select:focus { border-color: var(--green-bright); }

  /* ─── PRODUCT GRID ─── */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
  }

  .product-card {
    background: white; border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(26,58,42,0.07);
    transition: transform .3s, box-shadow .3s;
    cursor: pointer;
    position: relative;
  }
  .product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(26,58,42,0.15); }

  .product-img {
    width: 100%; height: 220px;
    display: flex; align-items: center; justify-content: center;
    font-size: 5rem;
    position: relative; overflow: hidden;
  }

  .product-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--terracotta); color: white;
    border-radius: 8px; padding: .25rem .65rem;
    font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  }
  .product-badge.new { background: var(--green-bright); }

  .product-info { padding: 1.25rem 1.5rem 1.5rem; }

  .product-type {
    color: var(--text-muted); font-size: .75rem; text-transform: uppercase;
    letter-spacing: .08em; font-weight: 600; margin-bottom: .3rem;
  }
  .product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 700;
    color: var(--green-deep); margin-bottom: .25rem;
  }
  .product-meta { font-size: .8rem; color: var(--text-muted); margin-bottom: .75rem; display: flex; gap: 1rem; }
  .product-meta span { display: flex; align-items: center; gap: .25rem; }

  .product-care {
    display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1rem;
  }
  .care-tag {
    background: rgba(74,140,92,0.1); color: var(--green-bright);
    border-radius: 6px; padding: .2rem .6rem; font-size: .72rem; font-weight: 600;
  }

  .product-footer { display: flex; align-items: center; justify-content: space-between; }

  .product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 700; color: var(--green-deep);
  }
  .product-price .old { font-size: .85rem; color: var(--text-muted); text-decoration: line-through; margin-right: .35rem; font-family: 'DM Sans', sans-serif; }

  .add-to-cart {
    background: var(--green-deep); color: white;
    border: none; cursor: pointer;
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    transition: background .25s, transform .2s;
  }
  .add-to-cart:hover { background: var(--terracotta); transform: scale(1.1); }

  .stars { color: var(--gold); font-size: .8rem; }

  /* ─── CART SIDEBAR ─── */
  .cart-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.4);
    z-index: 2000; opacity: 0; pointer-events: none; transition: opacity .3s;
  }
  .cart-overlay.open { opacity: 1; pointer-events: all; }

  .cart-sidebar {
    position: fixed; right: -420px; top: 0; bottom: 0;
    width: 420px; max-width: 100vw;
    background: var(--warm-white);
    z-index: 2001; transition: right .35s cubic-bezier(.4,0,.2,1);
    display: flex; flex-direction: column;
    box-shadow: -10px 0 50px rgba(0,0,0,0.15);
  }
  .cart-sidebar.open { right: 0; }

  .cart-header {
    padding: 1.5rem; display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid rgba(26,58,42,0.1);
  }
  .cart-header h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--green-deep); }
  .close-cart { background: none; border: none; cursor: pointer; font-size: 1.3rem; color: var(--text-muted); transition: color .2s; }
  .close-cart:hover { color: var(--terracotta); }

  .cart-items { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }

  .cart-item {
    display: flex; gap: 1rem; align-items: center;
    background: white; border-radius: 16px; padding: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    animation: fadeUp .3s ease;
  }
  .cart-item-emoji { font-size: 2.5rem; min-width: 50px; text-align: center; }
  .cart-item-info { flex: 1; }
  .cart-item-name { font-weight: 600; font-size: .9rem; color: var(--green-deep); }
  .cart-item-price { color: var(--terracotta); font-weight: 700; font-size: .9rem; }

  .qty-control { display: flex; align-items: center; gap: .5rem; margin-top: .5rem; }
  .qty-btn {
    width: 26px; height: 26px; border-radius: 50%;
    border: 1px solid rgba(26,58,42,0.2); background: white;
    cursor: pointer; font-size: .9rem; display: flex; align-items: center; justify-content: center;
    transition: all .2s;
  }
  .qty-btn:hover { background: var(--green-deep); color: white; border-color: var(--green-deep); }
  .qty-num { font-size: .85rem; font-weight: 600; min-width: 20px; text-align: center; }

  .remove-item { background: none; border: none; cursor: pointer; color: var(--text-muted); font-size: .9rem; transition: color .2s; }
  .remove-item:hover { color: var(--terracotta); }

  .cart-empty { text-align: center; padding: 3rem; color: var(--text-muted); }
  .cart-empty .empty-icon { font-size: 3rem; margin-bottom: 1rem; }

  .cart-footer { padding: 1.5rem; border-top: 1px solid rgba(26,58,42,0.1); }
  .cart-total { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.1rem; margin-bottom: 1rem; color: var(--green-deep); }
  .checkout-btn {
    width: 100%; padding: 1rem;
    background: var(--green-deep); color: white;
    border: none; border-radius: 50px; cursor: pointer;
    font-size: 1rem; font-weight: 600; font-family: inherit;
    transition: background .25s, transform .2s;
  }
  .checkout-btn:hover { background: var(--terracotta); transform: translateY(-1px); }

  /* ─── FEATURED SECTION ─── */
  #featured {
    background: var(--green-deep);
    color: white;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  }
  #featured .section-label { color: var(--green-light); }
  #featured .section-title { color: white; }
  #featured .section-desc { color: rgba(255,255,255,0.7); max-width: 100%; }

  .feature-list { display: flex; flex-direction: column; gap: 1.5rem; }
  .feature-item {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.25rem 1.5rem;
    background: rgba(255,255,255,0.07);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: background .25s, transform .25s;
  }
  .feature-item:hover { background: rgba(255,255,255,0.12); transform: translateX(4px); }
  .feature-icon { font-size: 1.8rem; min-width: 2.5rem; }
  .feature-title { font-weight: 700; font-size: .95rem; margin-bottom: .25rem; }
  .feature-desc { font-size: .85rem; color: rgba(255,255,255,0.65); line-height: 1.5; }

  /* ─── ABOUT / CARE ─── */
  #care { background: var(--warm-white); }
  .care-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; }
  .care-card {
    background: var(--cream); border-radius: 20px; padding: 1.75rem 1.5rem;
    text-align: center; transition: transform .25s, box-shadow .25s;
    border: 1px solid rgba(26,58,42,0.06);
  }
  .care-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,58,42,0.1); }
  .care-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }
  .care-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--green-deep); margin-bottom: .5rem; }
  .care-card p { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }

  /* ─── REVIEWS ─── */
  #reviews { background: var(--cream); }
  .reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.75rem; }

  .review-card {
    background: white; border-radius: 20px; padding: 1.75rem;
    box-shadow: 0 2px 16px rgba(26,58,42,0.07);
    transition: transform .25s;
    position: relative;
  }
  .review-card:hover { transform: translateY(-4px); }
  .review-card::before {
    content: '"';
    position: absolute; top: 12px; right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 5rem; color: rgba(74,140,92,0.1);
    line-height: 1;
  }
  .review-stars { color: var(--gold); font-size: .9rem; margin-bottom: .75rem; }
  .review-text { font-size: .9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
  .reviewer { display: flex; align-items: center; gap: .75rem; }
  .reviewer-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green-bright), var(--green-deep));
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: .9rem;
  }
  .reviewer-name { font-weight: 600; font-size: .87rem; color: var(--green-deep); }
  .reviewer-date { font-size: .75rem; color: var(--text-muted); }

  .add-review-btn {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--green-deep); color: white;
    border: none; cursor: pointer;
    padding: .75rem 1.5rem; border-radius: 50px;
    font-size: .9rem; font-weight: 600; font-family: inherit;
    margin-top: 2.5rem;
    transition: background .25s, transform .2s;
  }
  .add-review-btn:hover { background: var(--terracotta); transform: translateY(-2px); }

  /* ─── REVIEW MODAL ─── */
  .modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    z-index: 3000; display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity .3s;
    padding: 1rem;
  }
  .modal-overlay.open { opacity: 1; pointer-events: all; }

  .modal {
    background: white; border-radius: 28px; padding: 2.5rem;
    width: 100%; max-width: 500px;
    transform: scale(0.9) translateY(20px);
    transition: transform .3s;
    box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  }
  .modal-overlay.open .modal { transform: scale(1) translateY(0); }

  .modal h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--green-deep); margin-bottom: 1.5rem; }

  .form-group { margin-bottom: 1.25rem; }
  .form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--green-deep); margin-bottom: .4rem; }
  .form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: .75rem 1rem;
    border: 1.5px solid rgba(26,58,42,0.15);
    border-radius: 12px; font-size: .9rem; font-family: inherit;
    outline: none; transition: border-color .25s, box-shadow .25s;
    background: var(--warm-white);
    color: var(--text-dark);
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--green-bright); box-shadow: 0 0 0 3px rgba(74,140,92,0.12);
  }
  .form-group textarea { resize: vertical; min-height: 100px; }

  .field-error { color: var(--terracotta); font-size: .78rem; margin-top: .3rem; display: none; }
  .field-error.show { display: block; }
  .input-error { border-color: var(--terracotta) !important; }

  .star-picker { display: flex; gap: .5rem; margin-top: .25rem; }
  .star-btn {
    font-size: 1.5rem; background: none; border: none; cursor: pointer;
    color: #ddd; transition: color .2s, transform .2s;
  }
  .star-btn:hover, .star-btn.active { color: var(--gold); transform: scale(1.15); }

  .modal-actions { display: flex; gap: 1rem; margin-top: 1.5rem; }
  .submit-review {
    flex: 1; padding: .85rem; background: var(--green-deep); color: white;
    border: none; border-radius: 50px; cursor: pointer;
    font-size: .95rem; font-weight: 600; font-family: inherit;
    transition: background .25s;
  }
  .submit-review:hover { background: var(--terracotta); }
  .cancel-modal {
    flex: 1; padding: .85rem; background: none;
    border: 1.5px solid rgba(26,58,42,0.2); border-radius: 50px;
    cursor: pointer; font-size: .95rem; font-family: inherit;
    transition: all .25s; color: var(--text-dark);
  }
  .cancel-modal:hover { background: var(--cream); }

  /* ─── CONTACT ─── */
  #contact {
    background: var(--green-deep); color: white;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
  }
  #contact .section-label { color: var(--green-light); }
  #contact .section-title { color: white; }
  #contact .section-desc { color: rgba(255,255,255,0.7); max-width: 100%; }

  .contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
  .contact-item { display: flex; gap: 1rem; align-items: flex-start; }
  .contact-item-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; min-width: 44px;
  }
  .contact-item-text { font-size: .9rem; color: rgba(255,255,255,0.8); line-height: 1.6; }
  .contact-item-label { font-weight: 700; color: white; margin-bottom: .2rem; }

  .contact-form { background: rgba(255,255,255,0.07); border-radius: 24px; padding: 2rem; border: 1px solid rgba(255,255,255,0.1); }

  .contact-form .form-group input,
  .contact-form .form-group textarea,
  .contact-form .form-group select {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: white;
  }
  .contact-form .form-group input::placeholder,
  .contact-form .form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
  .contact-form .form-group label { color: rgba(255,255,255,0.9); }
  .contact-form .form-group input:focus,
  .contact-form .form-group textarea:focus {
    border-color: var(--green-light);
    box-shadow: 0 0 0 3px rgba(122,184,147,0.2);
  }
  .send-btn {
    width: 100%; padding: .9rem;
    background: var(--terracotta); color: white;
    border: none; border-radius: 50px; cursor: pointer;
    font-size: 1rem; font-weight: 600; font-family: inherit;
    transition: background .25s, transform .2s;
    display: flex; align-items: center; justify-content: center; gap: .5rem;
  }
  .send-btn:hover { background: #d4704a; transform: translateY(-2px); }

  /* ─── SUCCESS TOAST ─── */
  .toast {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
    background: var(--green-deep); color: white;
    padding: 1rem 1.5rem; border-radius: 14px;
    font-size: .9rem; font-weight: 600;
    display: flex; align-items: center; gap: .75rem;
    box-shadow: 0 8px 32px rgba(26,58,42,0.3);
    transform: translateY(80px); opacity: 0;
    transition: transform .35s, opacity .35s;
  }
  .toast.show { transform: none; opacity: 1; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--text-dark); color: rgba(255,255,255,0.7);
    padding: 3rem 4rem 2rem;
  }
  .footer-inner {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem; margin-bottom: 2.5rem;
  }
  .footer-brand .nav-logo { color: white; margin-bottom: 1rem; display: inline-block; }
  .footer-brand p { font-size: .85rem; line-height: 1.7; }
  .footer-col h4 { color: white; font-size: .9rem; font-weight: 700; margin-bottom: 1rem; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
  .footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: .85rem; transition: color .2s; }
  .footer-col ul li a:hover { color: var(--green-light); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; flex-wrap: wrap; gap: .5rem; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    #hero { grid-template-columns: 1fr; padding: 7rem 2rem 4rem; text-align: center; }
    .hero-btns { justify-content: center; }
    .hero-visual { display: none; }
    #featured { grid-template-columns: 1fr; }
    #contact { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    section { padding: 4rem 2rem; }
  }

  @media (max-width: 640px) {
    nav { padding: .75rem 1.25rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    section { padding: 3.5rem 1.25rem; }
    .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .search-filter-bar { flex-direction: column; }
    .filter-tabs { justify-content: flex-start; }
    .cart-sidebar { width: 100vw; right: -100vw; }
  }

  /* ─── SCROLL REVEAL ─── */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s, transform .7s; }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .2s; }
  .reveal-delay-3 { transition-delay: .3s; }
  .reveal-delay-4 { transition-delay: .4s; }

  /* ─── PRODUCT DETAIL MODAL ─── */
  .product-modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.55);
    z-index: 3000; display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity .3s; padding: 1rem;
  }
  .product-modal-overlay.open { opacity: 1; pointer-events: all; }
  .product-modal {
    background: white; border-radius: 28px; padding: 0;
    width: 100%; max-width: 720px; overflow: hidden;
    transform: scale(0.92); transition: transform .3s;
    display: grid; grid-template-columns: 1fr 1fr;
    max-height: 90vh; overflow-y: auto;
  }
  .product-modal-overlay.open .product-modal { transform: scale(1); }
  .pm-left {
    background: linear-gradient(145deg, #e8f4ec, #d0e8d8);
    display: flex; align-items: center; justify-content: center;
    font-size: 8rem; min-height: 300px;
  }
  .pm-right { padding: 2rem; }
  .pm-close {
    position: absolute; top: 1rem; right: 1rem;
    background: white; border: none; cursor: pointer;
    width: 36px; height: 36px; border-radius: 50%;
    font-size: 1rem; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15); z-index: 1; transition: color .2s;
  }
  .pm-close:hover { color: var(--terracotta); }
  .product-modal { position: relative; }
  .pm-type { color: var(--text-muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; margin-bottom: .3rem; }
  .pm-name { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--green-deep); margin-bottom: .5rem; }
  .pm-stars { color: var(--gold); margin-bottom: 1rem; }
  .pm-desc { font-size: .88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
  .pm-details { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
  .pm-detail { display: flex; gap: .75rem; font-size: .84rem; }
  .pm-detail strong { color: var(--green-deep); min-width: 80px; }
  .pm-price { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--green-deep); font-weight: 700; margin-bottom: 1.25rem; }
  .pm-add-btn {
    width: 100%; padding: .9rem;
    background: var(--green-deep); color: white;
    border: none; border-radius: 50px; cursor: pointer;
    font-size: 1rem; font-weight: 600; font-family: inherit;
    transition: background .25s, transform .2s;
  }
  .pm-add-btn:hover { background: var(--terracotta); transform: translateY(-2px); }

  @media (max-width: 640px) {
    .product-modal { grid-template-columns: 1fr; }
    .pm-left { min-height: 200px; font-size: 6rem; }
  }
/* ═══════════════════════════════════
   DARK MODE STYLES
═══════════════════════════════════ */

body.dark {
  --green-deep: #7ab893;
  --green-mid: #4a8c5c;
  --green-bright: #7ab893;
  --green-light: #4a8c5c;
  --cream: #1a1f1c;
  --warm-white: #111714;
  --terracotta: #e07a55;
  --gold: #d4a853;
  --text-dark: #f0f0ec;
  --text-muted: #9ab09e;
}

body.dark nav {
  background: rgba(17, 23, 20, 0.95);
  border-bottom: 1px solid rgba(122, 184, 147, 0.15);
}

body.dark .product-card,
body.dark .review-card,
body.dark .care-card,
body.dark .cart-item,
body.dark .modal {
  background: #1e2820;
  border: 1px solid rgba(122,184,147,0.1);
  color: #f0f0ec;
}

body.dark .filter-tab,
body.dark .sort-select,
body.dark .search-wrap input {
  background: #1e2820;
  border-color: rgba(122,184,147,0.2);
  color: #f0f0ec;
}

body.dark .cart-sidebar,
body.dark .mobile-menu {
  background: #111714;
}

body.dark footer {
  background: #0a0f0c;
}

body.dark .floating-tag {
  background: #1e2820;
  color: #f0f0ec;
}

body.dark #products {
  background: #151a17;
}

body.dark #reviews {
  background: #1a1f1c;
}

body.dark #care {
  background: #111714;
}

/* Dark mode toggle button */
.theme-toggle {
  background: none;
  border: 1.5px solid rgba(26,58,42,0.2);
  border-radius: 50px;
  cursor: pointer;
  padding: 0.45rem 0.9rem;
  font-size: 1rem;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-dark);
  font-family: inherit;
  font-weight: 500;
  font-size: 0.82rem;
}

.theme-toggle:hover {
  background: var(--green-deep);
  color: white;
  border-color: var(--green-deep);
}

body.dark .theme-toggle {
  border-color: rgba(122,184,147,0.3);
  color: #f0f0ec;
}

body.dark .theme-toggle:hover {
  background: var(--green-bright);
  border-color: var(--green-bright);
}
.product-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: #e8f4ec;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* fills the box perfectly, no stretching */
  object-position: center;  /* centers the image */
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.07);
}
.product-img img {
  object-fit: contain;       /* shows full image, no cropping */
  object-position: center;
  padding: 10px;             /* adds breathing room */
  background: #f0f7f2;
}
.product-img img {
  object-fit: cover;
  object-position: top;     /* shows top of plant, not middle */
}