/* ═══════════════════════════════════════
   PETORY — Style Global
   ═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────── */
:root {
  --primary: #1A1A2E;
  --primary-light: #252545;
  --accent: #F4A261;
  --accent-dark: #E08B45;
  --accent-light: #FDE8D0;
  --bg: #FAFAFA;
  --bg-card: #FFFFFF;
  --text: #222222;
  --text-muted: #777;
  --text-light: #AAA;
  --border: #E8E8E8;
  --success: #22C55E;
  --warning: #EAB308;
  --danger: #EF4444;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.14);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-xl: 24px;
  --transition: .25s cubic-bezier(.4,0,.2,1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

/* ── Typography ────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { font-size: .975rem; color: var(--text-muted); }

/* ── Layout ────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ── Buttons ───────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600; font-size: .9rem; letter-spacing: .02em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 14px rgba(244,162,97,.4);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,162,97,.5);
}
.btn-dark {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(26,26,46,.25);
}
.btn-dark:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
}
.btn-outline-white {
  border: 2px solid rgba(255,255,255,.7);
  color: white;
}
.btn-outline-white:hover {
  background: white;
  color: var(--primary);
}
.btn-sm { padding: .55rem 1.2rem; font-size: .82rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Navigation ────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250,250,250,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  max-width: 1240px; margin: 0 auto; padding: 0 1.5rem;
}
.nav-logo {
  display: flex; align-items: center; gap: .75rem;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--primary);
}
.nav-logo span { color: var(--accent); }
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-weight: 500; font-size: .9rem; color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 100%;
  height: 2px; background: var(--accent);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { right: 0; }
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-icon-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--text); cursor: pointer;
  transition: var(--transition); position: relative;
}
.nav-icon-btn:hover { background: var(--border); }
.cart-count {
  position: absolute; top: -2px; right: -2px;
  background: var(--accent); color: white;
  font-size: .65rem; font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
}
.cart-count:empty, .cart-count[data-count="0"] { display: none; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ── Mobile Nav ────────────────────────── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--bg); padding: 5rem 2rem 2rem;
  flex-direction: column; gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.3rem; font-weight: 600; color: var(--text);
  padding: .75rem 0; border-bottom: 1px solid var(--border);
}

/* ── Hero ──────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--primary);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 70% 50%, rgba(244,162,97,.15) 0%, transparent 60%),
              radial-gradient(ellipse 40% 40% at 20% 80%, rgba(244,162,97,.08) 0%, transparent 50%);
}
.hero-particles {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(244,162,97,.15); border: 1px solid rgba(244,162,97,.3);
  color: var(--accent); padding: .4rem 1rem; border-radius: 50px;
  font-size: .8rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 { color: white; margin-bottom: 1.5rem; }
.hero h1 span { color: var(--accent); }
.hero-desc { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 480px; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-number {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: white;
}
.hero-stat-label { font-size: .8rem; color: rgba(255,255,255,.5); }
.hero-visual { position: relative; }
.hero-product-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 2rem; text-align: center;
  backdrop-filter: blur(10px);
}
.hero-product-img {
  width: 100%; aspect-ratio: 1;
  border-radius: var(--radius);
  object-fit: cover;
}
.hero-float-badge {
  position: absolute;
  background: var(--accent); color: white;
  border-radius: var(--radius); padding: .75rem 1.25rem;
  font-weight: 700; font-size: .85rem;
  box-shadow: var(--shadow-md);
}
.hero-float-1 { top: -1rem; right: -1rem; }
.hero-float-2 { bottom: 2rem; left: -1.5rem; background: white; color: var(--primary); }

/* ── Why Section ───────────────────────── */
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  margin-top: 3rem;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.why-icon {
  width: 64px; height: 64px;
  background: var(--accent-light);
  border-radius: 50%; margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.why-card h3 { font-size: 1rem; color: var(--primary); margin-bottom: .5rem; }
.why-card p { font-size: .88rem; }

/* ── Product Cards ─────────────────────── */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  margin-top: 3rem;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.product-card-img {
  position: relative; overflow: hidden;
  aspect-ratio: 1;
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--accent); color: white;
  padding: .3rem .8rem; border-radius: 50px;
  font-size: .75rem; font-weight: 700; z-index: 1;
}
.product-badge.new { background: var(--primary); }
.product-badge.popular { background: #7C3AED; }
.product-card-body { padding: 1.5rem; }
.product-card-name {
  font-family: var(--font-display); font-size: 1.1rem; color: var(--primary);
  margin-bottom: .5rem;
}
.product-card-desc { font-size: .85rem; color: var(--text-muted); margin-bottom: 1rem; }
.product-rating { display: flex; align-items: center; gap: .4rem; margin-bottom: 1rem; }
.stars { color: #FCD34D; font-size: .9rem; }
.rating-count { font-size: .8rem; color: var(--text-light); }
.product-pricing { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.price-current {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--primary);
}
.price-original {
  font-size: .9rem; color: var(--text-light); text-decoration: line-through;
}
.price-save {
  background: var(--accent-light); color: var(--accent-dark);
  padding: .2rem .6rem; border-radius: 50px;
  font-size: .75rem; font-weight: 700;
}
.product-card-footer { display: flex; gap: .75rem; }
.product-card-footer .btn { flex: 1; justify-content: center; }

/* ── Video Section ─────────────────────── */
.video-section {
  background: var(--primary);
  padding: 6rem 0;
  text-align: center;
}
.video-section h2 { color: white; margin-bottom: 1rem; }
.video-section p { color: rgba(255,255,255,.6); margin-bottom: 3rem; }
.video-wrapper {
  max-width: 860px; margin: 0 auto;
  border-radius: var(--radius-xl); overflow: hidden;
  position: relative; aspect-ratio: 16/9;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
}
.video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem;
}
.play-btn {
  width: 80px; height: 80px;
  background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: white; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 0 16px rgba(244,162,97,.15);
}
.play-btn:hover { transform: scale(1.1); box-shadow: 0 0 0 24px rgba(244,162,97,.15); }
.video-label { color: rgba(255,255,255,.5); font-size: .9rem; }

/* ── Lifestyle Grid ────────────────────── */
.lifestyle-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 1rem;
  margin-top: 2rem;
}
.lifestyle-img {
  border-radius: var(--radius);
  overflow: hidden;
}
.lifestyle-img:first-child { grid-row: 1 / 3; }
.lifestyle-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.lifestyle-img:hover img { transform: scale(1.04); }

/* ── Reviews ───────────────────────────── */
.reviews-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.review-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.review-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; font-family: var(--font-display);
  flex-shrink: 0;
}
.review-meta { flex: 1; }
.review-name { font-weight: 600; font-size: .95rem; color: var(--primary); }
.review-date { font-size: .78rem; color: var(--text-light); }
.review-verified {
  font-size: .72rem; color: var(--success);
  display: flex; align-items: center; gap: .25rem;
}
.review-title { font-weight: 600; color: var(--text); margin-bottom: .5rem; font-size: .95rem; }
.review-text { font-size: .88rem; line-height: 1.6; }

/* ── Trust Section ─────────────────────── */
.trust-section { background: var(--accent); padding: 4rem 0; }
.trust-inner {
  display: flex; align-items: center; justify-content: center; gap: 4rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 1rem;
  color: white; text-align: left;
}
.trust-icon { font-size: 2.5rem; }
.trust-text-main { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
.trust-text-sub { font-size: .85rem; opacity: .85; }

/* ── FAQ ───────────────────────────────── */
.faq-list { max-width: 760px; margin: 2.5rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0; cursor: pointer;
  font-weight: 600; font-size: .95rem; color: var(--primary);
  transition: var(--transition); gap: 1rem;
}
.faq-question:hover { color: var(--accent); }
.faq-icon { font-size: 1.2rem; transition: var(--transition); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--accent); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease;
}
.faq-answer p { padding-bottom: 1.25rem; font-size: .9rem; }
.faq-item.open .faq-answer { max-height: 200px; }

/* ── Newsletter ────────────────────────── */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 5rem 0; text-align: center;
}
.newsletter-inner { max-width: 540px; margin: 0 auto; }
.newsletter-section h2 { color: white; margin-bottom: 1rem; }
.newsletter-section p { color: rgba(255,255,255,.65); margin-bottom: 2rem; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-input {
  flex: 1; padding: .9rem 1.5rem;
  border: none; border-radius: 50px 0 0 50px;
  font-size: .9rem; outline: none;
}
.newsletter-btn {
  background: var(--accent); color: white;
  padding: .9rem 2rem; border-radius: 0 50px 50px 0;
  font-weight: 700; font-size: .9rem; cursor: pointer;
  transition: var(--transition);
}
.newsletter-btn:hover { background: var(--accent-dark); }
.newsletter-gdpr { font-size: .75rem; color: rgba(255,255,255,.4); margin-top: 1rem; }
.newsletter-success { display: none; color: var(--accent); font-weight: 600; }

/* ── Footer ────────────────────────────── */
footer {
  background: var(--primary); color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand p { font-size: .88rem; margin: 1rem 0 1.5rem; max-width: 280px; }
.footer-logo {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: white;
}
.footer-logo span { color: var(--accent); }
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: white; }
.footer-col h4 { color: white; font-size: .9rem; margin-bottom: 1.25rem; }
.footer-col li + li { margin-top: .6rem; }
.footer-col a { font-size: .85rem; transition: var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .82rem; margin: 0; color: rgba(255,255,255,.4); }

/* ── Cards / Sections ──────────────────── */
.section-header { text-align: center; }
.section-tag {
  display: inline-block;
  background: var(--accent-light); color: var(--accent-dark);
  padding: .35rem 1rem; border-radius: 50px;
  font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-header h2 { margin-bottom: .75rem; color: var(--primary); }
.section-header p { max-width: 520px; margin: 0 auto; }

/* ── Shop Page ─────────────────────────── */
.shop-hero {
  background: var(--primary); padding: 8rem 0 4rem;
  text-align: center;
}
.shop-hero h1 { color: white; }
.shop-hero p { color: rgba(255,255,255,.6); margin-top: .75rem; }
.shop-controls {
  display: flex; align-items: center; justify-content: space-between;
  margin: 2rem 0; flex-wrap: wrap; gap: 1rem;
}
.filter-tabs { display: flex; gap: .5rem; }
.filter-tab {
  padding: .5rem 1.25rem; border-radius: 50px;
  font-size: .85rem; font-weight: 600; cursor: pointer;
  border: 2px solid var(--border); color: var(--text-muted);
  transition: var(--transition);
}
.filter-tab.active, .filter-tab:hover {
  border-color: var(--accent); background: var(--accent); color: white;
}
.sort-select {
  padding: .5rem 1rem; border-radius: 8px;
  border: 1px solid var(--border); font-size: .85rem;
  background: var(--bg-card); color: var(--text);
  cursor: pointer;
}

/* ── Product Detail ────────────────────── */
.product-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: start; padding: 4rem 0;
}
.product-gallery { position: sticky; top: 90px; }
.gallery-main {
  border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 1; margin-bottom: 1rem;
  border: 1px solid var(--border);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: .75rem; }
.gallery-thumb {
  width: 80px; height: 80px; border-radius: var(--radius-sm);
  overflow: hidden; cursor: pointer; border: 2px solid transparent;
  transition: var(--transition);
}
.gallery-thumb.active { border-color: var(--accent); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info { padding: 1rem 0; }
.product-info .product-badge { position: static; display: inline-block; margin-bottom: 1rem; }
.product-info h1 { font-size: 2rem; color: var(--primary); margin-bottom: .5rem; }
.product-info .product-rating { margin-bottom: 1.25rem; }
.product-info .product-pricing { font-size: 1.1rem; margin-bottom: 1.5rem; }
.product-info .price-current { font-size: 2rem; }
.product-description { font-size: .92rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; }
.qty-selector {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--border); border-radius: 50px;
  overflow: hidden; width: fit-content; margin-bottom: 1.5rem;
}
.qty-btn {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700;
  background: var(--bg); color: var(--text); cursor: pointer;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--border); }
