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

:root {
  --gold: #D4AF37;
  --gold-light: #F0D78C;
  --gold-dark: #B8860B;
  --gold-soft: #E8C84A;
  --gold-pale: #FFF3C9;
  --gold-rich: #C9A03C;
  --gold-gradient: linear-gradient(135deg, #D4AF37, #F0D78C, #E8C84A, #D4AF37);
  --gold-gradient-warm: linear-gradient(135deg, #C9A03C, #E8C84A, #F0D78C, #D4AF37);
  --gold-glow: 0 0 40px rgba(212,175,55,0.2), 0 0 80px rgba(212,175,55,0.1);
  --beige: #F5F0E0;
  --beige-dark: #E8DFC8;
  --cream: #FFFCF5;
  --black: #1A1A1A;
  --black-light: #2C2C2C;
  --charcoal: #3D3D3D;
  --warm-brown: #8B6914;
  --warm-dark: #1A150E;
  --glass-bg: rgba(255,255,255,0.03);
  --glass-border: rgba(212,175,55,0.12);
  --glass-glow: inset 0 1px 0 rgba(255,255,255,0.06);
  --shadow: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.2);
  --shadow-gold: 0 8px 40px rgba(212,175,55,0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--black);
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
input, select { outline: none; font-family: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==================== KEYFRAMES ==================== */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1deg); }
  66% { transform: translateY(5px) rotate(-1deg); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(212,175,55,0.15), 0 0 60px rgba(212,175,55,0.05); }
  50% { box-shadow: 0 0 40px rgba(212,175,55,0.25), 0 0 80px rgba(212,175,55,0.1); }
}

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

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

@keyframes honeyFlow {
  0% { transform: translateY(-10px) scaleY(1); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 0.8; }
  100% { transform: translateY(60px) scaleY(1.5); opacity: 0; }
}

@keyframes honeyDripNew {
  0%, 12% { height: 0; opacity: 0; }
  18% { height: 4px; opacity: 1; }
  40% { height: 16px; opacity: 0.6; }
  60% { height: 28px; opacity: 0.3; }
  80% { height: 36px; opacity: 0.1; }
  100% { height: 0; opacity: 0; }
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(212,175,55,0.2), 0 0 0 0 rgba(212,175,55,0.1); }
  50% { box-shadow: 0 0 30px rgba(212,175,55,0.35), 0 0 0 8px rgba(212,175,55,0.05); }
}

@keyframes hexRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes hexFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
  50% { transform: translateY(-20px) rotate(180deg); opacity: 0.7; }
}

@keyframes goldShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #E8C84A 0%, #D4AF37 25%, #C9A03C 50%, #D4AF37 75%, #E8C84A 100%);
  color: var(--black);
  box-shadow: 0 4px 24px rgba(212,175,55,0.35);
  background-size: 300% 100%;
  animation: goldShift 8s ease-in-out infinite;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(212,175,55,0.5);
  background-position: right center;
  animation: none;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2));
  opacity: 0;
  transition: var(--transition);
}

.btn-primary:hover::after { opacity: 1; }

.btn-full { width: 100%; }

/* ==================== HEADER ==================== */
.header {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  position: relative;
}

.logo-image-wrap {
  position: relative;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.logo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 1.5px solid rgba(212,175,55,0.25);
  transition: border-color 0.3s ease;
}

.logo:hover .logo-img {
  border-color: rgba(212,175,55,0.5);
}

.logo-word {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #fff 40%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  transition: all 0.3s ease;
}

