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

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

::selection { background: var(--gold-400); color: var(--white); }

:root {
  --gold-50: #fffdf5;
  --gold-100: #fdf5e6;
  --gold-200: #fae8b4;
  --gold-300: #f5d77e;
  --gold-400: #d4a373;
  --gold-500: #c9954e;
  --gold-600: #b8843d;
  --gold-700: #9a6e32;
  --gold-800: #7d5929;
  --gold-900: #634621;

  --rosegold: #e8b4b8;
  --rosegold-dark: #d4949a;
  --rosegold-light: #f5e0e2;

  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;
  --pink-200: #fbcfe8;
  --pink-300: #f9a8d4;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
  --pink-600: #db2777;

  --rose-poudre: #f5e0e8;
  --rose-poudre-light: #fdf5f8;

  --cream: #fdfcf7;
  --cream-dark: #f5f0e6;

  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;

  --green-whatsapp: #25D366;

  --gradient-primary: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  --gradient-rose: linear-gradient(135deg, var(--rosegold), var(--rosegold-dark));
  --gradient-hero: linear-gradient(160deg, #1a1a2e 0%, #16213e 30%, #0f3460 60%, #1a1a2e 100%);
  --gradient-btn: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  --gradient-gold-rose: linear-gradient(135deg, var(--gold-400), var(--rosegold-dark));

  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.10);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-gold: 0 8px 32px rgba(196, 149, 78, 0.3);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50%;

  --font-arabic: 'Tajawal', sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;

  --header-height: 72px;
  --max-width: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: var(--font-arabic);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  direction: rtl;
}

img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
button { cursor:pointer; font-family:inherit; border:none; background:none; }
input, textarea { font-family:inherit; }
.container { max-width:var(--max-width); margin:0 auto; padding:0 20px; }

.preloader {
  position: fixed;
  inset: 0;
  background: #1a1a2e;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

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

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.preloader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(212, 163, 115, 0.2);
  border-top-color: var(--gold-400);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(26, 26, 46, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 163, 115, 0.15);
  transition: var(--transition);
}

.header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.3); }

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

.logo {
  font-size: 1.1rem;
  font-weight: 800;
  font-family: var(--font-heading);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
  position: relative;
  transition: var(--transition);
}

.logo::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

.nav-list { display:flex; gap:32px; }

.nav-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active { color: var(--gold-400); }
.nav-link:hover::after, .nav-link.active::after { width:100%; }

.header-actions { display:flex; align-items:center; gap:8px; }

.btn-whatsapp-header,
.btn-instagram-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
}

.btn-whatsapp-header:hover { background:var(--green-whatsapp); transform:scale(1.1); }
.btn-instagram-header:hover { background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); transform:scale(1.1); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.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); }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.5), rgba(15,52,96,0.4));
  pointer-events: none;
}

.hero-bg-shapes { position:absolute; inset:0; pointer-events:none; }

.shape {
  position: absolute;
  border-radius: var(--radius-full);
  opacity: 0.15;
}

.shape-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--gold-400), transparent);
  top: -150px; right: -100px;
  animation: float 8s ease-in-out infinite alternate;
}

.shape-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--rosegold), transparent);
  bottom: -80px; left: -80px;
  animation: float 10s ease-in-out infinite alternate-reverse;
}

.shape-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--gold-300), transparent);
  top: 30%; left: 15%;
  animation: float 6s ease-in-out infinite alternate;
}

.shape-4 {
  width: 120px; height: 120px;
  background: radial-gradient(circle, var(--rosegold-dark), transparent);
  bottom: 30%; right: 20%;
  animation: float 7s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% { transform:translate(0,0) scale(1); }
  100% { transform:translate(30px,-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 20px 60px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease;
  position: relative;
  overflow: hidden;
}

.hero-badge::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  background: conic-gradient(from 0deg, transparent, var(--gold-400), transparent, var(--gold-400), transparent);
  animation: borderGlow 4s linear infinite;
  z-index: -1;
  opacity: 0.5;
}

.hero-title {
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title-line {
  display: block;
  text-align: center;
}

.hero-title-line::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  border-radius: 2px;
}

.hero-logo {
  display: block;
  max-width: 380px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 4px 30px rgba(0,0,0,0.3));
}

.about-logo {
  display: block;
  max-width: 380px;
  width: 100%;
  height: auto;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 30px rgba(0,0,0,0.3));
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-text {
  text-align: center;
}

.about-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.about-founders {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

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

.hero-title-sub {
  display: block;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-top: 8px;
  font-family: var(--font-arabic);
}

.hero-title-sub .highlight {
  color: var(--white);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.8;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease 0.25s both;
}

.hero-flag { font-size: 1.5rem; }

.hero-flag-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--gradient-btn);
  color: var(--white);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  animation: fadeInUp 0.6s ease 0.3s both;
  position: relative;
  overflow: hidden;
}

.btn-hero::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-25deg);
  animation: goldShimmer 4s ease-in-out infinite;
  pointer-events: none;
}

