/* ===================================================
   ALSALAHY PERFUME - Premium Luxury Stylesheet
   Color Palette: Dark/Black, Silver, Gold
   =================================================== */

/* === Google Fonts === */
@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap");

/* === CSS Custom Properties (Design Tokens) === */
:root {
  /* Colors */
  --bg-primary: #0d0d0d;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #222222;
  --bg-card: #1e1e1e;
  --bg-card-hover: #252525;

  --gold: #c9a84c;
  --gold-light: #d4af37;
  --gold-dark: #a0862e;
  --gold-glow: rgba(201, 168, 76, 0.3);
  --gold-gradient: linear-gradient(135deg, #c9a84c 0%, #d4af37 50%, #e8c547 100%);

  --silver: #c0c0c0;
  --silver-light: #d4d4d4;
  --silver-dark: #8a8a8a;

  --text-primary: #f5f5f5;
  --text-secondary: #b0b0b0;
  --text-muted: #777777;

  --border-color: rgba(201, 168, 76, 0.15);
  --border-silver: rgba(192, 192, 192, 0.15);

  --success: #4caf50;
  --error: #f44336;
  --warning: #c9a84c;
  --info: #b0b0b0;

  /* Typography */
  --font-ar: "Tajawal", sans-serif;
  --font-en: "Playfair Display", serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-spring: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.2);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-round: 50%;
}

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

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

body {
  font-family: var(--font-ar);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.7;
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.loaded {
  opacity: 1;
}

[lang="en"] body,
[dir="ltr"] body {
  font-family: var(--font-en);
}

[dir="ltr"] .product-info,
[dir="ltr"] .product-notes,
[dir="ltr"] .product-name {
  font-family: var(--font-en);
}

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

ul {
  list-style: none;
}

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

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

input,
textarea {
  font-family: inherit;
  border: none;
  outline: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* === Language Transition === */
.lang-transitioning {
  transition: opacity 0.15s ease;
  opacity: 0.6;
}

/* ============================================
   HEADER
   ============================================ */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-normal);
  background: transparent;
}

.main-header.header-scrolled {
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo img {
  height: 65px;
  width: auto;
  filter: brightness(1.1);
  transition: transform var(--transition-normal);
}

.logo img:hover {
  transform: scale(1.05);
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--silver-light);
  letter-spacing: 2px;
}

/* Desktop Navigation */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--silver);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

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

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

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

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-toggle-btn {
  padding: 6px 16px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  cursor: pointer;
  background: transparent;
  letter-spacing: 1px;
}

.lang-toggle-btn:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  transition: all var(--transition-fast);
  position: relative;
  background: rgba(255, 255, 255, 0.05);
}

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

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-round);
  background: var(--gold-gradient);
  color: var(--bg-primary);
  font-size: 0.7rem;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
}

.badge-bounce {
  animation: badgeBounce 0.5s var(--transition-spring);
}

@keyframes badgeBounce {
  0% { transform: scale(1); }
  50% { transform: scale(1.5); }
  100% { transform: scale(1); }
}

.cart-shake {
  animation: cartShake 0.5s ease;
}

@keyframes cartShake {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

/* User Menu */
.user-menu {
  display: none;
  align-items: center;
  gap: 10px;
}

.user-name {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
}

#logout-btn {
  color: var(--silver-dark);
  font-size: 0.8rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

#logout-btn:hover {
  color: var(--error);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--silver);
  transition: all var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 13, 13, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.mobile-menu .nav-link {
  font-size: 1.4rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: blur(1px);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.5) 0%,
    rgba(13, 13, 13, 0.3) 50%,
    rgba(13, 13, 13, 0.95) 100%
  );
}

#particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 24px;
}

.hero-logo {
  width: 220px;
  height: auto;
  margin: 0 auto 30px;
  animation: heroLogoIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
  filter: drop-shadow(0 0 30px rgba(201, 168, 76, 0.3));
}