.logo:hover .logo-word {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
  position: relative;
  letter-spacing: 0.3px;
  padding: 3px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: rgba(212,175,55,0.5);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover,
.nav-link.active { color: rgba(255,255,255,0.85); }

.lang-switch {
  background: none;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 5px 12px;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Cairo', sans-serif;
  letter-spacing: 1px;
  margin-left: 8px;
  line-height: 1.4;
}
.lang-switch:hover {
  color: rgba(255,255,255,0.9);
  border-color: rgba(212,175,55,0.3);
  background: rgba(212,175,55,0.06);
}
[dir="ltr"] .lang-switch {
  margin-left: 0;
  margin-right: 8px;
}
.menu-toggle {
  display: none;
  background: none;
  font-size: 22px;
  color: rgba(255,255,255,0.5);
}

/* ==================== HERO ==================== */
.hero {
  padding: 150px 0 100px;
  background: linear-gradient(160deg, #070605 0%, #0D0B08 30%, #1A140E 60%, #0F0C08 100%);
  position: relative;
  overflow: hidden;
  min-height: 95vh;
  display: flex;
  align-items: center;
}

/* Golden vignette overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212,175,55,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(212,175,55,0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

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

.hero-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 10px rgba(212,175,55,0.4), 0 0 30px rgba(212,175,55,0.1);
}

.hero-particle:nth-child(1) { left: 15%; top: 20%; animation: sparkle 4s ease-in-out 0s infinite; }
.hero-particle:nth-child(2) { left: 25%; top: 60%; animation: sparkle 5s ease-in-out 1.5s infinite; width: 4px; height: 4px; }
.hero-particle:nth-child(3) { left: 60%; top: 30%; animation: sparkle 4.5s ease-in-out 0.8s infinite; width: 5px; height: 5px; }
.hero-particle:nth-child(4) { left: 80%; top: 55%; animation: sparkle 5.5s ease-in-out 2s infinite; width: 3px; height: 3px; }
.hero-particle:nth-child(5) { left: 45%; top: 75%; animation: sparkle 4.2s ease-in-out 3s infinite; width: 5px; height: 5px; }
.hero-particle:nth-child(6) { left: 70%; top: 15%; animation: sparkle 3.8s ease-in-out 1s infinite; width: 4px; height: 4px; }
.hero-particle:nth-child(7) { left: 10%; top: 45%; animation: sparkle 5.2s ease-in-out 2.5s infinite; width: 3px; height: 3px; }
.hero-particle:nth-child(8) { left: 90%; top: 70%; animation: sparkle 4.8s ease-in-out 0.5s infinite; width: 5px; height: 5px; }

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0L80 20v40L40 80 0 60V20z' fill='none' stroke='rgba(212,175,55,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  opacity: 0.4;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, rgba(212,175,55,0.03) 30%, transparent 70%);
  top: -25%;
  right: -15%;
  pointer-events: none;
  z-index: 0;
  animation: floatSlow 12s ease-in-out infinite;
}

.hero-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, rgba(212,175,55,0.02) 30%, transparent 70%);
  bottom: -20%;
  left: -10%;
  pointer-events: none;
  z-index: 0;
  animation: floatSlow 15s ease-in-out 5s infinite;
}

/* Floating hex decorative */
.hero-float-hex {
  position: absolute;
  width: 60px;
  height: 52px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hero-float-hex:nth-child(9) { top: 15%; left: 5%; animation: hexFloat 8s ease-in-out 0s infinite; width: 40px; height: 35px; }
.hero-float-hex:nth-child(10) { top: 65%; left: 85%; animation: hexFloat 10s ease-in-out 3s infinite; width: 50px; height: 43px; }
.hero-float-hex:nth-child(11) { bottom: 20%; left: 20%; animation: hexFloat 7s ease-in-out 6s infinite; width: 30px; height: 26px; }

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.05));
  border: 1px solid rgba(212,175,55,0.2);
  color: var(--gold-light);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
  position: relative;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(212,175,55,0.5);
}

@keyframes blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(212,175,55,0.5); }
  50% { opacity: 0.3; box-shadow: 0 0 2px rgba(212,175,55,0.1); }
}

.hero h1 {
  font-size: 58px;
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 20px;
  color: white;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.hero h1 .highlight {
  background: linear-gradient(135deg, #F0D78C 0%, #D4AF37 30%, #E8C84A 60%, #FCE4A5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 100%;
  animation: goldShift 6s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(212,175,55,0.15));
}

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.8;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Honey drip overlay on hero image side */
.hero-drip-container {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 10;
  pointer-events: none;
  opacity: 0.6;
}

.hero-drip-container svg {
  width: 40px;
  height: 80px;
  filter: drop-shadow(0 4px 12px rgba(212,175,55,0.2));
}

/* Decorative spinning rings */
.hero-ring {
  position: absolute;
  width: 380px;
  height: 380px;
  animation: spin 25s linear infinite;
  opacity: 0.4;
}

.hero-ring-2 {
  position: absolute;
  width: 320px;
  height: 320px;
  animation: spin 20s linear infinite reverse;
  opacity: 0.25;
}

/* Main image frame */
.hero-image-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 380px;
  animation: float 6s ease-in-out infinite;
}

.hero-image-frame .hex-bg-glow {
  position: absolute;
  inset: -20px;
  clip-path: polygon(50% 0%, 90% 22%, 90% 78%, 50% 100%, 10% 78%, 10% 22%);
  background: radial-gradient(ellipse at 50% 40%, rgba(212,175,55,0.15) 0%, rgba(212,175,55,0.05) 40%, transparent 70%);
  filter: blur(16px);
  z-index: -1;
  animation: pulseGlow 4s ease-in-out infinite;
}