.btn-hero:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(212, 163, 115, 0.55), 0 0 60px rgba(212, 163, 115, 0.15);
}

.btn-hero i { font-size: 0.9rem; animation: bounceArrow 2s infinite; }

@keyframes bounceArrow {
  0%, 100% { transform:translateY(0); }
  50% { transform:translateY(5px); }
}

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

@keyframes fadeInScale {
  from { opacity:0; transform:scale(0.85); }
  to { opacity:1; transform:scale(1); }
}

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

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 163, 115, 0.3); }
  50% { box-shadow: 0 0 40px rgba(212, 163, 115, 0.6); }
}

@keyframes goldShimmer {
  0% { opacity: 0.4; transform: translateX(-100%) rotate(25deg); }
  100% { opacity: 0; transform: translateX(100%) rotate(25deg); }
}

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

@keyframes borderGlow {
  0%, 100% { border-color: var(--gold-300); box-shadow: 0 0 15px rgba(212, 163, 115, 0.1); }
  50% { border-color: var(--gold-500); box-shadow: 0 0 30px rgba(212, 163, 115, 0.3); }
}

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

@keyframes slideInLeft {
  from { opacity:0; transform: translateX(-40px); }
  to { opacity:1; transform: translateX(0); }
}

.reveal { opacity:0; transform:translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.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; }

.brand-strip {
  padding: 24px 0;
  background: var(--cream-dark);
  border-bottom: 1px solid var(--gold-100);
}

.brand-strip-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.brand-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 12px;
}

.brand-strip-item:hover {
  background: var(--gold-100);
  transform: translateY(-2px);
  color: var(--gold-700);
}

.brand-strip-item i {
  font-size: 1.2rem;
  color: var(--gold-500);
  transition: transform 0.3s ease;
}

.brand-strip-item:hover i {
  transform: scale(1.2) rotate(-10deg);
}

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

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gold-100);
  color: var(--gold-700);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--gray-900);
  margin-bottom: 12px;
}

.section-desc {
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
}

.products {
  padding: 100px 0;
  background: var(--cream);
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}

.cat-filter-btn {
  font-family: 'Tajawal', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--gold-200);
  background: var(--white);
  color: var(--gold-600);
  cursor: pointer;
  transition: all 0.25s ease;
}

.cat-filter-btn:hover {
  border-color: var(--gold-400);
  background: rgba(212,163,115,0.04);
}

.cat-filter-btn.active {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--white);
  box-shadow: 0 3px 12px rgba(201,149,78,0.2);
}

.card-cat-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(255,255,255,0.92);
  color: var(--gold-600);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  backdrop-filter: blur(4px);
  line-height: 1.3;
}

.admin-cat-tag {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold-300);
  background: rgba(212,163,115,0.1);
  padding: 2px 8px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 4px;
}

.admin-select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Tajawal', sans-serif;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='rgba(255,255,255,0.4)' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
  padding-left: 36px;
}

.admin-select option {
  background: #1a1a2e;
  color: var(--white);
}

.admin-select:focus {
  border-color: rgba(212,163,115,0.3);
  box-shadow: 0 0 20px rgba(212,163,115,0.04);
}

.pv-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-600);
  margin: 14px 0 8px;
}

.pv-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pv-btn {
  font-family: 'Tajawal', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1.5px solid var(--gold-200);
  background: var(--white);
  color: var(--gold-600);
  cursor: pointer;
  transition: all 0.2s;
}

.pv-btn:hover {
  border-color: var(--gold-400);
  background: rgba(212,163,115,0.04);
}

.pv-btn.selected {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(201,149,78,0.15);
}

.order-extra-summary {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.order-extra-summary span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-600);
  background: rgba(212,163,115,0.06);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(212,163,115,0.1);
}

.admin-opt-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.admin-opt-btn {
  font-family: 'Tajawal', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.2s;
}

.admin-opt-btn:hover {
  border-color: rgba(212,163,115,0.2);
  background: rgba(212,163,115,0.04);
}

.admin-opt-btn.active {
  border-color: var(--gold-400);
  background: rgba(212,163,115,0.12);
  color: var(--gold-300);
}

.admin-cat-tag.age {
  border-color: rgba(212,163,115,0.15);
}

.admin-cat-tag.color {
  border-color: rgba(232,180,184,0.2);
  background: rgba(232,180,184,0.08);
  color: var(--rosegold-dark);
}

.admin-hidden-group {
  margin-top: 4px;
}

.admin-hidden-label {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.6) !important;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.2s;
}

.admin-hidden-label:hover {
  border-color: rgba(239,68,68,0.2);
  background: rgba(239,68,68,0.03);
}

.admin-hidden-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #ef4444;
  cursor: pointer;
}

.admin-hidden-label span i {
  margin-left: 6px;
  color: rgba(239,68,68,0.5);
}

.admin-hidden-label input[type="checkbox"]:checked ~ span i {
  color: #ef4444;
}

