/* ═══════════════════════════════════════════════════════════
   MY925 — Premium Silver Jewellery
   Theme: Clean Light — CaratLane inspired
   ═══════════════════════════════════════════════════════════ */

@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=Inter:wght@300;400;500;600&display=swap');

:root {
  --black:        #111111;
  --black-mid:    #1a1a1a;
  --black-soft:   #333333;
  --silver:       #8B8B8B;
  --silver-light: #BBBBBB;
  --gold:         #C9A96E;
  --gold-light:   #E8D5B0;
  --white:        #FFFFFF;
  --off-white:    #FAFAF8;
  --gray-1:       #F5F5F3;
  --gray-2:       #EBEBEB;
  --gray-3:       #D4D4D4;
  --gray-4:       #9A9A9A;
  --text-dark:    #111111;
  --text-mid:     #444444;
  --text-light:   #777777;
  --text-muted:   #AAAAAA;
  --border:       #E8E8E8;
  --border-dark:  #CCCCCC;
  --card-shadow:  0 2px 16px rgba(0,0,0,0.06);
  --card-shadow-hover: 0 8px 32px rgba(0,0,0,0.12);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', sans-serif;

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --radius: 4px;
  --radius-lg: 8px;
  --radius-xl: 12px;
}

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

body {
  background-color: var(--white);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.8rem); }
h4 { font-size: 1.15rem; }

p { color: var(--text-mid); line-height: 1.7; }
a { color: var(--text-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

.text-gold   { color: var(--gold); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }

@media(max-width:960px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:640px) {
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; }
  .container { padding: 0 1.25rem; }
  .section { padding: 3rem 0; }
}

/* ── BACKGROUNDS ────────────────────────────────────────── */
.bg-white   { background: var(--white); }
.bg-off     { background: var(--off-white); }
.bg-gray    { background: var(--gray-1); }
.bg-dark    { background: var(--black); }

/* ── DIVIDERS ───────────────────────────────────────────── */
.divider {
  width: 40px; height: 2px;
  background: var(--gold);
  margin: 1rem auto;
}
.divider-left { margin: 1rem 0; }
.divider-full {
  height: 1px;
  background: var(--border);
  border: none; margin: 0;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.8rem 2rem;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  border: none; cursor: pointer; transition: all var(--transition);
  border-radius: 0;
  white-space: nowrap;
}
.btn-primary {
  background: var(--black);
  color: var(--white);
}
.btn-primary:hover { background: var(--black-soft); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: #b8944a; color: var(--white); transform: translateY(-1px); }

.btn-ghost { background: transparent; color: var(--text-mid); padding: 0.5rem 0; border-bottom: 1px solid var(--border-dark); border-radius:0; font-size:12px; letter-spacing:0.1em; text-transform:uppercase; }
.btn-ghost:hover { color: var(--black); border-color: var(--black); }

.btn-sm { padding: 0.55rem 1.25rem; font-size: 11px; }
.btn-lg { padding: 1rem 2.5rem; font-size: 12px; }
.btn-full { width: 100%; }

/* ── NAVBAR ─────────────────────────────────────────────── */
#navbar {
  background: var(--white);
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0.75rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  border-bottom-color: var(--border);
  padding: 0.5rem 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
}

.nav-logo img { height: 52px; width: auto; transition: height var(--transition); }
#navbar.scrolled .nav-logo img { height: 40px; }

.nav-links {
  display: flex; align-items: center; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-mid);
  position: relative; padding-bottom: 2px;
  transition: color var(--transition);
}
.nav-links li:not(.has-mega) { padding-bottom: 10px; }
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform var(--transition); transform-origin: left;
}
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 0.5rem; }
.nav-icon {
  font-size: 18px;
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  color: var(--text-mid); cursor: pointer; transition: color var(--transition);
  position: relative;
}
.nav-icon:hover { color: var(--black); }
.nav-badge {
  position: absolute; top: 2px; right: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--black); color: var(--white);
  font-size: 9px; font-weight: 600; display: flex; align-items: center; justify-content: center;
}

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; position: relative; z-index: 10000; }
.nav-hamburger span { width: 22px; height: 1.5px; background: var(--text-dark); transition: all var(--transition); }

