/* ============ My sweer — rose & blanc, glassmorphism ============ */
:root {
  --primary: #ec4899;
  --primary-dark: #db2777;
  --primary-light: #fbcfe8;
  --primary-soft: #fdf2f8;
  --accent: #f472b6;
  --bg: #ffffff;
  --bg-soft: #fff5f9;
  --text: #3b2a36;
  --text-muted: #8a7a84;
  --border: #f3e8ee;
  --gold: #ec4899;
  --danger: #e11d48;
  --shadow: 0 10px 30px rgba(236, 72, 153, 0.12);
  --shadow-lg: 0 20px 50px rgba(236, 72, 153, 0.18);
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, Roboto, 'Helvetica Neue', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 18px 0;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.1);
  padding: 10px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo span { color: var(--text); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }
.nav-icons { display: flex; align-items: center; gap: 18px; }
.nav-icon {
  position: relative;
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}
.nav-icon:hover { background: var(--primary-soft); }
.cart-count {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.hamburger { display: none; flex-direction: column; gap: 4px; background: none; border: none; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); transition: 0.3s; }

/* ============ HERO ============ */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(255,255,255,0.92) 30%, rgba(236,72,153,0.25) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 620px; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(236,72,153,0.25);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}
.hero h1 em { font-style: normal; color: var(--primary); }
.hero p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 34px;
  max-width: 520px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 10px 25px rgba(236,72,153,0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 35px rgba(236,72,153,0.45); }
.btn-outline {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  border: 1.5px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }

/* ============ SECTION TITLES ============ */
.section { padding: 80px 0; }
.section-head { text-align: center; margin-bottom: 50px; }
.section-head .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-head h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}
.section-head h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 3px;
  background: var(--primary);
  border-radius: 3px;
}
.section-head p { color: var(--text-muted); margin-top: 16px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ============ CARROUSEL ============ */
.carousel-wrap { position: relative; }
.carousel { overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}
.carousel-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 0.3s;
}
.carousel-arrow:hover { background: var(--primary); }
.carousel-arrow:hover svg { stroke: #fff; }
.carousel-arrow.prev { left: -20px; }
.carousel-arrow.next { right: -20px; }

/* ============ PRODUCT CARDS ============ */
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.product-card:hover {
  transform: translateY(-10px) perspective(1000px) rotateX(3deg);
  box-shadow: var(--shadow-lg);
}
.img-wrap { position: relative; display: block; overflow: hidden; }
.img-wrap img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .img-wrap img { transform: scale(1.08); }
.badge-promo {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--danger);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 50px;
  z-index: 2;
}
.product-card .info { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.product-card .cat {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 6px;
}
.product-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.price { font-size: 19px; font-weight: 800; color: var(--text); margin-bottom: 16px; }
.price .old { font-size: 14px; color: var(--text-muted); text-decoration: line-through; font-weight: 500; margin-left: 8px; }
.btns { margin-top: auto; }
.btn-filled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s;
}
.btn-filled:hover { box-shadow: 0 8px 20px rgba(236,72,153,0.4); transform: translateY(-2px); }

/* ============ COLLECTIONS ============ */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.collection-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 420px;
  display: block;
  box-shadow: var(--shadow);
}
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.collection-card:hover img { transform: scale(1.1); }
.collection-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: #fff;
}
.collection-card .overlay h3 { font-size: 26px; font-weight: 800; margin-bottom: 6px; }
.collection-card .overlay span {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ============ REASSURANCE ============ */
.reassurance { background: var(--bg-soft); }
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.reassurance-item {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 24px;
  text-align: center;
  transition: all 0.35s ease;
}
.reassurance-item:hover {
  transform: translateY(-6px) perspective(1000px) rotateX(3deg);
  box-shadow: var(--shadow-lg);
}
.reassurance-item svg { margin-bottom: 16px; }
.reassurance-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.reassurance-item p { font-size: 13px; color: var(--text-muted); }

/* ============ FOOTER ============ */
footer {
  background: #2a1a24;
  color: #fff;
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand .logo span { color: var(--primary-light); }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 14px; max-width: 280px; }
footer h4 { font-size: 15px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; color: var(--primary-light); }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a { color: rgba(255,255,255,0.75); font-size: 14px; transition: color 0.3s; }
footer ul a:hover { color: #fff; }
.footer-contact li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.75); font-size: 14px; margin-bottom: 12px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 9990;
  max-width: 700px;
  margin: 0 auto;
}
.cookie-banner p { font-size: 14px; color: var(--text); flex: 1; }
.cookie-banner .btn { padding: 10px 20px; font-size: 13px; }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(30px); animation: revealFallback 0.8s ease 0.3s forwards; }
.reveal.visible { animation: revealNow 0.8s ease forwards; }
@keyframes revealFallback { to { opacity: 1; transform: translateY(0); } }
@keyframes revealNow { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ============ TOAST ============ */
.toast {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  background: #16a34a;
  color: #fff;
  padding: 14px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(-10px); }
.toast.error { background: var(--danger); }

/* ============ PAGE HEADER ============ */
.page-header {
  background: linear-gradient(135deg, var(--primary-soft), #fff);
  padding: 140px 0 60px;
  text-align: center;
}
.page-header h1 { font-size: 42px; font-weight: 800; margin-bottom: 10px; }
.page-header p { color: var(--text-muted); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .reassurance-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 30px 30px;
    gap: 22px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: right 0.4s ease;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 20px; }
  .hero h1 { font-size: 38px; }
  .hero p { font-size: 16px; }
  .section { padding: 60px 0; }
  .section-head h2 { font-size: 30px; }
  .collections-grid { grid-template-columns: 1fr; }
  .collection-card { height: 300px; }
  .carousel-arrow { display: none; }
  .carousel-track {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    transform: none !important;
    padding-bottom: 10px;
  }
  .product-card { scroll-snap-align: start; }
  .product-card { width: 45vw; }
  .img-wrap img { height: 240px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cookie-banner { flex-direction: column; align-items: stretch; }
}
