/* ============================================
   Rozin Farah - Professional Makeup Artist
   Luxury Beauty Landing Page Stylesheet
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Heebo:wght@300;400;500;600;700&family=Noto+Sans+Arabic:wght@300;400;500;600;700&display=swap');

/* ---------- Design Tokens (CSS Custom Properties) ---------- */
:root {
  /* Background */
  --bg-primary: #FDFCFA;
  --bg-secondary: #F9F6F0;
  --bg-card: #FFFFFF;

  /* Borders & Shadows */
  --border-subtle: #EFE9E1;
  --border-gold: #C5A059;
  --shadow-soft: 0 4px 24px rgba(26, 26, 26, 0.04);
  --shadow-card: 0 8px 40px rgba(26, 26, 26, 0.06);
  --shadow-elevated: 0 16px 64px rgba(26, 26, 26, 0.08);
  --shadow-gold-glow: 0 4px 20px rgba(197, 160, 89, 0.25);

  /* Gold Accents */
  --gold-primary: #C5A059;
  --gold-bright: #D4AF37;
  --gold-deep: #B88E3E;
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #C5A059 50%, #B88E3E 100%);
  --gold-shimmer: linear-gradient(105deg, #B88E3E 0%, #D4AF37 25%, #F5E6B8 50%, #D4AF37 75%, #B88E3E 100%);

  /* Typography */
  --text-primary: #1A1A1A;
  --text-dark: #2C2C2C;
  --text-muted: #7A7268;
  --text-light: #A39B91;
  --text-on-gold: #FFFFFF;

  /* Fonts */
  --font-display: 'Playfair Display', 'Heebo', serif;
  --font-body: 'Inter', 'Heebo', 'Noto Sans Arabic', sans-serif;
  --font-hebrew: 'Heebo', 'Inter', sans-serif;
  --font-arabic: 'Noto Sans Arabic', 'Inter', sans-serif;

  /* Spacing */
  --section-padding: clamp(3rem, 8vw, 6rem);
  --container-max: 1200px;
  --container-padding: clamp(1rem, 4vw, 2rem);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-normal: 350ms;
  --duration-slow: 600ms;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;

  /* Top Announcement & Navbar */
  --announcement-height: 38px;
  --navbar-height: 84px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--navbar-height) + var(--announcement-height));
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  direction: rtl;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* RTL language-specific fonts */
[lang="he"] body,
[lang="he"] {
  font-family: var(--font-hebrew);
}

[lang="ar"] body,
[lang="ar"] {
  font-family: var(--font-arabic);
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---------- Container ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ---------- Scroll Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-smooth),
              transform var(--duration-slow) var(--ease-smooth);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

/* ============================================
   TOP ANNOUNCEMENT BAR
   ============================================ */
.top-announcement {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--announcement-height);
  z-index: 1001;
  background: linear-gradient(90deg, #181716 0%, #25211D 50%, #181716 100%);
  color: #FAF5EE;
  border-bottom: 1px solid rgba(197, 160, 89, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--container-padding);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.top-announcement__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.top-announcement__text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.25px;
  color: #F8F4EE;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
  white-space: nowrap;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: var(--announcement-height);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  background: rgba(253, 252, 250, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(239, 233, 225, 0.8);
  transition: background var(--duration-normal) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-smooth),
              top var(--duration-normal) var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(253, 252, 250, 0.96);
  box-shadow: 0 2px 24px rgba(26, 26, 26, 0.08);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Brand Logo */
.navbar__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar__logo {
  height: 58px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  transition: transform var(--duration-fast) var(--ease-bounce),
              filter var(--duration-fast) var(--ease-smooth);
  filter: drop-shadow(0 2px 10px rgba(197, 160, 89, 0.28));
}

.navbar__logo:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 4px 14px rgba(197, 160, 89, 0.4));
}

/* Navbar Actions */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(249, 246, 240, 0.9);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 4px;
  gap: 2px;
}