@media(max-width:900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── MOBILE MENU ────────────────────────────────────────── */
#mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; height: 100dvh; z-index: 9999;
  background: var(--white);
  transform: translateX(100%); transition: transform 0.4s ease;
  display: flex; flex-direction: column;
  padding: 5rem 2rem 2rem;
  overflow-y: auto; gap: 0;
  border-left: 1px solid var(--border);
}
#mobile-menu.open { transform: translateX(0); }
#mobile-menu a {
  font-size: 13px !important; font-weight: 500;
  font-family: var(--font-body);
  color: var(--text-mid); text-decoration: none;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.08em; text-transform: uppercase;
  display: flex; align-items: center; gap: 0.5rem;
  transition: color var(--transition);
}
#mobile-menu a:hover { color: var(--black); }
.menu-close {
  position: absolute; top: 1.5rem; right: 2rem;
  font-size: 1.5rem; color: var(--text-mid); cursor: pointer;
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 0 60px;
  background: var(--off-white);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #fafaf8 0%, #ffffff 60%, #f5f3ef 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 600px; }
.hero h1 { margin-bottom: 1.25rem; color: var(--text-dark); }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p { font-size: 1rem; margin-bottom: 2rem; max-width: 480px; color: var(--text-mid); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── TICKER ─────────────────────────────────────────────── */
.ticker {
  background: var(--black);
  padding: 0.6rem 0; overflow: hidden;
}
.ticker-inner { display: flex; gap: 3rem; animation: tickerScroll 30s linear infinite; white-space: nowrap; }
.ticker-item {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 11px; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.ticker-item .rate { color: var(--gold); font-weight: 500; }
.ticker-dot { width: 3px; height: 3px; background: var(--gold); border-radius: 50%; }

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── CARDS ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--border-dark);
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
}

/* ── PRODUCT CARD ───────────────────────────────────────── */
.product-card {
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--border-dark);
}
.product-img {
  position: relative; width: 100%; aspect-ratio: 1/1;
  background: var(--gray-1); overflow: hidden; flex-shrink: 0;
}
.product-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block; transition: transform 0.6s ease;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-img-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-1);
  font-size: 2.5rem; color: var(--gray-3);
}
.product-badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  font-size: 10px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.25rem 0.6rem;
}
.badge-new { background: var(--black); color: var(--white); }
.badge-hot { background: var(--gold); color: var(--white); }

.product-actions {
  position: absolute; top: 0.75rem; right: 0.75rem;
  display: flex; flex-direction: column; gap: 0.4rem;
  opacity: 0; transform: translateX(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.action-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 14px; color: var(--text-mid);
  transition: all 0.2s; box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.action-btn:hover { color: var(--black); border-color: var(--black); }

.product-body { padding: 1rem 1rem 1.1rem; }
.product-cat {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.3rem;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 400;
  color: var(--text-dark); margin-bottom: 0.5rem; line-height: 1.3;
}
.product-price { font-size: 0.95rem; font-weight: 500; color: var(--text-dark); }
.product-add {
  display: block; width: 100%;
  margin-top: 0.75rem; padding: 0.6rem;
  background: transparent;
  border: 1px solid var(--border-dark);
  color: var(--text-mid);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s;
}
.product-add:hover { background: var(--black) !important; color: var(--white) !important; border-color: var(--black) !important; }

/* ── PRODUCT CARD old class compat ── */
.product-card-img {
  aspect-ratio: 4/5; overflow: hidden; position: relative;
  background: var(--gray-1);
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  padding: 0.2rem 0.6rem;
  background: var(--black); color: var(--white);
  font-size: 9px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
}
.product-card-body { padding: 1rem 1rem 1.1rem; }
.product-card-cat { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.product-card-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 400; color: var(--text-dark); margin-bottom: 0.5rem; }
.product-card-price { display: flex; align-items: center; gap: 0.75rem; }
.product-card-price .price { font-size: 1rem; font-weight: 600; color: var(--text-dark); }
.product-card-price .price-old { font-size: 0.85rem; text-decoration: line-through; color: var(--text-muted); }

/* ── CATEGORY CARD ──────────────────────────────────────── */
.cat-card {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  aspect-ratio: 3/4; cursor: pointer; background: var(--gray-1);
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.cat-card:hover img { transform: scale(1.06); }
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 1.25rem;
}
.cat-card-label { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--white); }
.cat-card-sub { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.7); }

