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

:root {
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --gold-dark: #8B6914;
  --cream: #FAF6EF;
  --ivory: #F3EDE0;
  --dark: #1A1209;
  --deep: #2C1E0A;
  --maroon: #6B1C2E;
  --text: #3A2A10;
  --muted: #7A6A50;
}

.section-label,
.hero-tag,
.hero-title em,
.section-title em,
.cat-label,
.col-tag,
#cart-total,
.about-hero-tagline em,
.ash-eyebrow,
.ash-script,
.serve-quote,
.price-main,
.product-price-big,
.ash-rule-dot,
.ai-fab-icon,
h1 em,
h2 em,
h3 em,
h4 em {
  color: var(--gold);
}

@keyframes rotateBorder {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}



html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

/* ── SPLASH SCREEN ── */
.splash-screen {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease;
}

.splash-content {
  text-align: center;
}

.splash-logo-img {
  height: clamp(60px, 12vw, 120px);
  width: auto;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center center;
}

.splash-screen.scrolled {
  opacity: 0;
  pointer-events: none;
}

/* ── SPLASH SCROLL INDICATOR ── */
.splash-scroll-indicator {
  position: absolute;
  bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.8;
  animation: fadeIn 2s ease forwards;
  transition: opacity 0.5s ease;
}

.splash-scroll-text {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
}

.splash-scroll-mouse {
  width: 24px;
  height: 38px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
}

.splash-scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 6px;
  animation: scrollWheel 2s infinite cubic-bezier(0.15, 0.41, 0.69, 0.94);
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}


/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: rgba(26, 18, 9, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  min-height: 70px;
}

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

.nav-icon-svg {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
}

.wishlist-trigger,
.cart-trigger {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 35px;
  width: auto;
  display: block;
}


.nav-logo span {
  font-style: italic;
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 10px 22px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(201, 168, 76, 0.3);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background-color: var(--dark);
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://res.cloudinary.com/drkgkgiat/image/upload/v1777447204/rk_saree_banner_copy.jpg_d6mphh.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
  z-index: 10;
}

.hero-content {
  text-align: left;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: heroImgSlideUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 3/4;
  background: var(--dark);
  border: 1px solid rgba(201, 168, 76, 0.3);
  box-shadow: 40px 40px 100px rgba(0, 0, 0, 0.4);
}

.main-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.hero-img-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--dark);
  padding: 15px 25px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-tag {
  font-size: 10px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

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

.hero-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

@keyframes heroImgSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.2);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 16px 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  letter-spacing: 3px;
}

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

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1)
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2)
  }
}

/* ── MARQUEE ── */
.marquee-bar {
  background: var(--gold);
  padding: 12px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.marquee-item {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.marquee-item:hover {
  color: #fff;
  transform: scale(1.05);
}

.marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--dark);
  border-radius: 50%;
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ── SECTION STYLES ── */
section {
  padding: 100px 60px;
}

.section-label {
  font-size: 10px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ── COLLECTIONS ── */
.collections {
  background: var(--ivory);
}

.collections-header {
  text-align: center;
  margin-bottom: 70px;
}

/* --- CATEGORY SELECTION --- */
.category-selection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
  animation: fadeIn 0.8s ease;
}

.category-card {
  position: relative;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark);
  border: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.7;
}

.category-card:hover .category-card-bg {
  transform: scale(1.1);
  opacity: 0.9;
}

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 5, 2, 0.95) 0%, rgba(10, 5, 2, 0.3) 60%, transparent 100%);
  transition: opacity 0.3s ease;
}

.category-card-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  z-index: 2;
}

.cat-label {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 12px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease 0.1s;
}

.cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  transform: translateY(10px);
  transition: all 0.4s ease 0.2s;
}

.cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 12px 25px;
  border-radius: 30px;
  transition: all 0.3s ease;
  transform: translateY(10px);
  opacity: 0;
}

.category-card:hover .cat-label,
.category-card:hover .cat-btn {
  transform: translateY(0);
  opacity: 1;
}

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

