/* ═══════════════════════════════════════════════════════════════════════════
   Rinky Jewellers v2 — Main Stylesheet
   Theme: Luxury Art-Deco Gold · Obsidian Black · Warm Ivory
   Fonts: Playfair Display (serif display) + DM Sans (body)
   ═══════════════════════════════════════════════════════════════════════════ */

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

/* ── Variables ── */
:root {
  --gold: #C8A96E;
  --gold-light: #E2C98A;
  --gold-dark: #A07840;
  --gold-muted: rgba(200, 169, 110, 0.15);
  --black: #0A0806;
  --dark: #13110D;
  --dark-2: #1E1B16;
  --dark-3: #2A2620;
  --ivory: #FBF8F2;
  --ivory-2: #F2ECE0;
  --ivory-3: #E8E0D0;
  --text: #3C3628;
  --text-muted: #7A7060;
  --white: #FFFFFF;
  --red: #C0392B;
  --green: #27ae60;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body: 'DM Sans', sans-serif;

  --nav-h: 76px;
  --r: 6px;
  --shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
  --shadow-g: 0 6px 28px rgba(200, 169, 110, 0.28);
  --ease: cubic-bezier(.4, 0, .2, 1);
  --t: 0.28s var(--ease);
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--ivory);
  overflow-x: hidden;
  line-height: 1.7
}

img {
  display: block;
  max-width: 100%
}

a {
  text-decoration: none;
  color: inherit
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--ff-body)
}

ul {
  list-style: none
}

input,
textarea,
select {
  font-family: var(--ff-body)
}

/* ── Container ── */
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 28px
}

/* ── Typography ── */
h1,
h2,
h3,
h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark)
}

em {
  font-style: italic;
  color: var(--gold-dark)
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: var(--t);
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--black)
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-g)
}

.btn-dark {
  background: var(--dark);
  color: var(--white)
}

.btn-dark:hover {
  background: var(--dark-2)
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold)
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black)
}

.btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .5);
  color: var(--white)
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--white)
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 8px 16px
}

.btn-ghost:hover {
  color: var(--gold)
}

.btn-sm {
  padding: 9px 20px;
  font-size: 12px
}

.btn-lg {
  padding: 16px 44px;
  font-size: 14px
}

.btn-full {
  width: 100%;
  justify-content: center
}

.btn-danger {
  background: var(--red);
  color: var(--white)
}

.btn-danger:hover {
  background: #e74c3c
}

/* ── Ornaments ── */
.ornament {
  color: var(--gold);
  letter-spacing: 10px;
  font-size: 13px
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold)
}

.section-title {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 400
}

.section-head {
  text-align: center;
  margin-bottom: 64px
}

.section-head .ornament {
  display: block;
  margin-top: 10px
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: rgba(10, 8, 6, .96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200, 169, 110, .18);
  z-index: 1000;
  transition: box-shadow var(--t);
}

.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, .35)
}

.nav-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px
}

.brand-logo-wrap {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(200, 169, 110, 0.45));
}

.loader-logo-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  animation: logo-float 2.5s ease-in-out infinite;
  filter: drop-shadow(0 4px 16px rgba(200, 169, 110, 0.6));
}

.footer-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  vertical-align: middle;
  filter: drop-shadow(0 2px 6px rgba(200, 169, 110, 0.4));
}

@keyframes logo-float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1.06);
  }
}

.brand-text-main {
  font-family: var(--ff-display);
  font-size: 20px;
  color: var(--white);
  letter-spacing: .03em
}

.brand-text-sub {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: -3px
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px
}

.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  padding: 6px 0;
  position: relative;
  transition: color var(--t);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--t);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold)
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px
}

.nav-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  font-size: 16px;
  transition: var(--t);
  position: relative;
}

.nav-icon-btn:hover {
  color: var(--gold);
  background: var(--gold-muted)
}

.nav-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--gold);
  color: var(--black);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

#authBtnGroup {
  display: flex;
  gap: 8px;
  align-items: center
}

#userMenuBtn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .85);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--gold-muted);
  border: 1px solid rgba(200, 169, 110, .3);
  transition: var(--t);
}

#userMenuBtn:hover {
  background: rgba(200, 169, 110, .25)
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: var(--dark-2);
  border: 1px solid rgba(200, 169, 110, .2);
  border-radius: var(--r);
  min-width: 180px;
  padding: 8px 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .2s var(--ease);
  pointer-events: none;
}

