/* =====================================================
   KANNIKA BANGLES - Home Page Styles
   Premium Hanging-Card Hero Redesign
   ===================================================== */

/* ========================================================
   HERO SECTION - Full redesign with hanging jewellery cards
   ======================================================== */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(90, 30, 50, 0.55) 0%, transparent 60%),
    radial-gradient(ellipse 70% 70% at 80% 30%, rgba(30, 20, 60, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 50% 90%, rgba(100, 40, 20, 0.35) 0%, transparent 60%),
    linear-gradient(145deg, #0D0810 0%, #1A0B18 30%, #0E1020 65%, #120A0E 100%);
}

/* Ambient glowing orbs */
.hero__ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: orbDrift 12s ease-in-out infinite alternate;
}

.hero__ambient-orb--gold {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.5) 0%, rgba(212, 175, 55, 0.05) 70%);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
  animation-duration: 14s;
}

.hero__ambient-orb--rose {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 69, 106, 0.45) 0%, rgba(212, 69, 106, 0.05) 70%);
  bottom: -80px;
  right: 10%;
  animation-delay: -5s;
  animation-duration: 11s;
}

.hero__ambient-orb--violet {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(100, 60, 180, 0.3) 0%, rgba(100, 60, 180, 0.02) 70%);
  top: 30%;
  left: 40%;
  animation-delay: -8s;
  animation-duration: 16s;
}

@keyframes orbDrift {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.35; }
  50%  { transform: translate(40px, -30px) scale(1.1); opacity: 0.5; }
  100% { transform: translate(-20px, 20px) scale(0.95); opacity: 0.4; }
}

/* Floating particles */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat var(--pdur, 8s) var(--pdelay, 0s) infinite ease-in-out;
}

.hero-particle::before {
  content: var(--pchar, "\2726");
  font-size: var(--psize, 10px);
  color: var(--pcol, rgba(212, 175, 55, 0.7));
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-particle:nth-child(1)  { left: 5%;  top: 15%; --pdur: 9s;  --pdelay: 0s;   --psize: 14px; --pcol: rgba(212,175,55,0.8); }
.hero-particle:nth-child(2)  { left: 18%; top: 70%; --pdur: 7s;  --pdelay: 1.5s; --psize: 10px; --pcol: rgba(212,175,55,0.6); }
.hero-particle:nth-child(3)  { left: 32%; top: 10%; --pdur: 11s; --pdelay: 3s;   --psize: 16px; --pcol: rgba(212,69,106,0.7); }
.hero-particle:nth-child(4)  { left: 48%; top: 80%; --pdur: 8s;  --pdelay: 0.8s; --psize: 12px; --pcol: rgba(212,175,55,0.5); }
.hero-particle:nth-child(5)  { left: 62%; top: 20%; --pdur: 10s; --pdelay: 2.2s; --psize: 9px;  --pcol: rgba(212,69,106,0.6); }
.hero-particle:nth-child(6)  { left: 75%; top: 55%; --pdur: 6s;  --pdelay: 4s;   --psize: 13px; --pcol: rgba(212,175,55,0.7); }
.hero-particle:nth-child(7)  { left: 88%; top: 30%; --pdur: 12s; --pdelay: 1s;   --psize: 11px; --pcol: rgba(200,160,255,0.5); }
.hero-particle:nth-child(8)  { left: 92%; top: 75%; --pdur: 8s;  --pdelay: 3.5s; --psize: 8px;  --pcol: rgba(212,69,106,0.5); }
.hero-particle:nth-child(9)  { left: 12%; top: 45%; --pdur: 9s;  --pdelay: 2s;   --psize: 12px; --pcol: rgba(212,175,55,0.6); }
.hero-particle:nth-child(10) { left: 40%; top: 60%; --pdur: 7s;  --pdelay: 0.5s; --psize: 10px; --pcol: rgba(212,69,106,0.7); }
.hero-particle:nth-child(11) { left: 55%; top: 40%; --pdur: 13s; --pdelay: 5s;   --psize: 15px; --pcol: rgba(212,175,55,0.4); }
.hero-particle:nth-child(12) { left: 80%; top: 10%; --pdur: 10s; --pdelay: 1.8s; --psize: 11px; --pcol: rgba(200,160,255,0.6); }

@keyframes particleFloat {
  0%   { opacity: 0;   transform: translateY(0) rotate(0deg) scale(0.5); }
  15%  { opacity: 0.9; }
  50%  { opacity: 0.7; transform: translateY(-40px) rotate(180deg) scale(1.1); }
  85%  { opacity: 0.4; }
  100% { opacity: 0;   transform: translateY(-80px) rotate(360deg) scale(0.3); }
}

/* ── Hero Layout ── */
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  max-width: 1280px;
  width: 100%;
  padding: 160px 60px 80px;
  min-height: 100vh;
}