.admin-product-item.hidden {
  opacity: 0.5;
}

.admin-product-item.hidden .app-desc {
  text-decoration: line-through;
  opacity: 0.6;
}

.admin-hidden-badge {
  font-size: 0.6rem;
  font-weight: 700;
  color: #ef4444;
  background: rgba(239,68,68,0.08);
  padding: 1px 7px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 3px;
}

.admin-product-hide {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  color: rgba(255,255,255,0.25);
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 0.75rem;
  transition: all 0.2s;
  flex-shrink: 0;
}

.admin-product-hide:hover {
  color: var(--gold-400);
  background: rgba(212,163,115,0.08);
  border-color: rgba(212,163,115,0.15);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
}

.loader {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-400);
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--gold-200);
  border-top-color: var(--gold-500);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

.products-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  color: var(--gray-500);
}

.products-error i { font-size: 2.5rem; color: var(--gold-400); margin-bottom: 12px; }

.btn-retry {
  margin-top: 16px;
  padding: 10px 28px;
  background: var(--gradient-btn);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: var(--transition);
}

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

.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 0 0 1px rgba(212,163,115,0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  animation: cardEntrance 0.6s ease both;
  position: relative;
}

@keyframes cardEntrance {
  0% { opacity: 0; transform: translateY(40px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 163, 115, 0.06), transparent);
  transform: skewX(-25deg);
  transition: left 0.8s ease;
  pointer-events: none;
  z-index: 2;
}

.product-card:hover::before {
  left: 200%;
}

.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, transparent 40%, rgba(212,163,115,0.08), transparent 60%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 3;
}

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

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(212, 163, 115, 0.15), 0 0 0 1px rgba(212,163,115,0.15);
}

.product-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--rose-poudre-light);
}

.product-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

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

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-card-image .card-view-btn {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 8px 20px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-700);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.product-card:hover .card-view-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-card-body {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.product-card-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  background: linear-gradient(135deg, var(--gold-500), #c9954e);
  color: var(--white);
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(212,163,115,0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  max-width: 220px;
  position: relative;
  overflow: hidden;
}

.product-card-price::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-price::before {
  transform: translateX(100%) skewX(-15deg);
}

.product-card:hover .product-card-price {
  box-shadow: 0 6px 24px rgba(212,163,115,0.35);
  transform: translateY(-2px) scale(1.03);
}

.product-card-price span { font-weight: 400; color: rgba(255,255,255,0.7); font-size: 0.75rem; margin-right: 6px; }

.product-card-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

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

.modal-content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-xl);
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-100);
  border-radius: var(--radius-full);
  color: var(--gold-700);
  font-size: 1rem;
  transition: var(--transition);
  z-index: 10;
}

.modal-close:hover {
  background: var(--gold-200);
  color: var(--gold-800);
  transform: rotate(90deg);
}

.product-modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.product-modal-image {
  position: relative;
  background: var(--rose-poudre-light);
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.product-modal-info {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-modal-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--gray-900);
  margin-bottom: 8px;
}

.product-modal-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-600);
  margin-bottom: 16px;
}

.product-modal-desc {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 28px;
}

.btn-order {
  width: 100%;
  padding: 16px;
  background: var(--gradient-btn);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(212, 163, 115, 0.4);
}

.order-modal-content { max-width: 550px; }

.order-modal-body { padding: 40px 36px; }

.order-slot-picker {
  margin-bottom: 20px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(212,163,115,0.06), rgba(232,180,184,0.03));
  border: 1px solid rgba(212,163,115,0.1);
  border-radius: 16px;
}

.order-slot-picker-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-600);
  margin-bottom: 12px;
}

.order-slot-picker-header i { font-size: 1rem; }

.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  direction: ltr;
}

.cal-nav-btn {
  background: rgba(212,163,115,0.08);
  border: 1px solid rgba(212,163,115,0.15);
  color: var(--gold-600);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.cal-nav-btn:hover {
  background: rgba(212,163,115,0.15);
  border-color: var(--gold-400);
}

.cal-nav-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gold-700);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: 8px;
  direction: rtl;
}

.cal-day-header {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gray-400);
  text-align: center;
  padding: 6px 0;
  font-family: 'Tajawal', sans-serif;
}

.cal-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  aspect-ratio: 1;
  border-radius: 10px;
  font-family: 'Tajawal', sans-serif;
  min-height: 48px;
  position: relative;
}

.cal-day.empty {
  background: transparent;
}

.cal-day.disabled {
  background: transparent;
  color: var(--gray-300);
  cursor: default;
  pointer-events: none;
}

.cal-day.disabled .cal-day-num {
  color: var(--gray-300);
  font-size: 0.85rem;
  font-weight: 500;
}

button.cal-day.available {
  background: rgba(212,163,115,0.06);
  border: 1.5px solid var(--gold-200);
  cursor: pointer;
  transition: all 0.25s ease;
}