.user-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all
}

.user-dropdown a,
.user-dropdown button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, .75);
  transition: var(--t);
  background: none;
  text-align: left;
}

.user-dropdown a:hover,
.user-dropdown button:hover {
  color: var(--gold);
  background: var(--gold-muted)
}

.user-dropdown .separator {
  height: 1px;
  background: rgba(255, 255, 255, .07);
  margin: 6px 0
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  transition: var(--t)
}

/* ── Mobile Nav ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--dark);
  border-bottom: 1px solid rgba(200, 169, 110, .15);
  z-index: 999;
  transform: translateY(-100%);
  transition: transform .3s var(--ease);
}

.mobile-nav.open {
  transform: translateY(0)
}

.mobile-nav a {
  display: block;
  padding: 15px 28px;
  font-size: 15px;
  color: rgba(255, 255, 255, .8);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  transition: var(--t);
}

.mobile-nav a:hover {
  color: var(--gold);
  padding-left: 36px
}

/* ── Page hero ── */
.page-hero {
  background: var(--dark);
  padding: calc(var(--nav-h) + 56px) 0 56px;
  text-align: center;
  border-bottom: 1px solid rgba(200, 169, 110, .15);
}

.page-hero h1 {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 169, 110, .12) 0%, transparent 60%, rgba(0, 0, 0, .4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  padding: 60px 28px;
  animation: fadeUp .9s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px
}

.hero-title {
  font-size: clamp(60px, 10vw, 128px);
  font-weight: 400;
  color: var(--white);
  line-height: .95;
  margin-bottom: 28px;
  letter-spacing: -.02em;
}

.hero-title em {
  color: var(--gold-light);
  display: block;
  font-style: italic
}

.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .6);
  font-weight: 300;
  margin-bottom: 52px;
  letter-spacing: .06em
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .35);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: line-pulse 2s ease infinite
}

@keyframes line-pulse {

  0%,
  100% {
    opacity: .8
  }

  50% {
    opacity: .2
  }
}

/* ── Categories ── */
.cat-section {
  padding: 88px 0;
  background: var(--ivory)
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.cat-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  cursor: pointer;
}

.cat-card-img {
  aspect-ratio: 3/4;
  overflow: hidden
}

.cat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease)
}

.cat-card:hover .cat-card-img img {
  transform: scale(1.07)
}

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .72) 0%, transparent 55%);
}

.cat-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
}

.cat-card-icon {
  font-size: 22px;
  display: block;
  margin-bottom: 6px
}

.cat-card-name {
  font-family: var(--ff-display);
  font-size: 24px;
  color: var(--white);
  display: block;
  letter-spacing: .02em;
}

.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1.5px solid transparent;
  border-radius: var(--r);
  transition: border-color var(--t);
}

.cat-card:hover::after {
  border-color: var(--gold)
}

/* ── Products Grid ── */
.products-section {
  padding: 88px 0;
  background: var(--ivory-2)
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px
}

.prod-card {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
  transition: var(--t);
  display: flex;
  flex-direction: column;
}

.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow)
}

.prod-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden
}

.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease)
}

.prod-card:hover .prod-img img {
  transform: scale(1.06)
}

.prod-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .42);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--t);
}

.prod-card:hover .prod-img-overlay {
  opacity: 1
}

.prod-view-btn {
  padding: 10px 26px;
  border: 1.5px solid var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: var(--t);
}

.prod-view-btn:hover {
  background: var(--gold);
  color: var(--black)
}

.badge-feat {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
}

.badge-oos {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, .7);
  color: rgba(255, 255, 255, .8);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 2px;
}

.wish-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  transition: var(--t);
  z-index: 2;
}

.wish-btn:hover,
.wish-btn.active {
  color: #e74c3c;
  background: var(--white)
}

.wish-btn.active i {
  font-weight: 900
}

.prod-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.prod-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark)
}

.prod-name {
  font-family: var(--ff-display);
  font-size: 20px;
  margin: 6px 0;
  color: var(--dark);
  flex: 1
}

.prod-price {
  font-size: 19px;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 14px
}

.prod-mat {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px
}

.prod-hallmark {
  font-size: 11px;
  color: var(--gold-dark);
  font-weight: 600;
  margin-top: -6px;
  margin-bottom: 12px
}

/* ── Filter Bar ── */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  align-items: center
}