.qty-input {
  width: 56px; height: 44px; text-align: center;
  border: none; outline: none; font-weight: 600; font-size: 1rem;
  background: white;
}
.product-actions { display: flex; flex-direction: column; gap: 1rem; }
.product-features { margin-top: 2rem; }
.product-features h4 { margin-bottom: 1rem; color: var(--primary); }
.feature-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .5rem 0; border-bottom: 1px solid var(--border);
  font-size: .88rem; color: var(--text-muted);
}
.feature-list li::before { content: "✓"; color: var(--success); font-weight: 700; flex-shrink: 0; }
.product-meta { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.product-meta span { font-size: .85rem; color: var(--text-muted); display: block; margin-bottom: .25rem; }
.product-meta strong { color: var(--primary); }

/* ── Cart ──────────────────────────────── */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2rem; padding: 3rem 0; }
.cart-items { display: flex; flex-direction: column; gap: 1rem; }
.cart-item {
  display: flex; align-items: center; gap: 1.5rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
}
.cart-item-img { width: 90px; height: 90px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; color: var(--primary); margin-bottom: .25rem; }
.cart-item-price { font-size: .9rem; color: var(--text-muted); }
.cart-item-controls { display: flex; align-items: center; gap: 1rem; }
.cart-item-remove { color: var(--danger); font-size: .85rem; cursor: pointer; }
.cart-summary {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2rem;
  position: sticky; top: 90px; height: fit-content;
}
.cart-summary h3 { font-size: 1.1rem; margin-bottom: 1.5rem; color: var(--primary); }
.summary-line {
  display: flex; justify-content: space-between; align-items: center;
  padding: .6rem 0; font-size: .9rem;
}
.summary-line.total {
  border-top: 2px solid var(--border); margin-top: .5rem; padding-top: 1rem;
  font-weight: 700; font-size: 1.1rem; color: var(--primary);
}
.summary-free { color: var(--success); font-weight: 600; }
.cart-empty {
  text-align: center; padding: 5rem 0;
}
.cart-empty-icon { font-size: 4rem; margin-bottom: 1.5rem; }
.cart-empty h2 { color: var(--primary); margin-bottom: .75rem; }
.cart-empty p { margin-bottom: 2rem; }