/* ── SECTION HEADER ─────────────────────────────────────── */
.section-header { margin-bottom: 2.5rem; }
.section-header.center { text-align: center; }
.section-header.center .divider { margin: 1rem auto; }

/* ── FEATURE STRIP ──────────────────────────────────────── */
.features {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.feature-item { padding: 2rem 1.5rem; border-right: 1px solid var(--border); }
.feature-item:last-child { border-right: none; }
.feature-icon {
  width: 44px; height: 44px;
  background: var(--gray-1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 0 1rem; color: var(--gold); font-size: 1.1rem;
}
.feature-title { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; color: var(--text-dark); margin-bottom: 0.3rem; text-transform: uppercase; }
.feature-desc { font-size: 12px; color: var(--text-light); line-height: 1.6; }

@media(max-width:768px) {
  .features { grid-template-columns: repeat(2,1fr); }
  .feature-item:nth-child(2) { border-right: none; }
}
@media(max-width:480px) {
  .features { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
}

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testimonial-card { padding: 2rem; position: relative; background: var(--white); }
.testimonial-card::before {
  content: '"'; font-family: var(--font-display); font-size: 5rem;
  color: var(--gold-light); position: absolute; top: 0.5rem; left: 1.25rem; line-height: 1;
}
.testimonial-text { font-family: var(--font-display); font-size: 1.05rem; font-style: italic; color: var(--text-mid); margin-bottom: 1.25rem; padding-top: 1rem; }
.testimonial-author { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
.testimonial-stars { color: var(--gold); margin-bottom: 0.75rem; font-size: 12px; }

/* ── FORMS ──────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; margin-bottom: 0.4rem;
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-mid);
}
.form-control {
  width: 100%; padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  color: var(--text-dark); font-family: var(--font-body); font-size: 13px;
  outline: none; transition: border-color var(--transition);
}
.form-control:focus { border-color: var(--black); box-shadow: 0 0 0 3px rgba(0,0,0,0.05); }
.form-control::placeholder { color: var(--text-muted); }
select.form-control { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media(max-width:560px) { .form-row { grid-template-columns: 1fr; } }

/* ── NEWSLETTER ─────────────────────────────────────────── */
.newsletter { padding: 4rem 0; background: var(--black); }
.newsletter h2 { color: var(--white) !important; }
.newsletter p { color: rgba(255,255,255,0.6) !important; }
.newsletter .section-label { color: var(--gold) !important; }
.newsletter-form { display: flex; gap: 0; max-width: 480px; margin: 1.5rem auto 0; }
.newsletter-form .form-control { border-radius: 0; border-right: none; background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); color: var(--white); }
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.4); }
.newsletter .btn-primary { background: var(--gold); color: var(--white); border-radius: 0; }
.newsletter .btn-primary:hover { background: #b8944a; }

/* ── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb { padding: 1rem 0; display: flex; align-items: center; gap: 0.5rem; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.breadcrumb-item { color: var(--text-muted); }
.breadcrumb-item.active { color: var(--text-mid); }
.breadcrumb-sep { color: var(--border-dark); }

/* ── PAGE HERO ──────────────────────────────────────────── */
.page-hero {
  padding: 90px 0 30px;
  background: var(--off-white);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--border);
}

/* ── PRODUCT LISTING ────────────────────────────────────── */
.products-layout { display: grid; grid-template-columns: 240px 1fr; gap: 2.5rem; }
@media(max-width:900px) { .products-layout { grid-template-columns: 1fr; } }

.filter-sidebar { position: sticky; top: 90px; height: fit-content; }
.filter-group { margin-bottom: 1.5rem; }
.filter-title {
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-dark); margin-bottom: 0.75rem;
  padding-bottom: 0.6rem; border-bottom: 1px solid var(--border);
}
.filter-check { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.4rem; cursor: pointer; }
.filter-check input { accent-color: var(--black); }
.filter-check span { font-size: 12px; color: var(--text-mid); }
.price-range { width: 100%; accent-color: var(--black); }

/* ── PRODUCT DETAIL ─────────────────────────────────────── */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; }
@media(max-width:840px) { .product-detail-grid { grid-template-columns: 1fr; } }

