/* ═══════════════════════════════════════════════════════════════
   NOORUMENI SEEDS — Main Stylesheet
   Brand Colors from Logo:
   Dark Green:    #1a5210 / #2d6a1f
   Bright Green:  #3da832 / #4cbc2a
   Purple/Violet: #7b2d8b / #9c27b0
   White/Light:   #ffffff / #f7faf5
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --green-dark:   #1a5210;
  --green-mid:    #2d6a1f;
  --green-bright: #3da832;
  --green-light:  #e8f5e3;
  --green-pale:   #f2fbee;
  --purple:       #7b2d8b;
  --purple-light: #f3e8f7;
  --purple-mid:   #9c27b0;
  --white:        #ffffff;
  --off-white:    #f7faf5;
  --border:       #d4e8cc;
  --text:         #1c2b18;
  --text-mid:     #4a5e42;
  --text-light:   #7a8f72;
  --shadow-sm:    0 2px 8px rgba(29,82,16,.08);
  --shadow-md:    0 4px 20px rgba(29,82,16,.12);
  --shadow-lg:    0 8px 40px rgba(29,82,16,.16);
  --radius:       6px;
  --radius-lg:    12px;
  --transition:   all .22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }

/* ─── Typography ─────────────────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.15; }
.section-title { font-size: clamp(28px,4vw,40px); font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.section-subtitle { font-size: 15px; color: var(--text-mid); margin-bottom: 40px; }
.section-title span { color: var(--purple); font-style: italic; }
.divider { width: 52px; height: 3px; background: linear-gradient(90deg, var(--green-bright), var(--purple)); margin: 10px 0 20px; border-radius: 2px; }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 7px; padding: 11px 26px; border-radius: var(--radius); font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; border: 2px solid transparent; transition: var(--transition); white-space: nowrap; }
.btn-primary { background: var(--green-mid); color: #fff; border-color: var(--green-mid); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-purple { background: var(--purple); color: #fff; border-color: var(--purple); }
.btn-purple:hover { background: #6a1878; border-color: #6a1878; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--green-mid); border-color: var(--green-mid); }
.btn-outline:hover { background: var(--green-mid); color: #fff; }
.btn-white { background: #fff; color: var(--green-dark); border-color: #fff; }
.btn-white:hover { background: var(--green-light); }
.btn-whatsapp { background: #25D366; color: #fff; border-color: #25D366; font-size: 14px; padding: 13px 24px; border-radius: var(--radius); display: inline-flex; align-items: center; gap: 8px; font-weight: 600; transition: var(--transition); }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(37,211,102,.3); }
.btn-whatsapp i { font-size: 18px; }
.btn-sm { padding: 7px 16px; font-size: 12px; }
.btn-lg { padding: 15px 36px; font-size: 15px; }
.btn-block { width: 100%; justify-content: center; }

/* ─── Tags & Badges ──────────────────────────────────────────────────────── */
.tag { display: inline-block; background: var(--green-light); color: var(--green-dark); border: 1px solid var(--border); border-radius: 20px; padding: 3px 12px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.tag-purple { background: var(--purple-light); color: var(--purple); border-color: #d4a8e0; }
.badge { position: absolute; top: -6px; right: -8px; min-width: 18px; height: 18px; border-radius: 9px; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; padding: 0 4px; }
.badge.green { background: var(--green-bright); color: #fff; }
.badge.purple { background: var(--purple); color: #fff; }

/* ─── Flash Messages ─────────────────────────────────────────────────────── */
.flash-msg { position: fixed; top: 80px; left: 50%; transform: translateX(-50%); z-index: 9999; padding: 14px 24px; border-radius: var(--radius); font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-lg); animation: slideDown .3s ease; min-width: 320px; max-width: 520px; }
.flash-success { background: #e8f5e3; border: 1.5px solid var(--green-bright); color: var(--green-dark); }
.flash-error { background: #fdf0f0; border: 1.5px solid #e53935; color: #b71c1c; }
.flash-msg button { margin-left: auto; background: none; border: none; font-size: 18px; opacity: .6; cursor: pointer; }
@keyframes slideDown { from { opacity:0; transform: translateX(-50%) translateY(-12px); } to { opacity:1; transform: translateX(-50%) translateY(0); } }

/* ─── Top Bar ────────────────────────────────────────────────────────────── */
.topbar { background: var(--green-dark); color: rgba(255,255,255,.85); font-size: 12px; padding: 7px 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,.8); transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar i { margin-right: 5px; }
.tagline-small { font-family: 'Playfair Display', serif; font-style: italic; color: #c5e8b8; font-size: 13px; }

/* ─── Header ─────────────────────────────────────────────────────────────── */
.header { background: #fff; border-bottom: 2px solid var(--green-light); position: sticky; top: 0; z-index: 500; box-shadow: var(--shadow-sm); transition: box-shadow .3s; }
.header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; gap: 20px; padding: 12px 20px; }
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-img { height: 50px; width: auto; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--green-dark); line-height: 1.1; }
.logo-sub { font-size: 9px; color: var(--purple); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-top: 1px; }
.header-search { flex: 1; max-width: 480px; display: flex; background: var(--off-white); border: 1.5px solid var(--border); border-radius: 25px; overflow: hidden; }
.header-search input { flex: 1; border: none; background: transparent; padding: 9px 18px; font-size: 13.5px; color: var(--text); outline: none; }
.header-search button { background: var(--green-mid); border: none; color: #fff; padding: 9px 18px; font-size: 14px; transition: background .2s; }
.header-search button:hover { background: var(--green-dark); }
.header-icons { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.icon-btn { position: relative; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--green-dark); font-size: 17px; transition: var(--transition); }
.icon-btn:hover { background: var(--green-light); color: var(--green-dark); }
.whatsapp-icon { color: #25D366 !important; font-size: 20px !important; }
.whatsapp-icon:hover { background: #e8fdf0 !important; }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 22px; color: var(--green-dark); padding: 4px; }

/* ─── Navbar ─────────────────────────────────────────────────────────────── */
.navbar { background: var(--green-mid); }
.nav-inner { display: flex; }
.nav-menu { display: flex; align-items: center; }
.nav-menu > li { position: relative; }
.nav-menu > li > a { display: block; padding: 13px 18px; color: rgba(255,255,255,.9); font-size: 13.5px; font-weight: 500; letter-spacing: .02em; transition: var(--transition); border-bottom: 3px solid transparent; }
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: #fff; border-bottom-color: #c5e8b8; background: rgba(255,255,255,.07); }
.nav-menu > li > a i { font-size: 10px; margin-left: 3px; }
.dropdown { position: absolute; top: 100%; left: 0; min-width: 200px; background: #fff; border: 1px solid var(--border); border-top: 3px solid var(--green-bright); box-shadow: var(--shadow-md); border-radius: 0 0 var(--radius) var(--radius); opacity: 0; visibility: hidden; transform: translateY(8px); transition: var(--transition); z-index: 400; }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: block; padding: 9px 18px; font-size: 13px; color: var(--text-mid); transition: background .15s; border-bottom: 1px solid var(--off-white); }
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--green-light); color: var(--green-dark); padding-left: 24px; }

/* ─── Hero Section ───────────────────────────────────────────────────────── */
.hero { position: relative; background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 50%, #3a7a28 100%); min-height: 580px; display: flex; align-items: center; overflow: hidden; }
.hero-bg-image { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=1600&q=80'); background-size: cover; background-position: center; opacity: .18; }
.hero-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle at 70% 50%, rgba(124,45,139,.2) 0%,transparent 60%); }
.hero-content { position: relative; z-index: 2; max-width: 600px; padding: 60px 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); color: #c5e8b8; padding: 6px 16px; border-radius: 20px; font-size: 12px; font-weight: 500; letter-spacing: .08em; margin-bottom: 20px; }
.hero h1 { font-size: clamp(36px,5.5vw,64px); color: #fff; font-weight: 700; line-height: 1.05; margin-bottom: 16px; }
.hero h1 em { color: #c5e8b8; font-style: italic; }
.hero-tagline { font-family: 'Playfair Display', serif; font-style: italic; font-size: 20px; color: #e0d6f5; margin-bottom: 16px; }
.hero p { font-size: 16px; color: rgba(255,255,255,.8); line-height: 1.75; max-width: 500px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { position: absolute; right: 0; bottom: 0; width: 45%; z-index: 2; display: flex; gap: 0; }
.hero-stat-box { flex: 1; background: rgba(255,255,255,.1); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.15); padding: 24px 16px; text-align: center; }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: #c5e8b8; line-height: 1; }
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }

/* ─── Category Bar ───────────────────────────────────────────────────────── */
.cat-bar { background: var(--off-white); border-bottom: 1px solid var(--border); padding: 0; }
.cat-bar-inner { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.cat-bar-inner::-webkit-scrollbar { display: none; }
.cat-item { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 16px 22px; color: var(--text-mid); font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: .05em; border-bottom: 3px solid transparent; transition: var(--transition); white-space: nowrap; }
.cat-item img { width: 44px; height: 44px; object-fit: cover; border-radius: 50%; border: 2px solid var(--border); transition: var(--transition); }
.cat-item:hover, .cat-item.active { color: var(--green-dark); border-bottom-color: var(--green-bright); }
.cat-item:hover img { border-color: var(--green-bright); transform: scale(1.08); }

/* ─── Feature Strips ─────────────────────────────────────────────────────── */
.feature-strip { background: var(--green-pale); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; }
.feature-strip-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.feature-item { display: flex; align-items: center; gap: 14px; }
.feature-icon { width: 44px; height: 44px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--green-dark); font-size: 18px; flex-shrink: 0; }
.feature-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--green-dark); }
.feature-text span { font-size: 12px; color: var(--text-light); }

/* ─── Product Cards ──────────────────────────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.product-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); position: relative; display: flex; flex-direction: column; }
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--green-bright); }
.product-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--green-pale); }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-card-img img { transform: scale(1.06); }
.card-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 5px; }
.card-badge { padding: 4px 10px; border-radius: 4px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.badge-featured { background: var(--purple); color: #fff; }
.badge-sale { background: #e53935; color: #fff; }
.badge-new { background: var(--green-bright); color: #fff; }
.badge-out { background: #9e9e9e; color: #fff; }
.card-actions { position: absolute; top: 12px; right: 12px; display: flex; flex-direction: column; gap: 7px; opacity: 0; transform: translateX(10px); transition: var(--transition); }
.product-card:hover .card-actions { opacity: 1; transform: translateX(0); }
.card-action-btn { width: 36px; height: 36px; background: #fff; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--text-mid); transition: var(--transition); box-shadow: var(--shadow-sm); }
.card-action-btn:hover { background: var(--purple); color: #fff; border-color: var(--purple); }
.card-action-btn.wished { color: var(--purple); }
.product-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-card-cat { font-size: 11px; color: var(--purple); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 5px; }
.product-card-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 600; color: var(--green-dark); margin-bottom: 6px; line-height: 1.3; }
.product-card-desc { font-size: 12.5px; color: var(--text-light); line-height: 1.6; margin-bottom: 12px; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.meta-chip { display: flex; align-items: center; gap: 4px; background: var(--green-pale); border: 1px solid var(--border); border-radius: 20px; padding: 3px 10px; font-size: 11px; color: var(--text-mid); font-weight: 500; }
.meta-chip i { font-size: 10px; color: var(--green-bright); }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--green-pale); }
.product-price { display: flex; align-items: baseline; gap: 6px; }
.price-current { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--green-dark); }
.price-old { font-size: 14px; color: var(--text-light); text-decoration: line-through; }
.rating { display: flex; align-items: center; gap: 4px; font-size: 12px; }
.stars { color: var(--purple); letter-spacing: 1px; font-size: 12px; }
.rating-count { color: var(--text-light); }

/* ─── Product Page ───────────────────────────────────────────────────────── */
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product-gallery { position: sticky; top: 80px; }
.gallery-main { aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: var(--green-pale); margin-bottom: 12px; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 10px; }
.gallery-thumb { width: 72px; height: 72px; border-radius: var(--radius); overflow: hidden; border: 2px solid var(--border); cursor: pointer; transition: var(--transition); flex-shrink: 0; }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--green-bright); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info { }
.product-cat-link { font-size: 12px; color: var(--purple); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; display: block; }
.product-title { font-size: clamp(26px,3.5vw,38px); font-weight: 700; color: var(--green-dark); margin-bottom: 12px; }
.product-rating-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.product-price-bar { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.product-price-main { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--green-dark); }
.product-price-old { font-size: 20px; color: var(--text-light); text-decoration: line-through; }
.product-desc { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 24px; }
.product-specs { background: var(--green-pale); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin-bottom: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.spec-item { display: flex; flex-direction: column; gap: 2px; }
.spec-label { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-light); font-weight: 600; }
.spec-value { font-size: 15px; font-weight: 700; color: var(--green-dark); }
.qty-selector { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; width: fit-content; }
.qty-btn { width: 40px; height: 44px; background: var(--green-pale); border: none; font-size: 20px; color: var(--green-dark); font-weight: 700; transition: background .15s; }
.qty-btn:hover { background: var(--green-light); }
.qty-input { width: 56px; height: 44px; border: none; border-left: 1.5px solid var(--border); border-right: 1.5px solid var(--border); text-align: center; font-size: 16px; font-weight: 600; outline: none; color: var(--green-dark); }
.product-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.product-actions-row { display: flex; gap: 10px; }
.features-list { list-style: none; margin-top: 20px; }
.features-list li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--text-mid); padding: 6px 0; border-bottom: 1px solid var(--green-pale); }
.features-list li i { color: var(--green-bright); font-size: 12px; flex-shrink: 0; }
.product-tabs { margin-top: 56px; }
.tab-nav { display: flex; border-bottom: 2px solid var(--border); gap: 0; }
.tab-btn { padding: 12px 24px; font-size: 14px; font-weight: 600; color: var(--text-light); background: none; border: none; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: var(--transition); cursor: pointer; }
.tab-btn.active { color: var(--green-dark); border-bottom-color: var(--green-bright); }
.tab-content { padding: 28px 0; display: none; }
.tab-content.active { display: block; }

/* ─── Reviews ────────────────────────────────────────────────────────────── */
.review-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin-bottom: 16px; }
.review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
.reviewer-name { font-weight: 600; font-size: 14px; }
.review-date { font-size: 12px; color: var(--text-light); }
.review-title { font-weight: 600; font-size: 15px; margin-bottom: 6px; color: var(--green-dark); }
.review-body { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.review-form { background: var(--green-pale); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.star-picker { display: flex; gap: 6px; margin-bottom: 16px; }
.star-picker input { display: none; }
.star-picker label { font-size: 28px; color: #ddd; cursor: pointer; transition: color .15s; }
.star-picker label:hover, .star-picker label.selected, .star-picker input:checked ~ label { color: var(--purple); }

/* ─── Forms ──────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-input { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 14px; color: var(--text); background: #fff; outline: none; transition: border .2s; }
.form-input:focus { border-color: var(--green-bright); box-shadow: 0 0 0 3px rgba(61,168,50,.1); }
.form-input.error { border-color: #e53935; }
.form-error { font-size: 12px; color: #e53935; margin-top: 4px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a5e42' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

/* ─── Cart ───────────────────────────────────────────────────────────────── */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; padding: 12px 16px; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-light); font-weight: 600; border-bottom: 2px solid var(--border); background: var(--green-pale); }
.cart-table td { padding: 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-item-img { width: 72px; height: 72px; border-radius: var(--radius); object-fit: cover; border: 1px solid var(--border); }
.cart-item-name { font-weight: 600; font-size: 14px; color: var(--green-dark); }
.cart-item-cat { font-size: 12px; color: var(--text-light); margin-top: 2px; }
.cart-summary { background: var(--green-pale); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; position: sticky; top: 80px; }
.cart-summary h3 { font-size: 20px; margin-bottom: 20px; color: var(--green-dark); }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.summary-total { font-size: 18px; font-weight: 700; color: var(--green-dark); border-bottom: none; padding-top: 12px; }
.coupon-form { display: flex; gap: 8px; margin: 16px 0; }
.coupon-form input { flex: 1; }

/* ─── Auth Pages ─────────────────────────────────────────────────────────── */
.auth-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--green-pale) 0%, var(--purple-light) 100%); padding: 40px 20px; }
.auth-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 44px 40px; width: 100%; max-width: 460px; }
.auth-logo { text-align: center; margin-bottom: 28px; }
.auth-logo img { height: 60px; margin: 0 auto 10px; }
.auth-title { font-size: 26px; font-weight: 700; color: var(--green-dark); text-align: center; margin-bottom: 6px; }
.auth-sub { font-size: 14px; color: var(--text-light); text-align: center; margin-bottom: 28px; }
.auth-divider { display: flex; align-items: center; gap: 12px; color: var(--text-light); font-size: 12px; margin: 20px 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-link { text-align: center; font-size: 13px; margin-top: 20px; color: var(--text-mid); }
.auth-link a { color: var(--purple); font-weight: 600; }

/* ─── Account Page ───────────────────────────────────────────────────────── */
.account-layout { display: grid; grid-template-columns: 240px 1fr; gap: 32px; align-items: start; }
.account-sidebar { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; position: sticky; top: 80px; }
.account-avatar { background: linear-gradient(135deg, var(--green-mid), var(--purple)); padding: 28px; text-align: center; color: #fff; }
.avatar-circle { width: 70px; height: 70px; background: rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 700; margin: 0 auto 10px; }
.account-nav a { display: flex; align-items: center; gap: 10px; padding: 13px 20px; font-size: 13.5px; color: var(--text-mid); border-bottom: 1px solid var(--off-white); transition: var(--transition); }
.account-nav a:hover, .account-nav a.active { background: var(--green-pale); color: var(--green-dark); padding-left: 26px; }
.account-nav a i { width: 18px; font-size: 14px; color: var(--green-bright); }
.account-content { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }

/* ─── Breadcrumb ─────────────────────────────────────────────────────────── */
.breadcrumb { padding: 14px 0; font-size: 13px; color: var(--text-light); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb a { color: var(--green-mid); }
.breadcrumb a:hover { color: var(--green-dark); text-decoration: underline; }
.breadcrumb i { font-size: 10px; }

/* ─── Pagination ─────────────────────────────────────────────────────────── */
.pagination { display: flex; gap: 6px; justify-content: center; padding: 32px 0; flex-wrap: wrap; }
.page-btn { width: 38px; height: 38px; border: 1.5px solid var(--border); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 500; color: var(--text-mid); transition: var(--transition); }
.page-btn:hover, .page-btn.active { background: var(--green-mid); color: #fff; border-color: var(--green-mid); }

/* ─── Upsell / Related ───────────────────────────────────────────────────── */
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.upsell-strip { background: linear-gradient(90deg, var(--green-pale), var(--purple-light)); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin: 40px 0; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.upsell-icon { font-size: 40px; flex-shrink: 0; }
.upsell-text h4 { font-size: 18px; font-weight: 700; color: var(--green-dark); margin-bottom: 4px; }
.upsell-text p { font-size: 13px; color: var(--text-mid); }
.upsell-action { margin-left: auto; }

/* ─── Banner / CTA ───────────────────────────────────────────────────────── */
.cta-banner { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, var(--purple) 100%); padding: 64px 24px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1464226184884-fa280b87c399?w=1400&q=60'); background-size: cover; background-position: center; opacity: .08; }
.cta-banner-content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-banner h2 { font-size: clamp(28px,4vw,44px); font-weight: 700; margin-bottom: 14px; }
.cta-banner p { font-size: 16px; opacity: .85; line-height: 1.7; margin-bottom: 28px; }
.cta-banner-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── Testimonials ───────────────────────────────────────────────────────── */
.testimonials { background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; position: relative; }
.testimonial-card::before { content: '"'; font-family: 'Playfair Display', serif; font-size: 72px; color: var(--green-light); position: absolute; top: 10px; left: 20px; line-height: 1; }
.testimonial-body { font-size: 14px; color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; padding-top: 20px; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--green-mid); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.testimonial-name { font-weight: 600; font-size: 14px; }
.testimonial-role { font-size: 12px; color: var(--text-light); }

/* ─── Tips Page ──────────────────────────────────────────────────────────── */
.tips-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 32px; }
.tip-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; border-left: 4px solid var(--green-bright); }
.tip-card h3 { font-size: 18px; color: var(--green-dark); margin-bottom: 12px; }
.tip-card ul { padding-left: 0; }
.tip-card ul li { display: flex; gap: 10px; font-size: 13.5px; color: var(--text-mid); padding: 5px 0; border-bottom: 1px solid var(--green-pale); line-height: 1.6; }
.tip-card ul li::before { content: '✔'; color: var(--green-bright); flex-shrink: 0; font-size: 12px; padding-top: 3px; }
.download-box { background: linear-gradient(135deg, var(--green-pale), var(--purple-light)); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; text-align: center; margin-bottom: 40px; }
.download-box h3 { font-size: 22px; color: var(--green-dark); margin-bottom: 8px; }
.download-box p { color: var(--text-mid); font-size: 14px; margin-bottom: 20px; }

/* ─── WhatsApp Float ─────────────────────────────────────────────────────── */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 28px; box-shadow: 0 4px 20px rgba(37,211,102,.4); z-index: 800; transition: var(--transition); animation: pulse 2.5s infinite; }
.whatsapp-float:hover { transform: scale(1.1); background: #1da851; }
.wa-tooltip { position: absolute; right: 70px; background: #333; color: #fff; padding: 6px 12px; border-radius: 4px; font-size: 12px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s; font-family: 'Inter', sans-serif; }
.whatsapp-float:hover .wa-tooltip { opacity: 1; }
@keyframes pulse { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); } 50% { box-shadow: 0 4px 32px rgba(37,211,102,.7); } }

/* ─── Back to Top ────────────────────────────────────────────────────────── */
.back-to-top { position: fixed; bottom: 96px; right: 28px; width: 44px; height: 44px; background: var(--green-mid); border: none; border-radius: 50%; color: #fff; font-size: 16px; display: none; align-items: center; justify-content: center; box-shadow: var(--shadow-md); z-index: 799; transition: var(--transition); }
.back-to-top:hover { background: var(--green-dark); transform: translateY(-2px); }
.back-to-top.show { display: flex; }

/* ─── Page Banners ───────────────────────────────────────────────────────── */
.page-banner { background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); padding: 48px 24px; position: relative; overflow: hidden; }
.page-banner::before { content: ''; position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=1200&q=60'); background-size: cover; background-position: center; opacity: .15; }
.page-banner-content { position: relative; z-index: 1; }
.page-banner h1 { font-size: clamp(28px,4vw,44px); color: #fff; font-weight: 700; margin-bottom: 8px; }
.page-banner p { color: rgba(255,255,255,.8); font-size: 15px; }

/* ─── Filter Sidebar ─────────────────────────────────────────────────────── */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 32px; align-items: start; }
.filter-sidebar { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; position: sticky; top: 80px; }
.filter-header { background: var(--green-dark); color: #fff; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; }
.filter-header h3 { font-size: 15px; font-weight: 600; }
.filter-section { padding: 18px 20px; border-bottom: 1px solid var(--border); }
.filter-section h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-mid); margin-bottom: 12px; }
.filter-option { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-mid); margin-bottom: 8px; cursor: pointer; }
.filter-option input[type="checkbox"] { accent-color: var(--green-bright); width: 15px; height: 15px; }
.price-range { display: flex; gap: 8px; align-items: center; }
.price-range input { width: 80px; padding: 6px 10px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 13px; }

/* ─── Admin Dashboard ────────────────────────────────────────────────────── */
.admin-layout { display: grid; grid-template-columns: 220px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--green-dark); color: #fff; }
.admin-sidebar-logo { padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
.admin-nav a { display: flex; align-items: center; gap: 10px; padding: 13px 20px; font-size: 13.5px; color: rgba(255,255,255,.7); transition: var(--transition); border-left: 3px solid transparent; }
.admin-nav a:hover, .admin-nav a.active { background: rgba(255,255,255,.08); color: #fff; border-left-color: #c5e8b8; }
.admin-nav a i { width: 18px; }
.admin-main { background: #f4f7f3; padding: 32px; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.stat-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 28px; }
.stat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; align-items: center; gap: 16px; }
.stat-icon { width: 52px; height: 52px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.stat-icon.green { background: var(--green-light); }
.stat-icon.purple { background: var(--purple-light); }
.stat-icon.orange { background: #fff3e0; }
.stat-icon.red { background: #fde8e8; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700; color: var(--green-dark); line-height: 1; }
.stat-label { font-size: 12px; color: var(--text-light); text-transform: uppercase; letter-spacing: .06em; margin-top: 3px; }
.admin-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.admin-table th { padding: 12px 16px; text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: .07em; color: var(--text-light); background: var(--green-pale); border-bottom: 2px solid var(--border); font-weight: 700; }
.admin-table td { padding: 12px 16px; border-bottom: 1px solid var(--off-white); font-size: 13.5px; vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--green-pale); }
.status-badge { padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.status-pending { background: #fff3e0; color: #e65100; }
.status-processing { background: #e3f2fd; color: #1565c0; }
.status-shipped { background: var(--purple-light); color: var(--purple); }
.status-delivered { background: var(--green-light); color: var(--green-dark); }
.status-cancelled { background: #fde8e8; color: #c62828; }

/* ─── Newsletter ─────────────────────────────────────────────────────────── */
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input { flex: 1; border: 1px solid rgba(255,255,255,.3); border-radius: var(--radius) 0 0 var(--radius); background: rgba(255,255,255,.1); color: #fff; padding: 10px 16px; font-size: 13px; outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form button { background: var(--purple); border: none; color: #fff; padding: 10px 16px; border-radius: 0 var(--radius) var(--radius) 0; font-size: 14px; transition: background .2s; }
.newsletter-form button:hover { background: var(--green-bright); }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.footer { margin-top: 0; }
.footer-top { background: var(--green-dark); color: #fff; padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.8; max-width: 280px; margin-bottom: 16px; }
.footer-tagline { font-family: 'Playfair Display', serif; font-style: italic; color: #c5e8b8; font-size: 18px; margin-bottom: 16px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 36px; height: 36px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); font-size: 15px; transition: var(--transition); }
.footer-socials a:hover { background: var(--purple); color: #fff; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #c5e8b8; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col ul a:hover { color: #fff; padding-left: 4px; }
.contact-list li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,.65); margin-bottom: 10px; }
.contact-list i { width: 16px; color: var(--green-bright); flex-shrink: 0; }
.footer-bottom { background: var(--text); padding: 16px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.5); }
.payment-icons { display: flex; gap: 16px; align-items: center; }
.payment-icons span { font-size: 12px; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: 5px; }

/* ─── Image Cards for Homepage ───────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.why-card { text-align: center; padding: 32px 20px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); transition: var(--transition); }
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--green-bright); }
.why-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--green-light), var(--purple-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; margin: 0 auto 16px; }
.why-card h3 { font-size: 16px; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--text-light); line-height: 1.7; }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cart-layout, .shop-layout, .account-layout { grid-template-columns: 1fr; }
  .hero-stats { position: relative; width: 100%; margin-top: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-cards { grid-template-columns: repeat(2,1fr); }
  .admin-layout { grid-template-columns: 1fr; }
  .product-layout { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .feature-strip-inner { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .header-search { display: none; }
  .logo-text { display: none; }
  .mobile-menu-btn { display: flex; }
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-top: 2px solid var(--green-bright); box-shadow: var(--shadow-md); z-index: 400; padding: 8px 0; }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { color: var(--text); border-bottom: 1px solid var(--off-white); padding: 13px 20px; }
  .navbar { position: relative; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; border-top: 1px solid var(--off-white); display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .hero-stats { flex-direction: row; }
  .hero-stat-box { padding: 16px 10px; }
  .cart-summary { position: relative; top: auto; }
  .filter-sidebar { position: relative; top: auto; }
  .product-gallery { position: relative; top: auto; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .feature-strip-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .hero { min-height: 500px; }
  .hero-stat-box { padding: 12px 8px; }
  .hero-stat-num { font-size: 24px; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
}