button.cal-day.available:hover {
  border-color: var(--gold-400);
  background: rgba(212,163,115,0.1);
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(212,163,115,0.12);
}

button.cal-day.available.selected {
  border-color: var(--gold-500);
  background: linear-gradient(135deg, rgba(212,163,115,0.12), rgba(232,180,184,0.06));
  box-shadow: 0 0 0 2px rgba(212,163,115,0.15), 0 3px 12px rgba(212,163,115,0.12);
}

button.cal-day.today {
  border-color: var(--gold-400);
  background: rgba(212,163,115,0.08);
}

button.cal-day.full {
  background: #fef2f2;
  border: 1.5px solid #fecaca;
  cursor: not-allowed;
  opacity: 0.7;
}

button.cal-day.full .cal-day-num { color: #dc2626; }

button.cal-day.full .cal-day-spots { color: #dc2626; }

button.cal-day:disabled {
  cursor: not-allowed;
}

.cal-day-num {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gold-700);
  line-height: 1;
}

.cal-day-spots {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 10px;
  background: rgba(212,163,115,0.1);
  color: var(--gold-600);
  line-height: 1.3;
}

.cal-day.available.selected .cal-day-spots {
  background: rgba(212,163,115,0.15);
  color: var(--gold-700);
}

.cal-day.today .cal-day-num {
  position: relative;
}

.cal-day.today .cal-day-num::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-500);
}

.order-slot-picker-msg {
  font-size: 0.78rem;
  margin: 4px 0 0;
  text-align: center;
  display: none;
} 

.order-product-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--rose-poudre-light);
  border-radius: var(--radius-md);
  margin-bottom: 28px;
  border: 1px solid var(--rosegold);
}

.order-product-summary img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--gold-100);
}

.order-product-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-800);
}

.order-product-price {
  font-weight: 700;
  color: var(--gold-600);
  font-size: 0.95rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.required { color: var(--gold-500); }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gold-100);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: var(--transition);
  background: var(--white);
  color: var(--gray-800);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 0 4px rgba(212, 163, 115, 0.1);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239,68,68,0.1);
}

.form-group textarea {
  min-height: 80px;
  resize: vertical;
}

.form-error {
  display: block;
  font-size: 0.78rem;
  color: #ef4444;
  margin-top: 4px;
  min-height: 18px;
}

.order-details-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.tab-btn {
  flex: 1;
  padding: 10px 16px;
  border: 2px solid var(--gold-100);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-500);
  background: var(--white);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tab-btn i { font-size: 0.9rem; }

.tab-btn.active {
  border-color: var(--gold-500);
  background: var(--gold-50);
  color: var(--gold-700);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.design-upload {
  padding: 14px;
  border: 2px dashed rgba(212,163,115,0.15);
  border-radius: 12px;
  text-align: center;
  transition: all 0.25s ease;
}

.design-upload.has-files {
  border-style: solid;
  border-color: rgba(212,163,115,0.2);
  background: rgba(212,163,115,0.02);
}

.btn-design-upload {
  font-family: 'Tajawal', sans-serif;
  background: rgba(212,163,115,0.06);
  border: 1.5px solid rgba(212,163,115,0.12);
  border-radius: 10px;
  padding: 12px 24px;
  color: var(--gold-600);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-design-upload:hover {
  background: rgba(212,163,115,0.1);
  border-color: var(--gold-400);
}

.design-hint {
  font-size: 0.7rem;
  color: var(--gray-400);
  margin-top: 8px;
}

.design-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  justify-content: center;
}

.design-preview {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid var(--gold-200);
}

.design-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.design-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: none;
  background: rgba(239,68,68,0.85);
  color: white;
  font-size: 0.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.design-remove:hover {
  background: #ef4444;
  transform: scale(1.1);
}

.btn-design-clear {
  font-family: 'Tajawal', sans-serif;
  margin-top: 10px;
  background: rgba(239,68,68,0.04);
  border: 1px solid rgba(239,68,68,0.12);
  border-radius: 8px;
  padding: 6px 14px;
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.btn-design-clear:hover {
  background: rgba(239,68,68,0.08);
}

.voice-recorder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: var(--rose-poudre-light);
  border-radius: var(--radius-md);
  border: 2px dashed var(--rosegold);
  transition: var(--transition);
}

.voice-recorder.recording {
  border-color: #ef4444;
  background: #fef2f2;
}

.btn-record {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--gradient-btn);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.btn-record:hover { transform:scale(1.05); }
.recording .btn-record {
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239,68,68,0.5);
  animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
  0% { box-shadow:0 0 0 0 rgba(239,68,68,0.5); }
  70% { box-shadow:0 0 0 20px rgba(239,68,68,0); }
  100% { box-shadow:0 0 0 0 rgba(239,68,68,0); }
}

.record-status {
  text-align: center;
}

.record-timer {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--gray-700);
}

.record-label {
  font-size: 0.82rem;
  color: var(--gray-400);
}

#voicePlayback { width:100%; margin-top:4px; }