.product-gallery-main { aspect-ratio: 1; overflow: hidden; border-radius: var(--radius-lg); background: var(--gray-1); }
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.product-thumbs { display: flex; gap: 0.6rem; margin-top: 0.6rem; }
.product-thumb {
  width: 68px; aspect-ratio: 1; overflow: hidden;
  border: 1px solid var(--border); border-radius: var(--radius);
  cursor: pointer; transition: border-color var(--transition); background: var(--gray-1);
}
.product-thumb.active { border-color: var(--black); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.price-table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; }
.price-table td { padding: 0.5rem 0; font-size: 12px; border-bottom: 1px solid var(--border); color: var(--text-mid); }
.price-table td:last-child { text-align: right; color: var(--text-dark); }
.price-table tr:last-child td { border-bottom: none; font-weight: 600; font-size: 1rem; color: var(--text-dark); }

.size-options { display: flex; gap: 0.4rem; flex-wrap: wrap; margin: 0.75rem 0; }
.size-btn {
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-dark); font-size: 12px; cursor: pointer;
  color: var(--text-mid); transition: all var(--transition); background: var(--white);
}
.size-btn.active, .size-btn:hover { border-color: var(--black); background: var(--black); color: var(--white); }

/* ── TABS ───────────────────────────────────────────────── */
.tab-nav { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 1.5rem; }
.tab-btn {
  padding: 0.75rem 1.25rem; font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted); cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: all var(--transition); background: none; border-top: none; border-left: none; border-right: none;
}
.tab-btn.active { color: var(--text-dark); border-bottom-color: var(--black); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── CART ───────────────────────────────────────────────── */
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; }
@media(max-width:840px) { .cart-layout { grid-template-columns: 1fr; } }

.cart-item {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 1rem; align-items: center;
  padding: 1.25rem; border-bottom: 1px solid var(--border);
}
.cart-item-img { width: 80px; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); }
.cart-item-name { font-family: var(--font-display); font-size: 1rem; color: var(--text-dark); margin-bottom: 0.25rem; }
.cart-item-meta { font-size: 11px; color: var(--text-muted); letter-spacing: 0.08em; }

.qty-control { display: flex; align-items: center; gap: 0.6rem; margin-top: 0.6rem; }
.qty-btn { width: 28px; height: 28px; border: 1px solid var(--border-dark); background: none; color: var(--text-mid); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.qty-btn:hover { border-color: var(--black); color: var(--black); }
.qty-num { font-size: 13px; min-width: 20px; text-align: left; color: var(--text-dark); }

.order-summary { padding: 1.5rem; background: var(--gray-1); }
.summary-row { display: flex; justify-content: space-between; padding: 0.6rem 0; font-size: 13px; border-bottom: 1px solid var(--border); color: var(--text-mid); }
.summary-row:last-child { border: none; font-weight: 600; font-size: 1rem; color: var(--text-dark); }

/* ── AUTH PAGES ─────────────────────────────────────────── */
.auth-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--off-white); padding: 2rem;
}
.auth-page { background: var(--off-white) !important; }
.auth-card {
  width: 100%; max-width: 420px;
  padding: 2.5rem; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-xl);
  box-shadow: var(--card-shadow);
}
.auth-logo { margin-bottom: 1.5rem; }
.auth-logo img { height: 52px; }

/* ── CHECKOUT STEPS ─────────────────────────────────────── */
.steps { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 2.5rem; }
.step { display: flex; align-items: center; gap: 0; }
.step-num {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--border-dark); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 500; color: var(--text-muted); transition: all var(--transition);
}
.step.active .step-num { border-color: var(--black); background: var(--black); color: var(--white); }
.step.done .step-num { border-color: var(--gold); background: var(--gold); color: var(--white); }
.step-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-left: 0.4rem; }
.step.active .step-label { color: var(--text-dark); }
.step-line { width: 50px; height: 1px; background: var(--border); }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid #222;
  padding: 4rem 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