@keyframes heroLogoIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  animation: heroTitleIn 1s 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
  letter-spacing: 4px;
}

[dir="ltr"] .hero-title {
  font-family: var(--font-en);
  letter-spacing: 6px;
}

@keyframes heroTitleIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 12px;
  animation: heroSubIn 1s 0.5s ease forwards;
  opacity: 0;
  font-weight: 400;
}

@keyframes heroSubIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tagline {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  min-height: 1.5em;
  animation: heroTagIn 1s 0.7s ease forwards;
  opacity: 0;
}

@keyframes heroTagIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-tagline::after {
  content: "|";
  animation: blink 1s infinite;
  color: var(--gold);
  margin-inline-start: 2px;
}

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

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 48px;
  background: var(--gold-gradient);
  color: var(--bg-primary);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  animation: heroBtnIn 1s 0.9s ease forwards;
  opacity: 0;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold), 0 0 40px rgba(201, 168, 76, 0.3);
}

@keyframes heroBtnIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Shimmer effect on hero button */
.btn-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Hero scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollBounce 2s infinite;
}

.hero-scroll-indicator span {
  width: 24px;
  height: 38px;
  border: 2px solid var(--gold);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero-scroll-indicator span::before {
  content: "";
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 4px;
  animation: scrollDot 2s infinite;
}

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

@keyframes scrollDot {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(8px); }
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

[dir="ltr"] .section-title {
  font-family: var(--font-en);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 3px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-top: 20px;
}

/* Gold separator line */
.gold-separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold),
    transparent
  );
  margin: 0;
}

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

.section-header .coming-soon-title {
  display: none;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  justify-content: center;
  gap: 32px;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
  position: relative;
}