/* ── Checkout ──────────────────────────── */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2rem; padding: 3rem 0; }
.checkout-steps {
  display: flex; gap: 0; margin-bottom: 2rem;
  border-radius: 50px; overflow: hidden; border: 1px solid var(--border);
}
.checkout-step {
  flex: 1; padding: .75rem; text-align: center;
  font-size: .82rem; font-weight: 600; color: var(--text-muted);
  background: var(--bg-card);
}
.checkout-step.active {
  background: var(--primary); color: white;
}
.checkout-step.done {
  background: var(--success); color: white;
}
.checkout-form {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2rem;
  margin-bottom: 1.5rem;
}
.checkout-form h3 { margin-bottom: 1.5rem; color: var(--primary); font-size: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--text); margin-bottom: .4rem; }
.form-control {
  width: 100%; padding: .75rem 1rem;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: .9rem; outline: none; transition: var(--transition);
  background: var(--bg);
}
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(244,162,97,.15); }
.form-select { appearance: none; cursor: pointer; }
.guest-toggle {
  display: flex; gap: 0; margin-bottom: 2rem;
  border: 1px solid var(--border); border-radius: 50px; overflow: hidden;
}
.guest-toggle-btn {
  flex: 1; padding: .75rem; text-align: center;
  font-weight: 600; font-size: .85rem; cursor: pointer;
  transition: var(--transition); color: var(--text-muted);
}
.guest-toggle-btn.active { background: var(--primary); color: white; }

