/* ============================================================
   LUXE COMMERCE — Premium E-Commerce Template
   Bootstrap 5 + PHP 8.3 Compatible
   Version 1.0.0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --primary:        #0A0A0A;
  --secondary:      #1A1A1A;
  --accent:         #C8A96E;
  --accent-light:   #E8D5B0;
  --accent-dark:    #9A7A45;
  --surface:        #F8F6F2;
  --surface-2:      #EFECE5;
  --text:           #1A1A1A;
  --text-muted:     #6B6560;
  --text-light:     #A09890;
  --border:         #E2DDD6;
  --border-dark:    #C8C0B5;
  --white:          #FFFFFF;
  --danger:         #C0392B;
  --success:        #1A7A4A;
  --warning:        #C8860A;
  --info:           #1A5A8A;
  --gradient-hero:  linear-gradient(135deg, #0A0A0A 0%, #1E1810 50%, #2A1F0F 100%);
  --gradient-promo: linear-gradient(135deg, #1A0E05 0%, #2A1F0F 100%);
  --gradient-accent: linear-gradient(135deg, #C8A96E 0%, #9A7A45 100%);

  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'DM Sans', system-ui, sans-serif;

  --shadow-xs:      0 1px 3px rgba(0,0,0,0.06);
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:      0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:      0 8px 40px rgba(0,0,0,0.14);
  --shadow-xl:      0 20px 60px rgba(0,0,0,0.18);

  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      16px;
  --radius-xl:      24px;
  --radius-full:    999px;

  --transition:     0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--primary);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--accent-dark); }

img { max-width: 100%; height: auto; }

/* ── Typography Scale ────────────────────────────────────── */
.display-serif { font-family: var(--font-display); font-weight: 300; }
.text-accent    { color: var(--accent-dark) !important; }
.text-muted-lx  { color: var(--text-muted); font-size: 13px; letter-spacing: 0.04em; }
.label-upper    { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  border: 1.5px solid transparent;
  padding: 11px 28px;
  font-size: 13px;
}

.btn-primary-lx {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary-lx:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--gradient-accent, var(--accent));
  color: var(--primary);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,169,110,0.4);
}

.btn-outline-lx {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-lx:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--surface);
  color: var(--primary);
  border-color: var(--border-dark);
}

.btn-icon {
  width: 42px; height: 42px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

/* ── Top Bar ────────────────────────────────────────────── */
.topbar {
  background: var(--primary);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 9px 0;
}
.topbar a { color: rgba(255,255,255,0.75); }
.topbar a:hover { color: var(--accent-light); }

/* ── Navbar ──────────────────────────────────────────────── */
.navbar-lx {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.navbar-lx.scrolled {
  box-shadow: var(--shadow-md);
}
.navbar-lx .navbar-brand {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--primary);
  padding: 18px 0;
}
.navbar-lx .nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text);
  padding: 22px 16px !important;
  position: relative;
  text-transform: uppercase;
}
.navbar-lx .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.navbar-lx .nav-link:hover::after,
.navbar-lx .nav-link.active::after { transform: scaleX(1); }
.navbar-lx .nav-link:hover { color: var(--primary); }

.navbar-icons .btn-icon {
  background: transparent;
  border: none;
  color: var(--text);
  position: relative;
}
.navbar-icons .btn-icon:hover { color: var(--accent-dark); background: var(--surface); }

.cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--accent);
  color: var(--primary);
  font-size: 10px;
  font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 99px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--white);
  border-top: 2px solid var(--accent);
  box-shadow: var(--shadow-xl);
  padding: 40px 0;
  display: none;
  z-index: 999;
}
.nav-item:hover .mega-menu { display: block; }
.mega-menu-col h6 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.mega-menu-col a {
  display: block;
  font-size: 14px;
  color: var(--text);
  padding: 5px 0;
  transition: color var(--transition), padding var(--transition);
}
.mega-menu-col a:hover {
  color: var(--accent-dark);
  padding-left: 6px;
}

/* ── Hero Section ────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  background: var(--primary);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--gradient-hero, linear-gradient(135deg, #0A0A0A 0%, #1E1810 50%, #2A1F0F 100%));
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(200,169,110,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(200,169,110,0.05) 0%, transparent 40%);
}
.hero-content { position: relative; z-index: 2; }
.hero-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-label::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--accent);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent-light);
}
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-img-wrap {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-frame {
  width: 100%; max-width: 500px;
  aspect-ratio: 3/4;
  background: var(--secondary);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.hero-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.hero-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--accent);
  color: var(--primary);
  padding: 20px 24px;
  font-family: var(--font-display);
}
.hero-badge .big { font-size: 36px; font-weight: 500; display: block; line-height: 1; }
.hero-badge .small { font-size: 12px; letter-spacing: 0.1em; }

/* ── Section Styles ──────────────────────────────────────── */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 120px 0; }
.section-dark { background: var(--primary); color: var(--white); }
.section-surface { background: var(--surface); }

