/* ============================================
   PETIT BALLERINA - Global Styles
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rose:       #f7a8c4;
  --deep-rose:  #e8679a;
  --blush:      #fce4ec;
  --cream:      #fff9f5;
  --charcoal:   #2d2d2d;
  --gold:       #c9a84c;
  --light-gold: #f5e6c0;
  --white:      #ffffff;
  --shadow:     rgba(232, 103, 154, 0.18);
  --radius:     16px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--blush); }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 3px; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px var(--shadow);
}
.navbar.transparent { background: transparent; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--rose), var(--deep-rose));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 20px;
  box-shadow: 0 4px 12px var(--shadow);
}
.nav-logo-text { font-family: 'Playfair Display', serif; }
.nav-logo-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.1;
}
.nav-logo-sub {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--deep-rose);
}
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 3px;
  cursor: pointer;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--deep-rose);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--deep-rose); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--deep-rose); }
.nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

.cart-btn {
  position: relative;
  background: linear-gradient(135deg, var(--rose), var(--deep-rose));
  border: none;
  border-radius: 50px;
  padding: 8px 18px;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.cart-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--shadow); }

.cart-badge {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  width: 20px; height: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  animation: badge-pop 0.3s ease;
}
@keyframes badge-pop {
  0% { transform: scale(0); }
  70% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none; border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.52) 0%, rgba(232,103,154,0.15) 60%, transparent 100%);
}
.hero-content {
  position: absolute;
  top: 50%; left: 8%;
  transform: translateY(-50%);
  max-width: 560px;
  color: white;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
  font-weight: 500;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--deep-rose));
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(232,103,154,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.5px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(232,103,154,0.5); }
.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: white; }

.hero-dots {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px;
  z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), width var(--transition);
}
.hero-dot.active {
  background: white;
  width: 28px;
  border-radius: 4px;
}
.hero-arrows {
  position: absolute;
  top: 50%; right: 4%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 12px;
  z-index: 3;
}
.hero-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition);
}
.hero-arrow:hover { background: rgba(255,255,255,0.35); transform: scale(1.1); }

/* Floating decorations */
.hero-float {
  position: absolute;
  pointer-events: none;
  animation: float-y 4s ease-in-out infinite;
}
.hero-float-1 { top: 15%; right: 12%; font-size: 2rem; animation-delay: 0s; }
.hero-float-2 { top: 60%; right: 18%; font-size: 1.4rem; animation-delay: 1.5s; }
.hero-float-3 { bottom: 18%; right: 8%; font-size: 1.8rem; animation-delay: 0.8s; }
@keyframes float-y {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(6deg); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section { padding: 80px 2rem; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--deep-rose);
  font-weight: 600;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--charcoal);
  margin-bottom: 14px;
}
.section-title em { font-style: italic; color: var(--deep-rose); }
.section-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--deep-rose));
  margin: 0 auto;
  border-radius: 2px;
}

/* ============================================
   CATEGORY TABS
   ============================================ */
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--rose);
  background: transparent;
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  display: flex; align-items: center; gap: 7px;
}
.tab-btn:hover { background: var(--blush); border-color: var(--deep-rose); }
.tab-btn.active {
  background: linear-gradient(135deg, var(--rose), var(--deep-rose));
  border-color: var(--deep-rose);
  color: white;
  box-shadow: 0 4px 16px var(--shadow);
}