.btn-remove-voice {
  padding: 6px 16px;
  font-size: 0.82rem;
  color: #ef4444;
  background: #fef2f2;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: var(--transition);
}

.btn-remove-voice:hover { background: #fee2e2; }

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--gradient-btn);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  margin-top: 4px;
}

.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(212, 163, 115, 0.4);
}

.btn-submit:disabled { opacity:0.7; cursor:not-allowed; }

.about {
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  position: relative;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.6), rgba(15,52,96,0.4));
  z-index: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about .section-tag {
  background: rgba(255,255,255,0.12);
  color: var(--gold-300);
  border: 1px solid rgba(255,255,255,0.15);
}

.about .section-title { color: var(--white); }

.about-text {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
  padding: 6px 10px;
  border-radius: 10px;
}

.about-features li:hover {
  background: rgba(255,255,255,0.08);
  transform: translateX(-5px);
  color: var(--gold-300);
}

.about-features li i { color: var(--gold-400); font-size: 1.1rem; transition: transform 0.3s ease; }

.about-features li:hover i {
  transform: scale(1.2);
}

.about-founders {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.founder {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-300);
}

.founder i { color: var(--gold-500); }

.instagram-section {
  padding: 80px 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.insta-bg-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.insta-bg-particles .particle {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--gold-400);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 6s ease-in-out infinite;
}

.insta-bg-particles .particle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; width: 8px; height: 8px; background: var(--rosegold); }
.insta-bg-particles .particle:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; width: 5px; height: 5px; }
.insta-bg-particles .particle:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 2s; width: 7px; height: 7px; background: var(--rosegold); }
.insta-bg-particles .particle:nth-child(4) { bottom: 15%; right: 25%; animation-delay: 3s; width: 4px; height: 4px; }
.insta-bg-particles .particle:nth-child(5) { top: 50%; left: 5%; animation-delay: 4s; width: 6px; height: 6px; background: var(--rosegold); }
.insta-bg-particles .particle:nth-child(6) { top: 40%; right: 8%; animation-delay: 5s; width: 5px; height: 5px; }

@keyframes particleFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0); }
  20%, 80% { opacity: 0.6; }
  50% { transform: translateY(-30px) scale(1); }
}

.instagram-section .section-tag {
  background: rgba(255,255,255,0.1);
  color: var(--gold-400);
  border: 1px solid rgba(212, 163, 115, 0.2);
}

.instagram-section .section-title { color: var(--white); }
.instagram-section .section-desc { color: rgba(255,255,255,0.6); }

.insta-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.insta-feed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.insta-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.insta-card:nth-child(1) { animation: fadeInScale 0.5s ease 0.1s both; }
.insta-card:nth-child(2) { animation: fadeInScale 0.5s ease 0.2s both; }
.insta-card:nth-child(3) { animation: fadeInScale 0.5s ease 0.3s both; }
.insta-card:nth-child(4) { animation: fadeInScale 0.5s ease 0.4s both; }

.insta-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.insta-card-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  transition: transform 0.6s ease;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.insta-card:hover .insta-card-img {
  transform: scale(1.1);
}

.insta-card-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,163,115,0.85), rgba(232,180,184,0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 2;
  text-decoration: none;
}

.insta-card-hover i {
  font-size: 2rem;
  color: var(--white);
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.insta-card:hover .insta-card-hover {
  opacity: 1;
}

.insta-card:hover .insta-card-hover i {
  transform: scale(1);
}

.insta-cta-card {
  text-align: center;
  padding: 36px 32px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  transition: all 0.4s ease;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.insta-cta-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(212, 163, 115, 0.3);
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  transform: translateY(-3px);
}

.insta-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.insta-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(212, 163, 115, 0.3);
  animation: glowPulse 3s ease-in-out infinite;
}

.insta-name { text-align: right; }

.insta-name h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 2px;
}

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

.insta-cta-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.insta-buttons {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.btn-insta, .btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-insta {
  background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(228,64,95,0.3);
}

.btn-wa {
  background: var(--green-whatsapp);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.btn-insta::before, .btn-wa::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-25deg);
  animation: goldShimmer 4s ease-in-out infinite;
  pointer-events: none;
}

.btn-insta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(228,64,95,0.5);
}

.btn-wa:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

/* ===== BACKGROUND SECTIONS ===== */
.footer {
  background: #0f0f1a;
  color: var(--white);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand h3 {
  font-size: 1.1rem;
  font-weight: 800;
  font-family: var(--font-heading);
  margin-bottom: 12px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
}

.social-link:hover { transform:translateY(-3px) scale(1.1); }
.social-link.whatsapp:hover { background:var(--green-whatsapp); box-shadow:0 4px 20px rgba(37,211,102,0.4); }
.social-link.instagram:hover { background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); box-shadow:0 4px 20px rgba(228,64,95,0.4); }

.footer-payment h4,
.footer-contact-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.payment-method i {
  width: 20px;
  color: var(--gold-400);
}