.product-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  background: var(--bg-card-hover);
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(145deg, #151515, #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.product-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  z-index: 2;
  pointer-events: none;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.product-badge-size {
  background: rgba(13, 13, 13, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
}

.product-badge-discount {
  background: var(--gold);
  color: var(--bg-primary);
}

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

.product-card:hover .product-image {
  transform: scale(1.03);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

.btn-product-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 30px;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.btn-product-detail:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

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

.product-info {
  padding: 24px;
}

.product-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.product-notes {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-price-tag {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

.product-price-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.product-price-tag small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.product-price-old small {
  font-size: 0.75rem;
  color: inherit;
}

.btn-add-cart {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gold-gradient);
  color: var(--bg-primary);
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-add-cart:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-add-cart svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   PRODUCT DETAIL MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 2000;
  display: none;
  backdrop-filter: blur(8px);
  transition: opacity var(--transition-normal);
  opacity: 0;
}

.modal-overlay.overlay-visible {
  display: block;
  opacity: 1;
}

.product-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 2001;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-modal.modal-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-round);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  z-index: 10;
  cursor: pointer;
  transition: all var(--transition-fast);
}

[dir="rtl"] .modal-close-btn {
  right: auto;
  left: 16px;
}

.modal-close-btn:hover {
  background: rgba(244, 67, 54, 0.2);
  color: var(--error);
}

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

.modal-product-image {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  display: block;
  background: linear-gradient(145deg, #151515, #1a1a1a);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-product-body {
  padding: 32px;
}

.modal-product-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.modal-product-desc {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.modal-product-notes-label {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}

.modal-product-notes {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

/* Size Selector */
.size-selector {
  margin-bottom: 24px;
}

.size-selector-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.size-buttons {
  display: flex;
  gap: 10px;
}

.size-btn {
  padding: 10px 24px;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--silver);
  border-radius: 25px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

/* Quantity */
.modal-quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-round);
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--silver);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.qty-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.qty-value {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  min-width: 30px;
  text-align: center;
}

.modal-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.modal-price-old {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.modal-price-current {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.modal-add-cart-btn {
  width: 100%;
  padding: 16px;
  background: var(--gold-gradient);
  color: var(--bg-primary);
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.modal-add-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.modal-add-cart-btn svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   CART DRAWER
   ============================================ */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  height: 100vh;
  background: var(--bg-secondary);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border-color);
}

[dir="rtl"] .cart-drawer {
  right: auto;
  left: 0;
  transform: translateX(-100%);
  border-left: none;
  border-right: 1px solid var(--border-color);
}

.cart-drawer.cart-drawer-open {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
}

.cart-drawer-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-drawer-title svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.cart-close-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-round);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cart-close-btn:hover {
  background: rgba(244, 67, 54, 0.15);
  color: var(--error);
}

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

/* Cart Empty State */
.cart-empty-state {
  flex: 1;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px;
}

.cart-empty-state svg {
  width: 80px;
  height: 80px;
  color: var(--text-muted);
  opacity: 0.3;
}

.cart-empty-title {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.cart-empty-msg {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Cart Content */
.cart-content {
  display: none;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

.cart-items-container {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
  animation: cartItemIn 0.3s ease;
}

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

[dir="rtl"] @keyframes cartItemIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cart-item-image {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border-color);
}

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

.cart-item-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.cart-item-size {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 2px;
}

.cart-item-price {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cart-item-remove {
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition-fast);
  padding: 4px;
}

.cart-item-remove:hover {
  color: var(--error);
}

.cart-item-remove svg {
  width: 16px;
  height: 16px;
}

/* Cart Footer */
.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-tertiary);
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cart-total-label {
  font-size: 1rem;
  color: var(--text-secondary);
}

.cart-total-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.cart-footer-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-checkout {
  width: 100%;
  padding: 14px;
  background: var(--gold-gradient);
  color: var(--bg-primary);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 25px;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-checkout:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.btn-cart-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.btn-clear-cart,
.btn-continue {
  flex: 1;
  padding: 10px;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  border-radius: 25px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
}

.btn-clear-cart:hover {
  border-color: var(--error);
  color: var(--error);
}

.btn-continue:hover {
  border-color: var(--silver);
  color: var(--silver);
}

/* ============================================
   ORDER MODAL
   ============================================ */
.order-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 2001;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  max-width: 550px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 32px;
}

.order-modal.modal-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.order-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  text-align: center;
}

.order-form-group {
  margin-bottom: 18px;
}

.order-form-group label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.order-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

.order-input:focus {
  border-color: var(--gold);
}

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

textarea.order-input {
  min-height: 80px;
  resize: vertical;
}

/* Order Summary */
.order-summary {
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 24px;
  border: 1px solid var(--border-color);
}

.order-summary-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}

.order-summary-item {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.order-summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  margin-top: 8px;
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
  border-top: 1px solid var(--border-color);
}

.order-form-btns {
  display: flex;
  gap: 12px;
}

.btn-order-submit {
  flex: 1;
  padding: 14px;
  background: var(--gold-gradient);
  color: var(--bg-primary);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 25px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-order-submit:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.btn-order-cancel {
  padding: 14px 24px;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-order-cancel:hover {
  border-color: var(--error);
  color: var(--error);
}

/* Order Success */
.order-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  gap: 20px;
}

.success-checkmark {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-round);
  background: rgba(76, 175, 80, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-checkmark.animate {
  transform: scale(1);
}

.success-checkmark svg {
  width: 40px;
  height: 40px;
  color: var(--success);
}

.order-success h3 {
  font-size: 1.4rem;
  color: var(--text-primary);
}

.order-success p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.btn-back-home {
  padding: 12px 32px;
  background: var(--gold-gradient);
  color: var(--bg-primary);
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-back-home:hover {
  box-shadow: var(--shadow-gold);
}

/* ============================================
   AUTH MODAL
   ============================================ */
.auth-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 2001;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  max-width: 440px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 32px;
}

.auth-modal.modal-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.auth-modal-header {
  text-align: center;
  margin-bottom: 8px;
}

.auth-modal-logo {
  width: 60px;
  margin: 0 auto 16px;
  filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.2));
}

.auth-tabs {
  display: flex;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.auth-tab-btn {
  flex: 1;
  padding: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
  text-align: center;
}

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

.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
  animation: authFormIn 0.3s ease;
}

@keyframes authFormIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-form-group {
  margin-bottom: 16px;
}

.auth-form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.auth-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

.auth-input:focus {
  border-color: var(--gold);
}

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

.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-color);
}