.section-header { margin-bottom: 56px; }
.section-header .label-upper { color: var(--accent-dark); margin-bottom: 12px; display: block; }
.section-header h2 { font-size: clamp(34px, 4vw, 52px); }
.section-header p { color: var(--text-muted); max-width: 480px; margin-top: 16px; }

/* ── Product Cards ───────────────────────────────────────── */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--surface);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.product-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.badge-new    { background: var(--primary); color: var(--white); }
.badge-sale   { background: var(--danger); color: var(--white); }
.badge-hot    { background: var(--accent); color: var(--primary); }
.badge-limited{ background: var(--surface-2); color: var(--text); border: 1px solid var(--border); }

.product-actions {
  position: absolute;
  right: 12px; top: 12px;
  display: flex; flex-direction: column; gap: 8px;
  transform: translateX(60px);
  transition: transform var(--transition);
}
.product-card:hover .product-actions { transform: translateX(0); }
.product-actions .btn-icon {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  width: 38px; height: 38px;
}
.product-actions .btn-icon:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.product-quick-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 12px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transform: translateY(100%);
  transition: transform var(--transition);
  cursor: pointer;
}
.product-card:hover .product-quick-add { transform: translateY(0); }

.product-info {
  padding: 18px 16px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-category {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--primary);
  margin-bottom: 10px;
  flex: 1;
}
.product-name a { color: inherit; }
.product-name a:hover { color: var(--accent-dark); }

.product-rating {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 10px;
}
.stars { color: var(--accent); font-size: 13px; }
.rating-count { font-size: 12px; color: var(--text-muted); }

.product-price {
  display: flex; align-items: center; gap: 10px;
}
.price-current {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--primary);
}
.price-old {
  font-size: 14px;
  color: var(--text-light);
  text-decoration: line-through;
}
.price-discount {
  font-size: 12px;
  color: var(--danger);
  font-weight: 500;
}

/* Color swatches */
.product-swatches {
  display: flex; gap: 6px;
  margin-top: 10px;
}
.swatch {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--border);
  cursor: pointer;
  transition: box-shadow var(--transition);
}
.swatch:hover, .swatch.active {
  box-shadow: 0 0 0 2px var(--primary);
}

/* ── Promo Banner ─────────────────────────────────────────── */
.promo-banner {
  background: var(--gradient-promo, linear-gradient(135deg, #1A0E05 0%, #2A1F0F 100%));
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,169,110,0.15) 0%, transparent 60%);
}
.promo-banner .label-upper { color: var(--accent); }
.promo-banner h2 { color: var(--white); font-size: clamp(36px, 5vw, 64px); }
.promo-banner p { color: rgba(255,255,255,0.6); }
.promo-timer {
  display: flex; gap: 16px;
  margin: 28px 0;
}
.timer-unit {
  text-align: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  min-width: 72px;
}
.timer-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--accent-light);
  line-height: 1;
  display: block;
}
.timer-label { font-size: 10px; letter-spacing: 0.15em; color: rgba(255,255,255,0.4); }

/* ── Category Cards ──────────────────────────────────────── */
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: block;
}
.category-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform var(--transition-slow);
  background: var(--surface-2);
}
.category-card:hover .category-card-img { transform: scale(1.05); }

.category-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
  display: flex; align-items: flex-end;
  padding: 28px 24px;
  transition: background var(--transition);
}
.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%);
}
.category-card-body h4 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 4px;
}
.category-card-body span {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
}
.category-card-arrow {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  margin-top: 14px;
  transition: all var(--transition);
}
.category-card:hover .category-card-arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}