.footer-contact-info ul { display:flex; flex-direction:column; gap:12px; }

.footer-contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact-info li i { width: 18px; color: var(--gold-400); }
.footer-contact-info li a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-contact-info li a:hover { color: var(--gold-400); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

.footer-made-in {
  margin-top: 4px;
  font-size: 0.8rem;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.chat-widget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(212, 163, 115, 0.4);
  transition: all 0.3s ease;
  animation: chatFloat 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.chat-toggle::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  background: conic-gradient(from 0deg, transparent, var(--gold-400), transparent, var(--gold-300), transparent);
  animation: borderGlow 3s linear infinite;
  z-index: -1;
  opacity: 0.6;
}

.chat-toggle:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 40px rgba(212, 163, 115, 0.6);
}

.chat-toggle:hover i {
  animation: none;
}

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

.chat-window {
  width: 360px;
  max-height: 520px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  display: none;
  flex-direction: column;
  transform-origin: bottom left;
  animation: chatSlideIn 0.35s ease;
}

.chat-window.open { display: flex; }

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

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--gradient-hero);
  color: var(--white);
}

.chat-ai-avatar {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.chat-header-title { font-weight: 700; font-size: 0.9rem; }
.chat-header-status { font-size: 0.75rem; opacity:0.8; display:flex; align-items:center; gap:4px; }
.chat-header-status::before { content:''; width:6px; height:6px; background:#4ade80; border-radius:50%; display:inline-block; }

.chat-close {
  margin-right: auto;
  color: var(--white);
  opacity: 0.7;
  font-size: 1.1rem;
  transition: var(--transition);
}

.chat-close:hover { opacity:1; transform:rotate(90deg); }

.chat-messages {
  flex: 1;
  padding: 16px 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 340px;
  background: var(--cream);
}

.chat-message {
  display: flex;
  max-width: 85%;
}

.chat-message.ai { align-self: flex-start; }
.chat-message.user { align-self: flex-end; }

.msg-content {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  line-height: 1.5;
  word-wrap: break-word;
}

.chat-message.ai .msg-content {
  background: var(--white);
  color: var(--gray-700);
  box-shadow: var(--shadow-sm);
  border-bottom-right-radius: 4px;
}

.chat-message.user .msg-content {
  background: var(--gradient-primary);
  color: var(--white);
  border-bottom-left-radius: 4px;
}

.chat-input-area {
  display: flex;
  padding: 12px 16px;
  gap: 10px;
  border-top: 1px solid var(--gold-100);
  background: var(--white);
}

.chat-input {
  flex: 1;
  padding: 10px 16px;
  border: 2px solid var(--gold-100);
  border-radius: 24px;
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition);
}

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

.chat-send {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--gradient-btn);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.chat-send:hover { transform:scale(1.05); }

.chat-input-area.disabled .chat-input,
.chat-input-area.disabled .chat-send { opacity:0.5; pointer-events:none; }

.toast {
  position: fixed;
  top: 90px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  z-index: 5000;
  max-width: 400px;
  transform: translateX(-120%);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-right: 4px solid #22c55e;
}

.toast.show { transform: translateX(0); }

.toast-icon { color: #22c55e; font-size: 1.3rem; padding-top:2px; }

.toast-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray-800);
}

.toast-message {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 2px;
}

.toast-close {
  color: var(--gray-400);
  font-size: 0.85rem;
  transition: var(--transition);
  padding: 4px;
  margin-right: auto;
}

.toast-close:hover { color: var(--gray-600); }

::-webkit-scrollbar { width:8px; }
::-webkit-scrollbar-track { background:var(--cream); }
::-webkit-scrollbar-thumb { background:var(--gold-200); border-radius:4px; }
::-webkit-scrollbar-thumb:hover { background:var(--gold-300); }

/* ===== Admin Panel ===== */
.admin-link { opacity: 0.4; font-size: 0.75rem !important; letter-spacing: 1px; }
.admin-link:hover { opacity: 1; }

/* ---- Password Modal ---- */
.admin-pass-content {
  max-width: 400px;
  background: linear-gradient(160deg, #0f0f1a 0%, #1a1a2e 40%, #16213e 100%);
  border: 1px solid rgba(212,163,115,0.15);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 40px rgba(212,163,115,0.05);
  overflow: hidden;
}

.admin-pass-content::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(212,163,115,0.03), transparent, rgba(232,180,184,0.03), transparent);
  animation: adminBorderGlow 8s linear infinite;
  pointer-events: none;
}

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

.admin-pass-body {
  position: relative;
  z-index: 1;
  padding: 20px 10px;
  text-align: center;
}

.admin-pass-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(212,163,115,0.15), rgba(232,180,184,0.1));
  border: 2px solid rgba(212,163,115,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold-400);
  position: relative;
  animation: adminPulse 2.5s ease-in-out infinite;
}

@keyframes adminPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,163,115,0.15); }
  50% { box-shadow: 0 0 0 15px rgba(212,163,115,0); }
}