.category-card:hover .cat-btn {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.category-card:hover .cat-btn span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.category-card:hover .cat-btn:hover span {
  transform: translateX(5px);
}

.back-to-cats {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0.8;
  position: relative;
  overflow: hidden;
}

.back-to-cats::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 24px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.back-to-cats:hover {
  color: var(--dark) !important;
  opacity: 1;
}

.back-to-cats:hover::after {
  width: calc(100% - 24px);
}

.back-to-cats svg {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.back-to-cats:hover svg {
  transform: translateX(-8px);
}

/* ── COLLECTIONS PAGE OVERRIDES ── */
.collections-page .products-section {
  padding-top: 150px;
  min-height: 100vh;
  background: var(--ivory);
}

.collections-page .section-title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
}

.collections-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.col-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--deep);
}

.col-card:first-child {
  grid-row: 1 / 3;
  min-height: 600px;
}

.col-card:not(:first-child) {
  min-height: 280px;
}

.col-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}

.col-card:hover .col-bg {
  transform: scale(1.06);
}

.col-bg-1 {
  background: linear-gradient(160deg, #6B1C2E 0%, #3A0D18 40%, #1A0809 100%);
}

.col-bg-1::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 30%, rgba(201, 168, 76, 0.12) 0%, transparent 70%),
    repeating-conic-gradient(from 0deg at 50% 50%, rgba(201, 168, 76, 0.04) 0deg 10deg, transparent 10deg 20deg);
}

.col-bg-2 {
  background: linear-gradient(135deg, #1C3A2E 0%, #0D2118 100%);
}

.col-bg-2::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 40%, rgba(201, 168, 76, 0.1) 0%, transparent 60%);
}

.col-bg-3 {
  background: linear-gradient(135deg, #1C1C3A 0%, #0D0D21 100%);
}

.col-bg-3::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 60%, rgba(180, 140, 200, 0.15) 0%, transparent 60%);
}

.col-bg-4 {
  background: linear-gradient(135deg, #3A2C1C 0%, #2A1C0D 100%);
}

.col-bg-5 {
  background: linear-gradient(135deg, #2A1C30 0%, #180D1C 100%);
}

/* Saree illustration */
.saree-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.35;
}

.col-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 5, 2, 0.85) 0%, rgba(10, 5, 2, 0.15) 60%, transparent 100%);
}

.col-content {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
}

.col-tag {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 8px;
}

.col-name {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
}

.col-card:first-child .col-name {
  font-size: 38px;
}

.col-count {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
}

.col-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-top: 14px;
  text-transform: uppercase;
}

/* ── FEATURED ── */
.featured {
  background: var(--cream);
}

.featured-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.featured-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

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

.product-card {
  position: relative;
  cursor: pointer;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0;
  transition: all 0.3s ease;
  overflow: visible;
  display: flex;
  flex-direction: column;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  clip-path: none;
}

/* Keep inner sections with their own overflow */
.product-img {
  border-radius: 8px 8px 0 0 !important;
}

.product-info {
  border-radius: 0 0 8px 8px !important;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.product-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  background: #f8f8f8;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-card:hover .product-img img.img-main {
  opacity: 0;
}

.product-img img.img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: #fff;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 10;
}

.product-wish {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  cursor: pointer;
}

.product-wish:hover {
  background: #fff;
  transform: scale(1.1);
}

.product-wish .wish-icon-svg {
  stroke: #666;
}

.product-wish.active .wish-icon-svg {
  fill: #e91e63;
  stroke: #e91e63;
}

@keyframes wishPop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

.wish-animate {
  animation: wishPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Remove big heart pop and sparkles for Meesho style */
.sparkle-container,
.insta-heart-pop {
  display: none !important;
}





.product-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-type {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.product-name {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
}

.marquee-item {
  text-transform: uppercase;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  margin-top: auto;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding-top: 10px;
}

.price-main {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.5px;
}

.price-old {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
}

.product-card .btn-primary {
  width: 100%;
  border-radius: 4px;
  padding: 10px 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  background: #f2f2f2;
  color: var(--dark);
  border: 1px solid #e0e0e0;
  transition: all 0.3s;
}

.product-card .btn-primary:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* ── STORY / SPLIT ── */
.story {
  background: var(--dark);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.story-art {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #3A1020 0%, #1A0810 100%);
  min-height: 500px;
}

.story-art-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: repeating-linear-gradient(0deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 60px),
    repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 60px);
}

.story-art-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-text {
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-text .section-title {
  color: #fff;
}

.story-body {
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.6);
  margin: 28px 0 40px;
  max-width: 440px;
}

.story-stats {
  display: flex;
  gap: 40px;
  margin-top: 20px;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding-top: 32px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
}

/* ── JEWELLERY SPOTLIGHT ── */
.jewels {
  background: var(--ivory);
}

.jewels-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.jewels-header {
  margin-bottom: 60px;
}

.jewels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.jewel-tile {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--deep);
}