.hero-image-frame .hex-border {
  position: absolute;
  inset: -3px;
  clip-path: polygon(50% 0%, 90% 22%, 90% 78%, 50% 100%, 10% 78%, 10% 22%);
  background: linear-gradient(135deg, rgba(252,228,165,0.8) 0%, rgba(212,175,55,0.9) 40%, rgba(196,154,44,0.8) 70%, rgba(160,122,26,0.9) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-image-frame img {
  display: block;
  width: 100%;
  height: auto;
  clip-path: polygon(50% 0%, 90% 22%, 90% 78%, 50% 100%, 10% 78%, 10% 22%);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 15px 50px rgba(0,0,0,0.45)) saturate(1.1);
  transition: filter 0.6s ease;
}

.hero-image-frame:hover img {
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5)) saturate(1.15);
}

.hero-image-frame .hex-shine {
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0%, 90% 22%, 90% 78%, 50% 100%, 10% 78%, 10% 22%);
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, transparent 20%, rgba(255,255,255,0.02) 80%, transparent 100%);
  pointer-events: none;
  z-index: 3;
}

/* Glass reflection effect on image */
.hero-image-frame::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 15%;
  width: 30%;
  height: 20%;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent);
  border-radius: 50%;
  transform: rotate(-20deg);
  z-index: 4;
  pointer-events: none;
  clip-path: polygon(50% 0%, 90% 22%, 90% 78%, 50% 100%, 10% 78%, 10% 22%);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-image-ring-2 {
  position: absolute;
  width: 320px;
  height: 320px;
  animation: spin 15s linear infinite reverse;
  opacity: 0.6;
}

/* Honey comb bottom divider */
.hero-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(245,240,224,0.15));
  z-index: 2;
  pointer-events: none;
}

/* ==================== FEATURES ==================== */
.features {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--beige) 100%);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.08), transparent);
}

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

.feature-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.98), rgba(255,252,245,0.95));
  padding: 40px 28px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(212,175,55,0.08);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition);
}

.feature-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 0%, rgba(212,175,55,0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after { opacity: 1; }
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.08), 0 0 20px rgba(212,175,55,0.04); border-color: rgba(212,175,55,0.15); }

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.08));
  transform: scale(1.05);
}

.feature-icon i {
  font-size: 30px;
  color: var(--gold-dark);
  transition: var(--transition);
}

.feature-card:hover .feature-icon i {
  color: var(--gold);
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 800;
  color: var(--black);
}

.feature-card p {
  color: #777;
  font-size: 14px;
  line-height: 1.7;
}

/* ==================== PRODUCTS ==================== */
.products {
  padding: 100px 0;
  background: linear-gradient(180deg, #FFFCF5 0%, #FDF8EE 50%, #FFFCF5 100%);
  position: relative;
}

.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.1), transparent);
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(212,175,55,0.3);
}

.section-header h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--black);
}

.section-header h2 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 100%;
  animation: goldShift 6s ease-in-out infinite;
}

.section-header p {
  color: #888;
  font-size: 16px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 36px;
  max-width: 1050px;
  margin: 0 auto;
}

.product-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.98), rgba(255,252,245,0.95));
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(212,175,55,0.08);
  position: relative;
  transform: translateY(0);
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), transparent 40%, transparent 60%, rgba(212,175,55,0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 6;
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.product-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212,175,55,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 0;
}

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

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(212,175,55,0.08);
  border-color: rgba(212,175,55,0.2);
}

.product-image {
  height: 230px;
  overflow: hidden;
  position: relative;
}

.product-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.2));
  pointer-events: none;
  z-index: 1;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold-gradient-warm);
  color: var(--black);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(212,175,55,0.35);
  backdrop-filter: blur(4px);
}

.product-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2));
  pointer-events: none;
}

.product-info {
  padding: 28px 28px 32px;
  text-align: center;
  position: relative;
}

.product-category {
  font-size: 12px;
  color: var(--gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.product-info h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
}

.product-desc {
  font-size: 14px;
  color: #999;
  margin-bottom: 12px;
}

.product-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 0 24px;
}

.price-current {
  font-size: 30px;
  font-weight: 900;
  color: var(--gold-dark);
}

.price-currency {
  font-size: 14px;
  color: #aaa;
  font-weight: 600;
}

.buy-now {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  background: var(--gold-gradient);
  color: var(--black);
  font-size: 16px;
  font-weight: 800;
  font-family: 'Cairo', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(212,175,55,0.25);
  background-size: 200% auto;
  position: relative;
}