.admin-pass-shield {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 5rem;
  color: rgba(255,255,255,0.02);
  pointer-events: none;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1;
  user-select: none;
}

.admin-pass-title {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.admin-pass-sub {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
  margin-bottom: 24px;
}

.admin-pass-input-group {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 2px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  direction: ltr;
}

.admin-pass-input-group:focus-within {
  border-color: var(--gold-400);
  background: rgba(212,163,115,0.04);
  box-shadow: 0 0 20px rgba(212,163,115,0.06);
}

.admin-pass-input-group input {
  flex: 1;
  background: none;
  border: none;
  padding: 14px 16px;
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  font-family: monospace;
  letter-spacing: 2px;
  direction: ltr;
}

.admin-pass-input-group input::placeholder {
  color: rgba(255,255,255,0.15);
  letter-spacing: 0;
  font-family: var(--font-arabic);
}

.admin-pass-toggle {
  background: none;
  border: none;
  color: rgba(255,255,255,0.2);
  padding: 0 16px;
  cursor: pointer;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.admin-pass-toggle:hover { color: var(--gold-400); }

.admin-pass-error {
  color: #ef4444;
  font-size: 0.8rem;
  min-height: 20px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.admin-pass-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  border: none;
  border-radius: var(--radius-md);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.admin-pass-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.admin-pass-submit:hover::before { transform: translateX(100%); }
.admin-pass-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,163,115,0.25); }

.admin-pass-submit-loader { display: none; }
.admin-pass-submit.loading .admin-pass-submit-text { display: none; }
.admin-pass-submit.loading .admin-pass-submit-loader { display: inline; }

/* ---- Admin Modal ---- */
.admin-modal-content {
  max-width: 550px;
  background: linear-gradient(160deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
  border: 1px solid rgba(212,163,115,0.12);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  padding: 0;
  overflow: hidden;
}

.admin-modal-scroll {
  max-height: 85vh;
  overflow-y: auto;
  padding: 30px;
}

.admin-modal-scroll::-webkit-scrollbar { width: 4px; }
.admin-modal-scroll::-webkit-scrollbar-track { background: transparent; }
.admin-modal-scroll::-webkit-scrollbar-thumb { background: rgba(212,163,115,0.3); border-radius: 4px; }

.admin-modal-body { padding: 0; }

.admin-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.admin-header-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, rgba(212,163,115,0.12), rgba(232,180,184,0.08));
  border: 1px solid rgba(212,163,115,0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold-400);
}

.admin-header h2 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.admin-header p {
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}

/* Admin Tabs */
.admin-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 24px;
}

.admin-tab {
  flex: 1;
  padding: 10px 12px;
  background: none;
  border: none;
  border-radius: 10px;
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
}

.admin-tab i { font-size: 0.9rem; }

.admin-tab.active {
  background: rgba(212,163,115,0.1);
  color: var(--gold-400);
}

.admin-tab:not(.active):hover {
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.03);
}

.admin-tab-count {
  background: rgba(212,163,115,0.15);
  color: var(--gold-400);
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}

.admin-tab-content { display: none; }
.admin-tab-content.active { display: block; animation: fadeInUp 0.3s ease; }

/* Image Upload */
.admin-image-upload {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(255,255,255,0.03);
  border: 2px dashed rgba(255,255,255,0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.admin-image-upload:hover {
  border-color: rgba(212,163,115,0.3);
  background: rgba(212,163,115,0.03);
}

.admin-image-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  pointer-events: none;
}

.admin-image-placeholder i { font-size: 2rem; display: block; margin-bottom: 8px; }
.admin-image-placeholder span { font-size: 0.8rem; }

.admin-image-upload img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.admin-image-upload.has-image .admin-image-placeholder { display: none; }

/* Admin Submit */
.admin-submit {
  width: 100%;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.admin-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.admin-submit:hover::before { transform: translateX(100%); }
.admin-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,163,115,0.2); }

/* Product List */
.admin-products-list { }

.admin-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.admin-list-header h3 {
  color: var(--white);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.admin-list-header h3 i { color: var(--gold-400); font-size: 1rem; }

.admin-product-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.admin-product-item:hover { background: rgba(255,255,255,0.06); border-color: rgba(212,163,115,0.1); }

.admin-product-item img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.06);
}