.jewel-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

.jewel-tile:hover .jewel-bg {
  transform: scale(1.08);
}

.jb-1 {
  background: radial-gradient(ellipse at 40% 40%, #C9A84C 0%, #3A2808 60%, #1A1208 100%);
}

.jb-2 {
  background: radial-gradient(ellipse at 60% 50%, #A84CA0 0%, #2A0828 60%, #180818 100%);
}

.jb-3 {
  background: radial-gradient(ellipse at 50% 40%, #4CA8A8 0%, #083A3A 60%, #081818 100%);
}

.jb-4 {
  background: radial-gradient(ellipse at 50% 60%, #E85D5D 0%, #3A0808 60%, #180808 100%);
}

.jb-5 {
  background: radial-gradient(ellipse at 40% 50%, #5DA8E8 0%, #08203A 60%, #081218 100%);
}

.jb-6 {
  background: radial-gradient(ellipse at 60% 40%, #A8C84C 0%, #203A08 60%, #101808 100%);
}

.jewel-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(10, 6, 2, 0);
  transition: background 0.4s;
}

.jewel-tile:hover .jewel-label {
  background: rgba(10, 6, 2, 0.5);
}

.jewel-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #fff;
  font-weight: 300;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s;
}

.jewel-tile:hover .jewel-name {
  opacity: 1;
  transform: translateY(0);
}

.jewel-line {
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin: 10px auto;
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.4s 0.05s, transform 0.4s 0.05s;
}

.jewel-tile:hover .jewel-line {
  opacity: 1;
  transform: scaleX(1);
}

.jewel-sub {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.4s 0.1s;
}

.jewel-tile:hover .jewel-sub {
  opacity: 1;
}

/* ── MODERN TESTIMONIALS ── */
.testimonials {
  background: var(--dark);
  padding: 120px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.test-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.testimonials .section-title {
  color: #fff;
  margin-bottom: 60px;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  text-align: left;
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.review-card.active,
.review-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.reviewer-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--gold);
}

.review-meta h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.review-meta span {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin-bottom: 25px;
  flex-grow: 1;
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.verified-badge {
  font-size: 10px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.test-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.dot.active {
  background: var(--gold);
}

@media (max-width: 992px) {
  .test-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .test-grid::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    min-width: 85vw;
    max-width: none;
    margin: 0;
    scroll-snap-align: center;
    flex-shrink: 0;
  }

  .test-dots {
    display: none;
  }
}

/* ── SERVICES ── */
.services {
  background: var(--cream);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.service-item {}

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

.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
}

/* ── NEWSLETTER ── */
.newsletter {
  background: linear-gradient(135deg, var(--maroon) 0%, #3A0D18 100%);
  text-align: center;
  padding: 80px 60px;
}

.newsletter .section-title {
  color: #fff;
}

.newsletter-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin: 16px 0 40px;
}

.nl-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
}

.nl-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-right: none;
  color: #fff;
  padding: 16px 22px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  outline: none;
}

.nl-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.nl-btn {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 16px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.nl-btn:hover {
  background: var(--gold-light);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 70px 60px 30px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo {
  font-size: 24px;
  display: block;
  margin-bottom: 18px;
}

.footer-tagline {
  font-size: 12px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.4);
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}

.social-btn:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.footer-col-title {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-pay {
  display: flex;
  gap: 10px;
}

.pay-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 12px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
}

/* ── DECORATIVE ELEMENTS ── */
.divider {
  text-align: center;
  padding: 20px 0;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 8px;
}

@media (max-width: 900px) {
  nav {
    padding: 16px 24px;
  }

  .nav-links {
    display: flex;
    gap: 15px;
  }

  /* Keep nav links for access */
  .nav-links a {
    font-size: 10px;
    letter-spacing: 1px;
  }

  section {
    padding: 70px 24px;
  }

  .collections-grid {
    grid-template-columns: 1fr;
  }

  .col-card:first-child {
    grid-row: auto;
    min-height: 380px;
  }

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

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .story {
    grid-template-columns: 1fr;
  }

  .story-art {
    min-height: 320px;
  }

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

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

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

  .footer-brand {
    grid-column: 1/-1;
  }

  .nav-cta:hover {
    background: var(--gold-light);
  }
}

.stock-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 4px 8px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 2px;
  letter-spacing: 1px;
}

.stock-instock {
  background: #E6F4EA;
  color: #1E8E3E;
}

.stock-outstock {
  background: #FCE8E6;
  color: #D93025;
  opacity: 0.8;
}

.product-img.out-of-stock {
  opacity: 1;
  filter: none;
  position: relative;
}

/* Diagonal ribbon across the top-right corner */
.product-img.out-of-stock::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 5, 0.35);
  z-index: 14;
  pointer-events: none;
}

.product-img.out-of-stock::after {
  content: none;
}

/* Corner ribbon badge at top-right */
.product-card .oos-ribbon {
  position: absolute;
  top: 14px;
  right: -1px;
  background: linear-gradient(135deg, #7B1C1C, #3D0A0A);
  color: #FFD9D9;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px 5px 10px;
  border-radius: 3px 0 0 3px;
  z-index: 20;
  font-family: 'Poppins', sans-serif;
  box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-card .oos-ribbon::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 0;
  border-width: 6px 0 0 6px;
  border-style: solid;
  border-color: transparent transparent transparent #5a0a0a;
}

@keyframes oosGlow {

  0%,
  100% {
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(201, 168, 76, 0);
  }

  50% {
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.3), 0 0 10px 2px rgba(201, 168, 76, 0.25);
  }
}

.product-card:has(.oos-ribbon) .oos-ribbon {
  animation: oosGlow 2.5s ease-in-out infinite;
}

.product-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-img .img-hover {
  opacity: 0;
  z-index: 2;
}

.product-img .img-main {
  z-index: 1;
}

.product-card:hover .img-main {
  opacity: 0;
}

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

.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(5px);
}