.buy-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,175,55,0.35);
  background-position: right center;
}

.buy-now i { font-size: 18px; }

.product-quick-view {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: 0.4s ease;
  cursor: pointer;
  z-index: 3;
}
.product-quick-view i {
  font-size: 32px;
  color: white;
  background: rgba(212,175,55,0.9);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.6);
  transition: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.product-card:hover .product-quick-view { opacity: 1; }
.product-card:hover .product-quick-view i { transform: scale(1); }

.product-info h3 { cursor: pointer; }

.product-actions {
  display: flex;
  gap: 10px;
}
.product-actions .buy-now { flex: 1; }
.btn-detail {
  width: 52px;
  min-width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 2px solid var(--beige-dark);
  background: white;
  color: var(--gold-dark);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}
.btn-detail:hover {
  background: var(--gold-gradient);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ==================== PRODUCT DETAIL MODAL ==================== */
.modal-product {
  width: 900px;
  max-width: 95%;
}
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.detail-gallery { position: relative; }
.detail-main-image {
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 1;
}
.detail-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.detail-gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.detail-gallery-item {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0.5;
}
.detail-gallery-item.active, .detail-gallery-item:hover {
  border-color: var(--gold);
  opacity: 1;
}
.detail-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info { padding: 4px 0; }
.detail-category {
  font-size: 13px;
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.detail-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--black);
  margin: 8px 0 6px;
}
.detail-badge {
  display: inline-block;
  background: var(--gold-gradient);
  color: var(--black);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}
.detail-desc {
  font-size: 16px;
  color: #888;
  line-height: 1.7;
  margin-bottom: 16px;
}
.detail-origin {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 16px;
}
.detail-origin i { font-size: 18px; }
.detail-price {
  font-size: 36px;
  font-weight: 900;
  color: var(--gold-dark);
  margin-bottom: 20px;
}
.detail-price span {
  font-size: 16px;
  color: #aaa;
  font-weight: 600;
}
.detail-benefits {
  margin-bottom: 20px;
}
.detail-benefits h4, .detail-usage h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.detail-benefits ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.detail-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
}
.detail-benefits li i { color: var(--gold); font-size: 16px; }
.detail-usage {
  background: var(--cream);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 24px;
}
.detail-usage p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* ==================== TRUST BADGES ==================== */
.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f8f6f0, #f0ede4);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #444;
  border: 1px solid rgba(212,175,55,0.12);
}
.trust-badge i {
  color: var(--gold-dark);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* ==================== VISUAL WEIGHT SELECTOR ==================== */
.detail-weight { margin-bottom: 24px; }
.detail-weight h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
}
.weight-visual-options {
  display: flex;
  gap: 12px;
}
.weight-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 12px;
  border: 2px solid var(--beige-dark);
  border-radius: 14px;
  cursor: pointer;
  transition: var(--transition);
  background: var(--cream);
  text-align: center;
}
.weight-visual:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,0.06);
  transform: translateY(-2px);
}
.weight-visual.selected {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.05));
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
.weight-visual-img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  background: white;
}
.weight-visual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.weight-visual-label {
  font-weight: 800;
  font-size: 15px;
  color: var(--black);
}
.weight-visual-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark);
}

/* ==================== QUICK ORDER FORM ==================== */
.quick-order {
  background: linear-gradient(135deg, #fcfaf5, #f8f4ea);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(212,175,55,0.12);
  margin-bottom: 12px;
}
.quick-order h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 8px;
}
.quick-order h4::before {
  content: '\f0d9';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--gold);
  font-size: 14px;
}
.quick-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.quick-order-summary {
  background: white;
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0;
  border: 1px solid var(--beige-dark);
}
.quick-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(212,175,55,0.08);
}
.quick-summary-row:last-child { border-bottom: none; }
.quick-summary-total {
  border-top: 2px solid var(--gold);
  margin-top: 4px;
  padding-top: 12px;
  font-size: 18px;
  font-weight: 900;
  color: var(--gold-dark);
}

/* ==================== BREADCRUMB ==================== */
.detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #999;
  margin-bottom: 20px;
  padding: 0 4px;
}
.detail-breadcrumb a {
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}
.detail-breadcrumb a:hover { color: var(--black); }
.detail-breadcrumb i {
  font-size: 10px;
  color: #ccc;
}

/* ==================== RELATED PRODUCTS ==================== */
.related-products {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--beige-dark);
}
.related-products h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--black);
  text-align: center;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.related-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}
.related-card:hover {
  border-color: var(--gold-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.related-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}
.related-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.related-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--gold-dark);
}

