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

/* ===== VARIABLES ===== */
:root {
  --bg: #0c0c0c;
  --bg2: #141414;
  --bg3: #1c1c1c;
  --card: #181818;
  --border: #2a2a2a;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #a07830;
  --text: #f0ece0;
  --text-muted: #888070;
  --text-dim: #555;
  --white: #ffffff;
  --red: #c0392b;
  --nav-h: 80px;
  --topbar-h: 40px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 30px rgba(0,0,0,0.5);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.2);
  --radius: 8px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ===== TOP BAR ===== */
.topbar {
  height: var(--topbar-h);
  background: #080808;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  font-size: 13px;
  color: var(--text-muted);
}
.topbar-left { display: flex; align-items: center; gap: 20px; }
.topbar-left a { color: var(--text-muted); transition: color var(--transition); display: flex; align-items: center; gap: 6px; }
.topbar-left a:hover { color: var(--gold); }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.currency-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}
.currency-switcher span { color: var(--text-dim); }
.currency-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 3px 9px;
  border-radius: 4px;
  font-size: 11px;
  font-family: var(--font-body);
  transition: all var(--transition);
  cursor: pointer;
}
.currency-btn.active, .currency-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* ===== NAVBAR ===== */
.navbar {
  height: var(--nav-h);
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.6); }
.nav-logo img { height: 48px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-item:hover .nav-link { color: var(--gold); background: rgba(201,168,76,0.06); }
.nav-link .material-icons { font-size: 16px; transition: transform var(--transition); }
.nav-item:hover .nav-link .material-icons { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.nav-item:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--text-muted);
  transition: all var(--transition);
  border-left: 2px solid transparent;
}
.dropdown a:hover { color: var(--gold); background: rgba(201,168,76,0.05); border-left-color: var(--gold); }

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-icon-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
}
.nav-icon-btn:hover { color: var(--gold); background: rgba(201,168,76,0.08); }
.nav-icon-btn .material-icons { font-size: 22px; }
.cart-badge {
  position: absolute; top: 4px; right: 4px;
  width: 16px; height: 16px;
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg2);
  z-index: 2000;
  padding: 20px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform var(--transition);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.mobile-menu-header img { height: 40px; }
.mobile-close { color: var(--text); font-size: 28px; padding: 4px; }
.mobile-nav-item { border-bottom: 1px solid var(--border); }
.mobile-nav-link {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0;
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
}
.mobile-sub { display: none; padding: 0 0 12px 16px; }
.mobile-sub.open { display: block; }
.mobile-sub a { display: block; padding: 8px 0; color: var(--text-muted); font-size: 14px; }
.mobile-sub a:hover { color: var(--gold); }

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  height: calc(100vh - var(--nav-h) - var(--topbar-h));
  min-height: 500px;
  max-height: 750px;
  overflow: hidden;
}
.hero-slides { display: flex; height: 100%; transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1); }
.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s linear;
}
.hero-slide.active img { transform: scale(1.06); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}
.hero-content {
  position: absolute;
  left: 8%;
  bottom: 15%;
  max-width: 580px;
}
.hero-tag {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.2s;
}
.hero-slide.active .hero-tag { opacity: 1; transform: translateY(0); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.35s;
}
.hero-slide.active .hero-title { opacity: 1; transform: translateY(0); }
.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.5s;
}
.hero-slide.active .hero-subtitle { opacity: 1; transform: translateY(0); }
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #000;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 40px;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.65s, transform 0.6s ease 0.65s, background 0.3s, box-shadow 0.3s;
}
.hero-slide.active .hero-btn { opacity: 1; transform: translateY(0); }
.hero-btn:hover { background: var(--gold-light); box-shadow: var(--shadow-gold); transform: translateY(-2px) !important; }