/* ── LEFT — Headline ── */
.hero__left {
  padding-right: 40px;
  animation: heroSlideLeft 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

@keyframes heroSlideLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.9);
  margin-bottom: 28px;
  padding: 8px 20px;
  border: 1px solid rgba(226, 232, 240, 0.25);
  border-radius: 40px;
  background: rgba(226, 232, 240, 0.05);
  backdrop-filter: blur(8px);
}

.hero__eyebrow-gem {
  color: var(--gold-primary);
  font-size: 0.7rem;
  opacity: 0.8;
}

.hero__title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: #FFF0F5;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero__title-em {
  font-style: italic;
  color: #FFD6E4;
  font-weight: 700;
}

.hero__title-gold {
  display: block;
  background: linear-gradient(135deg, #8C8C9A 0%, #E2E8F0 40%, #A0A0B0 65%, #8C8C9A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: goldShimmerText 4s linear infinite;
}

@keyframes goldShimmerText {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero__subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255, 235, 245, 0.78);
  line-height: 1.8;
  margin-bottom: 44px;
  font-style: italic;
}

.hero__br-desktop { display: inline; }

/* CTA Buttons */
.hero__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.hero-btn:hover::before { transform: translateX(100%); }

.hero-btn--primary {
  background: linear-gradient(135deg, #D4456A 0%, #C43060 50%, #D4456A 100%);
  color: #fff;
  box-shadow: 0 6px 30px rgba(212, 69, 106, 0.45), 0 2px 8px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-btn--primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(212, 69, 106, 0.55), 0 4px 12px rgba(0,0,0,0.3);
}

.hero-btn--ghost {
  background: rgba(255,255,255,0.06);
  color: rgba(226, 232, 240, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.35);
  backdrop-filter: blur(10px);
}
.hero-btn--ghost:hover {
  background: rgba(226, 232, 240, 0.12);
  border-color: rgba(226, 232, 240, 0.7);
  color: #FFFFFF;
  transform: translateY(-3px);
}

/* Trust strip */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 235, 245, 0.55);
  letter-spacing: 0.04em;
}

.hero__trust-item i { color: rgba(212, 175, 55, 0.6); flex-shrink: 0; }

.hero__trust-sep {
  color: rgba(212, 175, 55, 0.3);
  font-size: 1.2rem;
  line-height: 1;
}

/* ── RIGHT — Hanging Cards ── */
.hero__right {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20px;
  animation: heroSlideRight 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

@keyframes heroSlideRight {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* The hanging rod */
.hero__rod {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 5;
}

.hero__rod-bar {
  height: 10px;
  background: linear-gradient(180deg,
    rgba(212,175,55,0.9) 0%,
    rgba(180,140,30,1) 40%,
    rgba(212,175,55,0.7) 70%,
    rgba(150,120,20,0.9) 100%
  );
  border-radius: 5px;
  box-shadow:
    0 2px 12px rgba(212,175,55,0.5),
    0 0 30px rgba(212,175,55,0.2),
    inset 0 1px 2px rgba(255,255,255,0.3);
}

/* Small hook circles on the rod */
.hero__rod-hook {
  position: absolute;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #FFFFFF, #4A5568);
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) translateX(-50%);
}
.hero__rod-hook--1 { left: 20%; }
.hero__rod-hook--2 { left: 50%; }
.hero__rod-hook--3 { left: 80%; }

/* Hanging cards container — flex row */
.hang-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 0;
  cursor: pointer;
}

.hang-card--1 {
  left: 5%;
  animation: hangSwing1 7s ease-in-out infinite;
  transform-origin: top center;
}
.hang-card--2 {
  left: 50%;
  transform: translateX(-50%);
  animation: hangSwing2 9s ease-in-out infinite;
  transform-origin: top center;
  z-index: 2;
}
.hang-card--3 {
  right: 5%;
  animation: hangSwing3 6s ease-in-out infinite;
  transform-origin: top center;
}

