/* ============================================================
   BABY BLISS BAHAMAS — Modern Revamp
   Nassau, Bahamas · Prizmek Web Design Mockup
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --blush:    #F9E8E8;
  --blush2:   #F3D4D4;
  --cream:    #FEF9F4;
  --cream2:   #FAF4EC;
  --sage:     #8BAF8B;
  --sage2:    #6E9470;
  --rose:     #5C2D3C;
  --rose2:    #7a3d50;
  --mauve:    #C47A8A;
  --mauve2:   #b06070;
  --white:    #FFFFFF;
  --muted:    #8A7F7F;
  --border:   rgba(92,45,60,0.1);
  --radius:   12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--rose);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; line-height: 1.1; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(254,249,244,0.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%; display: flex; align-items: center;
  justify-content: space-between; height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-mark { width: 38px; height: 38px; background: var(--blush); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.nav-logo-text strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; color: var(--rose); }
.nav-logo-text span { font-size: 9.5px; color: var(--mauve); letter-spacing: 0.18em; text-transform: uppercase; }
.nav-links { display: flex; gap: 30px; list-style: none; align-items: center; }
.nav-links a { color: var(--rose2); font-size: 13px; font-weight: 500; letter-spacing: 0.04em; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--mauve); }
.nav-shop-btn { background: var(--rose); color: white; padding: 9px 22px; border-radius: 30px; font-size: 12px; font-weight: 600; transition: all 0.2s; }
.nav-shop-btn:hover { background: var(--rose2); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--rose); border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--cream); z-index: 999; padding: 20px 5%; border-top: 1px solid var(--border); flex-direction: column; gap: 0; box-shadow: 0 8px 24px rgba(92,45,60,0.08); }
.mobile-menu a { color: var(--rose); font-size: 15px; font-weight: 500; padding: 13px 0; border-bottom: 1px solid var(--border); }
.mobile-menu.open { display: flex; }

/* ── HERO ── */
.hero {
  min-height: 100vh; background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 100px 5% 60px;
  position: relative; overflow: hidden; gap: 40px;
}
.hero-blob {
  position: absolute; width: 700px; height: 700px;
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  background: radial-gradient(ellipse at 40% 40%, var(--blush) 0%, rgba(249,232,232,0) 70%);
  top: -100px; right: -150px; z-index: 0;
  animation: blobFloat 10s ease-in-out infinite alternate;
}
.hero-blob2 {
  position: absolute; width: 400px; height: 400px;
  border-radius: 50% 40% 55% 45% / 60% 45% 55% 40%;
  background: radial-gradient(ellipse at 60% 60%, rgba(200,184,216,0.3) 0%, transparent 70%);
  bottom: -80px; left: 5%; z-index: 0;
  animation: blobFloat 14s ease-in-out infinite alternate-reverse;
}
@keyframes blobFloat { from { transform: scale(1) translate(0,0); } to { transform: scale(1.08) translate(20px,-20px); } }
.hero-left { position: relative; z-index: 2; }
.hero-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--blush); border: 1px solid var(--blush2); border-radius: 30px; padding: 7px 16px; font-size: 11px; font-weight: 600; color: var(--mauve); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px; }
.hero-pill::before { content: '✦'; font-size: 9px; color: var(--mauve); }
.hero h1 { font-size: clamp(46px, 6vw, 80px); color: var(--rose); font-weight: 500; line-height: 1.08; margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--mauve); }
.hero-sub { font-size: 16px; color: var(--muted); max-width: 420px; line-height: 1.75; margin-bottom: 36px; font-weight: 300; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-rose { background: var(--rose); color: white; padding: 13px 28px; border-radius: 30px; font-size: 13.5px; font-weight: 600; letter-spacing: 0.04em; transition: all 0.25s; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; }
.btn-rose:hover { background: var(--rose2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(92,45,60,0.25); }
.btn-outline-rose { background: transparent; color: var(--rose); padding: 13px 28px; border-radius: 30px; font-size: 13.5px; font-weight: 600; transition: all 0.25s; border: 1.5px solid var(--border); cursor: pointer; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline-rose:hover { border-color: var(--mauve); color: var(--mauve); }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid var(--border); }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); font-weight: 500; }
.trust-item span:first-child { font-size: 18px; }