.modal-content {
  background: var(--cream);
  width: 90%;
  max-width: 600px;
  padding: 40px;
  border-radius: 8px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

/* CART SIDE DRAWER */
.side-drawer {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: 400px !important;
  border-radius: 0 !important;
  max-height: none !important;
  animation: drawerIn 0.4s ease-out;
}

/* LEAD POPUP STYLES */
.lead-popup-content {
  padding: 0;
  max-width: 900px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: var(--cream);
  animation: leadModalIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.lead-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 550px;
}

.lead-image {
  background-size: cover;
  background-position: center;
  position: relative;
}

.lead-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(250, 246, 239, 0.1));
}

.lead-form-container {
  padding: 50px;
}

@keyframes leadModalIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }

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

@media (max-width: 768px) {
  .lead-split {
    grid-template-columns: 1fr;
  }

  .lead-image {
    display: none;
  }

  .lead-form-container {
    padding: 40px 30px;
  }

  .modal-content.lead-popup-content {
    width: 95%;
    max-width: 450px;
  }
}

@keyframes drawerIn {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

.product-detail-viewport {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: #fff;
}

.product-detail-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 60px;
  position: relative;
}

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

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-item img {
  width: 60px;
  height: 80px;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-size: 14px;
  font-weight: 600;
}

.cart-item-price {
  color: var(--gold);
  font-size: 13px;
}

.btn-remove {
  background: none;
  border: none;
  color: #D93025;
  cursor: pointer;
  font-size: 18px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  font-size: 24px;
  color: var(--dark);
}

.product-name {
  font-size: 12px;
  height: 34px;
  overflow: hidden;
  margin-bottom: 8px;
  color: var(--dark);
  text-transform: uppercase;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--muted);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: #fff;
  font-family: 'Poppins', sans-serif;
  outline: none;
}