.lang-btn {
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-full);
  transition: all var(--duration-fast) var(--ease-smooth);
  white-space: nowrap;
}

.lang-btn.active {
  background: var(--bg-card);
  color: var(--text-primary);
  font-weight: 600;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

.lang-btn:hover:not(.active) {
  color: var(--text-dark);
}

/* WhatsApp & Instagram Navbar Buttons */
.navbar__instagram,
.navbar__whatsapp {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: transform var(--duration-fast) var(--ease-bounce),
              box-shadow var(--duration-fast) var(--ease-smooth);
}

.navbar__whatsapp {
  background: #25D366;
}

.navbar__whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

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

.navbar__instagram:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 18px rgba(220, 39, 67, 0.45);
}

.navbar__instagram svg,
.navbar__whatsapp svg {
  width: 21px;
  height: 21px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--navbar-height) + var(--announcement-height));
  overflow: hidden;
  background: var(--bg-secondary);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(1.1) saturate(0.85);
}

/* Gradient overlay for text readability */
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(249, 246, 240, 0.55) 0%,
    rgba(253, 252, 250, 0.82) 40%,
    rgba(253, 252, 250, 0.96) 70%,
    var(--bg-primary) 100%
  );
}

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

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-bright);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 6s infinite var(--ease-smooth);
}

.particle:nth-child(1) { left: 15%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 35%; top: 60%; animation-delay: 1.2s; width: 3px; height: 3px; }
.particle:nth-child(3) { left: 65%; top: 30%; animation-delay: 2.4s; width: 5px; height: 5px; }
.particle:nth-child(4) { left: 80%; top: 50%; animation-delay: 3.6s; }
.particle:nth-child(5) { left: 50%; top: 75%; animation-delay: 4.8s; width: 3px; height: 3px; }
.particle:nth-child(6) { left: 25%; top: 85%; animation-delay: 1.8s; width: 6px; height: 6px; }

@keyframes particleFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
  30% { opacity: 0.6; }
  50% { opacity: 0.8; transform: translateY(-40px) scale(1); }
  70% { opacity: 0.4; }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 0 3rem;
}

/* Hero Official Crest Logo */
.hero__crest {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.hero__crest-img {
  width: 96px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(197, 160, 89, 0.38));
  transition: transform var(--duration-normal) var(--ease-bounce);
}

.hero__crest-img:hover {
  transform: scale(1.08) rotate(3deg);
}

/* Gold decorative line above headline */
.hero__decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 1.5rem;
}

.hero__decoration-line {
  width: 60px;
  height: 1px;
  background: var(--gold-gradient);
}

.hero__decoration-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold-bright);
  transform: rotate(45deg);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-deep);
  margin-bottom: 1.5rem;
  letter-spacing: 0.3px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 1.25rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero__title .highlight {
  background: var(--gold-shimmer);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

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

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 550px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
}

/* CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--gold-gradient);
  color: var(--text-on-gold);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-gold-glow);
  transition: transform var(--duration-fast) var(--ease-bounce),
              box-shadow var(--duration-normal) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.3) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: btnShimmer 3s ease-in-out infinite;
}

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

.btn-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(197, 160, 89, 0.4);
}

.btn-cta:active {
  transform: translateY(0) scale(0.98);
}

.btn-cta .arrow-icon {
  transition: transform var(--duration-fast) var(--ease-smooth);
}

.btn-cta:hover .arrow-icon {
  transform: translateX(-4px);
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 12px;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll-indicator .scroll-line {
  width: 1px;
  height: 24px;
  background: linear-gradient(to bottom, var(--gold-primary), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  background: rgba(197, 160, 89, 0.06);
  border: 1px solid rgba(197, 160, 89, 0.15);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.section-header__divider {
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 0 auto;
  border-radius: var(--radius-full);
}

/* Product Grid */
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (max-width: 640px) {
  .products__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Product Card */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-smooth),
              border-color var(--duration-normal) var(--ease-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
  border-color: rgba(197, 160, 89, 0.35);
}