/* hero right cards */
.hero-right { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-product-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 24px rgba(92,45,60,0.08); transition: transform 0.3s; }
.hero-product-card:hover { transform: translateY(-6px); }
.hero-product-card.tall { grid-row: 1/3; display: flex; flex-direction: column; }
.hpc-img { background: var(--blush); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 50px; flex-shrink: 0; overflow: hidden; position: relative; }
.hero-product-card.tall .hpc-img { aspect-ratio: auto; flex: 1; min-height: 200px; }
.hpc-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hpc-body { padding: 14px; }
.hpc-body h4 { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; color: var(--rose); margin-bottom: 4px; line-height: 1.3; }
.hpc-body .price { font-size: 14px; font-weight: 700; color: var(--mauve); }
.hpc-new { position: absolute; top: 10px; left: 10px; background: var(--sage); color: white; font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 3px 8px; border-radius: 20px; }

/* ── MARQUEE ── */
.marquee { background: var(--rose); padding: 12px 0; overflow: hidden; white-space: nowrap; }
.marquee-inner { display: inline-flex; animation: marqueeScroll 24s linear infinite; }
.marquee span { color: rgba(255,255,255,0.85); font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; padding: 0 22px; }
.marquee span::before { content: '✦'; margin-right: 22px; opacity: 0.4; font-size: 8px; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTIONS ── */
.section { padding: 80px 5%; }
.section-cream { background: var(--cream2); }
.section-blush { background: var(--blush); }
.section-white { background: var(--white); }
.section-label { font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mauve); margin-bottom: 10px; }
.section-title { font-size: clamp(34px, 4.5vw, 58px); color: var(--rose); margin-bottom: 14px; line-height: 1.05; }
.section-sub { font-size: 15px; color: var(--muted); max-width: 520px; line-height: 1.75; font-weight: 300; margin-bottom: 48px; }