.admin-list {
  margin-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 20px;
}

.admin-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.admin-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.admin-item-info {
  flex: 1;
}

.admin-item-actions {
  display: flex;
  gap: 10px;
}

.admin-btn {
  padding: 6px 12px;
  font-size: 10px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  font-weight: 600;
}

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

.btn-delete {
  background: #D93025;
  color: #fff;
}

.btn-add {
  width: 100%;
  margin-top: 10px;
}

.about-section {
  background: var(--ivory);
  padding: 120px 60px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 50%;
  /* Oval shape */
  box-shadow: 20px 20px 60px rgba(201, 168, 76, 0.1);
  border: 2px solid var(--gold-light);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Instagram specific overrides to prevent cutting */
#instagram-hub .about-visual {
  aspect-ratio: 1/1;
  border-radius: 50%;
}

#instagram-hub .about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Instagram Grid Styles */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  height: 500px;
  gap: 15px;
  background: none !important;
  box-shadow: none !important;
}

.ig-main-img {
  grid-column: 1 / 5;
  grid-row: 1 / 6;
  z-index: 2;
  overflow: hidden;
  border-radius: 50%;
  /* Oval shape */
}

.ig-sub-img-1 {
  grid-column: 4 / 7;
  grid-row: 2 / 5;
  z-index: 3;
  overflow: hidden;
  border-radius: 50%;
  /* Oval shape */
  border: 10px solid #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(20px);
}

.ig-sub-img-2 {
  grid-column: 2 / 5;
  grid-row: 4 / 7;
  z-index: 1;
  overflow: hidden;
  border-radius: 50%;
  /* Oval shape */
  opacity: 0.8;
}

.instagram-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.instagram-grid div:hover img {
  transform: scale(1.08);
}

.ig-badge {
  z-index: 4;
  position: absolute !important;
  left: auto !important;
  right: -20px !important;
  bottom: -20px !important;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  color: #fff !important;
  padding: 15px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 10px 30px rgba(220, 39, 67, 0.4);
}

@media (max-width: 900px) {
  .instagram-grid {
    height: 400px;
  }
}

.about-p {
  font-size: 14px;
  line-height: 2;
  color: var(--muted);
  margin-bottom: 20px;
}

.about-stats-mini {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding-top: 30px;
}

.stat-mini strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--gold);
}