/* Hero Controls */
.hero-prev, .hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  z-index: 10;
  transition: all var(--transition);
}
.hero-prev { left: 24px; }
.hero-next { right: 24px; }
.hero-prev:hover, .hero-next:hover { background: var(--gold); border-color: var(--gold); color: #000; }
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  transition: all var(--transition);
  cursor: pointer;
}
.hero-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ===== SECTION BASE ===== */
.section { padding: 80px 40px; }
.section-sm { padding: 60px 40px; }
.container { max-width: 1300px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.section-subtitle { color: var(--text-muted); font-size: 15px; margin-top: 12px; }
.gold-line {
  width: 50px; height: 2px;
  background: var(--gold);
  margin: 16px auto 0;
}

/* ===== CATEGORIES STRIP ===== */
.categories-strip {
  padding: 40px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.categories-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.categories-grid::-webkit-scrollbar { display: none; }
.cat-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 90px;
  padding: 16px 12px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.cat-chip .material-icons { font-size: 26px; color: var(--text-dim); transition: color var(--transition); }
.cat-chip:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.06); }
.cat-chip:hover .material-icons { color: var(--gold); }

/* ===== PRODUCT CARDS ===== */
.products-carousel-wrapper { position: relative; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}
.product-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg3);
}
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.product-badge.sale { background: var(--red); color: white; }
.product-actions {
  position: absolute; top: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--transition);
}
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.product-action-btn {
  width: 36px; height: 36px;
  background: rgba(20,20,20,0.9);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.product-action-btn:hover { background: var(--gold); border-color: var(--gold); color: #000; }
.product-action-btn .material-icons { font-size: 18px; }
.product-info { padding: 16px; }
.product-category { font-size: 11px; color: var(--gold); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.product-name { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 8px; line-height: 1.3; }
.product-price { font-size: 18px; font-weight: 600; color: var(--gold); }
.product-price-old { font-size: 13px; color: var(--text-dim); text-decoration: line-through; margin-left: 8px; }
.product-add-btn {
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.product-add-btn:hover { background: var(--gold); color: #000; }

/* ===== BANNER STRIP ===== */
.banner-strip {
  margin: 0 40px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 320px;
}
.banner-strip img { width: 100%; height: 100%; object-fit: cover; }
.banner-strip-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  display: flex; align-items: center;
  padding: 60px;
}
.banner-strip-content {}
.banner-strip-tag { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.banner-strip-title { font-family: var(--font-display); font-size: 36px; color: white; font-weight: 700; margin-bottom: 16px; line-height: 1.2; }
.banner-strip-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: #000;
  font-weight: 600;
  font-size: 13px;
  padding: 12px 24px;
  border-radius: 30px;
  transition: all var(--transition);
}
.banner-strip-btn:hover { background: var(--gold-light); transform: translateX(4px); }

/* ===== FEATURES ===== */
.features { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.feature-item {
  background: var(--bg2);
  padding: 36px 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background var(--transition);
}
.feature-item:hover { background: var(--bg3); }
.feature-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-icon .material-icons { color: var(--gold); font-size: 24px; }
.feature-title { font-weight: 600; font-size: 15px; color: var(--text); margin-bottom: 4px; }
.feature-desc { font-size: 13px; color: var(--text-muted); }

/* ===== ABOUT SNIPPET ===== */
.about-snippet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.about-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--gold);
  color: #000;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
}
.about-img-badge span { font-size: 32px; font-weight: 700; display: block; line-height: 1; }
.about-text .section-tag { text-align: left; display: block; }
.about-text .section-title { text-align: left; }
.about-text .gold-line { margin: 16px 0 0; }
.about-text p { color: var(--text-muted); font-size: 15px; margin-top: 20px; line-height: 1.8; }
.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat-num { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.about-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 28px;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  transition: gap var(--transition);
}
.about-link:hover { gap: 12px; }

/* ===== NEWSLETTER ===== */
.newsletter {
  background: linear-gradient(135deg, #111 0%, #1a1500 50%, #111 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.newsletter .section-title { color: var(--text); }
.newsletter p { color: var(--text-muted); font-size: 15px; margin-top: 12px; margin-bottom: 32px; }
.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.3);
  background: rgba(255,255,255,0.04);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 24px;
  color: var(--text);
  font-size: 14px;
  outline: none;
}
.newsletter-form input::placeholder { color: var(--text-dim); }
.newsletter-form button {
  background: var(--gold);
  color: #000;
  font-weight: 600;
  font-size: 13px;
  padding: 14px 28px;
  transition: background var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gold-light); }

/* ===== FOOTER ===== */
footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 60px 40px 0;
}
.footer-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
}
.footer-brand img { height: 44px; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); 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 var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }
.social-btn .material-icons { font-size: 18px; }
.footer-col-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--text-muted); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-muted);
  margin-bottom: 14px;
}
.footer-contact-item .material-icons { font-size: 17px; color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-dim);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: #000;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 8px;
  transition: all var(--transition);
  border: none;
}
.btn-primary:hover { background: var(--gold-light); box-shadow: var(--shadow-gold); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  padding: 13px 27px;
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.5);
  transition: all var(--transition);
}
.btn-outline:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); }