.filter-chip {
  padding: 8px 20px;
  border: 1.5px solid var(--ivory-3);
  background: var(--white);
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--t);
}

.filter-chip:hover,
.filter-chip.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black)
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  background: var(--white);
  border: 1.5px solid var(--ivory-3);
  border-radius: var(--r);
  padding: 10px 16px;
  max-width: 440px;
}

.search-bar i {
  color: var(--gold);
  font-size: 14px
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  background: transparent;
  color: var(--text);
}

#results-count {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px
}

/* ── Features ── */
.features-section {
  padding: 88px 0;
  background: var(--dark)
}

.features-section .section-title {
  color: var(--ivory)
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px
}

.feat-card {
  padding: 40px 28px;
  text-align: center;
  border: 1px solid rgba(200, 169, 110, .18);
  border-radius: var(--r);
  transition: var(--t);
}

.feat-card:hover {
  border-color: var(--gold);
  background: var(--gold-muted);
  transform: translateY(-4px)
}

.feat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
}

.feat-card h3 {
  font-family: var(--ff-display);
  font-size: 20px;
  color: var(--ivory);
  margin-bottom: 10px
}

.feat-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.8
}

/* ── Testimonial ── */
.testi {
  background: var(--gold);
  padding: 64px 0;
  text-align: center
}

.testi blockquote {
  font-family: var(--ff-display);
  font-size: clamp(20px, 3vw, 30px);
  font-style: italic;
  color: var(--black);
  max-width: 780px;
  margin: 0 auto;
}

.testi cite {
  display: block;
  font-family: var(--ff-body);
  font-style: normal;
  font-size: 13px;
  margin-top: 18px;
  opacity: .65;
  letter-spacing: .1em
}

/* ── Auth Pages ── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  padding-top: var(--nav-h);
  padding-bottom: 48px;
}

.auth-card {
  background: var(--dark-2);
  border: 1px solid rgba(200, 169, 110, .2);
  border-radius: 12px;
  padding: 56px 48px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .4);
  animation: fadeUp .5s ease both;
}

.auth-card h2 {
  font-size: 38px;
  color: var(--white);
  text-align: center;
  margin-bottom: 6px
}

.auth-card .eyebrow {
  display: block;
  text-align: center;
  margin-bottom: 36px
}

.auth-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  margin-bottom: 32px
}

.auth-tab {
  flex: 1;
  padding: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: var(--t);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.auth-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold)
}

.auth-form {
  display: none
}

.auth-form.active {
  display: block
}

/* ── Forms ── */
.form-group {
  margin-bottom: 20px
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 8px;
}

.form-label.dark {
  color: var(--text)
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, .06);
  border: 1.5px solid rgba(255, 255, 255, .12);
  border-radius: var(--r);
  font-size: 14px;
  color: var(--white);
  transition: var(--t);
  outline: none;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, .25)
}

.form-input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, .09);
  box-shadow: 0 0 0 3px rgba(200, 169, 110, .12)
}

.form-input.light {
  background: var(--ivory);
  border-color: var(--ivory-3);
  color: var(--text)
}

.form-input.light::placeholder {
  color: var(--text-muted)
}

.form-input.light:focus {
  border-color: var(--gold);
  background: var(--white)
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.form-hint {
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
  margin-top: 6px
}

.form-hint.dark {
  color: var(--text-muted)
}

.password-wrap {
  position: relative
}

.password-wrap .form-input {
  padding-right: 44px
}

.toggle-pwd {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, .35);
  font-size: 15px;
  cursor: pointer;
  transition: var(--t);
}

.toggle-pwd:hover {
  color: var(--gold)
}

.toggle-pwd.light {
  color: var(--text-muted)
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0
}

.checkbox-row input {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  cursor: pointer
}

.checkbox-row label {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  cursor: pointer
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, .25);
  margin: 20px 0;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .1)
}

.auth-switch {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  margin-top: 24px
}

.auth-switch a {
  color: var(--gold);
  font-weight: 600
}

/* ── Alert/Toast ── */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  padding: 14px 22px;
  border-radius: var(--r);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(80px);
  opacity: 0;
  transition: all .35s var(--ease);
  z-index: 9999;
  max-width: 340px;
  box-shadow: var(--shadow);
}

.toast.show {
  transform: translateY(0);
  opacity: 1
}