.stat-mini span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .about-section {
    padding: 70px 24px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.product-tabs {
  user-select: none;
}

.tab-item {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.3s;
  font-weight: 600;
  padding: 5px 10px;
  position: relative;
}

.tab-item:hover {
  color: var(--gold);
}

.tab-item.active {
  color: var(--gold);
}

.tab-item.active::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

.admin-dashboard-layout {
  display: flex;
  width: 100%;
  height: 100vh;
}

.admin-sidebar {
  width: 260px;
  background: var(--dark);
  color: #fff;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.admin-sidebar-top {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-label {
  font-size: 14px;
  margin-left: 10px;
  vertical-align: middle;
}

.admin-menu-toggle {
  display: none;
}

.admin-nav-links {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.admin-nav-item {
  padding: 18px 30px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
}

.admin-nav-item:hover {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
}

.admin-nav-item.active {
  background: var(--gold);
  color: var(--dark);
  font-weight: 600;
}

.logout-btn {
  margin-top: auto;
  margin-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 30px !important;
}

.admin-main {
  flex: 1;
  padding: 60px;
  overflow-y: auto;
  background: var(--cream);
}

.customer-table-container {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

th {
  padding: 15px;
  border-bottom: 2px solid var(--ivory);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

td {
  padding: 15px;
  border-bottom: 1px solid var(--ivory);
  font-size: 14px;
  color: var(--text);
}

.admin-item {
  display: grid;
  grid-template-columns: 80px 1fr 200px;
  padding: 20px;
  background: #fff;
  margin-top: 15px;
  border-radius: 8px;
  align-items: center;
}

/* PREMIUM USER PROFILE & DROPDOWN */
.user-profile-cont {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.user-avatar-badge {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(201, 168, 76, 0.3);
  border: 2px solid #fff;
  transition: transform 0.3s ease;
}

.user-profile-cont:hover .user-avatar-badge {
  transform: scale(1.05);
}

.user-info-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.user-welcome {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
}

.user-name-display {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  font-family: 'Playfair Display', serif;
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 15px;
  background: #fff;
  border-radius: 12px;
  width: 200px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
  border: 1px solid rgba(201, 168, 76, 0.15);
  animation: dropIn 0.3s ease;
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

.user-dropdown.active {
  display: flex;
}

.dropdown-header {
  padding: 20px;
  background: var(--ivory);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}

.dropdown-header .user-avatar-badge {
  margin: 0 auto 10px;
  width: 50px;
  height: 50px;
  font-size: 22px;
}

.dropdown-item {
  padding: 12px 20px;
  color: var(--text);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.3s;
  text-decoration: none;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.dropdown-item:hover {
  background: var(--ivory);
  color: var(--gold-dark);
}

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

.logout-item {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: #ff4d4d !important;
}

.logout-item:hover {
  background: #fff5f5;
}

@media (max-width: 768px) {
  .user-info-text {
    display: none;
  }

  .user-dropdown {
    right: -50px;
  }
}

/* AI Stylist Styles */
.ai-stylist {
  background: var(--ivory);
  padding: 120px 60px;
  text-align: center;
}

.stylist-sub {
  max-width: 600px;
  margin: 20px auto 50px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.upload-zone {
  max-width: 600px;
  margin: 0 auto;
  border: 2px dashed rgba(201, 168, 76, 0.3);
  padding: 60px;
  cursor: pointer;
  transition: 0.3s;
  background: #fff;
  border-radius: 8px;
}

.upload-zone:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.02);
}

.upload-icon {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 20px;
}

.upload-zone p {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--dark);
}

.upload-zone span {
  font-size: 10px;
  color: var(--muted);
  margin-top: 10px;
  display: block;
}

.ai-loader {
  width: 50px;
  height: 50px;
  border: 3px solid var(--ivory);
  border-top-color: var(--gold);
  border-radius: 50%;
  margin: 40px auto;
  animation: spin 1s linear infinite;
}

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

.ai-analysis p {
  font-style: italic;
  color: var(--gold);
  font-size: 14px;
}

.results-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 40px;
  color: var(--dark);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .results-grid {
    grid-template-columns: 1fr;
  }

  .ai-stylist {
    padding: 80px 24px;
  }
}

/* ── PRODUCT DETAIL MODAL ── */
#productDetailModal {
  z-index: 2000;
}

.product-detail-content {
  max-width: 1100px;
  width: 95%;
  height: 85vh;
  padding: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
}

.product-detail-flex {
  display: flex;
  height: 100%;
}

.product-detail-image-side {
  flex: 1.2;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
}

#detailMainImg {
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.product-detail-info-side {
  flex: 1;
  padding: 50px 60px;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-scroll-area {
  flex: 1;
  overflow-y: auto;
  margin: 25px 0;
  padding-right: 15px;
}

.product-scroll-area::-webkit-scrollbar {
  width: 5px;
}

.product-scroll-area::-webkit-scrollbar-track {
  background: var(--ivory);
}

.product-scroll-area::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

.product-detail-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 20px;
}

.product-detail-actions {
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.product-detail-description {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 25px;
}

.product-detail-thumbnails {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
}

.thumb-item {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
  object-fit: cover;
  background: #fff;
}

.thumb-item:hover,
.thumb-item.active {
  opacity: 1;
  border-color: var(--gold);
}

@media (max-width: 900px) {
  .product-detail-flex {
    flex-direction: column;
  }

  .product-detail-info-side {
    padding: 40px 24px;
  }

  .product-detail-image-side {
    padding: 60px 24px;
  }
}

/* ── PRODUCT CARD ENHANCEMENTS ── */
.product-card {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
}

.stock-badge {
  display: none;
}

.stock-outstock {
  background: #D93025;
  color: #fff;
}



/* ── RELATED PRODUCTS SLIDER ── */
.related-slider-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.related-slider {
  display: flex !important;
  gap: 20px;
  overflow-x: auto !important;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 20px 0;
  width: 100%;
}

.related-slider::-webkit-scrollbar {
  display: none;
}

.slider-item {
  min-width: 180px;
  max-width: 180px;
  flex: 0 0 auto;
  cursor: pointer;
  background: white;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
}

.slider-item:hover {
  transform: translateY(-10px);
}

.slider-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.slider-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 4px 10px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  z-index: 2;
}

.slider-info {
  padding: 15px;
  background: #fff;
}

.slider-name {
  font-size: 11px;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 3px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.slider-price {
  font-size: 10px;
  color: var(--gold);
  font-weight: 700;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  background: #fff;
  color: var(--dark);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: 0.3s;
  flex-shrink: 0;
  z-index: 10;
}

.slider-arrow:hover {
  background: var(--gold);
  color: #fff;
  transform: scale(1.1);
}

@media (max-width: 900px) {
  .slider-item {
    min-width: 140px;
    max-width: 140px;
  }

  .slider-img {
    height: 180px;
  }
}


@media (max-width: 768px) {
  .slider-item {
    min-width: 160px;
    max-width: 160px;
  }
}

/* FLOATING BUTTONS */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-whatsapp {
  background: #25D366;
}

.float-instagram {
  background: #E1306C;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.float-btn svg {
  width: 24px;
  height: 24px;
  fill: white;
}

/* ── NAV ACTIONS PREMIUM STYLES ── */
.nav-icon-svg {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wishlist-trigger:hover .nav-icon-svg {
  stroke: #e91e63 !important;
  transform: scale(1.1);
  filter: drop-shadow(0 0 5px rgba(233, 30, 99, 0.5));
}

.cart-trigger:hover .nav-icon-svg {
  stroke: var(--gold) !important;
  transform: scale(1.1);
  filter: drop-shadow(0 0 5px rgba(201, 168, 76, 0.5));
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--gold);
  color: #fff !important;
  font-size: 9px !important;
  min-width: 16px;
  height: 16px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  font-weight: 700 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  border: 1.5px solid var(--dark);
  transition: all 0.3s ease;
  padding: 0 !important;
}

.wishlist-trigger .cart-count {
  background: #e91e63 !important;
}

.wishlist-trigger:hover .cart-count,
.cart-trigger:hover .cart-count {
  transform: translateY(-2px);
}

/* -- CARE & DESCRIPTION BOX STYLING -- */
.detail-content-box {
  background: rgba(201, 168, 76, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: inset 0 0 15px rgba(201, 168, 76, 0.05);
}

.care-header,
.desc-header {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding-bottom: 8px;
  text-align: center;
}

.care-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.care-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
}

.care-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 14px;
}

.care-label {
  font-weight: 600;
  color: var(--dark);
  margin-right: 5px;
}

.desc-text {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
  text-align: justify;
}

/* --- SORTING --- */
.sort-wrapper {
  margin-left: auto;
}

.premium-select {
  background: var(--ivory);
  border: 1px solid var(--gold);
  color: var(--text);
  padding: 10px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  outline: none;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.premium-select:hover {
  background-color: #fff;
  border-color: var(--gold-dark);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.15);
}

.premium-select option {
  background: var(--ivory);
  color: var(--text);
  padding: 10px;
}

/* ── ABOUT PAGE SPECIFIC ── */
.about-page .hero {
  min-height: 60vh;
  padding-top: 120px;
}

.about-page .hero-container {
  grid-template-columns: 1fr;
  text-align: center;
}

.about-page .hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-page .hero-subtitle {
  margin: 0 auto 40px;
}

/* ── AI VIRTUAL STYLIST FAB ── */
.ai-fab {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(26, 18, 9, 0.85);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  text-decoration: none;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  overflow: hidden;
}

.ai-fab:hover {
  transform: scale(1.05) translateY(-5px);
  border-color: var(--gold);
  background: var(--dark);
  box-shadow: 0 15px 40px rgba(201, 168, 76, 0.25);
}

.ai-fab-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--dark);
  flex-shrink: 0;
  position: relative;
  animation: fabPulse 2s infinite;
}

@keyframes fabPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(201, 168, 76, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
  }
}