.auth-divider span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.btn-google {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-google:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--silver);
}

.btn-google svg {
  width: 20px;
  height: 20px;
}

.btn-auth-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold-gradient);
  color: var(--bg-primary);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 16px;
  transition: all var(--transition-fast);
}

.btn-auth-submit:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.auth-switch {
  text-align: center;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.auth-switch a:hover {
  text-decoration: underline;
}

.auth-forgot {
  text-align: center;
  margin-top: 8px;
}

.auth-forgot a {
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
}

.auth-forgot a:hover {
  color: var(--gold);
}

/* Shake animation for errors */
.shake {
  animation: shakeForm 0.6s ease;
}

@keyframes shakeForm {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-10px); }
  40% { transform: translateX(10px); }
  60% { transform: translateX(-10px); }
  80% { transform: translateX(10px); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--bg-secondary);
}

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

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

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.about-feature {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.about-feature:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.about-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-round);
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.about-feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.about-feature h3 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.about-feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: var(--bg-primary);
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-input {
  padding: 14px 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

.contact-input:focus {
  border-color: var(--gold);
}

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

textarea.contact-input {
  min-height: 130px;
  resize: vertical;
}

.btn-contact-submit {
  padding: 14px 32px;
  background: var(--gold-gradient);
  color: var(--bg-primary);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 25px;
  cursor: pointer;
  transition: all var(--transition-fast);
  align-self: flex-start;
}

.btn-contact-submit:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

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

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.contact-info-item:hover {
  border-color: var(--gold);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-round);
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.contact-info-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
  direction: ltr;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
  background: var(--bg-secondary);
  padding: 60px 0 24px;
  border-top: 1px solid var(--border-color);
}

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

.footer-brand-logo {
  width: 80px;
  margin-bottom: 16px;
  filter: brightness(0.9);
}

.footer-brand-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold);
  padding-inline-start: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-round);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-primary);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-copyright .brand-name {
  color: var(--gold);
  font-weight: 600;
}

/* ============================================
   NOTIFICATIONS
   ============================================ */
.notification-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 380px;
  width: 100%;
  pointer-events: none;
}

[dir="rtl"] .notification-container {
  right: auto;
  left: 24px;
}

.notification {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  pointer-events: all;
  opacity: 0;
  transform: translateX(100%);
}

[dir="rtl"] .notification {
  transform: translateX(-100%);
}