@keyframes hangSwing1 {
  0%, 100% { transform: rotate(-3deg); }
  50%       { transform: rotate(2.5deg); }
}
@keyframes hangSwing2 {
  0%, 100% { transform: translateX(-50%) rotate(1.5deg); }
  50%       { transform: translateX(-50%) rotate(-2deg); }
}
@keyframes hangSwing3 {
  0%, 100% { transform: rotate(3.5deg); }
  50%       { transform: rotate(-2deg); }
}

/* Chain links */
.hang-card__chain {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hang-card__chain-link {
  width: 6px;
  height: 10px;
  border: 1.5px solid;
  border-color: rgba(212,175,55,0.9) rgba(180,140,30,0.7) rgba(212,175,55,0.9) rgba(180,140,30,0.7);
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(243,229,171,0.4) 0%, rgba(180,140,30,0.2) 100%);
  box-shadow: 0 0 4px rgba(212,175,55,0.3);
  position: relative;
}
.hang-card__chain-link:nth-child(odd)  { transform: rotate(8deg); }
.hang-card__chain-link:nth-child(even) { transform: rotate(-8deg); }

/* Card body */
.hang-card__body {
  display: flex;
  flex-direction: column;
  width: 150px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(20, 10, 25, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(212,175,55,0.15);
  backdrop-filter: blur(16px);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.hang-card__body--center {
  width: 170px;
}

.hang-card__body:hover {
  transform: scale(1.06);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow:
    0 28px 70px rgba(0,0,0,0.6),
    0 0 0 1px rgba(212,175,55,0.2),
    0 0 40px rgba(212,175,55,0.15);
}

/* Image */
.hang-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.hang-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.9) saturate(1.1);
}

.hang-card__body:hover .hang-card__img-wrap img {
  transform: scale(1.08);
}

/* Shine overlay */
.hang-card__img-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.08) 0%,
    transparent 40%,
    rgba(212,175,55,0.06) 100%
  );
  pointer-events: none;
}

/* Card info */
.hang-card__info {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: linear-gradient(180deg,
    rgba(212,175,55,0.04) 0%,
    rgba(212,69,106,0.06) 100%
  );
}

.hang-card__cat {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.03em;
}

.hang-card__label {
  font-size: 0.68rem;
  color: rgba(226, 232, 240, 0.75);
  letter-spacing: 0.06em;
}

.hang-card__cta-link {
  font-size: 0.72rem;
  font-weight: 600;
  color: #C0C0D0;
  letter-spacing: 0.05em;
  margin-top: 6px;
  transition: color 0.2s;
}
.hang-card__body:hover .hang-card__cta-link {
  color: #FFFFFF;
}

/* Bestseller ribbon on center card */
.hang-card__featured-ribbon {
  position: absolute;
  top: 10px;
  right: -2px;
  background: linear-gradient(135deg, #3A3A45, #8C8C9A);
  color: #FFFFFF;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px 4px 8px;
  border-radius: 4px 0 0 4px;
  text-transform: uppercase;
  z-index: 3;
  box-shadow: 0 2px 10px rgba(212,175,55,0.4);
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 235, 245, 0.35);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: 'Cormorant Garamond', serif;
  animation: heroFadeUp 1s ease-out 1.8s both;
}

.hero__scroll-mouse {
  width: 24px;
  height: 38px;
  border: 1.5px solid rgba(212,175,55,0.35);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero__scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(212,175,55,0.6);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.8; }
  50%       { transform: translateY(10px); opacity: 0.2; }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── Navbar override for dark hero ── */
.home-page .navbar:not(.scrolled) .navbar__logo-img {
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.5)) drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
}

