/** Shopify CDN: Minification failed

Line 123:0 All "@import" rules must come first

**/
/* ========== HERO BANNER ========== */
.hero-banner {
  width: 100%;
  display: block;
  line-height: 0;
}
.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========== HERO SLIDER ========== */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
  transition: height 0.4s ease;
}
.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.77,0,0.18,1);
}
.slide {
  min-width: 100%;
  flex-shrink: 0;
}
.slide img {
  width: 100%;
  display: block;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  transition: background 0.2s;
  z-index: 10;
  line-height: 1;
}
.slider-btn:hover { background: #fff; }
.slider-btn.prev { left: 16px; }
.slider-btn.next { right: 16px; }
.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
}
.slider-dot.active {
  background: var(--pink);
  transform: scale(1.3);
}
@media (max-width: 600px) {
  .slider-btn { width: 36px; height: 36px; font-size: 1.3rem; }
}

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

:root {
  --pink: #e91e8c;
  --pink-light: #f8bbd9;
  --pink-dark: #c2185b;
  --purple: #9c27b0;
  --gold: #d4af37;
  --gold-light: #f9f3d9;
  --dark: #2d1b33;
  --gray: #6b7280;
  --light: #fdf6fb;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(233,30,140,0.12);
  --radius: 16px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Poppins', sans-serif;
  direction: ltr;
  text-align: left;
  background: var(--light);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ========== GOOGLE FONTS IMPORT ========== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700;800;900&family=Tajawal:wght@300;400;500;700;800;900&display=swap');

/* ========== UTILITY ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--dark);
  text-align: center;
  margin-bottom: 8px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--gray);
  text-align: center;
  margin-bottom: 40px;
}
.section-subtitle span { color: var(--pink); font-weight: 700; }
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  border-radius: 2px;
  margin: 10px auto 30px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(233,30,140,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(233,30,140,0.45);
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
}
.tag {
  display: inline-block;
  background: var(--pink-light);
  color: var(--pink-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ========== ANNOUNCEMENT BAR ========== */
.announcement-bar {
  background: linear-gradient(90deg, var(--pink-dark), var(--purple));
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 500;
}
.announcement-bar span { font-weight: 700; }

/* ========== NAVBAR ========== */
.navbar {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.logo-text { font-size: 1.5rem; font-weight: 900; color: var(--pink); }
.logo-sub { font-size: 0.7rem; color: var(--gray); }
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--pink); }
.nav-wa-btn {
  background: #25D366;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem !important;
}
.nav-wa-btn::after { display: none !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, #fdf6fb 0%, #f3e5f5 50%, #fce4ec 100%);
  padding: 60px 0 40px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(233,30,140,0.08) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-light);
  color: var(--pink-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
}
.hero-title span { color: var(--pink); }
.hero-desc {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--pink);
  display: block;
}
.stat-label { font-size: 0.8rem; color: var(--gray); }
.hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
}
.hero-img-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  aspect-ratio: 3/4;
}
.hero-img-card:hover { transform: scale(1.03); }
.hero-img-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-card:first-child { margin-top: 30px; }