.notification-enter {
  animation: notifEnter 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

[dir="rtl"] .notification-enter {
  animation: notifEnterRTL 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes notifEnter {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes notifEnterRTL {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.notification-exit {
  animation: notifExit 0.3s ease forwards;
}

[dir="rtl"] .notification-exit {
  animation: notifExitRTL 0.3s ease forwards;
}

@keyframes notifExit {
  to {
    opacity: 0;
    transform: translateX(100%) scale(0.9);
  }
}

@keyframes notifExitRTL {
  to {
    opacity: 0;
    transform: translateX(-100%) scale(0.9);
  }
}

.notification-success { border-left: 4px solid var(--success); }
.notification-error { border-left: 4px solid var(--error); }
.notification-warning { border-left: 4px solid var(--warning); }
.notification-info { border-left: 4px solid var(--info); }

[dir="rtl"] .notification-success { border-left: none; border-right: 4px solid var(--success); }
[dir="rtl"] .notification-error { border-left: none; border-right: 4px solid var(--error); }
[dir="rtl"] .notification-warning { border-left: none; border-right: 4px solid var(--warning); }
[dir="rtl"] .notification-info { border-left: none; border-right: 4px solid var(--info); }

.notification-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.notification-icon svg {
  width: 24px;
  height: 24px;
}

.notification-success .notification-icon { color: var(--success); }
.notification-error .notification-icon { color: var(--error); }
.notification-warning .notification-icon { color: var(--warning); }
.notification-info .notification-icon { color: var(--info); }

.notification-message {
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.notification-close {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition-fast);
  margin-inline-start: auto;
}

.notification-close:hover {
  color: var(--text-primary);
}

.notification-close svg {
  width: 16px;
  height: 16px;
}

.notification-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
}

.notification-progress-bar {
  height: 100%;
  width: 100%;
  transform-origin: left;
  animation: progressShrink linear forwards;
}

[dir="rtl"] .notification-progress-bar {
  transform-origin: right;
}

.notification-success .notification-progress-bar { background: var(--success); }
.notification-error .notification-progress-bar { background: var(--error); }
.notification-warning .notification-progress-bar { background: var(--warning); }
.notification-info .notification-progress-bar { background: var(--info); }

@keyframes progressShrink {
  from { transform: scaleX(1); }
  to { transform: scaleX(0); }
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-round);
  background: var(--gold-gradient);
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  cursor: pointer;
  box-shadow: var(--shadow-gold);
}

[dir="rtl"] .scroll-top-btn {
  right: auto;
  left: 32px;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.scroll-top-btn svg {
  width: 22px;
  height: 22px;
}

/* ============================================
   RIPPLE EFFECT
   ============================================ */
.ripple-btn {
  position: relative;
  overflow: hidden;
}

.ripple-effect {
  position: absolute;
  border-radius: var(--radius-round);
  background: rgba(255, 255, 255, 0.3);
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  animation: rippleAnim 0.7s ease;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

/* ============================================
   REVEAL ON SCROLL
   ============================================ */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger delays for children */
.reveal-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.reveal-on-scroll:nth-child(3) { transition-delay: 0.2s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  }

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

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

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

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .about-features {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 60px auto 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand-logo {
    margin: 0 auto 16px;
  }

  .footer-social {
    justify-content: center;
  }

  .cart-drawer {
    width: 100%;
  }

  .notification-container {
    right: 12px;
    left: 12px;
    max-width: none;
  }

  [dir="rtl"] .notification-container {
    right: 12px;
    left: 12px;
  }

  .header-actions {
    gap: 8px;
  }

  .user-name {
    display: none;
  }

  .modal-quantity-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .modal-price {
    text-align: center;
  }

  .quantity-controls {
    justify-content: center;
  }
}

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

  .btn-hero {
    padding: 14px 36px;
    font-size: 1rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .product-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-add-cart {
    justify-content: center;
  }

  .order-form-btns {
    flex-direction: column;
  }
}

/* ============================================
   COMING SOON TEASER
   ============================================ */
.coming-soon-section {
  padding: 100px 0;
  text-align: center;
  background: var(--bg-primary);
}

.coming-soon-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.coming-soon-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  animation: pulseGold 2s infinite;
}

[dir="ltr"] .coming-soon-title {
  font-family: var(--font-en);
}

.hourglass-container {
  width: 100px;
  height: 100px;
  color: var(--gold);
  animation: rotateHourglass 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.hourglass-svg {
  width: 100%;
  height: 100%;
}

@keyframes rotateHourglass {
  0% { transform: rotate(0deg); }
  45% { transform: rotate(180deg); }
  50% { transform: rotate(180deg); }
  95% { transform: rotate(360deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulseGold {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; text-shadow: 0 0 20px rgba(201, 168, 76, 0.5); }
}

/* === Custom Scrollbar === */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}