.home-page .navbar:not(.scrolled) .navbar__logo {
  color: #FFF7FA;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.home-page .navbar:not(.scrolled) .navbar__logo span,
.home-page .navbar:not(.scrolled) .navbar__link,
.home-page .navbar:not(.scrolled) .navbar__action-btn,
.home-page .navbar:not(.scrolled) .navbar__cart,
.home-page .navbar:not(.scrolled) .navbar__user-btn {
  color: rgba(255, 247, 250, 0.84);
}

.home-page .navbar:not(.scrolled) .navbar__link:hover,
.home-page .navbar:not(.scrolled) .navbar__link.active,
.home-page .navbar:not(.scrolled) .navbar__action-btn:hover,
.home-page .navbar:not(.scrolled) .navbar__cart:hover,
.home-page .navbar:not(.scrolled) .navbar__user-btn:hover {
  color: var(--gold-light);
}

.home-page .navbar:not(.scrolled) .navbar__toggle-left span,
.home-page .navbar:not(.scrolled) .navbar__toggle span {
  background: #FFF7FA;
}

/* ── Responsive ── */

/* Position the hang cards within their right panel */
.hero__right {
  height: 580px;
}

@media (max-width: 1100px) {
  .hero__inner {
    padding: 160px 36px 80px;
    gap: 0;
  }
  .hang-card__body { width: 130px; }
  .hang-card__body--center { width: 145px; }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 160px 28px 80px;
    gap: 40px;
    align-content: center;
  }

  .hero__left {
    padding-right: 0;
    text-align: center;
  }

  .hero__eyebrow {
    justify-content: center;
  }

  .hero__cta {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
  }

  .hero__right {
    height: 460px;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  .hero__br-desktop { display: none; }

  .hang-card--1 { left: 2%; }
  .hang-card--3 { right: 2%; }
  .hang-card__body { width: 120px; }
  .hang-card__body--center { width: 136px; }
}

@media (max-width: 540px) {
  .hero__inner { padding: 140px 20px 60px; }

  .hero__right { height: 380px; max-width: 360px; }

  .hang-card__body { width: 100px; border-radius: 12px; }
  .hang-card__body--center { width: 114px; }

  .hang-card__cat { font-size: 0.78rem; }
  .hang-card__label, .hang-card__cta-link { font-size: 0.6rem; }
  .hang-card__info { padding: 9px 10px 10px; }

  .hero__rod-bar { height: 7px; }
}


.categories {
  padding: 100px 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.categories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.categories__header {
  text-align: center;
  margin-bottom: 48px;
}

.categories__scroll-wrapper {
  position: relative;
}

.categories__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 24px 30px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.categories__track::-webkit-scrollbar {
  display: none;
}

.category-card {
  flex: 0 0 220px;
  height: 300px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
}

.category-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.2);
  transform: translateY(-8px) scale(1.02);
}

.category-card__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 20%, rgba(212, 175, 55, 0.12), transparent 34%),
    radial-gradient(circle at 78% 78%, rgba(212, 69, 106, 0.12), transparent 38%),
    linear-gradient(145deg, #FFF5F6, #FFFDFD);
}

.category-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  filter: brightness(0.95) saturate(0.9);
}

.category-card:hover .category-card__bg img {
  transform: scale(1.12);
  filter: brightness(0.9) saturate(0.95);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 245, 246, 0.05) 0%,
    rgba(255, 245, 246, 0.1) 40%,
    rgba(255, 240, 242, 0.3) 100%
  );
  transition: background var(--transition-normal);
}

.category-card:hover .category-card__overlay {
  background: linear-gradient(
    180deg,
    rgba(212, 175, 55, 0.04) 0%,
    rgba(255, 240, 242, 0.2) 40%,
    rgba(255, 230, 235, 0.6) 100%
  );
}

.category-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  z-index: 2;
  transform: translateY(8px);
  transition: transform var(--transition-normal);
}

.category-card:hover .category-card__content {
  transform: translateY(0);
}

.category-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 12px;
  transition: all var(--transition-normal);
}

.category-card:hover .category-card__icon {
  background: var(--gold-primary);
  color: var(--bg-primary);
  transform: scale(1.1);
}

.category-card__icon i {
  width: 20px;
  height: 20px;
}