/* ========== TRUST BAR ========== */
.trust-bar {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #f0e6f6;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}
.trust-icon {
  width: 40px;
  height: 40px;
  background: var(--pink-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* ========== PRODUCTS ========== */
.products-section { padding: 30px 0 70px; }
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  border: 2px solid #e8d5f0;
  border-radius: 50px;
  background: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--gray);
  font-family: 'Poppins', sans-serif;
}
.filter-btn.active, .filter-btn:hover {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border-color: transparent;
  color: #fff;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.product-card { cursor: pointer; }

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--pink);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 2;
}
.product-badge.new { background: #4caf50; }
.product-badge.sale { background: #ff5722; }

.price-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #ff6f00, #ff1744);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  padding: 6px 14px;
  border-radius: 50px;
  z-index: 2;
  box-shadow: 0 3px 12px rgba(255,23,68,0.5);
  letter-spacing: 0.5px;
  animation: pricePulse 2s ease-in-out infinite;
}
@keyframes pricePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 3px 12px rgba(255,23,68,0.5); }
  50%       { transform: scale(1.07); box-shadow: 0 5px 18px rgba(255,23,68,0.7); }
}
.product-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img { transform: scale(1.05); }
.product-img-wrap { overflow: hidden; position: relative; }
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover .product-overlay { opacity: 1; }
.overlay-btn {
  background: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
}
.overlay-btn.wa { background: #25D366; color: #fff; }
.overlay-btn:hover { transform: scale(1.05); }
.product-info { padding: 16px; }
.product-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.product-size {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 10px;
}
.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.price-current { font-size: 1.2rem; font-weight: 900; color: var(--pink); }
.price-old { font-size: 0.85rem; color: var(--gray); text-decoration: line-through; }
.btn-order {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 3px 12px rgba(233,30,140,0.25);
}
.btn-order:hover {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(233,30,140,0.35);
}

/* ========== ORDER FORM SECTION ========== */
.order-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #fdf6fb, #f3e5f5);
}
.order-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.order-info h2 { font-size: 2rem; font-weight: 900; margin-bottom: 16px; }
.order-info h2 span { color: var(--pink); }
.order-info p { color: var(--gray); line-height: 1.8; margin-bottom: 24px; }
.order-features { display: flex; flex-direction: column; gap: 16px; }
.order-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--pink-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.order-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.order-form h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 24px;
  text-align: center;
  color: var(--dark);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8d5f0;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  transition: border-color 0.2s;
  background: #fdf6fb;
  direction: ltr;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pink);
  background: #fff;
}
.form-group textarea { height: 90px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 20px rgba(233,30,140,0.35);
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(233,30,140,0.45);
}
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 12px;
}

/* ========== REVIEWS ========== */
.reviews-section { padding: 70px 0; background: #fff; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  transition: transform 0.3s;
}
.review-card:hover { transform: translateY(-4px); }
.review-quote {
  font-size: 3rem;
  color: var(--pink-light);
  line-height: 0.5;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}
.review-text {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 16px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 0.95rem; }
.review-city { font-size: 0.8rem; color: var(--gray); }
.review-stars { color: #ffc107; font-size: 0.85rem; margin-top: 2px; }
.reviews-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--pink-light), #f3e5f5);
  border-radius: var(--radius);
  padding: 40px;
}
.reviews-cta p { color: var(--gray); margin: 10px 0 20px; }

/* ========== BLOG ========== */
.blog-section { padding: 70px 0; background: var(--light); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--pink-light), #f3e5f5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-content { padding: 20px; }
.blog-tag {
  display: inline-block;
  background: var(--pink-light);
  color: var(--pink-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.blog-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.blog-excerpt { font-size: 0.85rem; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--gray);
}
.blog-read-more {
  color: var(--pink);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
}

/* ========== WHATSAPP FLOAT ========== */
.wa-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
}
.wa-float-btn {
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: all 0.3s;
  animation: pulse 2s infinite;
}
.wa-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}
.wa-float-btn svg { width: 32px; height: 32px; fill: #fff; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.wa-tooltip {
  position: absolute;
  bottom: 74px;
  left: 0;
  background: var(--dark);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ========== FOOTER ========== */
footer {
  background: var(--dark);
  color: #fff;
  padding: 50px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-text { color: #fff; font-size: 1.8rem; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin: 12px 0 20px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-size: 1.1rem;
}
.social-btn:hover { background: var(--pink); transform: translateY(-2px); }
.footer-col h4 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; color: #fff; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--pink-light); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 10px;
}

/* ========== PRODUCT MODAL ========== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  padding: 16px;
}
.modal-overlay.active { display: flex; }

.product-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 860px;
  max-height: 92vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  position: relative;
  animation: pmSlideUp 0.35s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
@keyframes pmSlideUp {
  from { transform: translateY(40px) scale(0.95); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

.pm-close {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #2d1b33;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.pm-close:hover { background: #e91e8c; }

/* Left: image */
.pm-img-side {
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  background: linear-gradient(160deg, #fdf6fb, #f3e5f5);
}
.pm-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 300px;
}

/* Right: info */
.pm-info-side {
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
}

.pm-name {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.3;
}
.pm-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}


.pm-field { display: flex; flex-direction: column; gap: 5px; }
.pm-field label { font-size: 0.82rem; font-weight: 700; color: var(--dark); }
.pm-field input, .pm-field select {
  padding: 10px 14px;
  border: 2px solid #e8d5f0;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: #fdf6fb;
  direction: ltr;
  transition: border-color 0.2s;
}
.pm-field input:focus, .pm-field select:focus {
  outline: none;
  border-color: var(--pink);
  background: #fff;
}
.pm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pm-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--pink-light);
  border-radius: 12px;
  padding: 12px 18px;
  margin-top: 4px;
}
.pm-price-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}
.pm-price-amount {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--pink);
}