/* Best seller badge */
.product-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  padding: 6px 16px;
  background: var(--gold-gradient);
  color: var(--text-on-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(197, 160, 89, 0.35);
}

[dir="ltr"] .product-card__badge {
  right: auto;
  left: 16px;
}

/* Product Image Wrapper */
/* Product Gallery Carousel */
.product-gallery {
  position: relative;
  background: var(--bg-secondary);
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  user-select: none;
}

.product-gallery__slides {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.product-gallery__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity var(--duration-normal) var(--ease-smooth),
              transform var(--duration-normal) var(--ease-smooth);
  pointer-events: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery__slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.product-gallery::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 65%, rgba(26, 26, 26, 0.15) 100%);
  pointer-events: none;
  transition: background var(--duration-normal) var(--ease-smooth);
  z-index: 2;
}

.product-gallery:hover::after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, transparent 40%, rgba(26, 26, 26, 0.3) 100%);
}

.product-card__image-bg {
  position: absolute;
  inset: -15px;
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  object-fit: cover;
  object-position: center;
  filter: blur(24px) brightness(0.96) saturate(1.1);
  opacity: 0.65;
  transform: scale(1.08);
  pointer-events: none;
  z-index: 0;
}

.product-card__image {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 1;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.product-gallery:hover .product-card__image {
  transform: scale(1.04);
}

/* Chevron Navigation Buttons */
.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(253, 252, 250, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(197, 160, 89, 0.4);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) var(--ease-bounce);
  box-shadow: 0 4px 16px rgba(26, 26, 26, 0.15);
  cursor: pointer;
  opacity: 0.85;
}

.gallery-nav-btn:hover {
  background: var(--gold-gradient);
  color: #FFFFFF;
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.45);
  border-color: transparent;
}

.gallery-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.gallery-nav-btn--prev {
  left: 12px;
}

.gallery-nav-btn--next {
  right: 12px;
}

/* Bold Chevron SVG Icon (matching user's provided chevron geometry) */
.chevron-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

/* Zoom hint button overlay */
.product-card__zoom-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(26, 26, 26, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all var(--duration-normal) var(--ease-smooth);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  z-index: 4;
  white-space: nowrap;
}

.product-gallery:hover .product-card__zoom-hint {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Pagination Dots */
.product-gallery__dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(26, 26, 26, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius-full);
  pointer-events: auto;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-smooth);
  padding: 0;
}

.gallery-dot.active {
  width: 22px;
  background: var(--gold-bright);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

/* Product Body */
.product-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 0.75rem;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text-primary);
}

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.product-card__price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-primary);
  font-family: var(--font-display);
}

.product-card__price-currency {
  font-size: 1.1rem;
  color: var(--gold-deep);
  font-weight: 600;
}

.product-card__description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* Shipping Cost Badge */
.product-card__shipping {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(26, 26, 26, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  width: fit-content;
}

.product-card__shipping::before {
  content: '📦';
  font-size: 13px;
}

/* Free Shipping Variant */
.product-card__shipping--free {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.3);
  color: #15803d;
  font-weight: 600;
}

.product-card__shipping--free::before {
  content: '✨';
}

/* Free Shipping Badge (floating) */
.product-card__badge--free-shipping {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4);
}

/* Featured Card (Product 7) */
.product-card--featured {
  border-color: rgba(34, 197, 94, 0.3);
}

.product-card--featured:hover {
  border-color: rgba(34, 197, 94, 0.5);
  box-shadow: 0 16px 64px rgba(34, 197, 94, 0.12), var(--shadow-elevated);
}

/* Feature Pills */
.product-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.75rem;
  margin-top: auto;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(197, 160, 89, 0.07);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  color: var(--gold-deep);
  line-height: 1.2;
}

.feature-pill svg {
  color: var(--gold-bright);
  flex-shrink: 0;
}

/* Product Spec / Lash Lengths Badge */
.product-card__spec-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.12) 0%, rgba(212, 175, 55, 0.06) 100%);
  border: 1px solid rgba(197, 160, 89, 0.35);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(197, 160, 89, 0.08);
  transition: all var(--duration-fast) var(--ease-smooth);
}