/* ==================== CERTIFICATES SECTION ==================== */
.certificates {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
  position: relative;
}

.certificates::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.1), transparent);
}

.certificates::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.05), transparent);
}

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

.cert-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: 20px;
  background: white;
  border: 1px solid rgba(212,175,55,0.06);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0;
  transition: var(--transition);
}

.cert-card:hover::before { opacity: 1; }

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(212,175,55,0.1);
  border-color: rgba(212,175,55,0.15);
}

.cert-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--gold-dark);
  margin: 0 auto 20px;
  transition: var(--transition);
}

.cert-card:hover .cert-icon {
  background: var(--gold-gradient);
  color: var(--black);
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(212,175,55,0.2);
}

.cert-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
}

.cert-card p {
  font-size: 14px;
  color: #999;
  line-height: 1.7;
}

/* ==================== CERTIFICATES IN PRODUCT DETAIL ==================== */
.detail-certificates {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--beige-dark);
}

.detail-certificates h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-certificates h3 i { color: var(--gold-dark); }

.certificates-desc {
  font-size: 13px;
  color: #999;
  margin-bottom: 16px;
}

.certificates-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.cert-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--beige-dark);
  transition: var(--transition);
  aspect-ratio: 1;
  background: var(--cream);
}

.cert-item:hover {
  border-color: var(--gold);
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(212,175,55,0.12);
}

.cert-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cert-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

/* ==================== CERTIFICATE LIGHTBOX ==================== */
.cert-lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  padding: 40px;
}

.cert-lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cert-lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  object-fit: contain;
}

.cert-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cert-lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

/* ==================== TRUST BADGE CLICKABLE ==================== */
.trust-badge.clickable {
  cursor: pointer;
  position: relative;
}

.trust-badge.clickable::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 1px solid rgba(212,175,55,0.15);
  transition: var(--transition);
}

.trust-badge.clickable:hover::after {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.08);
}

/* ==================== RESPONSIVE 768px ==================== */
@media (max-width: 768px) {
  .trust-badges { grid-template-columns: 1fr 1fr; gap: 6px; }
  .trust-badge { font-size: 12px; padding: 8px 10px; }
  .weight-visual-options { gap: 8px; }
  .weight-visual { padding: 10px 8px; }
  .weight-visual-img { width: 50px; height: 50px; }
  .weight-visual-label { font-size: 13px; }
  .quick-form-row { grid-template-columns: 1fr; gap: 0; }
  .quick-order { padding: 16px; }
  .detail-breadcrumb { font-size: 12px; gap: 6px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .related-card { padding: 12px; }
  .related-products { margin-top: 28px; padding-top: 24px; }
}

/* ==================== MODAL ==================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
}

.modal-overlay.active { opacity: 1; visibility: visible; }

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9) translateY(20px);
  width: 540px;
  max-width: 95%;
  max-height: 90vh;
  background: white;
  border-radius: 24px;
  z-index: 2001;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1) translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid var(--beige-dark);
  background: linear-gradient(135deg, var(--cream), var(--beige));
}

.modal-header h2 {
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-dark);
}

.modal-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: white;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid var(--beige-dark);
}

.modal-close:hover {
  background: var(--beige-dark);
  transform: rotate(90deg);
}

.modal-body {
  padding: 28px;
  overflow-y: auto;
  max-height: calc(90vh - 80px);
}

.form-section {
  margin-bottom: 28px;
}

.form-section h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-light);
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-section h3 i { color: var(--gold); font-size: 18px; }

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--beige-dark);
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Cairo', sans-serif;
  transition: var(--transition);
  background: var(--cream);
  color: var(--black);
  direction: rtl;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 4px rgba(212,175,55,0.1);
}

.form-group input::placeholder {
  color: #bbb;
}

.weight-options {
  display: flex;
  gap: 12px;
}

.weight-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  border: 2px solid var(--beige-dark);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 700;
  font-size: 16px;
  font-family: 'Cairo', sans-serif;
  background: var(--cream);
}

.weight-option:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,0.05);
}

.weight-option.selected {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05));
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

.weight-option input[type="radio"] {
  accent-color: var(--gold);
  width: 18px;
  height: 18px;
}

.order-summary {
  background: linear-gradient(135deg, var(--cream), var(--beige));
  border-radius: 14px;
  padding: 20px;
  border: 1px solid var(--gold-light);
}

.order-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid rgba(212,175,55,0.1);
}

.order-row:last-child { border-bottom: none; }

.order-row.total {
  border-top: 2px solid var(--gold);
  margin-top: 6px;
  padding-top: 14px;
  font-size: 22px;
  font-weight: 900;
  color: var(--gold-dark);
}

.btn-place-order {
  margin-top: 24px;
  padding: 18px;
  font-size: 18px;
  letter-spacing: 1px;
}

/* ==================== SUCCESS MODAL ==================== */
.modal-success .modal-header {
  flex-direction: column;
  text-align: center;
  padding: 50px 28px 24px;
  border: none;
  background: linear-gradient(135deg, #FFFCF5, #F5F0E0);
}

.success-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 42px;
  color: var(--black);
  animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 8px 30px rgba(212,175,55,0.3);
}

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

.modal-success .modal-header h2 {
  color: var(--gold-dark);
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 8px;
}

.modal-success .modal-header p {
  color: #999;
  font-size: 15px;
}

.success-body { padding: 0 28px 28px; }

.success-details {
  background: linear-gradient(135deg, var(--cream), var(--beige));
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 24px;
  border: 1px solid var(--gold-light);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(212,175,55,0.1);
}

.detail-row:last-child { border-bottom: none; }
.detail-label { color: #999; font-weight: 600; }
.detail-value { font-weight: 700; color: var(--black); }

/* ==================== SCROLL REVEAL ==================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ==================== STATS COUNTER ==================== */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0D0B08 0%, #1A140E 40%, #0F0C08 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 15v30L30 60 0 45V15z' fill='none' stroke='rgba(212,175,55,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  opacity: 0.2;
}

.stats-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.15), transparent);
}