/* ============================================
   PRODUCT GRID
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(232,103,154,0.2);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 320px;
  background: var(--blush);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.07); }

.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: linear-gradient(135deg, var(--rose), var(--deep-rose));
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  box-shadow: 0 2px 8px var(--shadow);
}
.product-badge.new { background: linear-gradient(135deg, #6dd5ed, #2193b0); }
.product-badge.sale { background: linear-gradient(135deg, #f7971e, #ffd200); color: #333; }

.product-quick-view {
  position: absolute;
  bottom: -50px;
  left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,0.95);
  color: var(--deep-rose);
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: bottom var(--transition);
  letter-spacing: 0.5px;
}
.product-card:hover .product-quick-view { bottom: 16px; }

.product-info { padding: 18px 20px 22px; }
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-category {
  font-size: 0.75rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep-rose);
}
.product-price-old {
  font-size: 0.85rem;
  color: #bbb;
  text-decoration: line-through;
  margin-left: 8px;
}
.product-colors {
  display: flex; gap: 6px; align-items: center;
}
.color-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition);
}
.color-dot:hover { transform: scale(1.25); }
.color-dot.selected { border-color: var(--charcoal); }

/* ============================================
   PRODUCT MODAL
   ============================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: fade-in 0.25s ease;
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

.modal-box {
  background: white;
  border-radius: 24px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  animation: slide-up 0.35s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
}
@keyframes slide-up {
  from { opacity: 0; transform: translateY(60px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blush);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--charcoal);
  z-index: 10;
  transition: background var(--transition), transform var(--transition);
}
.modal-close:hover { background: var(--rose); color: white; transform: rotate(90deg); }

.modal-gallery {
  position: relative;
  background: var(--blush);
  border-radius: 24px 0 0 24px;
  overflow: hidden;
  min-height: 480px;
}
.modal-gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.modal-gallery-dots {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px;
}
.modal-gallery-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
}
.modal-gallery-dot.active { background: white; width: 18px; border-radius: 3px; }

.modal-details {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.modal-badge {
  display: inline-block;
  background: var(--blush);
  color: var(--deep-rose);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.2;
}
.modal-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--deep-rose);
  margin-bottom: 16px;
}
.modal-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.option-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 10px;
}
.color-options {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 22px;
}
.color-option {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
}
.color-option:hover { transform: scale(1.2); }
.color-option.selected {
  border-color: var(--charcoal);
  box-shadow: 0 0 0 2px white inset;
  transform: scale(1.15);
}
.color-option-label {
  font-size: 0.78rem;
  color: #666;
  margin-left: 6px;
}

.size-options {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.size-btn {
  min-width: 44px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 2px solid #e0e0e0;
  background: white;
  color: var(--charcoal);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.size-btn:hover { border-color: var(--rose); color: var(--deep-rose); }
.size-btn.selected {
  border-color: var(--deep-rose);
  background: linear-gradient(135deg, var(--rose), var(--deep-rose));
  color: white;
  box-shadow: 0 4px 12px var(--shadow);
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.qty-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: #888; }
.qty-control {
  display: flex; align-items: center; gap: 0;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
}
.qty-btn {
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--charcoal);
  transition: background var(--transition);
}
.qty-btn:hover { background: var(--blush); }
.qty-val {
  width: 38px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  border-left: 2px solid #e8e8e8;
  border-right: 2px solid #e8e8e8;
}

.add-to-cart-btn {
  background: linear-gradient(135deg, var(--rose), var(--deep-rose));
  color: white;
  border: none;
  padding: 15px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 6px 20px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  width: 100%;
}
.add-to-cart-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,103,154,0.4); }
.add-to-cart-btn:active { transform: translateY(0); }
.add-to-cart-btn.added {
  background: linear-gradient(135deg, #4caf91, #2e7d5e);
  box-shadow: 0 6px 20px rgba(76,175,145,0.4);
}

/* ============================================
   CART OVERLAY
   ============================================ */