@media(max-width:768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { height: 48px; margin-bottom: 1rem; }
.footer-brand p { font-size: 12px; line-height: 1.8; max-width: 260px; color: rgba(255,255,255,0.4) !important; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.social-link {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5) !important; font-size: 13px; transition: all var(--transition);
}
.social-link:hover { border-color: var(--gold) !important; color: var(--gold) !important; background: transparent !important; }

.footer-col h5 {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.9) !important; margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 12px; color: rgba(255,255,255,0.4) !important; transition: color var(--transition); }
.footer-col a:hover { color: var(--white) !important; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.25) !important; }
.footer-bottom a { color: rgba(255,255,255,0.25); font-size: 11px; }
.footer-bottom a:hover { color: var(--white); }

/* ── FLOATING WHATSAPP ──────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: all var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ── TOAST ──────────────────────────────────────────────── */
.toast-container { position: fixed; top: 5rem; right: 1.5rem; z-index: 2000; display: flex; flex-direction: column; gap: 0.6rem; }
.toast {
  padding: 0.85rem 1.1rem; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--border);
  color: var(--text-dark); font-size: 13px;
  min-width: 240px; max-width: 340px;
  animation: toastIn 0.3s ease, toastOut 0.3s ease 2.7s forwards;
  display: flex; align-items: center; gap: 0.6rem;
  box-shadow: var(--card-shadow);
}
.toast.success { border-left: 3px solid #2e7d52; }
.toast.error { border-left: 3px solid #c0392b; }
@keyframes toastIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes toastOut { from { opacity: 1; } to { opacity: 0; } }

/* ── ADMIN ──────────────────────────────────────────────── */
.admin-wrap { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 240px; background: var(--white);
  border-right: 1px solid var(--border);
  position: fixed; top: 0; bottom: 0;
  display: flex; flex-direction: column; z-index: 100; overflow-y: auto;
}
.admin-sidebar-logo { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border); }
.admin-sidebar-logo img { height: 36px; }
.admin-nav { padding: 1rem 0; flex: 1; }
.admin-nav-section {
  padding: 0.75rem 1.5rem 0.35rem;
  font-size: 9px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted);
}
.admin-nav-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 1.5rem; font-size: 12px; color: var(--text-mid);
  transition: all var(--transition); cursor: pointer; border-left: 2px solid transparent;
  text-decoration: none; letter-spacing: 0.02em;
}
.admin-nav-item:hover, .admin-nav-item.active {
  color: var(--text-dark); background: var(--gray-1);
  border-left-color: var(--black);
}
.admin-nav-icon { width: 16px; text-align: left; font-size: 14px; }
.admin-main { margin-left: 240px; flex: 1; display: flex; flex-direction: column; }
.admin-topbar {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 0.75rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 90;
}
.admin-page-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--text-dark); }
.admin-topbar-actions { display: flex; align-items: center; gap: 1rem; }
.admin-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--black); display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; color: var(--white); cursor: pointer;
}
.admin-content { padding: 2rem; flex: 1; background: var(--off-white); }

.kpi-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-bottom: 1.5rem; }
@media(max-width:1024px) { .kpi-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:560px) { .kpi-grid { grid-template-columns: 1fr; } }
.kpi-card { padding: 1.25rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.kpi-label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.4rem; }
.kpi-value { font-family: var(--font-display); font-size: 2rem; font-weight: 400; color: var(--text-dark); }
.kpi-change { font-size: 11px; margin-top: 0.25rem; }
.kpi-change.up { color: #2e7d52; }
.kpi-change.down { color: #c0392b; }

.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  padding: 0.75rem 1rem; text-align: left;
  font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); border-bottom: 1px solid var(--border);
  background: var(--gray-1);
}
.data-table td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--text-mid); }
.data-table tr:hover td { background: var(--gray-1); }

.badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.2rem 0.6rem; border-radius: 50px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
}
.badge-green { background: #e8f5ee; color: #2e7d52; }
.badge-blue  { background: var(--gray-1); color: var(--text-mid); }
.badge-yellow{ background: #fef9e7; color: #9a7d0a; }
.badge-red   { background: #fdf2f0; color: #c0392b; }

/* ── ANIMATIONS ─────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }

/* ── MISC ────────────────────────────────────────────────── */
.img-placeholder {
  width: 100%; height: 100%;
  background: var(--gray-1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-3); font-size: 2rem;
}
.tag {
  display: inline-block; padding: 0.2rem 0.65rem;
  border: 1px solid var(--border-dark); border-radius: 50px;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-mid);
}

/* ── MEGA MENU ──────────────────────────────────────────── */
.has-mega { position: relative; }
.mega-menu {
  display: none;
  position: fixed; top: 65px; left: 0; right: 0;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--black);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  z-index: 999; padding: 1.5rem 2rem;
  width: 860px; max-width: calc(100vw - 2rem);
}
.has-mega:hover .mega-menu, .mega-menu:hover { display: block; }
.has-mega { padding-bottom: 10px; }
.mega-menu::before { content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.mega-inner { display: grid; grid-template-columns: 150px 1fr 170px; gap: 2rem; align-items: start; }
.mega-header {
  grid-column: 1/-1; display: flex; align-items: baseline; gap: 1rem;
  border-bottom: 1px solid var(--border); padding-bottom: 0.75rem; margin-bottom: 0.5rem;
}
.mega-header-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; color: var(--text-dark); }
.mega-header-link { font-size: 11px; color: var(--gold); text-decoration: none; letter-spacing: 0.08em; }
.mega-col-title {
  font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-dark); margin-bottom: 0.6rem;
  padding-bottom: 0.35rem; border-bottom: 1px solid var(--border);
}
.mega-subcat-link {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 12.5px; color: var(--text-mid);
  text-decoration: none; padding: 5px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s, padding-left 0.15s;
}
.mega-subcat-link:hover { color: var(--black); padding-left: 4px; }
.mega-price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.mega-price-link {
  display: block; font-size: 11px; color: var(--text-mid);
  padding: 6px 10px; border: 1px solid var(--border);
  text-decoration: none; background: var(--gray-1); white-space: nowrap;
  transition: all 0.15s;
}
.mega-price-link:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.mega-featured-card {
  display: block; text-decoration: none;
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.mega-featured-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-2px); }
.mega-featured-img { width: 100%; aspect-ratio: 1; background: var(--gray-1); overflow: hidden; }
.mega-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.mega-featured-card:hover .mega-featured-img img { transform: scale(1.05); }
.mega-featured-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--gray-3); font-size: 2rem; }
.mega-featured-info { padding: 0.5rem 0.75rem; background: var(--white); }
.mega-featured-badge { font-size: 9px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.mega-featured-name { font-size: 12px; font-weight: 500; color: var(--text-dark); line-height: 1.3; }

/* ── MOBILE NAV ──────────────────────────────────────────── */
@media(max-width:900px) {
  .has-mega .mega-menu { display: none !important; }
  .mobile-nav-item { border-bottom: 1px solid var(--border); }
  .mobile-nav-header { display: flex; align-items: center; justify-content: space-between; padding: 0.6rem 0; cursor: pointer; }
  .mobile-nav-header a { font-size: 12px; font-weight: 500; color: var(--text-mid); text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; }
  .mobile-nav-arrow { font-size: 1.2rem; color: var(--text-muted); transition: transform 0.25s; display: inline-block; }
  .mobile-nav-arrow.open { transform: rotate(90deg); }
  .mobile-nav-sub { display: none; padding: 0.4rem 0 0.75rem 1rem; }
  .mobile-nav-sub.open { display: block; }
  .mobile-nav-sub-title { font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin: 0.6rem 0 0.3rem; }
  .mobile-sub-link { display: block; font-size: 12px; color: var(--text-mid); padding: 4px 0; text-decoration: none; border-bottom: 1px solid var(--border); }
  .mobile-sub-link:hover { color: var(--black); }
}

/* ── MOBILE FILTER DRAWER ──────────────────────────────── */
@media(max-width:900px) {
  #filter-toggle { display: flex !important; }
  .filter-sidebar {
    position: fixed !important; top: 0; left: 0; bottom: 0;
    height: 100% !important; width: 280px; z-index: 9997;
    transform: translateX(-100%); transition: transform 0.3s ease;
    overflow-y: scroll !important; background: var(--white); padding: 1.25rem; padding-bottom: 4rem;
    box-shadow: 4px 0 20px rgba(0,0,0,0.1);
  }
  #filter-overlay { z-index: 9996 !important; }
  .filter-sidebar.open { transform: translateX(0); }
  .products-layout { grid-template-columns: 1fr !important; }
  .grid-3 { grid-template-columns: repeat(2,1fr) !important; gap: 0.75rem !important; }
}

@media(max-width:900px) {
  .desktop-only { display: none !important; }
  .nav-inner { padding: 0 1rem; }
  .nav-logo img { height: 40px; }
}

@media(max-width:900px) {
  .product-detail-main { grid-template-columns: 1fr !important; }
  .product-detail-main > div:first-child { display: flex !important; flex-direction: column-reverse; }
  .product-variants-grid { grid-template-columns: 1fr !important; }
  .product-related-grid { grid-template-columns: repeat(2,1fr) !important; }
  .size-options { flex-wrap: wrap !important; }
  .product-action-btns { flex-direction: column !important; }
  .product-action-btns a, .product-action-btns button { width: 100% !important; }
  .product-gallery-sticky { position: static !important; top: auto !important; }
  .product-thumb-list { display: flex !important; flex-direction: row !important; overflow-x: auto !important; gap: 0.5rem !important; }
  .product-thumb-list > div { flex-shrink: 0 !important; width: 60px !important; height: 60px !important; }
  .whatsapp-float { display: none !important; }
  .wishlist-grid { grid-template-columns: repeat(2,1fr) !important; gap: 0.75rem !important; }
  .profile-layout { grid-template-columns: 1fr !important; }
}

@media(max-width:768px) {
  .product-grid { grid-template-columns: repeat(2,1fr) !important; gap: 0.75rem; }
  .product-body { padding: 0.6rem; }
  .product-cat { font-size: 9px; margin-bottom: 0.2rem; }
  .product-name { font-size: 0.85rem; margin-bottom: 0.3rem; line-height: 1.2; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .product-price { font-size: 0.82rem; }
  .product-add { margin-top: 0.4rem; padding: 0.4rem; font-size: 9px; }
}

/* ── FONT ICON FIX ──────────────────────────────────────── */
*, *::before, *::after { font-family: inherit; }
html, body { font-family: var(--font-body); }
.fa,.fas,.far,.fal,.fab,.fa-solid,.fa-regular,.fa-brands,
[class^="fa-"],[class*=" fa-"] {
  font-family: "Font Awesome 6 Free","Font Awesome 6 Brands","FontAwesome" !important;
}

/* ── MOBILE TABBAR ──────────────────────────────────────── */
.tab-active i, .tab-active span { color: var(--black) !important; }
.tab-item:hover i, .tab-item:hover span { color: var(--black); }

/* ── SEARCH OVERLAY ─────────────────────────────────────── */
#search-overlay > div { background: var(--white) !important; border: 1px solid var(--border) !important; box-shadow: 0 16px 40px rgba(0,0,0,0.12) !important; }
#search-input { background: transparent !important; color: var(--text-dark) !important; }

/* ── CHECKOUT BTN ───────────────────────────────────────── */
.checkout-btn { background: var(--black) !important; color: var(--white) !important; }
.checkout-btn:hover { background: var(--black-soft) !important; color: var(--white) !important; }

/* ── PRODUCT ADD OVERRIDE ───────────────────────────────── */
.product-add {
  background: transparent !important;
  color: var(--text-mid) !important;
  border-color: var(--border-dark) !important;
}
.product-add:hover {
  background: var(--black) !important;
  color: var(--white) !important;
  border-color: var(--black) !important;
}

/* ── BANNER & TICKER ────────────────────────────────────── */
.banner-slider { max-width: 100vw !important; overflow: hidden !important; }
.banner-track { max-width: 100vw !important; }
.banner-slide { max-width: 100vw !important; box-sizing: border-box !important; }
.ticker { overflow: hidden !important; position: relative !important; max-width: 100% !important; }
.ticker-track { display: flex; width: max-content; }

/* ── VARIANT CARD ───────────────────────────────────────── */
.variant-card {
  border: 1px solid var(--border-dark) !important;
  background: var(--white) !important;
  border-radius: var(--radius-lg) !important;
  cursor: pointer;
  transition: all var(--transition);
}
.variant-card:hover { border-color: var(--black) !important; }
.variant-card.selected { border-color: var(--black) !important; background: var(--gray-1) !important; }

/* ── MOBILE TABBAR BOTTOM ───────────────────────────────── */
#mobile-tabbar {
  background: var(--white) !important;
  border-top: 1px solid var(--border) !important;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.06) !important;
}
