/* ═══════════════════════════════════════════════
   NAKSHEE — Main Stylesheet
   Inspired by Libas.in
═══════════════════════════════════════════════ */

/* ── VARIABLES ─────────────────────────────────── */
:root {
  --primary: #8B1A1A;
  --primary-light: #a52828;
  --primary-dark: #6d1414;
  --accent: #D4AF37;
  --accent-light: #e8c94e;
  --text: #1a1a1a;
  --text-muted: #666;
  --text-light: #999;
  --bg: #fff;
  --bg-light: #faf8f5;
  --bg-sale: #fff8f0;
  --border: #e8e8e8;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 16px;
  --nav-height: 130px;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --green: #2d8a4e;
}

/* ── RESET & BASE ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); font-size: 14px; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* ── ANNOUNCEMENT BAR ───────────────────────────── */
.announcement-bar {
  background: var(--primary); color: #fff;
  text-align: center; padding: 8px 16px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.3px;
}
.announcement-bar .sep { margin: 0 12px; opacity: 0.5; }

/* ── NAVBAR ─────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: #fff; border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.nav-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 30px; max-width: 1280px; margin: 0 auto;
}
.nav-left, .nav-right { display: flex; align-items: center; gap: 16px; min-width: 160px; }
.nav-right { justify-content: flex-end; }
.nav-center { flex: 1; text-align: center; }
.logo .logo-text {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 700;
  color: var(--primary); letter-spacing: -0.5px;
}
.nav-icon {
  position: relative; background: none; border: none; font-size: 18px;
  color: var(--text); cursor: pointer; padding: 6px; transition: color 0.2s;
}
.nav-icon:hover { color: var(--primary); }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--primary); color: #fff;
  font-size: 10px; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
/* Account dropdown */
.dropdown-trigger { position: relative; }
.account-dropdown {
  position: absolute; top: calc(100% + 12px); right: -10px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-hover); min-width: 180px; padding: 8px 0;
  display: none; z-index: 999;
}
.account-dropdown a {
  display: block; padding: 10px 18px; font-size: 13px; color: var(--text);
  transition: background 0.15s;
}
.account-dropdown a:hover { background: var(--bg-light); color: var(--primary); }
.account-dropdown hr { border: none; border-top: 1px solid var(--border); margin: 4px 0; }
.dropdown-trigger:hover .account-dropdown { display: block; }
/* Hamburger */
.hamburger { background: none; border: none; display: flex; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); transition: 0.3s; }
/* Search bar */
.search-bar-wrapper {
  display: none; padding: 10px 30px; border-top: 1px solid var(--border);
  background: #fff;
}
.search-bar-wrapper.open { display: block; }
.search-form { display: flex; align-items: center; max-width: 600px; margin: 0 auto; gap: 8px; }
.search-input {
  flex: 1; padding: 10px 16px; border: 1.5px solid var(--border);
  border-radius: 24px; font-size: 14px; outline: none; transition: border 0.2s;
}
.search-input:focus { border-color: var(--primary); }
.search-btn, .search-close {
  background: none; border: none; font-size: 16px; color: var(--text-muted);
  padding: 8px; cursor: pointer;
}
.search-btn:hover { color: var(--primary); }
/* Nav links */
.nav-links-wrapper {
  border-top: 1px solid var(--border);
  background: var(--bg-light);
}
.nav-links {
  display: flex; align-items: center; justify-content: center; gap: 0;
  max-width: 1280px; margin: 0 auto; padding: 0 20px;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block; padding: 12px 16px; font-size: 13px; font-weight: 500;
  color: var(--text); letter-spacing: 0.5px; transition: color 0.2s;
  white-space: nowrap;
}
.nav-links > li > a:hover, .nav-links .sale-link { color: var(--primary); }
.nav-links .sale-link { font-weight: 700; color: var(--primary) !important; }
/* Mega menu */
.mega-menu {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-hover); min-width: 300px; z-index: 998;
}
.mega-menu-inner {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; padding: 16px;
}
.mega-menu-inner a {
  padding: 8px 12px; font-size: 13px; color: var(--text);
  transition: color 0.15s, background 0.15s; border-radius: 4px;
}
.mega-menu-inner a:hover { color: var(--primary); background: var(--bg-light); }
.has-dropdown:hover .mega-menu { display: block; }