.pm-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pm-badge {
  flex: 1;
  text-align: center;
  background: #f0faf4;
  color: #2e7d32;
  border: 1.5px solid #a5d6a7;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.78rem;
  font-weight: 700;
}

.pm-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(233,30,140,0.35);
  margin-top: 4px;
}
.pm-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(233,30,140,0.45);
}

/* Mobile product modal */
@media (max-width: 640px) {
  .product-modal {
    grid-template-columns: 1fr;
    max-height: 95vh;
  }
  .pm-img-side {
    border-radius: 20px 20px 0 0;
    max-height: 240px;
  }
  .pm-info-side { padding: 20px 16px 20px; }
  .pm-row { grid-template-columns: 1fr; }
}

/* ========== ORDER SUCCESS POPUP ========== */
.order-success-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30, 10, 40, 0.65);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
}
.order-success-overlay.active { display: flex; }
.order-success-box {
  background: #fff;
  border-radius: 28px;
  padding: 52px 40px 44px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 32px 80px rgba(233,30,140,0.18), 0 8px 32px rgba(0,0,0,0.12);
  animation: pmSlideUp 0.4s cubic-bezier(0.34,1.56,0.64,1);
  border-top: 5px solid;
  border-image: linear-gradient(90deg, #e91e8c, #9c27b0) 1;
}
.order-success-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: #f5f0f8;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 1rem;
  cursor: pointer;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-weight: 700;
}
.order-success-close:hover { background: #fce4ec; color: #e91e8c; }
.order-success-icon { font-size: 4rem; margin-bottom: 16px; display: block; }
.order-success-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}
.order-success-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #e91e8c, #9c27b0);
  border-radius: 2px;
  margin: 0 auto 20px;
}
.order-success-text {
  font-size: 0.98rem;
  color: #666;
  line-height: 1.9;
  margin-bottom: 24px;
}
.order-success-text em {
  font-style: normal;
  color: #e91e8c;
  font-weight: 600;
}
.order-success-brand {
  font-size: 0.88rem;
  color: #aaa;
  border-top: 1px solid #f0e8f5;
  padding-top: 16px;
  margin-top: 4px;
}
.order-success-brand strong { color: #e91e8c; }

/* ========== SUCCESS MESSAGE ========== */
.success-msg {
  display: none;
  background: #e8f5e9;
  border: 2px solid #4caf50;
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  color: #2e7d32;
  font-weight: 700;
  margin-top: 12px;
}
.success-msg.show { display: block; }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-images { display: grid; grid-template-columns: repeat(3, 1fr); }
  .hero-img-card:first-child { margin-top: 0; }
  .order-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 20px;
    flex-direction: column;
    gap: 16px;
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile a {
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 1px solid #f0e6f6;
    color: var(--dark);
  }
}
@media (max-width: 600px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .blog-grid { grid-template-columns: 1fr; }
  .order-form { padding: 24px 16px; }
  .trust-inner { gap: 10px; }
  .trust-item { font-size: 0.8rem; }
}
@media (max-width: 400px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ========== ABOUT ========== */
.about-section { padding: 70px 0; background: #fff; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
}
.about-content h2 { font-size: 2rem; font-weight: 900; margin-bottom: 16px; }
.about-content h2 span { color: var(--pink); }
.about-content p { color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.about-vals { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.about-val { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--dark); }
.about-val span:first-child { color: var(--pink); font-size: 1.2rem; }
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
}

/* ========== SIZES GUIDE ========== */
.sizes-section { padding: 50px 0; background: var(--gold-light); }
.sizes-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.sizes-table th {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  padding: 14px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}
.sizes-table td {
  padding: 12px 16px;
  text-align: center;
  font-size: 0.9rem;
  border-bottom: 1px solid #f0e6f6;
}
.sizes-table tr:last-child td { border-bottom: none; }
.sizes-table tr:nth-child(even) td { background: #fdf6fb; }

/* ========== PRODUCT MODAL SUCCESS MESSAGE ========== */
.pm-success-msg {
  margin-top: 14px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  border: 1.5px solid #a5d6a7;
  border-radius: 12px;
  color: #2e7d32;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