/* ── Features Strip ──────────────────────────────────────── */
.features-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.feature-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0;
}
.feature-icon {
  width: 48px; height: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-dark);
  font-size: 20px;
  flex-shrink: 0;
}
.feature-text h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.feature-text p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb-lx {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.breadcrumb-lx .breadcrumb {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.breadcrumb-item + .breadcrumb-item::before { color: var(--border-dark); }
.breadcrumb-item a { color: var(--text-muted); }
.breadcrumb-item a:hover { color: var(--primary); }
.breadcrumb-item.active { color: var(--primary); }

/* ── Sidebar / Filters ───────────────────────────────────── */
.filter-sidebar { position: sticky; top: 80px; }
.filter-group {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.filter-group:first-child { padding-top: 0; }
.filter-group-title {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.filter-check label {
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  transition: color var(--transition);
}
.filter-check label:hover { color: var(--primary); }
.filter-check .count { font-size: 11px; color: var(--text-light); }

.price-range { padding: 8px 0; }
.price-inputs { display: flex; gap: 10px; align-items: center; }
.price-inputs input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}
.price-inputs input:focus { border-color: var(--accent); }

/* Color filter */
.color-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.color-filter-item {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--border);
  cursor: pointer;
  transition: box-shadow var(--transition);
}
.color-filter-item:hover, .color-filter-item.active {
  box-shadow: 0 0 0 2px var(--primary);
}

/* Size filter */
.size-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.size-btn {
  min-width: 42px; height: 34px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
}
.size-btn:hover, .size-btn.active {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--surface);
}
.size-btn.out-of-stock {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* ── Product Listing ─────────────────────────────────────── */
.listing-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.listing-count { font-size: 13px; color: var(--text-muted); }
.sort-select {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  outline: none;
  cursor: pointer;
}
.view-toggle .btn-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: var(--white);
}
.view-toggle .btn-icon.active,
.view-toggle .btn-icon:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ── Product Detail ──────────────────────────────────────── */
.product-gallery-main {
  aspect-ratio: 3/4;
  background: var(--surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.product-gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.product-gallery-thumbs {
  display: flex; flex-direction: column; gap: 10px;
}
.gallery-thumb {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}
.gallery-thumb.active { border-color: var(--primary); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-detail-info { padding-left: 20px; }
.product-detail-brand {
  font-size: 12px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 8px;
}
.product-detail-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 16px;
}
.product-detail-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 24px;
}
.product-detail-price .old {
  font-size: 20px;
  color: var(--text-light);
  text-decoration: line-through;
  margin-right: 12px;
}

.size-guide-link {
  font-size: 12px; letter-spacing: 0.08em;
  text-decoration: underline;
  color: var(--text-muted);
  cursor: pointer;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: 120px;
}
.qty-selector button {
  width: 36px; height: 44px;
  border: none;
  background: var(--surface);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  transition: background var(--transition);
}
.qty-selector button:hover { background: var(--surface-2); }
.qty-selector input {
  flex: 1; text-align: center;
  border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border);
  padding: 0; height: 44px;
  font-size: 15px; font-family: var(--font-body);
  outline: none;
}

.product-meta { font-size: 13px; color: var(--text-muted); }
.product-meta span { color: var(--text); font-weight: 500; }
.product-tabs .nav-tabs { border-bottom: 1px solid var(--border); }
.product-tabs .nav-link {
  font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 500;
  color: var(--text-muted);
  border: none; padding: 14px 24px;
}
.product-tabs .nav-link.active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary) !important;
  background: none;
}

/* ── Cart ────────────────────────────────────────────────── */
.cart-item {
  display: flex; gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.cart-item-img {
  width: 100px; flex-shrink: 0;
  aspect-ratio: 3/4;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info h6 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 400;
  margin-bottom: 4px;
}
.cart-item-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.cart-item-price {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 400;
}
.cart-remove {
  font-size: 12px; color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer; background: none; border: none;
}
.cart-remove:hover { color: var(--danger); }

.order-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 28px;
  position: sticky;
  top: 80px;
}
.order-summary h5 {
  font-family: var(--font-display);
  font-size: 22px; margin-bottom: 24px;
}
.summary-line {
  display: flex; justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.summary-line:last-child { border: none; }
.summary-total {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400;
  color: var(--primary);
  display: flex; justify-content: space-between;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 2px solid var(--primary);
}

/* ── Checkout ────────────────────────────────────────────── */
.checkout-steps {
  display: flex; gap: 0;
  margin-bottom: 48px;
}
.checkout-step {
  flex: 1;
  position: relative;
  text-align: center;
  padding-bottom: 20px;
}
.checkout-step::after {
  content: '';
  position: absolute;
  top: 16px; left: 50%;
  width: 100%; height: 2px;
  background: var(--border);
  z-index: 0;
}
.checkout-step:last-child::after { display: none; }
.step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600;
  margin: 0 auto 10px;
  position: relative; z-index: 1;
  transition: all var(--transition);
}
.checkout-step.active .step-num {
  background: var(--primary);
  color: var(--white);
}
.checkout-step.completed .step-num {
  background: var(--success);
  color: var(--white);
}
.step-label { font-size: 12px; color: var(--text-muted); }
.checkout-step.active .step-label { color: var(--primary); font-weight: 600; }