.ai-fab-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.ai-fab-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #e91e63;
  color: #fff;
  font-size: 8px;
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

/* ── WHATSAPP FAB ── */
.whatsapp-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45);
  background: #20ba5a;
}

.whatsapp-fab svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background: #fff;
  color: var(--dark);
  padding: 8px 15px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.whatsapp-fab:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.whatsapp-fab::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid #25D366;
  border-radius: 50%;
  opacity: 0;
  animation: whatsappRipple 2s infinite;
}

@keyframes whatsappRipple {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* ── AI PAGE HERO ── */
.ai-page .ai-hero {
  min-height: 50vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 60px;
  position: relative;
  overflow: hidden;
}

.ai-page .ai-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
  z-index: 1;
}

.ai-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.ai-page .hero-title {
  margin-bottom: 20px;
}

.ai-page .hero-subtitle {
  margin: 0 auto;
}

/* ── BACK BUTTON ── */
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-back:hover {
  color: #fff;
  transform: translateX(-5px);
}

.btn-back svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}

/* -- AI TEASER SECTION -- */
.ai-teaser-section {
  position: relative;
  overflow: hidden;
}

.ai-visual-wrapper {
  position: relative;
  display: inline-block;
}

.ai-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  box-shadow: 0 0 15px var(--gold);
  z-index: 5;
  animation: aiScan 3s ease-in-out infinite;
}