.stats-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 36px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212,175,55,0.08);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  backdrop-filter: blur(4px);
}

.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(212,175,55,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.stat-item::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 30%;
  right: 30%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.2), transparent);
  border-radius: 2px;
  transition: all 0.5s ease;
}

.stat-item:hover::after {
  left: 10%;
  right: 10%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stat-item:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(212,175,55,0.15);
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.stat-num {
  font-size: 52px;
  font-weight: 900;
  background: linear-gradient(135deg, #F0D78C 0%, #D4AF37 40%, #E8C84A 70%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.stat-plus {
  font-size: 34px;
  font-weight: 900;
  color: var(--gold);
  margin-right: 2px;
}

.stat-desc {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  font-weight: 600;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

/* ==================== ABOUT ==================== */
.about {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--beige) 100%);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.1), transparent);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border: 4px solid rgba(212,175,55,0.2);
  position: relative;
  transition: var(--transition);
}

.about-image-frame:hover {
  border-color: var(--gold-light);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 30px rgba(212,175,55,0.05);
}

.about-image-frame img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image-frame:hover img { transform: scale(1.06); }

.about-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.25));
  pointer-events: none;
}

.about-experience {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, #D4AF37, #E8C84A, #C9A03C);
  padding: 22px 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(212,175,55,0.3);
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

.about-experience .exp-num {
  display: block;
  font-size: 38px;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}

.about-experience .exp-text {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: rgba(0,0,0,0.7);
  margin-top: 4px;
}

.about-text .section-tag {
  margin-bottom: 12px;
  display: inline-flex;
}

.about-text h2 {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--black);
}

.about-text h2 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  color: #777;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 16px;
  background: rgba(212,175,55,0.04);
  border-radius: 12px;
  transition: var(--transition);
}

.about-feature:hover {
  background: rgba(212,175,55,0.08);
  transform: translateX(-4px);
}

.about-feature i {
  color: var(--gold-dark);
  font-size: 20px;
  transition: var(--transition);
}

.about-feature:hover i {
  color: var(--gold);
  transform: scale(1.15);
}

/* ==================== TESTIMONIALS (Facebook-style) ==================== */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(180deg, #f0f2f5, #e8eaed);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.08), transparent);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1050px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border-radius: 8px;
  padding: 16px 16px 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  border: none;
  transition: box-shadow 0.2s ease;
  position: relative;
  font-family: 'Segoe UI', 'Cairo', sans-serif;
}

.testimonial-card:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  transform: none;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
  border-radius: 8px 8px 0 0;
  pointer-events: none;
}

/* Facebook post header */
.testimonial-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--beige-dark);
}

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

.testimonial-meta {
  flex: 1;
  min-width: 0;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: #1c1e21;
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1.2;
}

.testimonial-verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #1877F2;
  color: white;
  font-size: 10px;
  flex-shrink: 0;
}

.testimonial-verified i {
  font-size: 8px;
  color: white;
}

.testimonial-time {
  font-size: 12px;
  color: #65676b;
  line-height: 1.2;
  margin-top: 1px;
}