.product-card:hover .product-card__spec-badge {
  border-color: var(--gold-primary);
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.18) 0%, rgba(212, 175, 55, 0.1) 100%);
  box-shadow: 0 4px 14px rgba(197, 160, 89, 0.2);
  transform: translateY(-1px);
}

.spec-badge__icon {
  width: 16px;
  height: 16px;
  color: var(--gold-deep);
  flex-shrink: 0;
}

.spec-badge__text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.1px;
}

/* Product Actions */
.product-card__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

/* Primary Gold Button */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--gold-gradient);
  color: var(--text-on-gold);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold-glow);
  transition: all var(--duration-fast) var(--ease-bounce);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: btnShimmer 3s ease-in-out infinite;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(197, 160, 89, 0.4);
}

.btn-gold:active {
  transform: translateY(0);
}

/* Secondary Outline Button */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  background: transparent;
  color: #25D366;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1.5px solid #25D366;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.btn-outline:hover {
  background: rgba(37, 211, 102, 0.06);
  border-color: #20BA5A;
  transform: translateY(-1px);
}

.btn-outline svg {
  width: 18px;
  height: 18px;
}

/* Shipping Guarantee Badge Beneath CTA */
.product-card__shipping-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(197, 160, 89, 0.07);
  border: 1px solid rgba(197, 160, 89, 0.22);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--duration-fast) var(--ease-smooth);
  margin-top: 2px;
}

.product-card:hover .product-card__shipping-badge {
  background: rgba(197, 160, 89, 0.12);
  border-color: rgba(197, 160, 89, 0.45);
}

.product-card__shipping-badge-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
  letter-spacing: 0.1px;
}

/* Shipping Banner beneath Product Grid */
.products__shipping-banner {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

.shipping-banner__card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(249, 246, 240, 0.96) 100%);
  border: 1px solid rgba(197, 160, 89, 0.35);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.12), 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.shipping-banner__card:hover {
  transform: translateY(-2px);
  border-color: var(--gold-primary);
  box-shadow: 0 8px 30px rgba(197, 160, 89, 0.25);
}

.shipping-banner__text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.2px;
}

/* ============================================
   TRUST / QUALITY HIGHLIGHTS
   ============================================ */
.trust {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

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

@media (max-width: 768px) {
  .trust__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.trust-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: transform var(--duration-normal) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-smooth);
}

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

.trust-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 24px;
  transition: transform var(--duration-normal) var(--ease-bounce);
}

.trust-card:hover .trust-card__icon {
  transform: scale(1.1) rotate(-5deg);
}

.trust-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.trust-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 2.5rem 0;
  background: #141311;
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(197, 160, 89, 0.15);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer__brand {
  display: flex;
  align-items: center;
}

.footer__logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.2) drop-shadow(0 2px 10px rgba(197, 160, 89, 0.3));
}

.footer__contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__instagram-link,
.footer__phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.footer__instagram-link svg {
  color: #E1306C;
}

.footer__instagram-link:hover {
  background: rgba(225, 48, 108, 0.15);
  border-color: rgba(225, 48, 108, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(225, 48, 108, 0.3);
  color: #FFFFFF;
}

.footer__phone-link svg {
  color: var(--gold-bright);
}

.footer__phone-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.footer__phone-number {
  color: var(--gold-bright);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer__phone-link:hover {
  background: rgba(197, 160, 89, 0.2);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(197, 160, 89, 0.25);
}

.footer__copy {
  font-size: 13px;
  letter-spacing: 0.3px;
}

/* ============================================
   LIGHTBOX IMAGE MODAL
   ============================================ */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--ease-smooth);
  padding: 20px;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 16, 14, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: modalPop var(--duration-normal) var(--ease-bounce);
}

