/* ========== 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: 'Tajawal', 'Cairo', sans-serif;
  direction: rtl;
  text-align: right;
  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=Tajawal:wght@300;400;500;700;800;900&family=Cairo:wght@300;400;600;700;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: 70px 0; }
.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: 'Tajawal', 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-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; }
.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: 'Tajawal', 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-colors {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.color-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #ddd;
  cursor: pointer;
  transition: transform 0.2s;
}
.color-dot:hover { transform: scale(1.3); }
.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, #25D366, #128C7E);
  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: 'Tajawal', sans-serif;
}
.btn-order:hover {
  background: linear-gradient(135deg, #128C7E, #25D366);
  transform: translateY(-1px);
}

/* ========== 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: 'Tajawal', sans-serif;
  color: var(--dark);
  transition: border-color 0.2s;
  background: #fdf6fb;
  direction: rtl;
}
.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: 'Tajawal', 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;
}

/* ========== MODAL ========== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-overlay.active { display: flex; }
.modal {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  max-width: 480px;
  width: 90%;
  position: relative;
  animation: slideUp 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--gray);
  line-height: 1;
}
.modal h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.modal .product-modal-name { color: var(--pink); margin-bottom: 20px; font-size: 1rem; }

/* ========== 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%;
    right: 0;
    left: 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; }