.testimonial-time i {
  font-size: 10px;
  margin-left: 4px;
  color: #65676b;
}

[dir="ltr"] .testimonial-time i {
  margin-left: 0;
  margin-right: 4px;
}

.testimonial-dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #65676b;
  margin: 0 6px;
  vertical-align: middle;
}

/* Stars as Facebook reactions */
.testimonial-reactions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

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

.testimonial-likes {
  font-size: 13px;
  color: #65676b;
  margin-right: 4px;
}

/* Comment text */
.testimonial-text {
  font-size: 14px;
  color: #1c1e21;
  line-height: 1.6;
  margin-bottom: 10px;
  padding: 0;
  font-style: normal;
}

/* Action buttons (Facebook style) */
.testimonial-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
  border-top: 1px solid #e4e6eb;
  margin-top: 4px;
}

.testimonial-action {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: none;
  background: none;
  color: #65676b;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Segoe UI', 'Cairo', sans-serif;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.testimonial-action:hover {
  background: #f0f2f5;
}

.testimonial-action i {
  font-size: 16px;
}

.testimonial-action.liked {
  color: #1877F2;
}

/* ==================== FOOTER ==================== */
.footer {
  background: linear-gradient(180deg, #0D0B08 0%, #070605 100%);
  color: white;
  padding: 70px 0 0;
  margin-top: 60px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), rgba(212,175,55,0.5), rgba(212,175,55,0.3), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}

.footer-logo-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212,175,55,0.3);
  margin-bottom: 16px;
  box-shadow: 0 0 30px rgba(212,175,55,0.1);
  transition: var(--transition);
}

.footer-logo-img:hover {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(212,175,55,0.2);
}

.footer-col h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col h3::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(212,175,55,0.2), transparent);
}

.footer-col p {
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  line-height: 1.9;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  font-size: 14px;
  transition: var(--transition);
}

.footer-col a i { width: 20px; color: var(--gold); transition: var(--transition); }
.footer-col a:hover { color: var(--gold-light); transform: translateX(-4px); }
.footer-col a:hover i { color: var(--gold-light); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 0;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(212,175,55,0.1);
  position: relative;
}

.social-links a i { width: auto; color: rgba(255,255,255,0.5); transition: var(--transition); }

.social-links a:hover {
  background: var(--gold-gradient-warm);
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.2);
}

.social-links a:hover i { color: var(--black); }

.footer-bottom {
  text-align: center;
  padding: 24px;
  margin-top: 50px;
  border-top: 1px solid rgba(212,175,55,0.06);
  color: rgba(255,255,255,0.25);
  font-size: 13px;
}

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 40px rgba(37,211,102,0.5);
  color: white;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.6); }
}