/* ── SECTIONS ───────────────────────────────────── */
.section { padding: 60px 20px; max-width: 1280px; margin: 0 auto; }
.section.bg-light { background: var(--bg-light); max-width: 100%; padding: 60px 40px; }
.section.bg-sale { background: var(--bg-sale); max-width: 100%; padding: 60px 40px; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.section-header p { color: var(--text-muted); font-size: 15px; }
.view-all {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-weight: 600; font-size: 14px; transition: gap 0.2s;
}
.view-all:hover { gap: 10px; }
.section-header .view-all { margin-top: 4px; }

/* ── HERO SLIDER ─────────────────────────────────── */
.hero-slider { position: relative; overflow: hidden; height: 520px; }
.hero-slide {
  position: absolute; inset: 0; display: flex; align-items: center;
  opacity: 0; transition: opacity 0.6s ease; pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: all; }
.hero-content {
  flex: 1; padding: 60px 80px; max-width: 560px; z-index: 2;
}
.hero-tag {
  display: inline-block; background: var(--primary); color: #fff;
  padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
}
.hero-content h1 {
  font-family: var(--font-heading); font-size: 3.2rem; font-weight: 700;
  line-height: 1.15; color: var(--text); margin-bottom: 14px;
}
.hero-content h1 span { color: var(--primary); }
.hero-sub { font-size: 16px; color: var(--text-muted); margin-bottom: 28px; }
.hero-image { flex: 1; height: 100%; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.hero-prev, .hero-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.9); border: none; width: 44px; height: 44px;
  border-radius: 50%; font-size: 16px; color: var(--text);
  box-shadow: var(--shadow); z-index: 10; transition: all 0.2s;
}
.hero-prev:hover, .hero-next:hover { background: var(--primary); color: #fff; }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }
.hero-dots {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.2s;
}
.dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* ── TRUST BAR ───────────────────────────────────── */
.trust-bar {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: #fff;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 32px; border-right: 1px solid var(--border);
  flex: 1; min-width: 200px;
}
.trust-item:last-child { border-right: none; }
.trust-item i { font-size: 22px; color: var(--primary); flex-shrink: 0; }
.trust-item strong { display: block; font-size: 13px; font-weight: 600; }
.trust-item span { font-size: 12px; color: var(--text-muted); }

/* ── CATEGORY GRID ───────────────────────────────── */
.category-grid {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 16px;
}
.category-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: transform 0.2s;
}
.category-card:hover { transform: translateY(-4px); }
.category-img {
  width: 100%; aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  border: 3px solid transparent; background: var(--bg-light);
  transition: border-color 0.2s;
}
.category-card:hover .category-img { border-color: var(--primary); }
.category-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.category-card:hover img { transform: scale(1.08); }
.category-label { font-size: 12px; font-weight: 600; color: var(--text); text-align: center; }