.cart-overlay {
  position: fixed; inset: 0;
  z-index: 3000;
  display: flex;
  justify-content: flex-end;
}
.cart-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
  animation: fade-in 0.25s ease;
}
.cart-panel {
  position: relative;
  width: 420px;
  max-width: 100vw;
  background: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  animation: slide-in-right 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes slide-in-right {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.cart-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
}
.cart-count-badge {
  background: var(--blush);
  color: var(--deep-rose);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
}
.cart-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blush);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition);
}
.cart-close:hover { background: var(--rose); color: white; transform: rotate(90deg); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #bbb;
  text-align: center;
  padding: 40px;
}
.cart-empty-icon { font-size: 4rem; }
.cart-empty h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #ccc; }
.cart-empty p { font-size: 0.85rem; }

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: var(--cream);
  border-radius: 14px;
  animation: slide-up 0.3s ease;
  position: relative;
}
.cart-item-img {
  width: 76px; height: 76px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--blush);
}
.cart-item-info { flex: 1; }
.cart-item-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 4px;
  line-height: 1.3;
}
.cart-item-meta {
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 8px;
}
.cart-item-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.cart-item-color-swatch {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: inline-block;
}
.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-item-price {
  font-weight: 700;
  color: var(--deep-rose);
  font-size: 0.95rem;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-item-qty button {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: white;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.cart-item-qty button:hover { background: var(--blush); }
.cart-item-qty span {
  font-size: 0.88rem;
  font-weight: 600;
  min-width: 18px;
  text-align: center;
}
.cart-item-remove {
  position: absolute;
  top: 10px; right: 10px;
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 0.9rem;
  transition: color var(--transition);
}
.cart-item-remove:hover { color: #e74c3c; }

.cart-footer {
  padding: 20px 28px 28px;
  border-top: 1px solid #f0f0f0;
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.cart-subtotal-label { font-size: 0.85rem; color: #888; }
.cart-subtotal-val { font-size: 1.1rem; font-weight: 700; color: var(--charcoal); }
.cart-tax { font-size: 0.75rem; color: #bbb; margin-bottom: 20px; }

.checkout-btn {
  width: 100%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}
.checkout-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,0.45); }
.checkout-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.clear-cart-btn {
  width: 100%;
  background: transparent;
  color: #bbb;
  border: 1px solid #e8e8e8;
  padding: 10px;
  border-radius: 50px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
}
.clear-cart-btn:hover { color: #e74c3c; border-color: #e74c3c; background: #fff5f5; }

/* ============================================
   FEATURES / PERKS BAR
   ============================================ */
.perks-bar {
  background: linear-gradient(135deg, var(--blush), #fff0f7);
  border-top: 1px solid rgba(232,103,154,0.12);
  border-bottom: 1px solid rgba(232,103,154,0.12);
  padding: 40px 2rem;
}
.perks-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.perk-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  min-width: 130px;
}
.perk-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--rose), var(--deep-rose));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: white;
  box-shadow: 0 6px 18px var(--shadow);
}
.perk-title {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--charcoal);
}
.perk-sub {
  font-size: 0.76rem;
  color: #999;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: white; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px var(--shadow); }
.testimonial-quote {
  font-size: 3rem;
  color: var(--rose);
  line-height: 1;
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
}
.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--deep-rose));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: white;
  font-size: 1rem;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-role { font-size: 0.76rem; color: #999; }
.star-row { color: var(--gold); font-size: 0.85rem; margin-bottom: 12px; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
  min-height: 100vh;
  padding-top: 96px;
  background: linear-gradient(160deg, var(--cream) 0%, #fff0f7 60%, white 100%);
}
.contact-hero {
  text-align: center;
  padding: 60px 2rem 40px;
  position: relative;
}
.contact-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--deep-rose));
  border-radius: 2px;
}
.contact-hero-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--rose), var(--deep-rose));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 24px;
  box-shadow: 0 10px 30px var(--shadow);
  animation: float-y 3s ease-in-out infinite;
}
.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 14px;
}
.contact-hero p {
  font-size: 1rem;
  color: #777;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 0 2rem 80px;
}
.contact-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 6px 30px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.contact-card.whatsapp::before { background: linear-gradient(90deg, #25D366, #128C7E); }
.contact-card.phone::before { background: linear-gradient(90deg, var(--rose), var(--deep-rose)); }
.contact-card.email::before { background: linear-gradient(90deg, #667eea, #764ba2); }
.contact-card.instagram::before { background: linear-gradient(90deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

.contact-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }

.contact-card-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.contact-card.whatsapp .contact-card-icon { background: linear-gradient(135deg, #25D366, #128C7E); }
.contact-card.phone .contact-card-icon { background: linear-gradient(135deg, var(--rose), var(--deep-rose)); }
.contact-card.email .contact-card-icon { background: linear-gradient(135deg, #667eea, #764ba2); }
.contact-card.instagram .contact-card-icon { background: linear-gradient(90deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

.contact-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
}
.contact-card-val {
  font-size: 0.9rem;
  color: #777;
  font-weight: 500;
}
.contact-card-cta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--deep-rose);
  margin-top: 4px;
}

.contact-map-section {
  background: white;
  padding: 60px 2rem;
  text-align: center;
}
.contact-map-wrap {
  max-width: 700px;
  margin: 30px auto 0;
  background: var(--blush);
  border-radius: 20px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.map-icon { font-size: 3rem; }
.map-address { font-size: 0.95rem; color: #666; line-height: 1.7; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: 60px 2rem 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 48px;
}
.footer-brand-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.footer-brand-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--rose), var(--deep-rose));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: white;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
}
.footer-desc { font-size: 0.85rem; line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: none;
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  text-decoration: none;
}
.footer-social:hover { background: var(--deep-rose); color: white; transform: translateY(-3px); }

.footer-col-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: white;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  cursor: pointer;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--rose); }

.footer-newsletter p { font-size: 0.85rem; margin-bottom: 14px; }
.newsletter-row { display: flex; gap: 8px; }
.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 10px 16px;
  color: white;
  font-size: 0.85rem;
  outline: none;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input:focus { border-color: var(--rose); }
.newsletter-btn {
  background: linear-gradient(135deg, var(--rose), var(--deep-rose));
  border: none;
  border-radius: 50px;
  padding: 10px 18px;
  color: white;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--transition);
}
.newsletter-btn:hover { transform: translateY(-2px); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  cursor: pointer;
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--rose); }

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast-container {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.toast {
  background: white;
  padding: 14px 24px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  min-width: 260px;
  animation: toast-in 0.35s cubic-bezier(0.34,1.56,0.64,1);
  border-left: 4px solid var(--deep-rose);
}
@keyframes toast-in {
  from { opacity: 0; transform: translateY(24px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.toast-icon { font-size: 1.2rem; }
.toast.success { border-left-color: #4caf91; }
.toast.error { border-left-color: #e74c3c; }

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  z-index: 999;
  padding: 20px 2rem 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  animation: slide-down 0.3s ease;
}
@keyframes slide-down {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-nav-link {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--charcoal);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
  display: block;
}
.mobile-nav-link:hover, .mobile-nav-link.active { background: var(--blush); color: var(--deep-rose); }

/* ============================================
   PAGE TRANSITIONS
   ============================================ */
.page-enter { animation: page-fade-in 0.4s ease; }
@keyframes page-fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .modal-box { grid-template-columns: 1fr; }
  .modal-gallery { border-radius: 24px 24px 0 0; min-height: 280px; }
  .modal-details { padding: 24px 20px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { left: 5%; right: 5%; max-width: 90%; }
  .hero-arrows { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cart-panel { width: 100vw; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
}

/* ============================================
   UTILITY
   ============================================ */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }
.gap-sm { gap: 8px; }