.toast-success {
  background: #1e4d2b;
  color: #7af5a0;
  border: 1px solid #27ae60
}

.toast-error {
  background: #4d1e1e;
  color: #f5a0a0;
  border: 1px solid #c0392b
}

.toast-info {
  background: #1e2d4d;
  color: #a0c4f5;
  border: 1px solid #2980b9
}

.form-alert {
  padding: 12px 16px;
  border-radius: var(--r);
  font-size: 13px;
  margin-bottom: 20px;
  display: none;
  align-items: center;
  gap: 8px;
}

.form-alert.show {
  display: flex
}

.form-alert-error {
  background: #4d1e1e;
  color: #f5a0a0;
  border: 1px solid rgba(192, 57, 43, .4)
}

.form-alert-success {
  background: #1e4d2b;
  color: #7af5a0;
  border: 1px solid rgba(39, 174, 96, .4)
}

/* ── Product Detail ── */
.breadcrumb {
  background: var(--dark);
  padding: calc(var(--nav-h) + 18px) 0 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .04em;
}

.breadcrumb a {
  color: var(--gold)
}

.breadcrumb span {
  margin: 0 8px
}

.detail-section {
  padding: 60px 0 88px;
  background: var(--ivory)
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start
}

.detail-img {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.detail-img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover
}

.detail-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 3px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.detail-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 8px
}

.detail-name {
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px
}

.detail-price {
  font-size: 36px;
  font-weight: 600;
  color: var(--gold-dark);
  margin: 18px 0 22px
}

.detail-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 28px
}

.detail-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}

.spec-item {
  background: var(--ivory-2);
  border-radius: var(--r);
  padding: 14px 12px;
  text-align: center;
}

.spec-item i {
  font-size: 18px;
  color: var(--gold);
  display: block;
  margin-bottom: 6px
}

.spec-item span {
  font-size: 11px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px
}

.spec-item strong {
  font-size: 13px;
  color: var(--dark)
}

.detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px
}

.detail-wish-btn {
  padding: 13px 20px;
  border-radius: var(--r);
  background: var(--ivory-2);
  border: 1.5px solid var(--ivory-3);
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--t);
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-wish-btn:hover,
.detail-wish-btn.active {
  border-color: #e74c3c;
  color: #e74c3c;
  background: #fff5f5
}

.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.stock-badge.in {
  color: var(--green)
}

.stock-badge.out {
  color: var(--red)
}

.stock-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block
}

/* ── Profile ── */
.profile-section {
  padding: calc(var(--nav-h) + 40px) 0 80px;
  background: var(--ivory);
  min-height: 100vh
}

.profile-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start
}

.profile-sidebar {
  background: var(--dark);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.profile-avatar {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  padding: 40px 28px;
  text-align: center;
  border-bottom: 1px solid rgba(200, 169, 110, .15);
}

.avatar-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 32px;
  color: var(--black);
  margin: 0 auto 16px;
  border: 3px solid var(--gold);
}

.profile-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  transition: var(--t);
}

.profile-nav a:hover,
.profile-nav a.active {
  color: var(--gold);
  background: var(--gold-muted);
  padding-left: 26px
}

.profile-nav a i {
  width: 18px;
  font-size: 14px;
  color: var(--gold)
}

.profile-content {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.profile-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 36px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
}

.profile-card h3 {
  font-family: var(--ff-display);
  font-size: 26px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ivory-2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-card h3 i {
  color: var(--gold);
  font-size: 22px
}

/* ── About ── */
.about-intro {
  padding: 88px 0;
  background: var(--ivory)
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.about-img {
  position: relative
}

.about-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r)
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--black);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-g);
}

.about-badge-num {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1
}

.about-badge-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3
}

.about-text h2 {
  font-size: 44px;
  margin-bottom: 8px
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.85
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--ivory-2)
}

.about-stat-num {
  font-family: var(--ff-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--gold-dark);
  display: block
}

.about-stat-lbl {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: .06em
}

/* ── Contact ── */
.contact-section {
  padding: 88px 0;
  background: var(--ivory)
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px
}

.contact-info h2 {
  font-size: 40px;
  margin-bottom: 14px
}

.contact-info>p {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 15px
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start
}

.info-item-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 16px;
}

.info-item strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px
}

.info-item p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 0
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 48px;
  box-shadow: var(--shadow)
}

.contact-form-card h2 {
  font-size: 34px;
  margin-bottom: 28px
}