.form-group-lx { margin-bottom: 20px; }
.form-label-lx {
  font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: block;
}
.form-control-lx {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control-lx:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.12);
}

.payment-methods { display: flex; flex-direction: column; gap: 12px; }
.payment-method {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex; align-items: center; gap: 14px;
}
.payment-method:hover { border-color: var(--accent); }
.payment-method.selected {
  border-color: var(--primary);
  background: var(--surface);
}
.payment-icons { display: flex; gap: 6px; margin-left: auto; }
.payment-icon {
  height: 24px; width: 38px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 700;
  color: var(--text-muted);
}

/* ── Account / Profile ───────────────────────────────────── */
.account-sidebar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0;
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.account-user-header {
  background: var(--primary);
  color: var(--white);
  padding: 28px;
  text-align: center;
}
.account-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--primary);
  margin: 0 auto 14px;
}
.account-nav .nav-link {
  padding: 13px 24px;
  font-size: 13px;
  color: var(--text-muted);
  border-left: 3px solid transparent;
  border-radius: 0;
  display: flex; align-items: center; gap: 12px;
}
.account-nav .nav-link:hover { color: var(--primary); background: var(--white); }
.account-nav .nav-link.active {
  color: var(--primary);
  background: var(--white);
  border-left-color: var(--accent);
  font-weight: 500;
}
.account-nav .nav-link i { width: 18px; text-align: center; font-size: 15px; }

/* ── Order Status ────────────────────────────────────────── */
.order-timeline { padding: 20px 0; }
.timeline-step {
  display: flex; gap: 20px;
  position: relative;
  padding-bottom: 28px;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-step::before {
  content: '';
  position: absolute;
  left: 16px; top: 32px;
  width: 2px; bottom: 0;
  background: var(--border);
}
.timeline-step:last-child::before { display: none; }
.timeline-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  position: relative; z-index: 1;
}
.timeline-step.done .timeline-dot { background: var(--success); color: var(--white); }
.timeline-step.active .timeline-dot { background: var(--primary); color: var(--white); }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding-top: 72px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-desc { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  transition: all var(--transition);
}
.social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}
.footer-heading {
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 600;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition), padding var(--transition);
}
.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 4px;
}
.footer-newsletter input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 12px 16px;
  font-size: 14px;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition);
  margin-bottom: 10px;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter input:focus { border-color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 56px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; margin: 0; color: rgba(255,255,255,0.35); }
.footer-payment-icons { display: flex; gap: 8px; }
.footer-pay-icon {
  height: 22px; padding: 0 8px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

/* ── Toast / Notifications ───────────────────────────────── */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; }
.toast-lx {
  background: var(--primary);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xl);
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  min-width: 280px;
  animation: slideInRight 0.3s ease;
  border-left: 3px solid var(--accent);
}
@keyframes slideInRight {
  from { transform: translateX(100px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
.toast-success { border-left-color: var(--success); }
.toast-danger   { border-left-color: var(--danger); }

/* ── Wishlist Floating ───────────────────────────────────── */
.wishlist-count-badge {
  position: fixed; top: 50%; right: 0;
  transform: translateY(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 12px 10px;
  writing-mode: vertical-rl;
  font-size: 11px; letter-spacing: 0.12em;
  cursor: pointer;
  z-index: 100;
  transition: background var(--transition);
}
.wishlist-count-badge:hover { background: var(--accent-dark); }

/* ── Pagination ──────────────────────────────────────────── */
.pagination-lx { display: flex; gap: 6px; }
.page-btn {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius-sm);
}
.page-btn:hover { border-color: var(--primary); color: var(--primary); }
.page-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ── Search Overlay ──────────────────────────────────────── */
.search-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
}
.search-overlay.active { display: flex; }
.search-box {
  width: 100%; max-width: 680px;
  padding: 0 24px;
}
.search-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 300;
  padding: 16px 0;
  outline: none;
  caret-color: var(--accent);
}
.search-input::placeholder { color: rgba(255,255,255,0.3); }
.search-input:focus { border-bottom-color: var(--accent); }
.search-hint { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 16px; letter-spacing: 0.08em; }

/* ── Scroll Animations ───────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── Range Slider Custom ─────────────────────────────────── */
.range-slider {
  -webkit-appearance: none;
  width: 100%; height: 4px;
  background: var(--border);
  border-radius: 2px;
  outline: none;
}
.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary);
}