/* ── CATEGORIES ── */
.category-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.cat-card { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 3/4; cursor: pointer; transition: transform 0.3s; }
.cat-card:hover { transform: translateY(-6px); }
.cat-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 60px; }
.cat-bg-0 { background: linear-gradient(135deg,#FAD9D9,#F5B8C4); }
.cat-bg-1 { background: linear-gradient(135deg,#D4E8D4,#B8D4B8); }
.cat-bg-2 { background: linear-gradient(135deg,#D4D0E8,#C8B8D8); }
.cat-bg-3 { background: linear-gradient(135deg,#FAE8D4,#F5D4B0); }
.cat-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 16px 16px; background: linear-gradient(to top, rgba(92,45,60,0.75),transparent); }
.cat-label strong { display: block; font-family: 'Cormorant Garamond',serif; font-size: 20px; color: white; font-weight: 600; margin-bottom: 2px; }
.cat-label span { font-size: 11px; color: rgba(255,255,255,0.75); letter-spacing: 0.08em; }

/* ── PRODUCT GRID ── */
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.product-card { background: white; border-radius: var(--radius); overflow: hidden; transition: all 0.3s; position: relative; border: 1px solid rgba(92,45,60,0.05); }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(92,45,60,0.12); }
.product-card:hover .pc-add-btn { opacity: 1; transform: translateY(0); }
.pc-img { background: var(--blush); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 46px; position: relative; overflow: hidden; }
.pc-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.pc-badge { position: absolute; top: 10px; left: 10px; color: white; font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; z-index: 2; }
.pc-badge.new { background: var(--sage); }
.pc-badge.sale { background: var(--mauve); }
.pc-wishlist { position: absolute; top: 10px; right: 10px; background: white; border: none; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.1); z-index: 2; transition: transform 0.2s; }
.pc-wishlist:hover { transform: scale(1.15); }
.pc-add-btn { position: absolute; bottom: 10px; left: 10px; right: 10px; background: var(--rose); color: white; border: none; padding: 10px; border-radius: 8px; font-family: 'DM Sans',sans-serif; font-size: 12px; font-weight: 600; cursor: pointer; z-index: 2; opacity: 0; transform: translateY(6px); transition: all 0.25s; }
.pc-add-btn:hover { background: var(--rose2); }
.pc-body { padding: 14px; }
.pc-cat { font-size: 10px; color: var(--mauve); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; margin-bottom: 5px; }
.pc-name { font-size: 14px; font-weight: 600; color: var(--rose); line-height: 1.35; margin-bottom: 8px; }
.pc-price { font-size: 15px; font-weight: 700; color: var(--rose); }

/* shop page filter bar */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn { padding: 9px 20px; border-radius: 30px; font-size: 13px; font-weight: 500; cursor: pointer; border: 1.5px solid var(--border); background: white; color: var(--rose2); transition: all 0.2s; font-family: 'DM Sans',sans-serif; }
.filter-btn:hover, .filter-btn.active { background: var(--rose); color: white; border-color: var(--rose); }

/* ── ABOUT ── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-frame { background: var(--blush); border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%; aspect-ratio: 1; max-width: 480px; display: flex; align-items: center; justify-content: center; font-size: 100px; overflow: hidden; position: relative; }
.about-float-badge { position: absolute; bottom: 30px; right: -10px; background: white; border-radius: 14px; padding: 14px 18px; box-shadow: 0 8px 30px rgba(92,45,60,0.12); text-align: center; }
.about-float-badge strong { display: block; font-family: 'Cormorant Garamond',serif; font-size: 32px; color: var(--mauve); line-height: 1; }
.about-float-badge span { font-size: 11px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* ── VALUES ── */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.value-card { background: white; border-radius: var(--radius); padding: 32px 24px; text-align: center; border: 1px solid var(--border); transition: all 0.3s; }
.value-card:hover { border-color: var(--mauve); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(92,45,60,0.1); }
.value-icon { font-size: 36px; margin-bottom: 16px; }
.value-card h4 { font-family: 'Cormorant Garamond',serif; font-size: 22px; color: var(--rose); margin-bottom: 10px; }
.value-card p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

/* ── INSTAGRAM ── */
.insta-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 4px; }
.insta-cell { aspect-ratio: 1; background: var(--blush); position: relative; overflow: hidden; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 28px; transition: transform 0.3s; }
.insta-cell:hover { transform: scale(1.04); z-index: 2; }
.insta-cell:hover .insta-overlay { opacity: 1; }
.insta-overlay { position: absolute; inset: 0; background: rgba(92,45,60,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; font-size: 22px; color: white; }
.insta-cell:nth-child(2n) { background: var(--cream2); }
.insta-cell:nth-child(3n) { background: rgba(200,184,216,0.3); }
.insta-cell:nth-child(4n) { background: rgba(139,175,139,0.2); }

/* ── NEWSLETTER ── */
.newsletter { background: var(--rose); border-radius: var(--radius-lg); padding: 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin: 0 5%; position: relative; overflow: hidden; }
.newsletter h2 { font-size: 42px; color: white; margin-bottom: 12px; }
.newsletter p { font-size: 15px; color: rgba(255,255,255,0.65); }
.nl-form { display: flex; gap: 10px; margin-top: 24px; }
.nl-form input { flex: 1; padding: 13px 18px; border: none; border-radius: 30px; font-family: 'DM Sans',sans-serif; font-size: 14px; outline: none; background: rgba(255,255,255,0.12); color: white; }
.nl-form input::placeholder { color: rgba(255,255,255,0.45); }
.nl-form button { background: white; color: var(--rose); border: none; padding: 13px 22px; border-radius: 30px; font-family: 'DM Sans',sans-serif; font-size: 13px; font-weight: 700; cursor: pointer; white-space: nowrap; transition: all 0.2s; }
.nl-form button:hover { background: var(--cream); }

/* ── CONTACT ── */
.contact-hero { min-height: 36vh; background: var(--blush); display: flex; align-items: flex-end; padding: 120px 5% 60px; position: relative; overflow: hidden; }
.contact-hero h1 { font-size: clamp(42px,6vw,76px); color: var(--rose); position: relative; z-index: 2; }
.contact-hero p { color: var(--muted); margin-top: 14px; font-size: 15px; position: relative; z-index: 2; max-width: 480px; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; padding: 80px 5%; }
.contact-info h2 { font-size: 40px; margin-bottom: 16px; }
.contact-info > p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 36px; }
.c-items { display: flex; flex-direction: column; gap: 18px; }
.c-item { display: flex; gap: 14px; align-items: center; }
.c-ic { width: 44px; height: 44px; background: var(--blush); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.c-text strong { display: block; font-size: 10px; color: var(--mauve); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 2px; font-weight: 600; }
.c-text a, .c-text span { font-size: 14.5px; font-weight: 600; color: var(--rose); }
.c-text a:hover { color: var(--mauve); }
.hours-box { margin-top: 28px; background: white; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.hours-head { background: var(--blush); padding: 12px 20px; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mauve); }
.hours-row { display: flex; justify-content: space-between; padding: 10px 20px; font-size: 13.5px; border-bottom: 1px solid var(--border); }
.hours-row:last-child { border-bottom: none; }
.social-strip { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
.social-pill { display: flex; align-items: center; gap: 8px; padding: 9px 16px; border: 1.5px solid var(--border); border-radius: 30px; font-size: 12.5px; font-weight: 600; color: var(--rose); transition: all 0.2s; }
.social-pill:hover { border-color: var(--mauve); background: var(--blush); }
.contact-form { background: white; border-radius: var(--radius-lg); padding: 44px; box-shadow: 0 8px 40px rgba(92,45,60,0.07); border: 1px solid var(--border); }
.contact-form h3 { font-size: 34px; margin-bottom: 6px; }
.contact-form > p { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
input, textarea, select { width: 100%; padding: 12px 16px; border: 1.5px solid rgba(92,45,60,0.12); border-radius: 10px; font-family: 'DM Sans',sans-serif; font-size: 14px; color: var(--rose); background: white; transition: border-color 0.2s; outline: none; }
input:focus, textarea:focus, select:focus { border-color: var(--mauve); }
textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; background: var(--rose); color: white; border: none; padding: 14px; border-radius: 30px; font-family: 'DM Sans',sans-serif; font-size: 14.5px; font-weight: 600; cursor: pointer; transition: all 0.25s; letter-spacing: 0.04em; margin-top: 6px; }
.form-submit:hover { background: var(--rose2); transform: translateY(-1px); }

/* ── CTA BAND ── */
.cta-band { background: var(--blush); padding: 72px 5%; text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { font-size: clamp(36px,5vw,64px); color: var(--rose); margin-bottom: 14px; position: relative; z-index: 2; }
.cta-band p { font-size: 16px; color: var(--muted); margin-bottom: 32px; max-width: 420px; margin-left: auto; margin-right: auto; position: relative; z-index: 2; }

/* ── FOOTER ── */
.footer { background: var(--rose); padding: 60px 5% 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-top: 14px; max-width: 240px; }
.f-col h5 { font-size: 10.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 18px; }
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.f-col a { font-size: 13.5px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.f-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 34px; height: 34px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 14px; transition: all 0.2s; }
.footer-socials a:hover { background: rgba(255,255,255,0.2); color: white; }

/* ── WA FLOAT ── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 9999; background: #25D366; width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 22px rgba(37,211,102,0.4); transition: transform 0.25s; }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 26px; height: 26px; fill: white; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3,1fr); }
  .category-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .insta-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .about-split { grid-template-columns: 1fr; }
  .newsletter { grid-template-columns: 1fr; padding: 40px 28px; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-shop-btn { display: none; }
  .hamburger { display: flex; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .category-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .form-2 { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; }
  .product-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
}
