/* ===================================================================
   PlantPlex — Premium NZ Plant Store
   Commercial-grade design system
   =================================================================== */

/* ---------- Reset & Foundation ---------- */
:root {
  --green-900: #1a3a1a;
  --green-800: #2d5336;
  --green-700: #3a6b3a;
  --green-600: #4a8c4a;
  --green-500: #5ba35b;
  --green-400: #7bc67b;
  --green-200: #c8e6c9;
  --green-100: #e8f5e9;
  --green-50:  #f1f8f2;

  --dark-900: #111111;
  --dark-800: #1a1a1a;
  --dark-700: #2a2a2a;
  --dark-600: #3a3a3a;
  --dark-500: #4a4f52;

  --surface: #ffffff;
  --bg: #f7f9f5;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --border-light: #f0f0f0;

  --max-width: 1200px;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.16);
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }

/* ---------- Announcement Bar ---------- */
.announcement-bar {
  background: var(--green-800);
  color: #fff;
  text-align: center;
  padding: 9px 1rem;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--dark-900);
  color: #aaa;
  font-size: 12.5px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar .container { display: flex; align-items: center; justify-content: space-between; }
.top-bar-left { display: flex; align-items: center; gap: 16px; }
.top-bar-left a { color: #bbb; display: flex; align-items: center; gap: 4px; }
.top-bar-left a:hover { color: #fff; }
.top-bar-left svg { width: 15px; height: 15px; fill: currentColor; }
.top-bar-right a { color: #ccc; }
.top-bar-right a:hover { color: #fff; }

/* ---------- Main Header ---------- */
.site-header {
  background: var(--dark-800);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  white-space: nowrap;
  text-decoration: none;
}
.logo .logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--green-400), var(--green-700));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(91,163,91,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: box-shadow 0.2s, transform 0.2s;
}
.logo a:hover .logo-icon {
  box-shadow: 0 4px 18px rgba(91,163,91,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-1px);
}
.logo .logo-icon svg { width: 22px; height: 22px; fill: #fff; }
.logo .logo-text { display: flex; }
.logo .logo-plant {
  color: #fff;
  -webkit-text-fill-color: #fff;
}
.logo .logo-plex {
  background: linear-gradient(135deg, var(--green-400), #a8e6a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Search Bar ---------- */
.header-search {
  flex: 1;
  max-width: 440px;
  position: relative;
}
.header-search input {
  width: 100%;
  padding: 10px 44px 10px 16px;
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: all var(--transition);
}
.header-search input::placeholder { color: rgba(255,255,255,0.4); }
.header-search input:focus {
  border-color: var(--green-500);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(91,163,91,0.2);
}
.header-search .search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.45);
  pointer-events: none;
}
.header-search .search-icon svg { width: 18px; height: 18px; fill: currentColor; }

/* Search Dropdown */
.search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-height: 400px;
  overflow-y: auto;
  z-index: 2000;
  display: none;
  border: 1px solid var(--border);
}
.search-dropdown.active { display: block; }
.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background var(--transition);
  border-bottom: 1px solid var(--border-light);
  color: var(--text);
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--green-50); }
.search-result-item img {
  width: 48px; height: 48px; object-fit: cover; border-radius: 6px; flex-shrink: 0;
}
.search-result-info { flex: 1; }
.search-result-info h4 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.search-result-info .search-cat { font-size: 11px; color: var(--text-muted); }
.search-result-info .search-price { font-size: 13px; color: var(--green-700); font-weight: 600; }
.search-no-results { padding: 24px 16px; text-align: center; color: var(--text-muted); font-size: 14px; }