/* ===== PAGE HERO ===== */
.page-hero {
  height: 260px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
  padding: 0 60px;
}
.page-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--text-dim); }
.page-hero-title { font-family: var(--font-display); font-size: 42px; font-weight: 700; color: white; }

/* ===== CATEGORY PAGE ===== */
.category-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 40px;
}
.sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  height: fit-content;
}
.sidebar-section { margin-bottom: 32px; }
.sidebar-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.filter-list li { margin-bottom: 10px; }
.filter-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
}
.filter-label:hover { color: var(--text); }
.filter-label input[type="checkbox"] { accent-color: var(--gold); width: 15px; height: 15px; }
.price-range { margin-top: 8px; }
.price-range input[type="range"] {
  width: 100%;
  accent-color: var(--gold);
  background: var(--border);
}
.price-range-labels { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-muted); margin-top: 8px; }
.category-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.category-count { font-size: 14px; color: var(--text-muted); }
.sort-select {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-family: var(--font-body);
  outline: none;
  cursor: pointer;
}
.sort-select:focus { border-color: var(--gold); }
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ===== PRODUCT PAGE ===== */
.product-detail {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-gallery {}
.gallery-main {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg3);
  aspect-ratio: 1;
  margin-bottom: 12px;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 10px; }
.gallery-thumb {
  width: 80px; height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color var(--transition);
}
.gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-info {}
.product-detail-cat { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.product-detail-name { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--text); line-height: 1.2; margin-bottom: 16px; }
.product-detail-price { font-size: 32px; font-weight: 700; color: var(--gold); margin-bottom: 20px; }
.product-detail-desc { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; }
.product-meta { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.product-meta-row { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.product-meta-label { color: var(--text-dim); min-width: 100px; }
.product-meta-val { color: var(--text); font-weight: 500; }
.qty-control {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
  margin-bottom: 20px;
}
.qty-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  background: var(--bg3);
  transition: all var(--transition);
  font-size: 20px;
}
.qty-btn:hover { color: var(--gold); background: rgba(201,168,76,0.1); }
.qty-num { width: 50px; text-align: center; color: var(--text); font-size: 15px; font-weight: 600; background: transparent; }
.product-detail-actions { display: flex; gap: 12px; margin-bottom: 28px; }
.product-detail-actions .btn-primary { flex: 1; justify-content: center; padding: 15px; }
.wishlist-btn {
  width: 50px; height: 50px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.wishlist-btn:hover { border-color: var(--red); color: var(--red); }
.product-tabs { margin-top: 40px; border-top: 1px solid var(--border); padding-top: 28px; }
.tabs-nav { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.tab-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--transition);
}
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-content p { font-size: 15px; color: var(--text-muted); line-height: 1.8; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table td { padding: 12px 16px; font-size: 14px; }
.spec-table td:first-child { color: var(--text-muted); width: 40%; }
.spec-table td:last-child { color: var(--text); font-weight: 500; }

/* ===== ABOUT PAGE ===== */
.about-hero-content { max-width: 600px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; text-align: center; padding-bottom: 24px; transition: all var(--transition); }
.team-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.team-img { aspect-ratio: 1; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--text); margin: 16px 16px 6px; }
.team-role { font-size: 13px; color: var(--gold); font-weight: 600; letter-spacing: 1px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 32px; transition: all var(--transition); }
.value-card:hover { border-color: rgba(201,168,76,0.3); }
.value-icon { width: 52px; height: 52px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.value-icon .material-icons { color: var(--gold); font-size: 24px; }
.value-title { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.value-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.timeline { max-width: 700px; margin: 0 auto; }
.timeline-item { display: flex; gap: 24px; margin-bottom: 40px; position: relative; }
.timeline-item::before { content: ''; position: absolute; left: 19px; top: 40px; bottom: -40px; width: 1px; background: var(--border); }
.timeline-item:last-child::before { display: none; }
.timeline-dot { width: 40px; height: 40px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 700; font-size: 13px; color: #000; }
.timeline-year { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--gold); margin-bottom: 6px; }
.timeline-text { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ===== CONTACT PAGE ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; max-width: 1300px; margin: 0 auto; padding: 60px 40px; }
.contact-info {}
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 32px; padding: 24px; background: var(--card); border: 1px solid var(--border); border-radius: 12px; transition: border-color var(--transition); }
.contact-info-item:hover { border-color: rgba(201,168,76,0.3); }
.contact-icon { width: 48px; height: 48px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon .material-icons { color: var(--gold); font-size: 22px; }
.contact-info-title { font-weight: 600; color: var(--text); margin-bottom: 6px; }
.contact-info-val { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.contact-form-wrap { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 40px; }
.form-title { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.form-subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; letter-spacing: 0.5px; }
.form-control {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-body);
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--gold); background: rgba(201,168,76,0.04); }
.form-control::placeholder { color: var(--text-dim); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 14px; font-size: 15px; }

/* ===== MAP ===== */
.map-section { padding: 0 40px 60px; max-width: 1380px; margin: 0 auto; }
.map-wrap { border-radius: 16px; overflow: hidden; height: 350px; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: invert(90%) hue-rotate(180deg); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--gold);
  color: #000;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: all var(--transition);
  z-index: 500;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--bg3);
  border: 1px solid var(--gold);
  color: var(--text);
  padding: 12px 24px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0; pointer-events: none;
  transition: all var(--transition);
  z-index: 999;
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .about-snippet { gap: 50px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .topbar { padding: 0 20px; }
  .topbar-left .topbar-extra { display: none; }
  .navbar { padding: 0 20px; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .section { padding: 60px 20px; }
  .section-sm { padding: 40px 20px; }
  .about-snippet { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .banner-strip { margin: 0 20px; }
  .banner-strip-overlay { padding: 30px; }
  .banner-strip-title { font-size: 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; padding-bottom: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  footer { padding: 40px 20px 0; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .categories-strip { padding: 24px 20px; }
  .category-layout { grid-template-columns: 1fr; padding: 40px 20px; }
  .sidebar { position: static; }
  .product-detail { grid-template-columns: 1fr; padding: 40px 20px; }
  .contact-layout { grid-template-columns: 1fr; padding: 40px 20px; }
  .map-section { padding: 0 20px 40px; }
  .team-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero { height: 200px; padding: 0 30px; }
  .page-hero-title { font-size: 32px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .topbar { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { left: 5%; right: 5%; }
  .hero-title { font-size: 28px; }
  .hero-btn { padding: 11px 22px; font-size: 13px; }
  .features-grid { grid-template-columns: 1fr; }
  .team-grid, .values-grid { grid-template-columns: 1fr; }
  .about-stats { flex-wrap: wrap; gap: 20px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail-actions { flex-wrap: wrap; }
  .product-detail-actions .btn-primary { min-width: 100%; }
}
