/* ═══════════════════════════════════════════
   PRS FRAGRANCE — STYLESHEET
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #f5f0e8;
  --dark: #0a0a0f;
  --dark2: #111118;
  --dark3: #1a1a24;
  --text: #e8e2d8;
  --text-dim: #9a9080;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Cinzel', serif;
  --font-sans: 'Inter', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

/* ───────────────────────────────
   UTILITY
─────────────────────────────── */
.hidden { display: none !important; }

/* ═══════════════════════════════════════════
   INTRO SCREEN
═══════════════════════════════════════════ */
#intro-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

#intro-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Brand Overlay ── */
#brand-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 2.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  opacity: 0;
  animation: none;
  z-index: 10;
  text-align: center;
  width: auto;
  max-width: 90%;
}

#brand-overlay.show {
  animation: slideInLeft 1.2s var(--ease) forwards;
}

@keyframes slideInLeft {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
  60%  { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

#brand-line-top,
#brand-line-bottom {
  width: 0;
  height: 1px;
  background: var(--gold);
  animation: expandLine 0.8s 0.6s var(--ease) forwards;
}

@keyframes expandLine {
  to { width: 100%; }
}

#brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0.1rem;
  padding: 0.5rem 0;
}

.brand-prs {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-shadow: 0 0 60px rgba(201,168,76,0.5);
}

.brand-fragrance {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.35em;
}

#brand-tagline {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  color: var(--gold-light);
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards;
}

@keyframes fadeIn {
  to { opacity: 0.85; }
}

/* ── Skip Button ── */
#skip-btn {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.3s, border-color 0.3s;
}
#skip-btn:hover {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold);
}

/* ═══════════════════════════════════════════
   LOOP SCREEN
═══════════════════════════════════════════ */
#loop-screen {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#loop-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loop-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.3) 60%,
    rgba(0,0,0,0.5) 100%
  );
}

/* ── Navigation ── */
#main-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
  animation: navSlideDown 1s 0.3s var(--ease) both;
}

@keyframes navSlideDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}

#nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  cursor: default;
  z-index: 101;
}
#nav-logo span { font-family: var(--font-serif); font-style: italic; font-weight: 300; color: var(--cream); }

#nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}
#nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
#nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
#nav-links a:hover { color: var(--gold); }
#nav-links a:hover::after { width: 100%; }

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  z-index: 101;
  line-height: 1;
}

#nav-cart {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 50px;
  padding: 0.45rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  z-index: 101;
}
#nav-cart:hover { border-color: var(--gold); background: rgba(201,168,76,0.15); }
#cart-count {
  font-size: 0.75rem;
  background: var(--gold);
  color: #000;
  border-radius: 50%;
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
}

/* ── Hero Content ── */
#hero-content {
  position: absolute;
  left: 8%;
  bottom: 18%;
  z-index: 10;
  max-width: 600px;
}

.hero-sub {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--gold-light);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.2rem;
}
.hero-title em { color: var(--gold); font-style: italic; }

.hero-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Scroll Indicator ── */
#scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.6;
  animation: bounceScroll 2s infinite;
  pointer-events: none;
}
#scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6);
}
.scroll-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
@keyframes bounceScroll {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ═══════════════════════════════
   CART SIDEBAR
════════════════════════════════ */
.cart-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0; right: -400px;
  width: 400px; height: 100vh;
  background: var(--dark);
  border-left: 1px solid rgba(255,255,255,0.1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  box-shadow: -5px 0 20px rgba(0,0,0,0.5);
}
.cart-sidebar.open {
  right: 0;
}
@media (max-width: 480px) {
  .cart-sidebar { width: 100%; right: -100%; }
}

.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-header h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 0;
}
.close-cart-btn {
  background: none; border: none;
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.cart-items-container {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.cart-item img {
  width: 70px; height: 70px;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
}
.cart-item-details {
  flex-grow: 1;
}
.cart-item-details h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.cart-item-details p {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.cart-qty-controls {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255,255,255,0.05);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  width: max-content;
}
.cart-qty-controls button {
  background: none; border: none; color: var(--text);
  cursor: pointer; font-size: 1.1rem;
}

.cart-item-remove {
  background: none; border: none;
  color: var(--text-dim);
  font-size: 1.5rem;
  cursor: pointer;
}
.cart-item-remove:hover { color: #e74c3c; }

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.checkout-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  background: #25D366; /* WhatsApp Green */
  color: #fff;
}
.checkout-btn:hover {
  background: #128C7E;
}

/* Pagination Styles */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.page-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.page-btn:hover:not(:disabled) {
  background: rgba(255,255,255,0.15);
}
.page-btn.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  font-weight: 600;
}
.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ── Reveal Animations ── */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  animation: revealUp 0.9s var(--ease) forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0a0f;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
}