/* ── PRODUCTS GRID ───────────────────────────────── */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 20px;
}
.product-card { position: relative; background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: box-shadow 0.2s, transform 0.2s; }
.product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.product-img-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--bg-light); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 4px; }
.badge { display: inline-block; padding: 3px 8px; border-radius: 4px; font-size: 10px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.badge-new { background: var(--primary); color: #fff; }
.badge-sale { background: #e74c3c; color: #fff; }
.badge-discount { background: #f39c12; color: #fff; }
.product-actions {
  position: absolute; bottom: -48px; right: 10px; display: flex; flex-direction: column; gap: 6px;
  transition: bottom 0.3s ease;
}
.product-card:hover .product-actions { bottom: 10px; }
.btn-wishlist {
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.95); box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  font-size: 14px; color: var(--text); display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.btn-wishlist:hover, .btn-wishlist.active { background: var(--primary); color: #fff; }
.product-info { padding: 12px; }
.product-category { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.product-name { font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 6px; line-height: 1.4; }
.product-name a:hover { color: var(--primary); }
.product-price { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.price { font-size: 15px; font-weight: 700; color: var(--text); }
.mrp { font-size: 12px; color: var(--text-muted); text-decoration: line-through; }
.star-rating { display: flex; align-items: center; gap: 2px; margin-bottom: 6px; }
.star-rating i { font-size: 11px; color: var(--accent); }
.review-count { font-size: 11px; color: var(--text-muted); margin-left: 2px; }
.size-preview { display: flex; gap: 4px; flex-wrap: wrap; }
.size-chip { font-size: 10px; border: 1px solid var(--border); padding: 2px 6px; border-radius: 3px; color: var(--text-muted); }
.btn-add-cart {
  width: 100%; padding: 10px; border: none; background: var(--text);
  color: #fff; font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  transition: background 0.2s; border-radius: 0;
}
.btn-add-cart:hover { background: var(--primary); }
.add-to-cart-form { display: block; }

/* ── OFFER BANNERS ────────────────────────────────── */
.offer-banners { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 0; }
.offer-card { position: relative; height: 280px; overflow: hidden; display: flex; align-items: center; }
.offer-card-1 { background: linear-gradient(135deg, #8B1A1A 0%, #5a1010 100%); }
.offer-card-2 { background: linear-gradient(135deg, #1a4a8b 0%, #103060 100%); }
.offer-text { padding: 40px 60px; color: #fff; z-index: 2; }
.offer-text h3 { font-size: 14px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.85; margin-bottom: 8px; }
.offer-text h2 { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; margin-bottom: 20px; }
.btn-outline-white {
  display: inline-block; padding: 10px 28px; border: 2px solid #fff;
  color: #fff; font-size: 13px; font-weight: 600; border-radius: 24px;
  transition: all 0.2s; letter-spacing: 0.5px;
}
.btn-outline-white:hover { background: #fff; color: var(--primary); }

/* ── TESTIMONIALS ─────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); }
.testimonial-card .stars { font-size: 16px; color: var(--accent); margin-bottom: 12px; }
.testimonial-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; font-style: italic; margin-bottom: 14px; }
.testimonial-card strong { font-size: 13px; color: var(--primary); }

/* ── BLOG ─────────────────────────────────────────── */
.blog-section { max-width: 100%; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1280px; margin: 0 auto; }
.blog-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.3s; }
.blog-card:hover img { transform: scale(1.04); }
.blog-content { padding: 20px; }
.blog-tag { display: inline-block; background: #fff5f5; color: var(--primary); font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 12px; margin-bottom: 8px; letter-spacing: 0.5px; }
.blog-content h3 { font-family: var(--font-heading); font-size: 16px; font-weight: 600; margin-bottom: 8px; line-height: 1.4; }
.blog-content p { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.blog-link { font-size: 13px; color: var(--primary); font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }

/* ── FOOTER ───────────────────────────────────────── */
footer { background: #1a1a1a; color: #ccc; margin-top: 60px; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr; gap: 40px; padding: 60px 60px 40px; max-width: 1400px; margin: 0 auto; }
.footer-logo { font-family: var(--font-heading); font-size: 1.8rem; color: #fff; margin-bottom: 12px; }
.footer-col p { font-size: 13px; line-height: 1.7; color: #aaa; margin-bottom: 8px; }
.footer-col h4 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 16px; letter-spacing: 0.5px; text-transform: uppercase; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { font-size: 13px; color: #aaa; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--accent); }
.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-links a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 15px; color: #ccc; transition: all 0.2s; }
.social-links a:hover { background: var(--primary); color: #fff; }
.newsletter-form { display: flex; margin-bottom: 16px; }
.newsletter-form input { flex: 1; padding: 10px 14px; border: 1px solid #333; background: #2a2a2a; color: #fff; font-size: 13px; border-radius: 4px 0 0 4px; outline: none; }
.newsletter-form button { padding: 10px 18px; background: var(--primary); color: #fff; border: none; font-size: 13px; font-weight: 600; border-radius: 0 4px 4px 0; }
.payment-icons { display: flex; gap: 8px; align-items: center; margin-top: 12px; flex-wrap: wrap; }
.payment-icons img { height: 24px; filter: brightness(0.8); }
.footer-bottom { border-top: 1px solid #333; padding: 20px 60px; display: flex; justify-content: space-between; align-items: center; max-width: 1400px; margin: 0 auto; }
.footer-bottom p { font-size: 12px; color: #777; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: #777; transition: color 0.2s; }
.footer-bottom-links a:hover { color: #ccc; }

/* ── BUTTONS ──────────────────────────────────────── */
.btn-primary {
  display: inline-block; padding: 12px 28px;
  background: var(--primary); color: #fff;
  border-radius: 24px; font-weight: 600; font-size: 14px;
  transition: background 0.2s, transform 0.15s; border: none;
}
.btn-primary:hover { background: var(--primary-light); transform: translateY(-1px); }
.btn-primary.btn-full { width: 100%; text-align: center; }
.btn-outline {
  display: inline-block; padding: 12px 28px;
  border: 2px solid var(--primary); color: var(--primary);
  border-radius: 24px; font-weight: 600; font-size: 14px;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--primary); color: #fff; }

/* ── BREADCRUMB ───────────────────────────────────── */
.breadcrumb-bar { background: var(--bg-light); padding: 10px 30px; border-bottom: 1px solid var(--border); }
.breadcrumb-bar a, .breadcrumb-bar span { font-size: 12px; color: var(--text-muted); }
.breadcrumb-bar span:last-child { color: var(--text); }
.breadcrumb-bar a:hover { color: var(--primary); }

/* ── COLLECTION PAGE ──────────────────────────────── */
.collection-layout { display: flex; gap: 28px; margin-top: 24px; margin-bottom: 48px; align-items: flex-start; }
.filters-sidebar { width: 240px; flex-shrink: 0; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; position: sticky; top: 100px; max-height: calc(100vh - 120px); overflow-y: auto; }
.filters-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.filters-header h3 { font-size: 16px; font-weight: 700; }
.filters-close { background: none; border: none; font-size: 18px; color: var(--text-muted); display: none; }
.filter-group { border-bottom: 1px solid var(--border); padding-bottom: 16px; margin-bottom: 16px; }
.filter-title { font-size: 13px; font-weight: 600; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 4px 0; }
.filter-body { margin-top: 12px; }
.price-inputs { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.price-input { width: 80px; padding: 6px 10px; border: 1px solid var(--border); border-radius: 4px; font-size: 13px; }
.price-ranges label { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 6px; cursor: pointer; }
.price-ranges input { margin-right: 6px; accent-color: var(--primary); }
.filter-check label { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin-bottom: 8px; cursor: pointer; }
.filter-check input[type=radio] { accent-color: var(--primary); }
.btn-apply-filter { width: 100%; padding: 10px; background: var(--primary); color: #fff; border: none; border-radius: 4px; font-weight: 600; font-size: 13px; margin-bottom: 8px; }
.btn-clear-filter { display: block; text-align: center; font-size: 13px; color: var(--text-muted); border-bottom: 1px solid; width: fit-content; margin: 0 auto; }
.products-main { flex: 1; min-width: 0; }
.collection-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.collection-info h1 { font-family: var(--font-heading); font-size: 1.6rem; }
.product-count { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.collection-controls { display: flex; align-items: center; gap: 12px; }
.btn-filter-toggle { display: none; padding: 8px 16px; border: 1px solid var(--border); background: #fff; border-radius: 4px; font-size: 13px; font-weight: 500; align-items: center; gap: 6px; }
.sort-wrapper { display: flex; align-items: center; gap: 8px; }
.sort-wrapper label { font-size: 13px; color: var(--text-muted); }
.sort-select { padding: 8px 12px; border: 1px solid var(--border); border-radius: 4px; font-size: 13px; color: var(--text); cursor: pointer; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.page-btn { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1px solid var(--border); border-radius: 4px; font-size: 13px; color: var(--text); transition: all 0.2s; }
.page-btn:hover, .page-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.page-btn.disabled { opacity: 0.4; pointer-events: none; }
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state i { font-size: 48px; color: var(--text-muted); opacity: 0.3; margin-bottom: 16px; }
.empty-state h3 { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); margin-bottom: 20px; }

/* ── PRODUCT DETAIL ───────────────────────────────── */
.product-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 32px 20px 60px; max-width: 1280px; margin: 0 auto; }
.gallery-thumbs { display: flex; gap: 8px; flex-direction: column; margin-right: 12px; }
.gallery-thumb { width: 72px; height: 90px; border: 2px solid transparent; border-radius: 4px; overflow: hidden; cursor: pointer; flex-shrink: 0; }
.gallery-thumb.active { border-color: var(--primary); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main { position: relative; flex: 1; border-radius: var(--radius); overflow: hidden; background: var(--bg-light); }
.gallery-main img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.product-gallery { display: flex; gap: 0; }
.zoom-btn { position: absolute; bottom: 12px; right: 12px; background: rgba(255,255,255,0.9); border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 14px; cursor: pointer; }
.product-detail-info { padding: 8px 0; }
.product-badges-inline { display: flex; gap: 6px; margin-bottom: 10px; }
.product-brand { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.detail-title { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
.detail-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.stars-large i { font-size: 14px; color: var(--accent); }
.rating-link { font-size: 13px; color: var(--primary); border-bottom: 1px solid; }
.detail-price { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.detail-mrp { font-size: 16px; color: var(--text-muted); text-decoration: line-through; }
.detail-selling { font-size: 28px; font-weight: 700; color: var(--primary); }
.tax-note { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }
.detail-section { margin-bottom: 18px; }
.detail-label { font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.size-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.size-guide-link { font-size: 12px; color: var(--primary); border-bottom: 1px dotted; }
.size-selector { display: flex; gap: 8px; flex-wrap: wrap; }
.size-btn { padding: 8px 16px; border: 1.5px solid var(--border); background: #fff; border-radius: 4px; font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.2s; }
.size-btn:hover { border-color: var(--primary); color: var(--primary); }
.size-btn.selected { background: var(--primary); color: #fff; border-color: var(--primary); }
.qty-selector { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--border); border-radius: 4px; width: fit-content; }
.qty-btn { width: 36px; height: 36px; border: none; background: none; font-size: 18px; font-weight: 500; cursor: pointer; transition: background 0.2s; }
.qty-btn:hover { background: var(--bg-light); }
.qty-input { width: 48px; height: 36px; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); text-align: center; font-size: 14px; font-weight: 600; }
.detail-cta { display: flex; gap: 12px; margin: 20px 0; flex-wrap: wrap; }
.btn-add-cart-large { flex: 1; padding: 14px 24px; background: var(--primary); color: #fff; border: none; border-radius: 4px; font-size: 15px; font-weight: 600; letter-spacing: 0.3px; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background 0.2s; }
.btn-add-cart-large:hover { background: var(--primary-light); }
.btn-wishlist-large { padding: 14px 20px; border: 1.5px solid var(--border); background: #fff; color: var(--text); border-radius: 4px; font-size: 15px; font-weight: 500; display: flex; align-items: center; gap: 8px; transition: all 0.2s; }
.btn-wishlist-large:hover { border-color: var(--primary); color: var(--primary); }
.product-highlights { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 0; margin: 16px 0; display: flex; flex-direction: column; gap: 10px; }
.highlight { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); }
.highlight i { color: var(--primary); width: 16px; }
.product-tabs { margin-top: 20px; }
.tab-headers { display: flex; gap: 0; border-bottom: 2px solid var(--border); }
.tab-btn { padding: 10px 20px; border: none; background: none; font-size: 14px; font-weight: 500; color: var(--text-muted); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all 0.2s; }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-content { display: none; padding: 16px 0; font-size: 14px; color: var(--text-muted); line-height: 1.8; }
.tab-content.active { display: block; }
.detail-table { width: 100%; border-collapse: collapse; }
.detail-table td { padding: 8px 12px; font-size: 13px; border-bottom: 1px solid var(--border); }
.detail-table td:first-child { font-weight: 600; width: 120px; color: var(--text); }
.care-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.care-list li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); }
.care-list i { color: var(--primary); width: 16px; }

/* ── REVIEWS ──────────────────────────────────────── */
.reviews-title { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 24px; }
.reviews-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; }
.review-card { border-bottom: 1px solid var(--border); padding-bottom: 20px; margin-bottom: 20px; }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.review-header i { font-size: 12px; color: var(--accent); }
.review-date { font-size: 12px; color: var(--text-muted); margin-left: auto; }
.review-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.review-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.review-form-card { background: var(--bg-light); border-radius: var(--radius-lg); padding: 24px; height: fit-content; }
.review-form-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.star-picker { display: flex; gap: 6px; margin-bottom: 4px; }
.star-picker i { font-size: 22px; color: var(--accent); cursor: pointer; transition: transform 0.1s; }
.star-picker i:hover { transform: scale(1.2); }
.no-reviews p { color: var(--text-muted); font-style: italic; }

/* ── FORMS ────────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-control { width: 100%; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 14px; transition: border-color 0.2s; outline: none; }
.form-control:focus { border-color: var(--primary); }
.form-row-two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-three { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.field-error { font-size: 12px; color: #e74c3c; margin-top: 4px; display: block; }
.alert { padding: 12px 16px; border-radius: var(--radius); margin-bottom: 16px; font-size: 14px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ── AUTH PAGES ───────────────────────────────────── */
.auth-container { display: flex; min-height: calc(100vh - 200px); justify-content: center; align-items: stretch; gap: 0; max-width: 900px; margin: 40px auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-hover); }
.auth-card { flex: 1; padding: 48px 40px; background: #fff; }
.auth-card-wide { max-width: 540px; margin: 40px auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-hover); padding: 48px 40px; }
.auth-logo a { font-family: var(--font-heading); font-size: 1.8rem; color: var(--primary); font-weight: 700; display: block; margin-bottom: 24px; }
.auth-card h2 { font-family: var(--font-heading); font-size: 1.6rem; margin-bottom: 6px; }
.auth-subtitle { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.auth-form .input-icon-wrap { position: relative; }
.auth-form .input-icon-wrap i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 14px; }
.auth-form .input-icon-wrap .form-control { padding-left: 40px; }
.password-toggle { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; font-size: 14px; color: var(--text-muted); cursor: pointer; }
.form-row-between { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; font-size: 13px; }
.checkbox-label { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 13px; color: var(--text-muted); }
.checkbox-label input { accent-color: var(--primary); }
.forgot-link { color: var(--primary); font-size: 13px; }
.auth-divider { text-align: center; margin: 20px 0; position: relative; }
.auth-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--border); }
.auth-divider span { background: #fff; padding: 0 12px; position: relative; font-size: 13px; color: var(--text-muted); }
.social-auth { display: flex; gap: 10px; margin-bottom: 20px; }
.btn-social { flex: 1; padding: 10px; border: 1.5px solid var(--border); background: #fff; border-radius: var(--radius); font-size: 13px; font-weight: 500; display: flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; transition: background 0.2s; }
.btn-social:hover { background: var(--bg-light); }
.btn-social img { width: 18px; }
.auth-switch { text-align: center; font-size: 14px; color: var(--text-muted); margin-top: 16px; }
.auth-switch a { color: var(--primary); font-weight: 600; }
.auth-brand-side { flex: 1; position: relative; overflow: hidden; }
.auth-brand-side img { width: 100%; height: 100%; object-fit: cover; }
.auth-brand-text { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.8)); padding: 30px 24px 24px; color: #fff; }
.auth-brand-text h3 { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 6px; }
.auth-brand-text p { font-size: 13px; opacity: 0.85; }

/* ── CART ─────────────────────────────────────────── */
.cart-layout { padding: 24px 20px 60px; }
.empty-cart { text-align: center; padding: 80px 20px; }
.empty-cart i { font-size: 64px; color: var(--text-muted); opacity: 0.3; margin-bottom: 20px; }
.empty-cart h2 { font-family: var(--font-heading); font-size: 1.6rem; margin-bottom: 8px; }
.cart-with-items { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: flex-start; }
.cart-header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cart-header-row h2 { font-family: var(--font-heading); font-size: 1.4rem; }
.cart-offer-bar { background: #f0fff4; border: 1px solid #c3e6cb; border-radius: var(--radius); padding: 10px 14px; font-size: 13px; color: var(--green); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.cart-item-row { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.cart-item-img { width: 100px; height: 120px; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-details { flex: 1; }
.cart-item-category { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 4px; }
.cart-item-name { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.cart-item-name a:hover { color: var(--primary); }
.cart-item-meta { display: flex; gap: 12px; font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.cart-item-price-row { display: flex; gap: 8px; align-items: center; margin-bottom: 10px; }
.cart-item-price { font-size: 16px; font-weight: 700; color: var(--primary); }
.cart-item-mrp { font-size: 13px; color: var(--text-muted); text-decoration: line-through; }
.cart-item-actions { display: flex; align-items: center; gap: 16px; }
.qty-selector-small { display: flex; align-items: center; gap: 0; border: 1px solid var(--border); border-radius: 4px; }
.qty-selector-small .qty-btn { width: 32px; height: 32px; border: none; background: none; font-size: 16px; cursor: pointer; }
.qty-selector-small span { width: 36px; text-align: center; font-size: 14px; font-weight: 600; }
.btn-remove { background: none; border: none; font-size: 13px; color: #e74c3c; cursor: pointer; display: flex; align-items: center; gap: 5px; }
.cart-item-total { font-size: 16px; font-weight: 700; color: var(--text); min-width: 60px; text-align: right; padding-top: 4px; }
/* Order summary */
.order-summary-card { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; position: sticky; top: 100px; }
.order-summary-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 10px; color: var(--text-muted); }
.summary-row.total-row { font-size: 16px; margin-top: 4px; }
.summary-row .green, .green { color: var(--green); }
.discount-row span:last-child { color: var(--green); }
.coupon-section { display: flex; gap: 8px; margin: 16px 0; }
.coupon-input { flex: 1; padding: 10px 12px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 13px; }
.btn-apply-coupon { padding: 10px 16px; background: var(--primary); color: #fff; border: none; border-radius: var(--radius); font-size: 13px; font-weight: 600; white-space: nowrap; }
.btn-checkout { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px; background: var(--primary); color: #fff; border: none; border-radius: var(--radius); font-size: 15px; font-weight: 700; margin-bottom: 12px; transition: background 0.2s; }
.btn-checkout:hover { background: var(--primary-light); }
.secure-payment-note { font-size: 12px; color: var(--text-muted); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.payment-icons-small { display: flex; gap: 8px; align-items: center; }
.payment-icons-small img { height: 16px; }

/* ── CHECKOUT ─────────────────────────────────────── */
.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 32px; padding: 24px 20px 60px; max-width: 1200px; margin: 0 auto; align-items: flex-start; }
.checkout-left { display: flex; flex-direction: column; gap: 24px; }
.checkout-steps { display: flex; align-items: center; margin-bottom: 8px; }
.step { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text-muted); }
.step.active { color: var(--primary); }
.step span { width: 28px; height: 28px; border-radius: 50%; border: 2px solid; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.step-line { flex: 1; height: 2px; background: var(--border); margin: 0 8px; }
.checkout-section { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.checkout-section h3 { font-size: 15px; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.address-option { margin-bottom: 12px; }
.address-label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.address-label input { margin-top: 4px; accent-color: var(--primary); }
.address-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; flex: 1; font-size: 13px; line-height: 1.7; transition: border-color 0.2s; }
.address-label:has(input:checked) .address-card { border-color: var(--primary); background: #fff5f5; }
.btn-link-small { font-size: 13px; color: var(--primary); font-weight: 600; display: inline-block; margin-top: 8px; }
.hidden { display: none !important; }
.payment-options { display: flex; flex-direction: column; gap: 12px; }
.payment-option label { cursor: pointer; }
.payment-card { display: flex; align-items: center; gap: 14px; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 14px 16px; transition: border-color 0.2s; font-size: 13px; }
.payment-option label:has(input:checked) .payment-card { border-color: var(--primary); background: #fff5f5; }
.payment-card i { font-size: 20px; color: var(--primary); }
.payment-card img { object-fit: contain; }
.payment-card strong { display: block; font-weight: 600; margin-bottom: 2px; }
.payment-card p { color: var(--text-muted); font-size: 12px; }
.payment-option input { display: none; }
.sticky-summary { position: sticky; top: 100px; }
.summary-items { max-height: 300px; overflow-y: auto; margin-bottom: 16px; }
.summary-item { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 13px; }
.summary-item-img { position: relative; width: 50px; height: 62px; border-radius: 4px; overflow: hidden; flex-shrink: 0; }
.summary-item-img img { width: 100%; height: 100%; object-fit: cover; }
.qty-badge { position: absolute; top: -6px; right: -6px; background: var(--primary); color: #fff; font-size: 10px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.summary-item-info { flex: 1; }
.summary-item-info p { font-weight: 500; line-height: 1.4; }
.summary-item-info small { color: var(--text-muted); }
.checkout-note { text-align: center; font-size: 12px; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 5px; margin-top: 8px; }

/* ── ORDER SUCCESS ────────────────────────────────── */
.success-container { padding: 60px 20px; max-width: 600px; margin: 0 auto; }
.success-card { text-align: center; background: #fff; border-radius: var(--radius-lg); padding: 48px 40px; box-shadow: var(--shadow-hover); }
.success-icon { width: 80px; height: 80px; background: #d4edda; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.success-icon i { font-size: 40px; color: var(--green); }
.success-card h1 { font-family: var(--font-heading); font-size: 1.6rem; margin-bottom: 8px; }
.success-sub { color: var(--text-muted); margin-bottom: 24px; }
.order-number-box { background: var(--bg-light); border-radius: var(--radius); padding: 16px 24px; margin-bottom: 24px; }
.order-number-box p { font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }
.order-number-box strong { font-size: 18px; font-family: monospace; color: var(--primary); }
.success-details { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.success-detail-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.success-detail-item i { color: var(--primary); }
.success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── ACCOUNT PAGES ────────────────────────────────── */
.account-layout { display: flex; gap: 28px; padding: 24px 20px 60px; max-width: 1200px; margin: 0 auto; align-items: flex-start; }
.account-sidebar { width: 240px; flex-shrink: 0; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; position: sticky; top: 100px; }
.account-avatar { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.avatar-circle { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: #fff; font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.account-avatar strong { font-size: 14px; font-weight: 600; display: block; }
.account-avatar p { font-size: 12px; color: var(--text-muted); }
.account-nav { display: flex; flex-direction: column; gap: 2px; }
.account-nav-link { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--radius); font-size: 14px; color: var(--text-muted); transition: all 0.2s; }
.account-nav-link:hover, .account-nav-link.active { background: #fff5f5; color: var(--primary); font-weight: 600; }
.account-nav-link i { width: 16px; font-size: 14px; }
.logout-link:hover { background: #fff0f0; color: #e74c3c; }
.account-main { flex: 1; }
.account-main h2 { font-family: var(--font-heading); font-size: 1.6rem; margin-bottom: 24px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
.stat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; display: flex; align-items: center; gap: 14px; }
.stat-card i { font-size: 24px; color: var(--primary); }
.stat-card strong { font-size: 1.6rem; font-weight: 700; display: block; }
.stat-card p { font-size: 12px; color: var(--text-muted); }
.recent-orders-section, .order-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; margin-bottom: 16px; }
.section-header-inline { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.section-header-inline h3 { font-size: 15px; font-weight: 700; }
.view-all-link { font-size: 13px; color: var(--primary); font-weight: 600; }
.order-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border); gap: 16px; }
.order-row:last-child { border-bottom: none; }
.order-row-left { display: flex; align-items: center; gap: 12px; }
.order-thumb { width: 48px; height: 60px; border-radius: 4px; overflow: hidden; flex-shrink: 0; }
.order-thumb img { width: 100%; height: 100%; object-fit: cover; }
.order-row-left strong { font-size: 13px; font-weight: 600; }
.order-row-left p { font-size: 12px; color: var(--text-muted); }
.order-row-right { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.order-status { padding: 4px 10px; border-radius: 12px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.status-placed { background: #fff3cd; color: #856404; }
.status-confirmed { background: #d1ecf1; color: #0c5460; }
.status-processing { background: #d1ecf1; color: #0c5460; }
.status-shipped { background: #cce5ff; color: #004085; }
.status-out_for_delivery { background: #e2d9f3; color: #4a235a; }
.status-delivered { background: #d4edda; color: #155724; }
.status-cancelled { background: #f8d7da; color: #721c24; }
.status-returned { background: #e2e3e5; color: #383d41; }
.order-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; flex-wrap: wrap; gap: 8px; }
.order-card-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.order-item-mini { display: flex; align-items: center; gap: 12px; }
.order-item-mini img { width: 48px; height: 60px; object-fit: cover; border-radius: 4px; }
.order-item-mini p { font-size: 13px; font-weight: 500; }
.order-item-mini small { font-size: 12px; color: var(--text-muted); }
.order-card-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: 12px; }
.tracking-num { font-size: 12px; color: var(--text-muted); }
.empty-state-small { text-align: center; padding: 40px 20px; color: var(--text-muted); }
.empty-state-small i { font-size: 40px; opacity: 0.3; margin-bottom: 12px; display: block; }
.btn-primary-sm { display: inline-block; padding: 8px 20px; background: var(--primary); color: #fff; border-radius: 20px; font-size: 13px; font-weight: 600; margin-top: 10px; }

/* Order detail */
.order-detail-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.btn-back { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); border: 1px solid var(--border); padding: 8px 14px; border-radius: 20px; }
.order-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.order-detail-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; }
.order-detail-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 14px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.order-item-full { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.order-item-full:last-child { border-bottom: none; }
.order-item-img { width: 60px; height: 75px; object-fit: cover; border-radius: 4px; }
.order-item-info { flex: 1; font-size: 13px; }
.order-item-prices { font-size: 13px; text-align: right; }
.order-tracker { display: flex; align-items: center; margin-bottom: 24px; overflow-x: auto; padding-bottom: 4px; }
.tracker-step { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; min-width: 80px; }
.tracker-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--border); border: 2px solid var(--border); transition: all 0.3s; }
.tracker-step span { font-size: 10px; text-align: center; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.3px; }
.tracker-step.completed .tracker-dot { background: var(--green); border-color: var(--green); }
.tracker-step.completed span { color: var(--green); font-weight: 600; }

/* Profile */
.profile-section { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 20px; }
.profile-section h3 { font-size: 15px; font-weight: 700; margin-bottom: 20px; }
.profile-form button { margin-top: 8px; }

/* ── STATIC PAGES ─────────────────────────────────── */
.page-hero { padding: 60px 40px; text-align: center; }
.page-hero h1 { font-family: var(--font-heading); font-size: 2.4rem; margin-bottom: 8px; }
.page-hero p { color: var(--text-muted); font-size: 16px; }
.static-page { padding: 48px 20px; max-width: 1100px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; margin-bottom: 48px; align-items: start; }
.about-grid h2 { font-family: var(--font-heading); font-size: 1.6rem; margin-bottom: 12px; }
.about-grid p { color: var(--text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.about-list li { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 14px; }
.about-list i { color: var(--green); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card { background: var(--bg-light); border-radius: var(--radius-lg); padding: 24px; text-align: center; }
.value-card i { font-size: 28px; color: var(--primary); margin-bottom: 12px; display: block; }
.value-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.value-card p { font-size: 13px; color: var(--text-muted); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; }
.contact-info h2 { font-family: var(--font-heading); font-size: 1.6rem; margin-bottom: 24px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-item i { font-size: 20px; color: var(--primary); width: 24px; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-weight: 600; margin-bottom: 4px; }
.contact-item p { font-size: 14px; color: var(--text-muted); }
.contact-item small { font-size: 12px; color: var(--text-light); }
.contact-form-card { background: var(--bg-light); border-radius: var(--radius-lg); padding: 32px; }
.contact-form-card h2 { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 20px; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item h4 { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; cursor: pointer; font-size: 15px; font-weight: 600; }
.faq-item h4 i { font-size: 13px; color: var(--text-muted); transition: transform 0.3s; }
.faq-answer { display: none; padding: 0 0 18px; font-size: 14px; color: var(--text-muted); line-height: 1.8; }
.policy-page h2 { font-family: var(--font-heading); font-size: 1.6rem; margin: 24px 0 12px; }
.policy-page h3 { font-size: 15px; font-weight: 700; margin: 20px 0 8px; }
.policy-page p { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }
.policy-page ul, .policy-page ol { padding-left: 20px; margin-bottom: 16px; }
.policy-page ul li, .policy-page ol li { font-size: 14px; color: var(--text-muted); margin-bottom: 6px; line-height: 1.7; }
.policy-highlight { background: #d4edda; border-radius: var(--radius); padding: 14px 18px; display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--green); margin-bottom: 24px; }
.policy-highlight i { font-size: 20px; }
.suggested-categories { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 16px; }
.badge-link { padding: 6px 14px; background: var(--bg-light); border: 1px solid var(--border); border-radius: 20px; font-size: 13px; color: var(--text); transition: all 0.2s; }
.badge-link:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { padding: 40px; }
  .hero-content h1 { font-size: 2.4rem; }
  .category-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; padding: 40px 30px; }
  .offer-banners { grid-template-columns: 1fr; }
  .cart-with-items { grid-template-columns: 1fr; }
  .order-summary-col .order-summary-card { position: static; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-right .sticky-summary { position: static; }
  .product-detail-layout { grid-template-columns: 1fr; }
  .gallery-thumbs { flex-direction: row; }
  .gallery-thumb { width: 64px; height: 80px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links-wrapper { display: none; position: fixed; top: 0; left: 0; width: 280px; height: 100vh; background: #fff; z-index: 9999; box-shadow: var(--shadow-hover); overflow-y: auto; padding: 20px; }
  .nav-links-wrapper.open { display: block; }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 0; }
  .nav-links > li > a { padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
  .mega-menu { position: static; transform: none; box-shadow: none; border: none; display: none; }
  .has-dropdown.open .mega-menu { display: block; }
  .mega-menu-inner { grid-template-columns: 1fr 1fr; }
  .hero-slider { height: auto; min-height: 380px; }
  .hero-slide { flex-direction: column-reverse; }
  .hero-image { width: 100%; height: 200px; }
  .hero-content { padding: 24px; max-width: 100%; }
  .hero-content h1 { font-size: 1.8rem; }
  .trust-item { padding: 12px 16px; min-width: 150px; }
  .category-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .offer-text { padding: 24px 30px; }
  .offer-text h2 { font-size: 1.6rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .auth-container { flex-direction: column; }
  .auth-brand-side { display: none; }
  .collection-layout { flex-direction: column; }
  .filters-sidebar { width: 100%; position: fixed; top: 0; left: -100%; height: 100vh; z-index: 9998; border-radius: 0; transition: left 0.3s; }
  .filters-sidebar.open { left: 0; }
  .filters-close { display: block; }
  .btn-filter-toggle { display: flex; }
  .account-layout { flex-direction: column; }
  .account-sidebar { width: 100%; position: static; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .order-detail-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; padding: 30px 20px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 16px 20px; }
  .form-row-two, .form-row-three { grid-template-columns: 1fr; }
  .reviews-layout { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .product-info { padding: 8px; }
  .product-name { font-size: 12px; }
  .price { font-size: 13px; }
  .hero-content h1 { font-size: 1.5rem; }
  .section { padding: 40px 12px; }
  .section-header h2 { font-size: 1.4rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-col:nth-child(n+3) { display: none; }
  .checkout-layout, .cart-layout { padding: 16px; }
  .nav-top { padding: 12px 16px; }
  .logo .logo-text { font-size: 1.5rem; }
}