.admin-product-item-info { flex: 1; min-width: 0; }
.admin-product-item-info .app-price { color: var(--gold-400); font-weight: 600; font-size: 0.82rem; }
.admin-product-item-info .app-desc { color: rgba(255,255,255,0.4); font-size: 0.75rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.admin-product-delete {
  background: none;
  border: none;
  color: rgba(239,68,68,0.3);
  cursor: pointer;
  font-size: 1rem;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.admin-product-delete:hover { color: #ef4444; background: rgba(239,68,68,0.08); }

.admin-empty {
  text-align: center;
  padding: 30px 20px;
  color: rgba(255,255,255,0.15);
  font-size: 0.82rem;
}

.admin-empty i { font-size: 2rem; display: block; margin-bottom: 10px; opacity: 0.5; }

.admin-modal-prods { max-height: 260px; overflow-y: auto; padding-right: 4px; }
.admin-modal-prods::-webkit-scrollbar { width: 3px; }
.admin-modal-prods::-webkit-scrollbar-track { background: transparent; }
.admin-modal-prods::-webkit-scrollbar-thumb { background: rgba(212,163,115,0.2); border-radius: 4px; }

.admin-modal-content .form-row { margin-bottom: 0; }
.admin-modal-content .form-group { margin-bottom: 16px; }
.admin-modal-content .form-group label { color: rgba(255,255,255,0.5); font-size: 0.78rem; font-weight: 600; margin-bottom: 6px; display: block; }
.admin-modal-content .form-group input,
.admin-modal-content .form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--white);
  font-size: 0.9rem;
  width: 100%;
  outline: none;
  transition: all 0.3s ease;
}

.admin-modal-content .form-group input:focus,
.admin-modal-content .form-group textarea:focus {
  border-color: rgba(212,163,115,0.3);
  background: rgba(212,163,115,0.03);
  box-shadow: 0 0 20px rgba(212,163,115,0.04);
}

.admin-modal-content .form-group input::placeholder,
.admin-modal-content .form-group textarea::placeholder { color: rgba(255,255,255,0.1); }

.admin-modal-content .form-group textarea { resize: vertical; min-height: 70px; }

.admin-slots-config {
  padding: 4px 0;
}

.admin-slots-header h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.admin-slots-header p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.admin-slot-summary {
  font-size: 0.78rem;
  color: var(--gold-300);
  font-weight: 600;
  margin-bottom: 8px;
  min-height: 1.2em;
}

.admin-slot-count {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
}

.admin-day-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 18px;
}

.admin-day-btn {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Tajawal', sans-serif;
}

.admin-day-btn:hover {
  border-color: rgba(212,163,115,0.2);
  background: rgba(212,163,115,0.04);
}

.admin-day-btn.active {
  border-color: var(--gold-400);
  background: rgba(212,163,115,0.12);
  color: var(--gold-300);
  box-shadow: 0 0 12px rgba(212,163,115,0.06);
}

.admin-config-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.admin-config-row label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  white-space: nowrap;
}

.admin-config-row input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--white);
  font-size: 0.9rem;
  width: 80px;
  outline: none;
  text-align: center;
  font-family: 'Tajawal', sans-serif;
}

.admin-config-row input:focus {
  border-color: rgba(212,163,115,0.3);
  box-shadow: 0 0 20px rgba(212,163,115,0.04);
}

@media (max-width: 1024px) {
  .about-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .brand-strip-inner { gap: 32px; }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #1a1a2e;
    border-bottom: 1px solid rgba(212, 163, 115, 0.15);
    padding: 20px;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  }

  .nav.open { transform: translateY(0); opacity:1; }

  .nav-list { flex-direction: column; gap: 16px; }
  .nav-link { font-size: 1rem; color: rgba(255,255,255,0.7); }

  .hamburger { display: flex; }

  .hero { min-height: calc(100vh - var(--header-height) - 40px); }
  .hero-logo { max-width: 260px; }
  .hero-title-sub { font-size: clamp(1rem, 4vw, 1.4rem); }
  .hero-subtitle { font-size: 0.9rem; }
  .btn-hero { padding: 14px 32px; font-size: 0.9rem; }

  .brand-strip-inner { gap: 20px; }
  .brand-strip-item { font-size: 0.8rem; }

  .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }

  .product-modal-body { grid-template-columns: 1fr; }
  .product-modal-image { min-height: 250px; }
  .product-modal-info { padding: 28px 24px; }

  .form-row { grid-template-columns: 1fr; gap: 0; }

  .order-modal-body { padding: 28px 20px; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .about-logo { max-width: 260px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .chat-window { width: calc(100vw - 32px); max-width: 360px; }

  .section-header { margin-bottom: 32px; }
  .products, .about, .instagram-section { padding: 60px 0; }

  .insta-content { grid-template-columns: 1fr; gap: 28px; }
  .insta-feed { grid-template-columns: repeat(4, 1fr); gap: 8px; max-width: 100%; }
  .insta-card-img { font-size: 1.5rem; }
  .insta-cta-card { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .products-grid { grid-template-columns: 1fr; gap: 18px; }

  .logo-img { height: 36px; }

  .product-card-image { aspect-ratio: 4 / 3; }

  .hero-content { padding: 100px 16px 40px; }
  .hero-badge { font-size: 0.75rem; padding: 6px 14px; }

  .toast { left: 16px; right: 16px; max-width: none; }

  .chat-widget { bottom: 16px; left: 16px; }
  .chat-toggle { width: 52px; height: 52px; font-size: 1.3rem; }

  .about-founders { justify-content: center; }

  .insta-feed { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .insta-card-img { font-size: 1.8rem; }
}