/* ═══════════════════════════════════════════
   SECTIONS — COMMON
═══════════════════════════════════════════ */
.section {
  padding: 8rem 0;
  background: var(--dark2);
}
.dark-section { background: var(--dark3); }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
}

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 3rem;
}
.section-title em { color: var(--gold); }

/* ═══════════════════════════════════════════
   COLLECTIONS GRID
═══════════════════════════════════════════ */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.collection-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
  position: relative;
  cursor: pointer;
}
.collection-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.collection-card .badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: #000;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  z-index: 2;
}

.product-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.discount-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #e74c3c;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  z-index: 2;
}

.out-of-stock-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.out-of-stock-overlay span {
  background: #333;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.old-price {
  text-decoration: line-through;
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-right: 0.5rem;
}

.card-img-wrap {
  height: 180px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-img-bg {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  transition: opacity 0.4s, transform 0.6s;
}
.collection-card:hover .card-img-bg {
  opacity: 0.8;
  transform: scale(1.08);
}

.bg-oud    { background: radial-gradient(circle at 40% 60%, #6b3a1f 0%, #1a0a00 100%); }
.bg-floral { background: radial-gradient(circle at 60% 40%, #8e3a5e 0%, #2a0a1a 100%); }
.bg-ocean  { background: radial-gradient(circle at 50% 50%, #1a4a6b 0%, #0a0a1a 100%); }
.bg-noir   { background: radial-gradient(circle at 30% 70%, #2a2a2a 0%, #050505 100%); }

.card-img-icon {
  font-size: 3.5rem;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
  transition: transform 0.4s;
}
.collection-card:hover .card-img-icon { transform: scale(1.15) rotate(5deg); }

.card-body { padding: 1.5rem; }
.card-body h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.card-body p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.card-link {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-decoration: none;
  transition: letter-spacing 0.3s;
}
.card-link:hover { letter-spacing: 0.25em; }

.collection-card.featured {
  border-color: rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.04);
}

/* ═══════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════ */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-body {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-dim);
  margin-bottom: 1.2rem;
}

.about-visual { position: relative; }

.about-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.orb1 {
  width: 250px; height: 250px;
  background: rgba(201,168,76,0.12);
  top: -40px; right: -40px;
  animation: floatOrb 6s ease-in-out infinite;
}
.orb2 {
  width: 180px; height: 180px;
  background: rgba(130,80,200,0.08);
  bottom: 0; left: 0;
  animation: floatOrb 8s ease-in-out infinite reverse;
}
@keyframes floatOrb {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-20px); }
}

.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: border-color 0.3s, background 0.3s;
}
.stat-item:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.05);
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   SHOP / PRODUCT GRID
═══════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.product-img {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-bg {
  position: absolute;
  inset: 0;
  opacity: 0.5;
}
.bg-warm { background: radial-gradient(circle, #6b4a1f, #1a0a00); }
.bg-rose  { background: radial-gradient(circle, #7a3a5a, #200a15); }
.bg-dark  { background: radial-gradient(circle, #1a1a2a, #050508); }
.bg-aqua  { background: radial-gradient(circle, #1a3a5a, #050a12); }

.product-icon {
  font-size: 4rem;
  z-index: 1;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.6));
  transition: transform 0.4s;
}
.product-card:hover .product-icon { transform: scale(1.1) rotate(-5deg); }

.product-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.4s;
}
.product-card:hover .product-real-img { transform: scale(1.05); }

.product-info { padding: 1.4rem; }

.product-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 0.7rem;
}

.product-info h4 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.3rem;
  line-height: 1.4;
}

.product-info p {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-light);
}

.add-to-cart {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.add-to-cart:hover {
  background: var(--gold);
  color: #000;
  transform: scale(1.05);
}
.add-to-cart:active { transform: scale(0.97); }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-details { margin-bottom: 2rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-dim);
}
.ci-icon { font-size: 1.2rem; }

.social-links { display: flex; gap: 0.8rem; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-weight: 600;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  transition: border-color 0.3s;
  resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-dim); }

#cf-status {
  font-size: 0.82rem;
  color: var(--gold-light);
  min-height: 1.2rem;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
#main-footer {
  background: var(--dark);
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ═══════════════════════════════════════════
   CART TOAST
═══════════════════════════════════════════ */
#cart-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  backdrop-filter: blur(12px);
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  font-size: 0.85rem;
  z-index: 9000;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s;
}
#cart-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   BRANDS RING SECTION
═══════════════════════════════════════════ */
.brands-section {
  background: var(--dark);
  padding: 8rem 0;
  overflow: hidden;
  position: relative;
  min-height: 750px;
  display: flex;
  align-items: center;
}

.brands-header {
  text-align: left;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  width: 100%;
}

.brands-header .section-title,
.brands-header .brands-tagline,
.brands-header .section-label {
  max-width: 50%;
}

.brands-tagline {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin: 1rem 0 0;
  line-height: 1.8;
}

#active-brand-display {
  margin-top: 5rem;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

#active-brand-display.show {
  opacity: 1;
  transform: translateX(0);
}

#active-brand-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0 40px rgba(201,168,76,0.25);
  background: linear-gradient(to right, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Scene wrapper ── */
.brands-scene {
  position: absolute;
  top: 50%;
  right: -350px;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* ── Decorative static rings ── */
.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  animation: pulseDeco 4s ease-in-out infinite;
}
.ring-outer { width: 680px; height: 680px; animation-delay: 0s;   border-color: rgba(201,168,76,0.06); }
.ring-mid   { width: 540px; height: 540px; animation-delay: 0.8s; border-color: rgba(201,168,76,0.10); }
.ring-inner { width: 400px; height: 400px; animation-delay: 1.6s; border-color: rgba(201,168,76,0.14); border-style: dashed; }

@keyframes pulseDeco {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1;   }
}

/* ── Center piece ── */
.ring-center-piece {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, rgba(10,10,15,0.9) 70%);
  border: 1px solid rgba(201,168,76,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  z-index: 5;
  box-shadow: 0 0 60px rgba(201,168,76,0.1), inset 0 0 40px rgba(201,168,76,0.05);
}

.ring-center-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1);    opacity: 0.6; }
  50%       { transform: scale(1.2); opacity: 1;   }
}