@keyframes aiScan {

  0%,
  100% {
    top: 5%;
    opacity: 0;
  }

  10%,
  90% {
    opacity: 1;
  }

  50% {
    top: 95%;
  }
}

.ai-badge-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(26, 18, 9, 0.8);
  backdrop-filter: blur(5px);
  border: 1px solid var(--gold);
  padding: 8px 15px;
  border-radius: 4px;
  z-index: 10;
}

.ai-badge-overlay span {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
}

.ai-teaser-section .about-visual {
  border-radius: 12px !important;
  aspect-ratio: auto !important;
  border: none !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15) !important;
}

/* ── BRAND ESSENCE SECTION ── */
.essence-section {
  background: var(--dark);
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.essence-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.essence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.essence-card {
  text-align: center;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.essence-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.essence-icon {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 24px;
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  position: relative;
}

.essence-icon::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.essence-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.essence-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  letter-spacing: 0.5px;
}

@media (max-width: 991px) {
  .essence-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .essence-section {
    padding: 80px 24px;
  }
}

/* --- SIDE NOTIFICATION --- */
.side-notification-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10002;
  display: flex;
  flex-direction: column;
  gap: 15px;
  pointer-events: none;
}

.side-notification {
  background: #fff;
  width: 350px;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  transform: translateX(120%);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: all;
  border-left: 4px solid var(--gold);
}

.side-notification.active {
  transform: translateX(0);
}

.side-notification-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.side-notification-content {
  flex-grow: 1;
}

.side-notification-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.side-notification-msg {
  font-size: 11px;
  color: var(--muted);
}

.side-notification-close {
  cursor: pointer;
  font-size: 20px;
  color: #ccc;
  padding: 5px;
}

.side-notification-btn {
  margin-top: 8px;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 1px;
}

/* Amazon-style Button States */
.btn-primary.added {
  background: #4CAF50 !important;
  border-color: #4CAF50 !important;
  pointer-events: none;
}

.btn-primary.added::before {
  content: "? ";
}

@media (max-width: 480px) {
  .side-notification {
    width: calc(100vw - 40px);
    right: 20px;
    bottom: 20px;
  }
}

/* Protect images from right click / context menu / drag & drop to prevent third-party ad popups */
img {
  -webkit-touch-callout: none !important; /* Disable iOS Safari callout */
  -webkit-user-select: none !important;    /* Safari */
  -khtml-user-select: none !important;     /* Konqueror HTML */
  -moz-user-select: none !important;        /* Firefox */
  -ms-user-select: none !important;         /* Internet Explorer/Edge */
  user-select: none !important;             /* Standard user selection */
  pointer-events: auto !important;          /* Ensure clicks are still registered */
}