/* ── Misc Helpers ────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 24px 0; }
.divider-accent { height: 2px; background: linear-gradient(90deg, var(--accent) 0%, transparent 100%); width: 48px; margin: 16px 0 28px; }
.tag {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.1em;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  transition: all var(--transition);
  cursor: pointer;
}
.tag:hover, .tag.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 992px) {
  .navbar-lx .nav-link { padding: 14px 10px !important; font-size: 12px; }
  .product-detail-info { padding-left: 0; margin-top: 28px; }
  .filter-sidebar { position: static; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-lg { padding: 80px 0; }
  .hero { min-height: auto; padding: 80px 0; }
  .hero-title { font-size: 42px; }
  .hero-img-wrap { height: auto; margin-top: 40px; }
  .promo-timer { flex-wrap: wrap; }
  .checkout-steps .step-label { display: none; }
  .listing-toolbar { flex-wrap: wrap; gap: 12px; }
}

/* AZZCE-CART-VARIANT-FIX */
.share-btn{width:34px;height:34px;border:1px solid var(--border);border-radius:50%;display:inline-flex;align-items:center;justify-content:center;color:var(--text-muted);background:#fff;transition:all .2s;text-decoration:none}.share-btn:hover{color:#fff;background:var(--primary);border-color:var(--primary)}.product-spec-table td:first-child{color:var(--text-muted);width:42%}.cart-item h6 a{color:inherit;text-decoration:none}.cart-item-img img{width:100%;height:100%;object-fit:cover}.gallery-thumb{cursor:pointer}.gallery-thumb.active{outline:2px solid var(--accent);outline-offset:2px}.swatch{cursor:pointer;display:inline-block;border:1px solid rgba(0,0,0,.12);border-radius:50%;margin-right:8px}.swatch.active{outline:2px solid var(--primary);outline-offset:3px}


/* AZZCE-ADMIN-SEO-FORMS-20260606 */
.seo-preview-box{border:1px solid var(--admin-border,#e5e7eb);border-radius:12px;padding:16px;background:#fff}
.seo-preview-box .seo-url{color:#188038;font-size:13px;margin-bottom:4px}
.seo-preview-box .seo-title{color:#1a0dab;font-size:20px;line-height:1.25;margin-bottom:4px;font-family:Arial,sans-serif}
.seo-preview-box .seo-desc{color:#4d5156;font-size:14px;line-height:1.45}
.seo-crawl-check{display:flex;flex-wrap:wrap;gap:8px}
.seo-crawl-check span{font-size:12px;background:#ecfdf5;color:#047857;border:1px solid #a7f3d0;border-radius:999px;padding:5px 10px}
.template-pills{display:flex;flex-wrap:wrap;gap:8px}
.luxe-content-hero{padding:56px;border-radius:18px;background:linear-gradient(135deg,#0A0A0A,#2A1F0F);color:#fff;margin-bottom:32px}
.luxe-content-hero span{letter-spacing:.18em;text-transform:uppercase;color:#C8A96E;font-size:12px}
.luxe-content-hero h1{color:#fff;font-size:44px;margin:10px 0}
.luxe-content-grid{display:grid;grid-template-columns:1.3fr .8fr;gap:24px;margin:32px 0}
.luxe-content-grid>div,.luxe-faq{border:1px solid var(--border);border-radius:16px;padding:28px;background:#fff}
@media(max-width:768px){.luxe-content-grid{grid-template-columns:1fr}.luxe-content-hero{padding:32px}.luxe-content-hero h1{font-size:34px}}

/* ── AZZCE Kampanya Geri Sayim Sayaci ── */
.azz-countdown{display:flex;align-items:center;gap:5px;flex-wrap:wrap;margin:10px 0 2px;font-family:var(--font-body,sans-serif)}
.azz-cd-label{font-size:11px;letter-spacing:.04em;color:var(--danger,#b91c1c);font-weight:700;text-transform:uppercase}
.azz-cd-box{display:inline-flex;align-items:baseline;gap:1px;background:var(--gradient-promo,linear-gradient(135deg,#1A0E05,#2A1F0F));color:#fff;border-radius:7px;padding:4px 8px;font-size:10px;line-height:1;box-shadow:0 2px 6px rgba(0,0,0,.12)}
.azz-cd-box b{font-size:13px;font-weight:800;font-variant-numeric:tabular-nums;letter-spacing:.01em}
.azz-countdown-sm{gap:4px;margin:8px 0 0}
.azz-countdown-sm .azz-cd-label{display:none}
.azz-countdown-sm .azz-cd-box{padding:3px 6px;border-radius:6px}
.azz-countdown-sm .azz-cd-box b{font-size:12px}
.product-detail-info .azz-cd-box{padding:7px 12px;font-size:11px;border-radius:9px}
.product-detail-info .azz-cd-box b{font-size:19px}
.product-detail-info .azz-cd-label{font-size:12px}