/* ==================== TOAST ==================== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  color: white;
  padding: 16px 32px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Cairo', sans-serif;
  z-index: 9999;
  opacity: 0;
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast.success {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
}

.toast.error {
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  color: white;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
  .hero { min-height: auto; padding: 130px 0 70px; }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-text p { margin: 0 auto 30px; }
  .hero h1 { font-size: 40px; }
  .hero-image { grid-row: 1; }
  .hero-image-frame { max-width: 260px; }
  .hero-image-frame .hex-border { inset: -2px; }
  .hero-ring { width: 280px; height: 280px; }
  .hero-ring-2 { width: 230px; height: 230px; }
  .hero-badge { font-size: 12px; padding: 6px 16px; }
  .logo-word { font-size: 24px; }
  .logo-image-wrap { width: 44px; height: 44px; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
  .footer-content { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-col h3::after { display: none; }
  .stats-grid-new { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 42px; }
  .about-content { grid-template-columns: 1fr; gap: 40px; }
  .about-image { max-width: 400px; margin: 0 auto; }
  .about-text h2 { font-size: 30px; }
  .about-experience { right: -10px; bottom: -10px; padding: 16px 24px; }
  .about-experience .exp-num { font-size: 30px; }
  .testimonials-slider { grid-template-columns: 1fr; max-width: 400px; }
  .detail-layout { grid-template-columns: 1fr; gap: 24px; }
  .detail-title { font-size: 24px; }
  .detail-price { font-size: 30px; }
  .detail-benefits ul { grid-template-columns: 1fr; }
  .certificates-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero-particle { display: none; }
  .hero-float-hex { display: none; }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    padding: 24px;
    gap: 20px;
    flex-direction: column;
    border-top: 1px solid rgba(212,175,55,0.1);
    backdrop-filter: blur(20px);
  }
  .nav.open { display: flex; }
  .nav-link { font-size: 16px; padding: 8px 0; }
  .menu-toggle { display: block; }
  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 16px; }
  .hero-image-frame { max-width: 200px; }
  .hero-ring { width: 220px; height: 220px; }
  .hero-ring-2 { width: 180px; height: 180px; }
  .hero-badge { font-size: 11px; padding: 5px 14px; }
  .hero-drip-container { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; max-width: 360px; }
  .product-image { height: 200px; }
  .product-info { padding: 20px; }
  .section-header h2 { font-size: 28px; }
  .section-header p { font-size: 15px; }
  .weight-options { flex-direction: column; }
  .footer-content { grid-template-columns: 1fr; }
  .footer-col h3::after { display: none; }
  .modal { width: 100%; max-width: 100%; height: 100%; max-height: 100vh; border-radius: 0; }
  .modal-product { width: 100%; }
  .modal-body { max-height: calc(100vh - 80px); }
  .detail-layout { grid-template-columns: 1fr; gap: 20px; }
  .detail-title { font-size: 22px; }
  .detail-price { font-size: 26px; }
  .detail-benefits ul { grid-template-columns: 1fr; }
  .detail-gallery-thumbs { justify-content: center; }
  .header { padding: 10px 0; }
  .logo-word { font-size: 20px; }
  .logo-image-wrap { width: 40px; height: 40px; }
  .nav { gap: 16px; }
  .lang-switch { padding: 4px 10px; font-size: 12px; margin-left: 8px; }
  .stats-grid-new { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-num { font-size: 32px; }
  .stat-plus { font-size: 24px; }
  .stat-item { padding: 18px 14px; }
  .stat-desc { font-size: 13px; }
  .about-text h2 { font-size: 24px; }
  .about-image-frame img { height: 260px; }
  .about-experience { right: -8px; bottom: -8px; padding: 14px 18px; }
  .about-experience .exp-num { font-size: 26px; }
  .about-feature { padding: 6px 12px; font-size: 14px; }
  .certificates-grid { grid-template-columns: 1fr; gap: 16px; }
  .cert-card { padding: 28px 20px; }
  .certificates-gallery { grid-template-columns: 1fr; }

  .testimonials-slider {
    grid-template-columns: 1fr;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 8px 4px 16px;
    -webkit-overflow-scrolling: touch;
  }
  .testimonials-slider::-webkit-scrollbar { display: none; }
  .testimonial-card {
    min-width: 280px;
    scroll-snap-align: start;
    padding: 24px 18px;
  }
  .cert-lightbox-overlay { padding: 20px; }
  .cert-lightbox-img { max-width: 100%; max-height: 70vh; }
  .hero-particle { display: none; }
  .hero-float-hex { display: none; }
}

.features, .stats-section, .about, .certificates, .testimonials,
.products, .footer {
  content-visibility: auto;
  contain-intrinsic-size: 500px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-ring, .hero-ring-2 { animation: none !important; }
  .hero-particle, .hero-float-hex { display: none !important; }
  .hero-image-frame { animation: none !important; }
  .about-experience { animation: none !important; }
}

/* ==================== INVENTORY STATUS ==================== */
.product-out-of-stock .product-image { opacity: 0.7; }
.stock-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.55);
  z-index: 3;
  backdrop-filter: blur(2px);
}
.stock-overlay span {
  color: white;
  font-size: 18px;
  font-weight: 900;
  background: rgba(231,76,60,0.85);
  padding: 10px 24px;
  border-radius: 50px;
  letter-spacing: 1px;
}
.stock-low-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(243,156,18,0.9);
  color: white;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
}
.stock-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  margin: -8px 0 12px;
}
.stock-info.stock-out {
  background: rgba(231,76,60,0.08);
  color: var(--red);
}
.stock-info.stock-low {
  background: rgba(243,156,18,0.08);
  color: var(--orange);
}
.buy-now:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #ccc;
  box-shadow: none;
}
.buy-now:disabled:hover {
  transform: none;
  box-shadow: none;
}

/* ==================== LTR OVERRIDES ==================== */
[dir="ltr"] .btn-primary i.fa-arrow-left { transform: rotate(180deg); }
[dir="ltr"] .detail-breadcrumb i.fa-chevron-left { transform: rotate(180deg); }
[dir="ltr"] .quick-order h4::before { transform: rotate(180deg); }
[dir="ltr"] .hero-badge { letter-spacing: 0; }
[dir="ltr"] .trust-badge { text-align: left; }
[dir="ltr"] .detail-origin i { margin-left: 4px; margin-right: 0; }