/* ── Admin ── */
.admin-section {
  padding: calc(var(--nav-h)+40px) 0 80px;
  background: var(--ivory);
  min-height: 100vh
}

.admin-header {
  background: var(--dark);
  border-radius: var(--r);
  padding: 40px;
  text-align: center;
  margin-bottom: 28px;
  border: 1px solid rgba(200, 169, 110, .15);
}

.admin-header h1 {
  color: var(--gold);
  font-size: 42px;
  margin-bottom: 6px
}

.admin-header p {
  color: rgba(255, 255, 255, .5)
}

.admin-tabs {
  display: flex;
  gap: 4px;
  background: var(--white);
  border-radius: var(--r);
  padding: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
  margin-bottom: 28px;
  flex-wrap: wrap
}

.admin-tab {
  flex: 1;
  padding: 12px 20px;
  border-radius: calc(var(--r) - 2px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--t);
  text-align: center;
  white-space: nowrap;
}

.admin-tab.active {
  background: var(--gold);
  color: var(--black)
}

.admin-tab-content {
  display: none
}

.admin-tab-content.active {
  display: block
}

.admin-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 36px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
  margin-bottom: 24px
}

.admin-card h3 {
  font-family: var(--ff-display);
  font-size: 26px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ivory-2)
}

.admin-card h3 i {
  color: var(--gold);
  margin-right: 8px
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 28px
}

.stat-tile {
  background: var(--dark);
  border-radius: var(--r);
  padding: 28px;
  text-align: center;
  border: 1px solid rgba(200, 169, 110, .15);
}

.stat-tile i {
  font-size: 26px;
  color: var(--gold);
  display: block;
  margin-bottom: 10px
}

.stat-tile .num {
  font-family: var(--ff-display);
  font-size: 48px;
  color: var(--white);
  display: block;
  line-height: 1
}

.stat-tile .lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 6px;
  display: block
}

.table-wrap {
  overflow-x: auto
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px
}

thead th {
  padding: 12px 16px;
  background: var(--dark);
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 11px;
  text-align: left;
  white-space: nowrap;
}

tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--ivory-2);
  vertical-align: middle
}

tbody tr:hover td {
  background: var(--ivory)
}

.tbl-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--r)
}

.cat-chip {
  background: var(--ivory-2);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-dark);
}

.empty-msg {
  color: var(--text-muted);
  font-size: 14px;
  padding: 24px 0;
  text-align: center
}

/* ── Wishlist ── */
.wishlist-section {
  padding: calc(var(--nav-h)+56px) 0 88px;
  background: var(--ivory);
  min-height: 80vh
}

.empty-state {
  text-align: center;
  padding: 80px 20px
}

.empty-state i {
  font-size: 56px;
  color: var(--gold);
  opacity: .35;
  display: block;
  margin-bottom: 20px
}

.empty-state h3 {
  font-family: var(--ff-display);
  font-size: 30px;
  margin-bottom: 10px
}

.empty-state p {
  color: var(--text-muted)
}

/* ── Footer ── */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(200, 169, 110, .12);
  padding: 64px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 52px;
  padding-bottom: 52px
}

.footer-brand h3 {
  font-family: var(--ff-display);
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 16px
}

.footer-brand p {
  color: rgba(255, 255, 255, .45);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px
}

.social-links {
  display: flex;
  gap: 10px
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 110, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  transition: var(--t);
}

.social-link:hover {
  background: var(--gold);
  color: var(--black)
}

.footer-col h4 {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px
}

.footer-col ul li {
  margin-bottom: 10px
}

.footer-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  transition: color var(--t)
}

.footer-col a:hover {
  color: var(--gold)
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, .45);
  font-size: 13px
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, .25);
  letter-spacing: .04em;
  max-width: 1260px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity var(--t);
}

.footer-credit a:hover {
  text-decoration: underline;
}

.footer-tagline {
  color: var(--gold);
  opacity: .5;
  letter-spacing: .15em
}

/* ── Loading Spinner ── */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(200, 169, 110, .3);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .7s linear infinite
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.page-loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity .4s ease;
}

.page-loader.hidden {
  opacity: 0;
  pointer-events: none
}

.loader-gem {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: gem-spin 1.2s linear infinite;
}

@keyframes gem-spin {
  to {
    transform: rotate(360deg)
  }
}

/* ── 404 ── */
.err-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  padding-top: var(--nav-h)
}