/* ---------- Navigation ---------- */
.main-nav {
  background: var(--dark-500);
  border-top: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 68px;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.nav-menu { list-style: none; display: flex; gap: 0; }
.nav-menu li a {
  display: block;
  padding: 13px 24px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  position: relative;
}
.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--green-400);
  transition: width var(--transition);
}
.nav-menu li a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.nav-menu li a:hover::after { width: 60%; }
.nav-menu li a.active { color: #fff; }
.nav-menu li a.active::after { width: 60%; }

.nav-cart {
  position: absolute;
  right: 0; top: 50%; transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--green-700);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.nav-cart:hover { background: var(--green-600); }
.nav-cart svg { width: 16px; height: 16px; fill: currentColor; }
.nav-cart .cart-badge {
  background: #fff;
  color: var(--green-800);
  min-width: 20px; height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

/* Mobile menu & header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-cart-btn {
  display: none;
  position: relative;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}
.header-cart-btn:hover { background: rgba(255,255,255,0.1); }
.header-cart-btn svg { width: 22px; height: 22px; fill: currentColor; }
.header-cart-badge {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--green-500);
  color: #fff;
  min-width: 18px; height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  border: 2px solid var(--dark-800);
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-btn:hover { background: rgba(255,255,255,0.1); }
.mobile-menu-btn svg { width: 24px; height: 24px; fill: currentColor; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: url('images/hometop.jpg') center/cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,30,10,0.72) 0%, rgba(20,50,20,0.60) 50%, rgba(10,35,10,0.75) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 640px; padding: 3rem 0; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  color: var(--green-400);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
}
.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
.hero h1 span { color: var(--green-400); }
.hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1.4;
  font-family: inherit;
}
.btn-primary { background: var(--green-700); color: #fff; border-color: var(--green-700); }
.btn-primary:hover {
  background: var(--green-600);
  border-color: var(--green-600);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(58,107,58,0.35);
}
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }
.btn-outline-dark { background: transparent; color: var(--green-800); border-color: var(--green-800); }
.btn-outline-dark:hover { background: var(--green-800); color: #fff; }
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- Trust Strip ---------- */
.trust-strip { background: var(--surface); border-bottom: 1px solid var(--border); padding: 3rem 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.trust-item { text-align: center; padding: 1rem; }
.trust-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icon svg { width: 26px; height: 26px; fill: var(--green-700); }
.trust-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.trust-item p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ---------- Section Headings ---------- */
.section-heading { text-align: center; max-width: 600px; margin: 0 auto 2.5rem; }
.section-heading .label {
  display: inline-block;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-heading h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.section-heading p { color: var(--text-muted); font-size: 15px; }

/* ---------- Products Grid & Cards ---------- */
.featured-section { padding: 4rem 0; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.product-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-400);
}
.product-card .card-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.product-card .card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .card-image img { transform: scale(1.06); }
.product-card .card-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-evergreen { background: #dcfce7; color: #166534; }
.badge-deciduous { background: #fef3c7; color: #92400e; }
.badge-native { background: #dbeafe; color: #1e40af; }
.badge-hedging { background: #ede9fe; color: #5b21b6; }

.product-card .card-body {
  padding: 1rem 1.1rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card .card-body h4 {
  font-size: 15px; font-weight: 700; margin-bottom: 4px; line-height: 1.3;
}
.product-card .card-body .card-desc {
  font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 10px; flex: 1;
}
.product-card .card-body .card-price {
  font-size: 16px; font-weight: 800; color: var(--green-800); margin-bottom: 10px;
}
.product-card .card-body .card-price .from {
  font-size: 12px; font-weight: 500; color: var(--text-muted);
}
.product-card .card-body .card-price .single-size-label {
  font-size: 13px; font-weight: 500; color: var(--text-muted);
}
.product-card .size-select-wrap { margin-bottom: 10px; }
.product-card .size-select-wrap label {
  font-size: 12px; font-weight: 600; color: var(--text-muted); display: block; margin-bottom: 4px;
}
.product-card .size-select-wrap select {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
  color: var(--text);
  background: #fff;
  cursor: pointer;
  transition: border-color var(--transition);
}
.product-card .size-select-wrap select:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(91,163,91,0.1);
}
.product-card .card-actions { display: flex; gap: 8px; }
.product-card .card-actions .btn { flex: 1; font-size: 13px; padding: 9px 12px; }
.product-card .card-image-link { display: block; }
.product-card .card-title-link { color: inherit; text-decoration: none; }
.product-card .card-title-link:hover h4 { color: var(--green-700); }

/* ---------- Info Section ---------- */
.info-section { padding: 5rem 0; background: var(--surface); }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.info-content .label {
  display: inline-block; color: var(--green-700);
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px;
}
.info-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 1rem; letter-spacing: -0.3px;
}
.info-content p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.7; }
.info-content .check-list { list-style: none; margin: 1.5rem 0; }
.info-content .check-list li {
  display: flex; align-items: flex-start; gap: 10px; padding: 6px 0; font-size: 14px;
}
.info-content .check-list li svg { width: 20px; height: 20px; fill: var(--green-600); flex-shrink: 0; margin-top: 2px; }
.info-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.info-image img { width: 100%; height: 400px; object-fit: cover; }

/* ---------- FAQ Accordion ---------- */
.faq-section { padding: 4rem 0; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 10px; overflow: hidden; background: var(--surface);
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; cursor: pointer; font-weight: 600; font-size: 15px;
  background: none; border: none; width: 100%; text-align: left;
  color: var(--text); transition: color var(--transition); font-family: inherit;
}
.faq-question:hover { color: var(--green-700); }
.faq-question .faq-icon {
  width: 24px; height: 24px; border-radius: 50%; background: var(--green-100);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-question .faq-icon svg { width: 14px; height: 14px; fill: var(--green-700); }
.faq-item.active .faq-question .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 20px 16px; font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: url('images/hometop.jpg') center/cover no-repeat;
  padding: 4rem 0; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,30,10,0.80) 0%, rgba(20,50,20,0.68) 50%, rgba(10,35,10,0.82) 100%);
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; position: relative; z-index: 1;
}
.cta-text h2 { color: #fff; font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,0.7); font-size: 15px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark-900); color: #ccc; }
.footer-main { padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer-brand .logo-footer {
  display: flex; align-items: center; gap: 10px; color: #fff;
  font-size: 1.3rem; font-weight: 800; margin-bottom: 1rem;
}
.footer-brand .logo-footer .logo-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--green-400), var(--green-700));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(91,163,91,0.25);
}
.footer-brand .logo-footer .logo-icon svg { width: 18px; height: 18px; fill: #fff; }
.footer-brand .logo-footer .logo-plant { color: #fff; }
.footer-brand .logo-footer .logo-plex {
  background: linear-gradient(135deg, var(--green-400), #a8e6a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-brand p { font-size: 13px; color: #999; line-height: 1.6; margin-bottom: 1.2rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--green-700); }
.footer-social a svg { width: 16px; height: 16px; fill: #ccc; }
.footer-social a:hover svg { fill: #fff; }

.footer-col h5 {
  color: #fff; font-size: 14px; font-weight: 700;
  margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.5px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #999; font-size: 13px; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--green-400); }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px; font-size: 13px; color: #999;
}
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--green-400); flex-shrink: 0; margin-top: 3px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.25rem 0; }
.footer-bottom .container {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: #777;
}

/* ---------- Cart Overlay & Panel ---------- */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 5000; opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.cart-overlay.active { opacity: 1; visibility: visible; }

.cart-panel {
  position: fixed; top: 0; right: -420px;
  width: 400px; height: 100vh; background: var(--surface);
  box-shadow: var(--shadow-xl); z-index: 5001;
  display: flex; flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-panel.active { right: 0; }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid var(--border); background: var(--green-50);
}
.cart-header h4 { font-size: 16px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.cart-header h4 svg { width: 20px; height: 20px; fill: var(--green-700); }
.cart-close {
  width: 32px; height: 32px; border-radius: 50%; border: none;
  background: rgba(0,0,0,0.06); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--text); transition: all var(--transition);
}
.cart-close:hover { background: rgba(0,0,0,0.1); }

.cart-items { flex: 1; overflow-y: auto; padding: 16px 20px; }
.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--text-muted); }
.cart-empty svg { width: 48px; height: 48px; fill: #ddd; margin-bottom: 12px; }

.cart-item {
  display: flex; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--border-light); align-items: flex-start;
}
.cart-item img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info .item-name {
  font-weight: 600; font-size: 13px; margin-bottom: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cart-item-info .item-size { font-size: 12px; color: var(--text-muted); }
.cart-item-info .item-price { font-size: 13px; font-weight: 600; color: var(--green-800); margin-top: 4px; }

.cart-item-qty {
  display: flex; align-items: center;
  border: 1px solid var(--border); border-radius: 6px; overflow: hidden; flex-shrink: 0;
}
.cart-item-qty button {
  width: 28px; height: 28px; background: none; border: none; cursor: pointer;
  font-size: 14px; font-weight: 600; color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.cart-item-qty button:hover { background: var(--green-50); }
.cart-item-qty span {
  width: 28px; text-align: center; font-size: 13px; font-weight: 600;
  border-left: 1px solid var(--border); border-right: 1px solid var(--border); line-height: 28px;
}

.cart-footer { padding: 16px 20px; border-top: 1px solid var(--border); background: #fafafa; }
.cart-totals .total-row {
  display: flex; justify-content: space-between; padding: 4px 0;
  font-size: 13px; color: var(--text-muted);
}
.cart-totals .total-row.grand {
  font-size: 16px; font-weight: 800; color: var(--text);
  padding-top: 8px; margin-top: 4px; border-top: 1px solid var(--border);
}
.cart-footer .btn { width: 100%; margin-top: 12px; }

/* ---------- Page Headers ---------- */
.page-header {
  position: relative;
  background: url('images/hometop.jpg') center/cover no-repeat;
  padding: 3rem 0; text-align: center;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,30,10,0.78) 0%, rgba(20,50,20,0.65) 50%, rgba(10,35,10,0.80) 100%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.page-header p { color: rgba(255,255,255,0.8); margin-top: 6px; text-shadow: 0 1px 4px rgba(0,0,0,0.2); }

/* Shop filters */
.shop-controls {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap;
}
.filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-tab {
  padding: 7px 16px; border-radius: 50px;
  border: 1px solid var(--border); background: var(--surface);
  font-size: 13px; font-weight: 500; cursor: pointer;
  transition: all var(--transition); color: var(--text-muted); font-family: inherit;
}
.filter-tab:hover { border-color: var(--green-500); color: var(--green-700); }
.filter-tab.active { background: var(--green-700); color: #fff; border-color: var(--green-700); }
.sort-select {
  padding: 8px 14px; border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 13px; background: var(--surface); color: var(--text); cursor: pointer;
}

/* ---------- About Page ---------- */
.mission-box {
  background: var(--green-50);
  border-left: 4px solid var(--green-600);
  padding: 2rem; border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 2rem auto; max-width: 800px;
}
.mission-box p { font-size: 1.05rem; font-style: italic; color: var(--green-800); line-height: 1.7; }

.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin: 2.5rem 0; }
.why-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem; transition: all var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-400); }
.why-card .icon {
  width: 44px; height: 44px; background: var(--green-100); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.why-card .icon svg { width: 22px; height: 22px; fill: var(--green-700); }
.why-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.why-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ---------- Services Page ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 2rem 0; }
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center;
  transition: all 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green-400); }
.service-card .icon {
  width: 64px; height: 64px; background: var(--green-100); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
}
.service-card .icon svg { width: 28px; height: 28px; fill: var(--green-700); }
.service-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ---------- Contact Page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.5rem; margin: 2rem 0; }
.contact-info-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 1.5rem;
}
.contact-info-item .icon {
  width: 40px; height: 40px; background: var(--green-100); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-item .icon svg { width: 18px; height: 18px; fill: var(--green-700); }
.contact-info-item h5 { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.contact-info-item p { font-size: 13px; color: var(--text-muted); }

.contact-form {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 5px; }
.form-group input,
.form-group textarea {
  width: 100%; padding: 10px 14px;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 14px; color: var(--text); background: #fff;
  transition: border-color var(--transition); font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(91,163,91,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* Breadcrumb */
.breadcrumb { padding: 12px 0; font-size: 13px; color: var(--text-muted); }
.breadcrumb a { color: var(--green-700); }
.breadcrumb span { margin: 0 6px; color: #ccc; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; top: 80px; right: 24px;
  transform: translateX(120%);
  background: #fff; color: var(--text);
  padding: 14px 22px 14px 16px; border-radius: var(--radius-lg);
  font-size: 14px; font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.08);
  z-index: 9999;
  opacity: 0; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  display: flex; align-items: center; gap: 10px;
  border-left: 4px solid var(--green-500);
  max-width: 340px;
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast svg { width: 20px; height: 20px; fill: var(--green-500); flex-shrink: 0; }

/* ---------- Cart Badge Animations ---------- */
@keyframes badge-pulse {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.45); }
  60%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}
@keyframes badge-pop {
  0%   { transform: scale(0.5); opacity: 0; }
  50%  { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.header-cart-badge.pulse,
.cart-badge.pulse {
  animation: badge-pulse 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.header-cart-badge.has-items,
.cart-badge.has-items {
  background: var(--green-500);
  color: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .info-grid { grid-template-columns: 1fr; }
  .info-image { order: -1; }
  .info-image img { height: 280px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .header-search { max-width: 100%; order: 3; flex-basis: 100%; margin-top: 10px; }
  .header-inner { flex-wrap: wrap; }
  .header-cart-btn { display: flex; }
  .mobile-menu-btn { display: block; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 400px; }
  .hero h1 { font-size: 1.8rem; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { text-align: center; flex-direction: column; }
  .main-nav { display: none; position: static; }
  .main-nav.nav-open { display: block; position: static; }
  .main-nav.nav-open .nav-cart { display: none; }
  .nav-inner { flex-wrap: wrap; justify-content: center; gap: 0; padding: 0; }
  .nav-menu { display: flex; flex-direction: column; width: 100%; gap: 0; }
  .nav-menu li a { padding: 12px 16px; text-align: center; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .cart-panel { width: 100%; right: -100%; }
  .hero-actions { flex-direction: column; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
}

/* ---------- Contact Detail Items ---------- */
.contact-info h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: .75rem; }
.contact-info > p { color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.7; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 1.25rem; padding: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.contact-detail-icon { width: 44px; height: 44px; background: var(--green-100); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 20px; height: 20px; fill: var(--green-700); }
.contact-detail-item div strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.contact-detail-item div a,
.contact-detail-item div span { display: block; font-size: 13px; color: var(--text-muted); text-decoration: none; }
.contact-detail-item div a:hover { color: var(--green-700); }

.contact-form h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group select { width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 14px; color: var(--text); background: #fff; font-family: inherit; transition: border-color var(--transition); }
.form-group select:focus { outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(91,163,91,0.1); }

/* ---------- Cart Full Page ---------- */
.cart-page-section { padding: 2rem 0 4rem; }
.cart-empty-page { text-align: center; padding: 4rem 1rem; }
.cart-empty-page h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: .5rem; }
.cart-empty-page p { color: var(--text-muted); margin-bottom: 1.5rem; }

.cart-page-table-wrap { overflow-x: auto; }
.cart-page-table { width: 100%; border-collapse: collapse; margin-bottom: 2rem; }
.cart-page-table th { text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); font-weight: 600; padding: 12px; border-bottom: 2px solid var(--border); }
.cart-page-table td { padding: 14px 12px; border-bottom: 1px solid var(--border-light); vertical-align: middle; }
.cart-page-table .text-right { text-align: right; }
.cart-page-item { display: flex; align-items: center; gap: 12px; }
.cart-page-img { width: 56px; height: 56px; border-radius: var(--radius); object-fit: cover; }
.cart-page-item strong { display: block; font-size: 14px; }
.cart-page-size { display: block; font-size: 12px; color: var(--text-muted); }
.qty-row { display: inline-flex; align-items: center; gap: 8px; }
.qty-btn { width: 30px; height: 30px; border: 1px solid var(--border); border-radius: 6px; background: var(--surface); cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.qty-btn:hover { background: var(--green-100); border-color: var(--green-400); }
.qty-val { font-weight: 600; min-width: 24px; text-align: center; }
.remove-btn { border: none; background: none; cursor: pointer; color: #ccc; font-size: 18px; transition: color var(--transition); }
.remove-btn:hover { color: #ef4444; }

.cart-page-summary { display: flex; justify-content: flex-end; }
.summary-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; width: 100%; max-width: 380px; }
.summary-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; padding: 6px 0; }
.summary-row.grand { font-weight: 700; font-size: 16px; border-top: 2px solid var(--border); padding-top: 10px; margin-top: 6px; }

/* ---------- Checkout Page ---------- */
.checkout-section { padding: 2rem 0 4rem; }
.checkout-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.5rem; align-items: start; }
.checkout-summary { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; position: sticky; top: 100px; }
.checkout-summary h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 1px solid var(--border); }
.checkout-items-list { margin-bottom: 1rem; max-height: 260px; overflow-y: auto; }
.checkout-item { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; border-bottom: 1px solid var(--border-light); }
.checkout-item-name small { color: var(--text-muted); }

.checkout-payment h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.25rem; }
.checkout-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; }
.checkout-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.bank-details table { width: 100%; font-size: 14px; }
.bank-details td { padding: 6px 0; }
.bank-details td:first-child { width: 130px; color: var(--text-muted); }
.btn-sm { padding: 6px 14px; font-size: 13px; }

@media (max-width: 768px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .cart-page-summary { justify-content: center; }
  .summary-card { max-width: 100%; }
}

/* Scrollbars */
.cart-items::-webkit-scrollbar,
.search-dropdown::-webkit-scrollbar { width: 6px; }
.cart-items::-webkit-scrollbar-track,
.search-dropdown::-webkit-scrollbar-track { background: transparent; }
.cart-items::-webkit-scrollbar-thumb,
.search-dropdown::-webkit-scrollbar-thumb { background: #ddd; border-radius: 3px; }

/* ========== Product Detail Page (PDP) ========== */

/* Breadcrumb bar */
.breadcrumb-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.breadcrumb-bar .breadcrumb {
  padding: 14px 0;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.breadcrumb-bar .breadcrumb a { color: var(--green-700); font-weight: 500; }
.breadcrumb-bar .breadcrumb a:hover { color: var(--green-900); text-decoration: underline; }
.breadcrumb-bar .breadcrumb span { margin: 0 8px; color: #ccc; font-size: 11px; }
.breadcrumb-bar .breadcrumb .bc-current { color: var(--text); font-weight: 600; }

/* PDP Section */
.pdp-section { padding: 2.5rem 0 1rem; }
.pdp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Gallery */
.pdp-gallery { position: sticky; top: 100px; }
.pdp-main-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f5f5f5;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.pdp-main-image img {
  width: 100%;
  height: auto;
  min-height: 380px;
  max-height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.pdp-main-image:hover img { transform: scale(1.03); }
.pdp-thumbnails { display: flex; gap: 10px; margin-top: 12px; }
.pdp-thumb {
  width: 72px; height: 72px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s, border-color 0.2s;
}
.pdp-thumb:hover { opacity: 1; }
.pdp-thumb.active { border-color: var(--green-600); opacity: 1; }

/* PDP Info Panel */
.pdp-info { display: flex; flex-direction: column; gap: 0; }

.pdp-category-badge {
  display: inline-block;
  width: fit-content;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.pdp-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 4px;
  color: var(--text);
}

.pdp-botanical {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.pdp-short-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Price Block */
.pdp-price-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
}
.pdp-price-main { display: flex; flex-direction: column; }
.pdp-price-label { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.pdp-price-value { font-size: 1.75rem; font-weight: 800; color: var(--green-800); }

.pdp-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}
.pdp-stock-badge.in-stock { background: #dcfce7; color: #166534; }

/* Shipping Banner */
.pdp-shipping-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #92400e;
}
.pdp-shipping-banner svg { flex-shrink: 0; color: #d97706; }

/* Sizes Table */
.pdp-sizes-table-wrap {
  margin-bottom: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pdp-sizes-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.pdp-sizes-table thead th {
  text-align: left;
  padding: 10px 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 700;
  background: #f9fafb;
  border-bottom: 2px solid var(--border);
}
.pdp-sizes-table thead th:last-child { text-align: center; }
.pdp-sizes-table tbody tr { border-bottom: 1px solid var(--border-light); transition: background 0.15s ease; }
.pdp-sizes-table tbody tr:last-child { border-bottom: none; }
.pdp-sizes-table tbody tr:hover { background: var(--green-50); }
.pdp-sizes-table tbody tr.selected { background: var(--green-50); }
.pdp-sizes-table td { padding: 12px 14px; vertical-align: middle; }
.pdp-grade-legend {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: 10px;
  padding: 10px 14px;
  background: var(--green-50);
  border-left: 3px solid var(--green-600);
  border-radius: 4px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.pdp-grade-legend svg { flex-shrink: 0; margin-top: 2px; color: var(--green-600); }

.size-radio-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.size-radio-wrap input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--green-700);
  cursor: pointer;
}
.size-radio-wrap label {
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  color: var(--text);
}
.size-price { font-weight: 700; color: var(--green-800); font-size: 15px; }
.size-add { text-align: center; }
.size-add .btn { min-width: 70px; }

/* Quantity Control */
.pdp-qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.pdp-qty-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.15s ease;
}
.pdp-qty-btn:hover { background: var(--green-50); color: var(--green-700); }
.pdp-qty-input {
  width: 40px;
  height: 34px;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  background: #fff;
  color: var(--text);
  -moz-appearance: textfield;
}
.pdp-qty-input::-webkit-outer-spin-button,
.pdp-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Quick Specs */
.pdp-quick-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
}
.pdp-spec {
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
}
.pdp-spec:nth-child(2n) { border-right: none; }
.pdp-spec:nth-last-child(-n+2) { border-bottom: none; }
.spec-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 2px; }
.spec-value { font-size: 14px; font-weight: 600; color: var(--text); }

/* Trust Row */
.pdp-trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}
.pdp-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}
.pdp-trust-item svg { fill: var(--green-600); flex-shrink: 0; }

/* Tabs Section */
.pdp-tabs-section {
  padding: 0 0 3rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.pdp-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 0;
}
.pdp-tab {
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  font-family: inherit;
  letter-spacing: 0.3px;
}
.pdp-tab::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  border-radius: 3px 3px 0 0;
  transition: background 0.2s ease;
}
.pdp-tab:hover { color: var(--green-700); }
.pdp-tab.active { color: var(--green-800); }
.pdp-tab.active::after { background: var(--green-700); }

.pdp-tab-content {
  display: none;
  padding: 2rem 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  max-width: 860px;
}
.pdp-tab-content.active { display: block; }
.pdp-tab-content h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.pdp-tab-content p { margin-bottom: 1rem; color: #444; }
.pdp-tab-content ul { margin: 1rem 0; padding-left: 1.5rem; }
.pdp-tab-content ul li { margin-bottom: 8px; }
.pdp-tab-content ul li strong { color: var(--text); }

/* Description detail grid */
.pdp-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--green-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--green-200);
}
.pdp-detail-item { display: flex; flex-direction: column; }
.pdp-detail-item strong { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); font-weight: 700; margin-bottom: 2px; }
.pdp-detail-item span { font-size: 14px; font-weight: 600; color: var(--green-800); }

/* Delivery info */
.delivery-info h3 { margin-bottom: 12px; }
.delivery-banner {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  color: #fff;
  border-radius: var(--radius-lg);
}
.delivery-banner svg { flex-shrink: 0; margin-top: 2px; }
.delivery-banner strong { display: block; font-size: 15px; margin-bottom: 4px; }
.delivery-banner p { font-size: 13px; color: rgba(255,255,255,0.8); margin: 0; }

/* Care content */
.pdp-care-content h3 { margin-bottom: 12px; }
.pdp-care-content p { line-height: 1.8; }

/* Related Products */
.pdp-related { padding: 3rem 0; background: var(--bg); }

/* Not found / Loading */
.pdp-not-found { text-align: center; padding: 4rem 1rem; grid-column: 1 / -1; }
.pdp-not-found h2 { font-size: 1.5rem; margin-bottom: 8px; }
.pdp-not-found p { color: var(--text-muted); margin-bottom: 1.5rem; }

.pdp-loading { text-align: center; padding: 4rem 1rem; grid-column: 1 / -1; }
.pdp-loading-spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--green-600);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 12px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.pdp-loading p { color: var(--text-muted); font-size: 14px; }

/* PDP Responsive */
@media (max-width: 900px) {
  .pdp-layout { grid-template-columns: 1fr; gap: 2rem; }
  .pdp-gallery { position: static; }
  .pdp-main-image img { max-height: 400px; }
  .pdp-quick-specs { grid-template-columns: 1fr; }
  .pdp-spec { border-right: none !important; }
  .pdp-spec:last-child { border-bottom: none; }
  .pdp-detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .pdp-section { padding: 1.5rem 0 1rem; }
  .pdp-sizes-table thead { display: none; }
  .pdp-sizes-table, .pdp-sizes-table tbody, .pdp-sizes-table tr, .pdp-sizes-table td {
    display: block; width: 100%;
  }
  .pdp-sizes-table tr {
    padding: 14px;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
  }
  .size-grade { flex: 1 1 100%; }
  .size-price { font-size: 16px; }
  .size-qty { margin-left: auto; }
  .size-add { margin-left: auto; }
  .pdp-tab { padding: 12px 16px; font-size: 13px; }
  .pdp-trust-row { flex-direction: column; gap: 10px; }
  .pdp-price-block { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.5s ease forwards; }