.ring-center-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.ring-center-sub {
  font-family: var(--font-serif);
  font-size: 0.65rem;
  font-style: italic;
  letter-spacing: 0.2em;
  color: rgba(201,168,76,0.6);
  position: relative;
  z-index: 1;
}

/* ── Rotating orbit ── */
.brands-orbit {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  transform-origin: center;
  /* JS drives --orbit-angle via inline style */
  transform: rotate(var(--orbit-angle, 0deg));
  transition: transform 0.05s linear;
  will-change: transform;
}

/* ── Individual brand nodes ── */
.brand-node {
  position: absolute;
  /* JS sets top/left + counter-rotation */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.brand-node-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: transparent;
  transition: transform 0.35s var(--ease), filter 0.35s;
  position: relative;
}

.brand-node:hover .brand-node-card {
  transform: scale(1.3);
  filter: drop-shadow(0 0 15px var(--brand-glow, rgba(201,168,76,0.4)));
  z-index: 10;
}

.brand-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.brand-abbr {
  display: none;
}

.brand-name-label {
  display: none;
}
.brand-node:hover .brand-name-label {
  color: var(--brand-color, var(--gold));
}

/* ── Scroll hint text ── */
.brands-scroll-hint {
  position: absolute;
  right: 60px;
  bottom: 40px;
  text-align: right;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: rgba(201,168,76,0.4);
  animation: hintFade 2s ease-in-out infinite;
  z-index: 10;
}
@keyframes hintFade {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.8; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  #main-nav { 
    padding: 1rem 1.5rem;
    flex-wrap: nowrap;
    background: rgba(0,0,0,0.9);
  }
  
  #nav-logo {
    font-size: 1.1rem;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  #nav-links { 
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.98);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    margin: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }
  
  #nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  
  #nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }
  
  #nav-links.mobile-open {
    display: flex;
  }
  
  #nav-cart {
    padding: 0.4rem 0.8rem;
  }
  
  .section-inner { padding: 0 1.5rem; }
  .about-inner,
  .contact-inner { 
    grid-template-columns: 1fr; 
    gap: 2.5rem; 
  }
  
  #hero-content { 
    left: 5%; 
    bottom: 12%;
    right: 5%;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-desc {
    font-size: 0.95rem;
  }
  
  .hero-btns {
    flex-direction: column;
    width: 100%;
    gap: 0.8rem;
  }
  
  .hero-btns a {
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
  }
  
  #brand-overlay { 
    padding: 1.5rem 2rem;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
  }
  
  .brand-prs {
    font-size: 2.5rem;
  }
  
  .brand-fragrance {
    font-size: 1.2rem;
  }
  
  #brand-tagline {
    font-size: 0.5rem;
  }
  
  /* Skip button mobile */
  #skip-btn {
    bottom: 1rem;
    right: 1rem;
    font-size: 0.7rem;
    padding: 0.4rem 1rem;
  }
  
  /* Video full height mobile */
  #intro-video,
  #loop-video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
  }
  
  #intro-screen,
  #loop-screen {
    height: 100vh;
    overflow: hidden;
  }
  
  /* Brands section mobile - Complete redesign */
  .brands-section {
    min-height: auto;
    padding: 3rem 0;
    overflow: visible;
    display: block;
  }
  
  .brands-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .brands-header .section-title,
  .brands-header .brands-tagline,
  .brands-header .section-label {
    max-width: 100%;
  }
  
  .brands-header .section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .brands-tagline {
    font-size: 0.85rem;
    padding: 0 1rem;
  }
  
  /* Hide the rotating ring on mobile */
  .brands-scene {
    display: none;
  }
  
  /* Hide active brand display on mobile */
  #active-brand-display {
    display: none;
  }
  
  /* Hide scroll hint on mobile */
  .brands-scroll-hint {
    display: none;
  }
  
  /* Create a simple grid for mobile */
  .brands-section::after {
    content: '';
    display: block;
    width: 100%;
  }
  
  /* Hide scroll indicator on mobile */
  #scroll-indicator {
    display: none;
  }
  
  /* Mobile brands grid */
  .brands-mobile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 0 1.5rem;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .brands-mobile-grid .brand-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    transition: all 0.3s ease;
  }
  
  .brands-mobile-grid .brand-item:hover {
    background: rgba(201,168,76,0.1);
    border-color: var(--gold);
    transform: translateY(-4px);
  }
  
  .brands-mobile-grid .brand-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.9);
  }
}


@media (max-width: 600px) {
  .collection-grid,
  .product-grid { 
    grid-template-columns: 1fr; 
  }
  
  .about-stat-grid { 
    grid-template-columns: 1fr 1fr; 
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-desc {
    font-size: 0.9rem;
  }
  
  .btn-primary,
  .btn-ghost {
    font-size: 0.7rem;
    padding: 0.7rem 1.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .product-img {
    height: 250px;
  }

  /* News section mobile */
  #news-feed {
    min-height: 60vh !important;
  }

  #news-slider-container {
    height: 60vh !important;
  }

  .news-slide h2 {
    font-size: 2rem !important;
  }

  .news-slide .btn-primary {
    padding: 0.8rem 2rem !important;
    font-size: 0.9rem !important;
  }

  /* Brands section extra small mobile */
  .brands-mobile-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .brand-img {
    width: 60px;
    height: 60px;
  }

  .brands-header {
    padding: 0 1rem;
  }
  
  .brands-header .section-title {
    font-size: 1.6rem;
  }
}