@keyframes modalPop {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.lightbox-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.lightbox-image-container {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(197, 160, 89, 0.3);
  max-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  display: block;
}

/* Lightbox Navigation Buttons */
.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(253, 252, 250, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(197, 160, 89, 0.45);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) var(--ease-bounce);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.lightbox-nav-btn:hover {
  background: var(--gold-gradient);
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 8px 30px rgba(197, 160, 89, 0.6);
  border-color: transparent;
}

.lightbox-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.lightbox-nav-btn--prev {
  left: -74px;
}

.lightbox-nav-btn--next {
  right: -74px;
}

.lightbox-nav-btn .chevron-icon {
  width: 20px;
  height: 20px;
}

.lightbox-close {
  align-self: flex-end;
  margin-bottom: 10px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) var(--ease-smooth);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.lightbox-close:hover {
  background: var(--gold-gradient);
  transform: scale(1.1);
  box-shadow: 0 4px 14px rgba(197, 160, 89, 0.5);
  border-color: transparent;
}

.lightbox-caption {
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 15px;
  margin-top: 14px;
  letter-spacing: 0.5px;
  text-align: center;
}

@media (max-width: 992px) {
  .lightbox-nav-btn--prev {
    left: 10px;
  }
  .lightbox-nav-btn--next {
    right: 10px;
  }
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--duration-fast) var(--ease-bounce),
              box-shadow var(--duration-normal) var(--ease-smooth);
  animation: floatPulse 3s ease-in-out infinite;
}

[dir="ltr"] .whatsapp-float {
  left: auto;
  right: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* Pulse ring animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: pulsing 2.5s ease-out infinite;
}

@keyframes pulsing {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

@keyframes floatPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero__content {
    padding: 3rem 1rem 2rem;
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  :root {
    --navbar-height: 72px;
    --announcement-height: 34px;
  }

  .top-announcement__text {
    font-size: 11.5px;
    letter-spacing: 0.1px;
  }

  .shipping-banner__card {
    padding: 12px 20px;
    width: 100%;
  }

  .shipping-banner__text {
    font-size: 12.5px;
  }

  .navbar__logo {
    height: 48px;
    max-width: 210px;
  }

  .hero__content {
    padding: 2rem 0.5rem 2rem;
  }

  .hero__crest-img {
    width: 78px;
  }

  .gallery-nav-btn {
    width: 38px;
    height: 38px;
  }

  .gallery-nav-btn--prev {
    left: 8px;
  }

  .gallery-nav-btn--next {
    right: 8px;
  }

  .gallery-nav-btn .chevron-icon {
    width: 15px;
    height: 15px;
  }

  .hero__badge {
    font-size: 12px;
    padding: 6px 18px;
  }

  .product-card__body {
    padding: 1.25rem;
  }

  .product-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

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

  .product-card__price-amount {
    font-size: 1.7rem;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .whatsapp-float {
    bottom: 20px;
    left: 20px;
    width: 54px;
    height: 54px;
  }

  [dir="ltr"] .whatsapp-float {
    left: auto;
    right: 20px;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  :root {
    --announcement-height: 32px;
  }

  .top-announcement__text {
    font-size: 10.5px;
  }

  .product-card__shipping-badge-text {
    font-size: 11px;
  }

  .navbar__logo {
    height: 42px;
    max-width: 175px;
  }

  .hero__crest-img {
    width: 70px;
  }

  .spec-badge__text {
    font-size: 12px;
  }

  .lang-btn {
    padding: 5px 10px;
    font-size: 12px;
  }

  .btn-cta {
    padding: 14px 32px;
    font-size: 15px;
  }

  .btn-gold,
  .btn-outline {
    padding: 12px 20px;
    font-size: 14px;
  }

  .trust-card {
    padding: 2rem 1rem;
  }
}

/* ============================================
   UTILITY: Gold divider for section separators
   ============================================ */
.gold-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to left,
    transparent,
    var(--border-subtle) 20%,
    var(--gold-primary) 50%,
    var(--border-subtle) 80%,
    transparent
  );
  border: none;
}