/* ── Payment ───────────────────────────── */
.payment-options { display: flex; flex-direction: column; gap: .75rem; margin-top: 1rem; }
.payment-option {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem; border: 2px solid var(--border);
  border-radius: var(--radius); cursor: pointer; transition: var(--transition);
}
.payment-option.selected { border-color: var(--accent); background: var(--accent-light); }
.payment-option input { accent-color: var(--accent); }
.payment-logo { height: 24px; width: auto; object-fit: contain; }
.payment-name { font-weight: 600; font-size: .9rem; }

/* ── Auth Pages ────────────────────────── */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--bg); padding: 5rem 1.5rem;
}
.auth-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2.5rem;
  width: 100%; max-width: 440px;
  box-shadow: var(--shadow-md);
}
.auth-logo { text-align: center; margin-bottom: 2rem; }
.auth-logo a {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--primary);
}
.auth-logo a span { color: var(--accent); }
.auth-card h2 { font-size: 1.5rem; text-align: center; color: var(--primary); margin-bottom: .5rem; }
.auth-card p { text-align: center; font-size: .88rem; margin-bottom: 2rem; }
.auth-divider {
  display: flex; align-items: center; gap: 1rem;
  margin: 1.5rem 0; color: var(--text-light); font-size: .82rem;
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.auth-switch { text-align: center; margin-top: 1.5rem; font-size: .88rem; }
.auth-switch a { color: var(--accent); font-weight: 600; }
.password-field { position: relative; }
.password-toggle {
  position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  color: var(--text-light); cursor: pointer; font-size: .9rem;
}
.alert { padding: .75rem 1rem; border-radius: var(--radius-sm); margin-bottom: 1rem; font-size: .85rem; }
.alert-danger { background: #FEF2F2; color: var(--danger); border: 1px solid #FECACA; }
.alert-success { background: #F0FDF4; color: var(--success); border: 1px solid #BBF7D0; }

/* ── Account Page ──────────────────────── */
.account-layout { display: grid; grid-template-columns: 260px 1fr; gap: 2rem; padding: 3rem 0; }
.account-sidebar {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 1.5rem;
  height: fit-content; position: sticky; top: 90px;
}
.account-avatar {
  text-align: center; padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border); margin-bottom: 1.5rem;
}
.avatar-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--primary); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  margin: 0 auto 1rem;
}
.account-name { font-weight: 700; color: var(--primary); }
.account-email { font-size: .82rem; }
.account-nav a {
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem 1rem; border-radius: var(--radius-sm);
  font-size: .88rem; font-weight: 500; color: var(--text-muted);
  transition: var(--transition); margin-bottom: .25rem;
}
.account-nav a:hover, .account-nav a.active {
  background: var(--accent-light); color: var(--accent-dark);
}
.order-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1rem;
}
.order-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem; flex-wrap: wrap; gap: .5rem;
}
.order-id { font-weight: 700; color: var(--primary); }
.order-date { font-size: .82rem; }
.order-status {
  padding: .3rem .9rem; border-radius: 50px; font-size: .78rem; font-weight: 700;
}
.status-pending { background: #FEF9C3; color: #A16207; }
.status-confirmed { background: #DBEAFE; color: #1D4ED8; }
.status-shipped { background: #EDE9FE; color: #6D28D9; }
.status-delivered { background: #DCFCE7; color: #15803D; }

/* ── Admin Layout ──────────────────────── */
.admin-layout {
  display: flex; min-height: 100vh;
}
.admin-sidebar {
  width: 250px; background: var(--primary); flex-shrink: 0;
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; bottom: 0;
  z-index: 100; overflow-y: auto;
}
.admin-logo {
  padding: 1.5rem;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  color: white; border-bottom: 1px solid rgba(255,255,255,.1);
}
.admin-logo span { color: var(--accent); }
.admin-logo small { display: block; font-family: var(--font-body); font-size: .7rem; color: rgba(255,255,255,.4); font-weight: 400; }
.admin-nav { flex: 1; padding: 1rem 0; }
.admin-nav-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .8rem 1.5rem; color: rgba(255,255,255,.6);
  font-size: .88rem; font-weight: 500;
  transition: var(--transition); cursor: pointer;
}
.admin-nav-item:hover, .admin-nav-item.active {
  background: rgba(255,255,255,.08); color: white;
  border-right: 3px solid var(--accent);
}
.admin-nav-item .icon { font-size: 1.1rem; width: 20px; }
.admin-main { margin-left: 250px; flex: 1; background: #F4F6FA; min-height: 100vh; }
.admin-topbar {
  background: white; border-bottom: 1px solid #E8E8E8;
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 50;
}
.admin-topbar h1 { font-size: 1.25rem; color: var(--primary); }
.admin-content { padding: 2rem; }
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.kpi-card {
  background: white; border-radius: var(--radius);
  padding: 1.5rem; border: 1px solid #E8E8E8;
  display: flex; align-items: flex-start; gap: 1rem;
}
.kpi-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.kpi-value { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--primary); }
.kpi-label { font-size: .8rem; color: var(--text-muted); }
.kpi-change { font-size: .78rem; font-weight: 600; margin-top: .25rem; }
.kpi-change.up { color: var(--success); }
.kpi-change.down { color: var(--danger); }
.admin-table-card {
  background: white; border-radius: var(--radius); border: 1px solid #E8E8E8;
  overflow: hidden;
}
.admin-table-header {
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid #E8E8E8;
}
.admin-table-header h3 { font-size: .95rem; color: var(--primary); }
table { width: 100%; border-collapse: collapse; }
th {
  padding: .75rem 1rem; text-align: left;
  font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  color: var(--text-muted); background: #F8FAFB;
  border-bottom: 1px solid #E8E8E8;
}
td {
  padding: 1rem; font-size: .88rem; color: var(--text);
  border-bottom: 1px solid #F0F0F0;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: #FAFBFC; }
.badge {
  padding: .25rem .7rem; border-radius: 50px;
  font-size: .75rem; font-weight: 700;
}
.badge-warning { background: #FEF9C3; color: #A16207; }
.badge-success { background: #DCFCE7; color: #15803D; }
.badge-info { background: #DBEAFE; color: #1D4ED8; }
.badge-purple { background: #EDE9FE; color: #6D28D9; }
.badge-danger { background: #FEF2F2; color: var(--danger); }
.stock-alert { color: var(--danger); font-weight: 700; display: flex; align-items: center; gap: .3rem; }

/* ── Notification Toast ────────────────── */
.toast-container { position: fixed; top: 90px; right: 1.5rem; z-index: 9999; display: flex; flex-direction: column; gap: .75rem; }
.toast {
  background: var(--primary); color: white;
  padding: 1rem 1.5rem; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); min-width: 280px;
  display: flex; align-items: center; gap: .75rem;
  animation: slideIn .3s ease;
  border-left: 4px solid var(--accent);
}
.toast.success { border-left-color: var(--success); }
.toast.error { border-left-color: var(--danger); }
@keyframes slideIn {
  from { transform: translateX(120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ── Breadcrumb ────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: var(--text-muted); margin-bottom: 2rem;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-light); }

/* ── Page headers ──────────────────────── */
.page-header {
  background: var(--primary); padding: 8rem 0 3rem; text-align: center;
}
.page-header h1 { color: white; }
.page-header p { color: rgba(255,255,255,.6); margin-top: .5rem; }

/* ── Utilities ─────────────────────────── */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.hidden { display: none !important; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.w-full { width: 100%; }

/* ── Responsive ────────────────────────── */
@media (max-width: 1200px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .lifestyle-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .lifestyle-img:first-child { grid-row: auto; grid-column: 1 / 3; }
  .product-detail { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .account-layout { grid-template-columns: 1fr; }
  .account-sidebar { position: static; }
  .admin-sidebar { transform: translateX(-100%); }
  .admin-main { margin-left: 0; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .trust-inner { flex-direction: column; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-radius: 50px; }
  .newsletter-btn { border-radius: 50px; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .filter-tabs { flex-wrap: wrap; }
}