.category-card__name {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.category-card__count {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Scroll Arrows */
.categories__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: all var(--transition-normal);
  opacity: 0.8;
}

.categories__arrow:hover {
  background: var(--gold-primary);
  color: var(--bg-primary);
  opacity: 1;
  transform: translateY(-50%) scale(1.05);
}

.categories__arrow--left {
  left: 0;
}

.categories__arrow--right {
  right: 0;
}

.categories__arrow i {
  width: 20px;
  height: 20px;
}


/* ─── Featured Products Section ─── */
.featured {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
}

.featured::before,
.featured::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.featured::before { top: 0; }
.featured::after { bottom: 0; }

.featured__header {
  text-align: center;
  margin-bottom: 56px;
}

.featured__header .section-title {
  margin-bottom: 8px;
}

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

/* Product Card Home Specific */
.product-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
  position: relative;
}

.product-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold), var(--shadow-card);
  transform: translateY(-6px);
}

.product-card__image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-elevated);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card__image img {
  transform: scale(1.1);
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.3) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 16px;
  gap: 8px;
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 2;
}

.product-card:hover .product-card__overlay {
  opacity: 1;
}

.product-card__overlay .btn {
  width: 100%;
  justify-content: center;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  padding: 10px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.product-card__overlay .btn--outline {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
}

.product-card__overlay .btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.product-card:hover .product-card__overlay .btn {
  transform: translateY(0);
}

.product-card:hover .product-card__overlay .btn:nth-child(2) {
  transition-delay: 0.06s;
}

.product-card__body {
  padding: 18px;
}

.product-card--no-image {
  min-height: 100%;
}

.product-card--no-image .product-card__badge {
  position: static;
  padding: 16px 18px 0;
}

.product-card--no-image .product-card__body {
  padding-top: 18px;
}

.product-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.product-card__actions .btn {
  flex: 1 1 120px;
  justify-content: center;
}

.product-card__category {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  margin-bottom: 6px;
}

.product-card__name {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.product-card__price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pink-primary);
}

.product-card__original-price {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-card__discount {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-rose);
  background: rgba(212, 69, 106, 0.12);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-card__stars {
  color: var(--gold-primary);
  font-size: 0.82rem;
  letter-spacing: 2px;
}

/* View All button */
.featured__view-all {
  text-align: center;
  margin-top: 48px;
}

/* Stagger animation for product cards */
.featured__grid .product-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.featured__grid.visible .product-card {
  opacity: 1;
  transform: translateY(0);
}

.featured__grid.visible .product-card:nth-child(1) { transition-delay: 0s; }
.featured__grid.visible .product-card:nth-child(2) { transition-delay: 0.1s; }
.featured__grid.visible .product-card:nth-child(3) { transition-delay: 0.15s; }
.featured__grid.visible .product-card:nth-child(4) { transition-delay: 0.2s; }
.featured__grid.visible .product-card:nth-child(5) { transition-delay: 0.25s; }
.featured__grid.visible .product-card:nth-child(6) { transition-delay: 0.3s; }
.featured__grid.visible .product-card:nth-child(7) { transition-delay: 0.35s; }
.featured__grid.visible .product-card:nth-child(8) { transition-delay: 0.4s; }


/* ─── Brand Story Section ─── */
.brand-story {
  padding: 120px 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.brand-story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.brand-story__inner {
  display: grid;
  grid-template-columns: minmax(0, 860px);
  gap: 60px;
  align-items: center;
  justify-content: center;
}

.brand-story__image-wrapper {
  position: relative;
}

.brand-story__image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

.brand-story__image-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 8s ease;
  filter: brightness(0.85) saturate(0.9);
}

.brand-story__image-wrapper:hover .brand-story__image-frame img {
  transform: scale(1.08);
}

/* Gold decorative corner borders */
.brand-story__decor-tl,
.brand-story__decor-br {
  position: absolute;
  width: 80px;
  height: 80px;
  pointer-events: none;
  z-index: 2;
}

.brand-story__decor-tl {
  top: -12px;
  left: -12px;
  border-top: 2px solid var(--gold-primary);
  border-left: 2px solid var(--gold-primary);
  border-top-left-radius: 8px;
}

.brand-story__decor-br {
  bottom: -12px;
  right: -12px;
  border-bottom: 2px solid var(--gold-primary);
  border-right: 2px solid var(--gold-primary);
  border-bottom-right-radius: 8px;
}

.brand-story__content {
  padding: 20px 0;
  text-align: center;
}

.brand-story__subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--gold-primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}

.brand-story__title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 24px;
}