.err-content {
  text-align: center
}

.err-num {
  font-family: var(--ff-display);
  font-size: 200px;
  font-weight: 400;
  color: var(--gold);
  opacity: .12;
  line-height: 1
}

.err-content h2 {
  font-size: 44px;
  color: var(--ivory);
  margin-bottom: 16px;
  margin-top: -60px
}

.err-content p {
  color: rgba(255, 255, 255, .45);
  max-width: 380px;
  margin: 0 auto 32px
}

/* ── Skeleton loading ── */
.skeleton {
  background: linear-gradient(90deg, var(--ivory-2) 25%, var(--ivory-3) 50%, var(--ivory-2) 75%);
  background-size: 200%;
  animation: skeleton-load 1.5s infinite
}

@keyframes skeleton-load {
  from {
    background-position: 200%
  }

  to {
    background-position: -200%
  }
}

.skel-card {
  border-radius: var(--r);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .05)
}

.skel-img {
  aspect-ratio: 1
}

.skel-body {
  padding: 20px
}

.skel-line {
  height: 12px;
  border-radius: 4px;
  margin-bottom: 10px
}

.skel-line.w60 {
  width: 60%
}

.skel-line.w80 {
  width: 80%
}

.skel-line.w40 {
  width: 40%
}

/* ── Responsive ── */
@media(max-width:1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .detail-grid {
    gap: 40px
  }

  .about-grid {
    gap: 48px
  }

  .profile-grid {
    grid-template-columns: 220px 1fr
  }
}

@media(max-width:768px) {
  .nav-links {
    display: none
  }

  .hamburger {
    display: flex
  }

  #authBtnGroup, #userMenuArea {
    display: none !important;
  }

  .mobile-nav {
    display: block;
  }

  .brand-text-main {
    font-size: 16px;
  }

  .brand-text-sub {
    font-size: 8px;
    letter-spacing: .15em;
  }

  .brand-logo-wrap {
    width: 36px;
    height: 36px;
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .detail-grid {
    grid-template-columns: 1fr
  }

  .about-grid {
    grid-template-columns: 1fr
  }

  .about-badge {
    display: none
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .profile-grid {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr)
  }

  .admin-tabs {
    flex-direction: column
  }

  .auth-card {
    padding: 36px 24px
  }

  .detail-specs {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:480px) {
  .hero-title {
    font-size: 52px
  }

  .detail-specs {
    grid-template-columns: 1fr 1fr
  }

  .stats-row {
    grid-template-columns: 1fr 1fr
  }

  .contact-form-card {
    padding: 28px 20px
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SMOOTH SCROLLING & LUXURY SCROLLBAR
   ═══════════════════════════════════════════════════════════════════════════ */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* Custom Gold Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-dark), var(--gold), var(--gold-dark));
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SMOOTH PAGE REFRESH & VELVET TRANSITION SYSTEM
   ═══════════════════════════════════════════════════════════════════════════ */
.page-loader {
  position: fixed;
  inset: 0;
  background: #0d0b09;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.55s ease;
  pointer-events: all;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-gem {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: gemSpin 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  box-shadow: 0 0 24px rgba(200, 169, 110, 0.3);
}

.loader-gem::before {
  content: '✦';
  font-size: 18px;
  color: var(--gold-light);
  transform: rotate(-45deg);
}

@keyframes gemSpin {
  0% { transform: rotate(45deg) scale(0.9); }
  50% { transform: rotate(225deg) scale(1.1); box-shadow: 0 0 36px rgba(200, 169, 110, 0.5); }
  100% { transform: rotate(405deg) scale(0.9); }
}

.loader-progress-track {
  width: 140px;
  height: 2px;
  background: rgba(200, 169, 110, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 20px;
  position: relative;
}

.loader-progress-bar {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), transparent);
  animation: shimmerProgress 1.4s ease-in-out infinite;
}

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

/* Page Navigation Transition Overlay */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  background: #0d0b09;
  z-index: 99990;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-transition-overlay.active {
  opacity: 0.95;
  pointer-events: all;
}

/* ═══════════════════════════════════════════════════════════════════════════
   3D CARD TILT & HOVER POLISH
   ═══════════════════════════════════════════════════════════════════════════ */
.prod-card, .feat-card, .cat-card {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  will-change: transform;
}

.prod-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14), 0 0 24px rgba(200, 169, 110, 0.18);
}