.brand-story__text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.brand-story__stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.brand-story__stat-number {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--pink-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.brand-story__stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-story__cta {
  margin-top: 32px;
}


/* ─── Newsletter CTA Section ─── */
.newsletter {
  padding: 100px 0;
  background: var(--bg-primary);
  position: relative;
}

.newsletter__frame {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  padding: 60px 48px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 50%, rgba(201,168,76,0.04) 100%);
}

/* Decorative corner dots */
.newsletter__frame::before,
.newsletter__frame::after {
  content: '✦';
  position: absolute;
  color: var(--gold-primary);
  font-size: 0.7rem;
  opacity: 0.6;
}

.newsletter__frame::before {
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
}

.newsletter__frame::after {
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
}

.newsletter__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  margin: 0 auto 24px;
}

.newsletter__icon i {
  width: 24px;
  height: 24px;
}

.newsletter__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}

.newsletter__text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter__form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}

.newsletter__input {
  flex: 1;
  padding: 14px 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition-fast);
}

.newsletter__input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.newsletter__input::placeholder {
  color: var(--text-muted);
}

.newsletter__privacy {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
}


/* ─── Responsive ─── */
@media (max-width: 1200px) {
  .featured__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .brand-story__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .brand-story__image-frame img {
    height: 400px;
  }

  .featured__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .categories__arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero__title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero__badge {
    font-size: 0.8rem;
    padding: 6px 16px;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__cta .btn {
    padding: 12px 28px;
    font-size: 0.85rem;
  }

  .hero__scroll-hint {
    display: none;
  }

  .categories {
    padding: 60px 0;
  }

  .category-card {
    flex: 0 0 180px;
    height: 250px;
  }

  .featured {
    padding: 60px 0;
  }

  .featured__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .brand-story {
    padding: 60px 0;
  }

  .brand-story__stats {
    gap: 24px;
  }

  .brand-story__stat-number {
    font-size: 1.5rem;
  }

  .brand-story__image-frame img {
    height: 300px;
  }
  .newsletter {
    padding: 60px 0;
  }

  .newsletter__frame {
    padding: 40px 24px;
  }

  .newsletter__form {
    flex-direction: column;
  }

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

@media (max-width: 480px) {
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
    padding: 0 16px;
  }

  .hero__cta .btn {
    justify-content: center;
  }

  .category-card {
    flex: 0 0 160px;
    height: 220px;
  }

  .category-card__name {
    font-size: 1rem;
  }

  .featured__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-card__body {
    padding: 14px;
  }

  .product-card__name {
    font-size: 0.95rem;
  }

  .brand-story__stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .brand-story__text {
    font-size: 0.95rem;
  }

}

/* ─── Circular Category Cards (Screenshot Alignment) ─── */
.categories-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.cat-circle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: transform var(--transition-bounce);
  flex: 0 1 180px;
}

.cat-circle-card:hover {
  transform: translateY(-8px);
}

.cat-circle-card__box {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  padding: 10px;
}

.cat-circle-card:hover .cat-circle-card__box {
  border-color: var(--pink-primary);
  box-shadow: 0 8px 24px rgba(212, 69, 106, 0.12);
}

.cat-circle-card__box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform var(--transition-slow);
}

.cat-circle-card:hover .cat-circle-card__box img {
  transform: scale(1.1);
}

.cat-circle-card__box--gift {
  font-size: 3rem;
  background: radial-gradient(circle, #FFF0F2 0%, #FFD5DF 100%);
  border-radius: 50%;
}

.gift-box-icon {
  animation: giftWobble 2s ease infinite;
}

@keyframes giftWobble {
  0%, 100% { transform: rotate(0) scale(1); }
  50% { transform: rotate(8deg) scale(1.05); }
}

.cat-circle-card__name {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-top: 16px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.cat-circle-card__action {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 2px;
  opacity: 0.8;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.cat-circle-card__action i,
.cat-circle-card__action svg {
  width: 12px;
  height: 12px;
}

.cat-circle-card:hover .cat-circle-card__action {
  color: var(--pink-primary);
  opacity: 1;
}

@media (max-width: 480px) {
  .categories-row {
    gap: 20px;
  }
  .cat-circle-card__box {
    width: 110px;
    height: 110px;
    padding: 6px;
  }
  .cat-circle-card__box--gift {
    font-size: 2.2rem;
  }
}
