/* ===========================
   TOKENS
=========================== */
:root{
  --cream: #FFF8F4;
  --blush: #FDEDEA;
  --rose-50: #FFF0EE;
  --coral: #EE5C72;
  --coral-dark: #D8455C;
  --coral-deep: #C23A50;
  --ink: #241B22;
  --ink-soft: #5B5159;
  --line: #F0E2DD;
  --violet: #8B6BD8;
  --violet-bg: #F1ECFC;
  --mint: #3FAE8F;
  --mint-bg: #E3F6EE;
  --gold: #E8A33D;
  --gold-bg: #FCEFD9;
  --white: #FFFFFF;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-card: 0 10px 30px -12px rgba(36,27,34,0.12);
  --shadow-soft: 0 4px 14px -4px rgba(36,27,34,0.08);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
svg{ width:1em; height:1em; }

/* Placeholder image blocks — swap these for <img> tags later */
.ph-img{
  position:relative;
  background:
    linear-gradient(135deg, #F4ECFB 0%, #FBEAEE 50%, #FFF3E2 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.ph-img::before{
  content: attr(data-ph);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight:600;
  color: rgba(36,27,34,0.38);
  text-align:center;
  padding: 0 12px;
  letter-spacing:.02em;
}
.ph-img::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    repeating-linear-gradient(45deg, rgba(36,27,34,0.035) 0, rgba(36,27,34,0.035) 2px, transparent 2px, transparent 14px);
}

.ic{ width:16px; height:16px; flex-shrink:0; }
.ic.sm{ width:15px; height:15px; }

/* ===========================
   ANNOUNCEMENT BAR
=========================== */
.announce-bar{
  background: var(--rose-50);
  border-bottom: 1px solid var(--line);
  overflow:hidden;
  white-space:nowrap;
}
.announce-track{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:9px 16px;
  font-size:13px;
  font-weight:600;
  color: var(--coral-deep);
  flex-wrap:wrap;
}
.announce-item{
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.announce-item .ic{ color: var(--coral); }
.announce-dot{ color: var(--coral); opacity:.5; }

/* ===========================
   HEADER
=========================== */
.site-header{
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top:0;
  z-index:50;
}
.header-inner{
  max-width:1280px;
  margin:0 auto;
  padding:16px 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.logo{
  display:flex;
  flex-direction:column;
  line-height:1.1;
  flex-shrink:0;
}
.logo-main{
  font-family: var(--font-display);
  font-size:23px;
  font-weight:600;
  letter-spacing:.01em;
}
.logo-main em{
  font-style:italic;
  font-weight:500;
  color: var(--coral);
  margin:0 1px;
}
.logo-sub{
  font-size:10px;
  font-weight:700;
  letter-spacing:.16em;
  color: var(--ink-soft);
  margin-top:2px;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:30px;
  font-size:15px;
  font-weight:600;
}
.main-nav a{
  position:relative;
  color: var(--ink);
  padding:6px 0;
  display:flex;
  align-items:center;
  gap:8px;
  transition: color .15s;
}
.main-nav a:hover{ color: var(--coral); }
.main-nav a.active{ color: var(--coral); }
.main-nav a.active::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-3px;
  height:2px;
  background: var(--coral);
  border-radius:2px;
}
.soon-pill{
  font-size:10px;
  font-weight:700;
  color: var(--coral-deep);
  background: var(--rose-50);
  padding:3px 8px;
  border-radius:20px;
  letter-spacing:.02em;
}

.header-actions{ display:flex; align-items:center; gap:14px; flex-shrink:0; }
.icon-btn{
  background:none; border:none;
  width:38px; height:38px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  color: var(--ink);
  position:relative;
  transition: background .15s;
}
.icon-btn:hover{ background: var(--rose-50); }
.icon-btn svg{ width:20px; height:20px; }
.cart-badge{
  position:absolute;
  top:-2px; right:-2px;
  background: var(--coral);
  color:#fff;
  font-size:10px;
  font-weight:700;
  min-width:18px; height:18px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  padding:0 3px;
  transition: transform .2s;
}
.cart-badge.bump{ transform: scale(1.35); }

.menu-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none; border:none;
  width:38px; height:38px;
  align-items:center; justify-content:center;
}
.menu-toggle span{
  width:20px; height:2px;
  background: var(--ink);
  border-radius:2px;
}

/* ===========================
   BUTTONS
=========================== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:700;
  font-size:15px;
  border-radius:999px;
  border:none;
  padding:12px 24px;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn-primary{
  background: var(--coral);
  color:#fff;
  box-shadow: 0 10px 24px -8px rgba(238,92,114,0.55);
}
.btn-primary:hover{ background: var(--coral-dark); transform: translateY(-1px); }
.btn-lg{ padding:16px 14px 16px 28px; font-size:16px; }
.btn-arrow{
  width:30px; height:30px;
  background: rgba(255,255,255,0.22);
  border-radius:50%;
  padding:7px;
}
.btn-block{ width:100%; }

/* ===========================
   HERO
=========================== */
.hero{
  background: linear-gradient(180deg, var(--blush) 0%, #FFF9F6 100%);
  padding: 64px 32px 80px;
  overflow:hidden;
}
.hero-inner{
  max-width:1280px;
  margin:0 auto;
  display:grid;
  grid-template-columns: minmax(360px, 460px) 1fr;
  gap:40px;
  align-items:center;
}
.hero-title{
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 50px);
  line-height:1.08;
  font-weight:700;
  margin:0 0 20px;
  letter-spacing:-.01em;
}
.hero-title .accent{
  color: var(--coral);
  font-style: italic;
  font-weight:600;
}
.hero-text{
  font-size:16px;
  line-height:1.65;
  color: var(--ink-soft);
  max-width:480px;
  margin:0 0 28px;
}
.hero-text strong{ color: var(--ink); font-weight:700; }

.hero-trust{
  display:flex;
  gap:24px;
  margin-top:26px;
  font-size:13.5px;
  font-weight:600;
  color: var(--ink-soft);
  flex-wrap:wrap;
}
.hero-trust li{ display:flex; align-items:center; gap:7px; }
.hero-trust .ic{ color: var(--coral); }

.hero-visual{
  position:relative;
  min-height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.badge-price{
  position:absolute;
  top:-6px; right:0;
  width:128px; height:128px;
  background: var(--coral);
  color:#fff;
  border-radius:50%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  box-shadow: 0 16px 32px -10px rgba(216,69,92,0.5);
  z-index:3;
  transform: rotate(6deg);
}
.badge-price-label{ font-size:10.5px; font-weight:700; letter-spacing:.06em; opacity:.9; }
.badge-price-amount{ font-family: var(--font-display); font-size:25px; font-weight:700; margin-top:2px; }

.device-stack{
  position:relative;
  width:100%;
  height:380px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
}
.device.laptop{
  position:relative;
  width: 48%;
  max-width:420px;
  z-index:1;
}
.laptop-screen{
  width:100%;
  aspect-ratio: 16/10.5;
  border-radius:10px 10px 0 0;
  border: 8px solid #2B2B30;
  border-bottom:none;
}
.laptop-base{
  height:14px;
  background: linear-gradient(180deg,#3a3a40,#222225);
  border-radius:0 0 8px 8px;
  position:relative;
}
.laptop-base::after{
  content:"";
  position:absolute;
  left:50%; top:0;
  transform:translateX(-50%);
  width:18%; height:100%;
  background:#16161a;
  border-radius:0 0 4px 4px;
}
.device.tablet{
  width:26%;
  max-width:200px;
  aspect-ratio: 3/4.1;
  border-radius:16px;
  border:7px solid #1f1f23;
  margin-left:-6%;
  z-index:2;
  box-shadow: var(--shadow-card);
}
.device.phone{
  width:15%;
  max-width:118px;
  aspect-ratio: 9/18.5;
  border-radius:20px;
  border:6px solid #1f1f23;
  margin-left:-5%;
  margin-bottom:-10px;
  z-index:3;
  box-shadow: var(--shadow-card);
}
.deco-star{
  position:absolute;
  color: var(--coral);
  opacity:.55;
  font-size:18px;
}
.star1{ top:8%; left:2%; }
.star2{ bottom:18%; right:4%; font-size:14px; }
.deco-vase{
  position:absolute;
  right:-2%;
  bottom:0;
  font-size:48px;
  opacity:.9;
}

/* ===========================
   SECTION HEADINGS
=========================== */
.section{ padding:72px 32px; max-width:1280px; margin:0 auto; }
.section-heading{
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight:600;
  text-align:center;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin: 0 0 36px;
  letter-spacing:-.01em;
}
.section-heading .heart, .section-heading .sparkle{
  color: var(--coral);
  font-size:.6em;
}
.section-heading-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:36px;
}
.section-heading-row .section-heading{ margin:0; }
.view-all{
  font-weight:700;
  font-size:14.5px;
  color: var(--coral-deep);
  display:flex;
  align-items:center;
  gap:6px;
  flex-shrink:0;
}
.view-all svg{ width:16px; height:16px; }

/* ===========================
   COLLECTIONS
=========================== */
.collections{ padding-top:60px; }
.collections-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:22px;
}
.collection-card{
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:18px;
  transition: transform .2s, box-shadow .2s;
}
.collection-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.collection-thumb{
  aspect-ratio: 1.3/1;
  border-radius: var(--radius-md);
}
.collection-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:var(--radius-md);
    display:block;
}
.collection-card[data-tint="violet"] .collection-thumb{ background: linear-gradient(135deg,#E6DBFB,#F3ECFB); }
.collection-card[data-tint="pink"] .collection-thumb{ background: linear-gradient(135deg,#FBDDE3,#FCEFEF); }
.collection-card[data-tint="mint"] .collection-thumb{ background: linear-gradient(135deg,#D7F1E5,#EAF8F0); }
.collection-card[data-tint="gold"] .collection-thumb{ background: linear-gradient(135deg,#FBE3BB,#FCEFD9); }

.collection-body h3{
  font-family: var(--font-display);
  font-size:19px;
  font-weight:600;
  margin:0 0 8px;
}
.collection-body p{
  font-size:13.5px;
  line-height:1.55;
  color: var(--ink-soft);
  margin:0 0 16px;
  min-height:58px;
}
.pill-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13.5px;
  font-weight:700;
  color:#fff;
  padding:10px 16px;
  border-radius:999px;
  transition: transform .15s, filter .15s;
}
.pill-btn:hover{ transform: translateY(-1px); filter:brightness(1.05); }
.pill-btn svg{ width:14px; height:14px; }
.pill-violet{ background: var(--violet); }
.pill-pink{ background: var(--coral); }
.pill-mint{ background: var(--mint); }
.pill-gold{ background: var(--gold); }

/* ===========================
   PRODUCT GRID
=========================== */
.product-grid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:20px;
}
.product-card{
  background: var(--white);
  border:1px solid var(--line);
  border-radius: var(--radius-md);
  padding:16px;
  display:flex;
  flex-direction:column;
  transition: transform .2s, box-shadow .2s;
}
.product-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.product-thumb{
  aspect-ratio: 1/1.05;
  border-radius:12px;
  margin-bottom:14px;
}
.product-card h3{
  font-family: var(--font-display);
  font-size:15.5px;
  font-weight:600;
  margin:0 0 6px;
  line-height:1.3;
  min-height:40px;
}
.product-card p{
  font-size:12px;
  color: var(--ink-soft);
  margin:0 0 14px;
  line-height:1.5;
  min-height:32px;
}
.product-foot{
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.product-price{
  font-family: var(--font-display);
  font-weight:700;
  font-size:17px;
  color: var(--coral-deep);
}
.add-btn{
  background: var(--rose-50);
  color: var(--coral-deep);
  border:none;
  width:36px; height:36px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  transition: background .15s, color .15s, transform .15s;
  flex-shrink:0;
}
.add-btn svg{ width:18px; height:18px; }
.add-btn:hover{ background: var(--coral); color:#fff; }
.add-btn:active{ transform: scale(.92); }
.add-btn.added{ background: var(--mint); color:#fff; }

/* ===========================
   TRUST STRIP
=========================== */
.trust-strip{
  background: var(--blush);
  padding:48px 32px;
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:32px;
  max-width:1280px;
  margin:0 auto;
  border-radius:32px 32px 0 0;
}
.trust-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
}
.trust-icon{
  width:46px; height:46px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  color:#fff;
}
.trust-icon svg{ width:22px; height:22px; }
.trust-red{ background:#EE5C72; }
.trust-green{ background:#3FAE8F; }
.trust-violet{ background:#8B6BD8; }
.trust-pink{ background:#F08AA0; }
.trust-item h4{
  font-size:14.5px;
  font-weight:700;
  margin:2px 0 5px;
}
.trust-item p{
  font-size:12.5px;
  color: var(--ink-soft);
  line-height:1.5;
  margin:0;
}

/* ===========================
   FOOTER
=========================== */
.site-footer{
  text-align:center;
  padding:28px 32px 36px;
  font-size:12.5px;
  color: var(--ink-soft);
}

/* ===========================
   CART DRAWER
=========================== */
.cart-overlay{
  position:fixed; inset:0;
  background: rgba(36,27,34,0.45);
  opacity:0; visibility:hidden;
  transition: opacity .25s;
  z-index:90;
}
.cart-overlay.open{ opacity:1; visibility:visible; }

.cart-drawer{
  position:fixed;
  top:0; right:0;
  height:100%;
  width:400px;
  max-width:92vw;
  background:#fff;
  z-index:91;
  display:flex;
  flex-direction:column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.32,.72,0,1);
  box-shadow: -16px 0 40px rgba(0,0,0,.12);
}
.cart-drawer.open{ transform: translateX(0); }

.cart-drawer-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:22px 24px;
  border-bottom:1px solid var(--line);
}
.cart-drawer-head h3{
  font-family: var(--font-display);
  font-size:20px;
  margin:0;
}
.cart-items{
  flex:1;
  overflow-y:auto;
  padding:8px 24px;
}
.cart-empty{
  text-align:center;
  color: var(--ink-soft);
  padding:60px 10px;
  font-size:14px;
}
.cart-row{
  display:flex;
  gap:14px;
  padding:18px 0;
  border-bottom:1px solid var(--line);
}
.cart-row-thumb{
  width:64px; height:64px;
  border-radius:10px;
  flex-shrink:0;
}
.cart-row-body{ flex:1; min-width:0; }
.cart-row-body h4{
  font-size:14px;
  font-weight:700;
  margin:0 0 4px;
  font-family: var(--font-display);
}
.cart-row-price{
  font-size:13px;
  color: var(--coral-deep);
  font-weight:700;
  margin-bottom:8px;
}
.qty-control{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background: var(--rose-50);
  border-radius:999px;
  padding:4px 10px;
}
.qty-control button{
  background:none; border:none;
  width:20px; height:20px;
  display:flex; align-items:center; justify-content:center;
  color: var(--coral-deep);
  font-weight:700;
  font-size:15px;
}
.qty-control span{ font-size:13px; font-weight:700; min-width:14px; text-align:center; }
.cart-row-remove{
  background:none; border:none;
  color: var(--ink-soft);
  font-size:12px;
  font-weight:600;
  margin-top:6px;
  text-decoration:underline;
  padding:0;
}
.cart-row-remove:hover{ color: var(--coral-dark); }

.cart-drawer-foot{
  padding:20px 24px 26px;
  border-top:1px solid var(--line);
}
.cart-total-row{
  display:flex;
  justify-content:space-between;
  font-size:15px;
  font-weight:700;
  margin-bottom:16px;
}
#cartTotal{ color: var(--coral-deep); font-family: var(--font-display); font-size:18px; }

/* ===========================
   TOAST
=========================== */
.toast{
  position:fixed;
  bottom:28px;
  left:50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color:#fff;
  padding:12px 22px;
  border-radius:999px;
  font-size:13.5px;
  font-weight:600;
  opacity:0;
  pointer-events:none;
  transition: opacity .25s, transform .25s;
  z-index:120;
  display:flex;
  align-items:center;
  gap:8px;
}
.toast.show{
  opacity:1;
  transform: translateX(-50%) translateY(0);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1100px){
  .collections-grid{ grid-template-columns: repeat(2,1fr); }
  .product-grid{ grid-template-columns: repeat(3,1fr); }
  .trust-strip{ grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px){
  .main-nav{
    display:none;
    position:absolute;
    top:100%; left:0; right:0;
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:8px 24px 16px;
    border-bottom:1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }
  .main-nav.mobile-open{ display:flex; }
  .main-nav a{ width:100%; padding:12px 0; border-bottom:1px solid var(--line); }
  .main-nav a:last-child{ border-bottom:none; }
  .site-header{ position:sticky; }
  .header-inner{ position:relative; }
  .menu-toggle{ display:flex; }
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-visual{ order:-1; min-height:300px; }
  .device-stack{ height:260px; }
  .badge-price{ width:96px; height:96px; }
  .badge-price-amount{ font-size:19px; }
}

@media (max-width: 640px){
  .header-inner{ padding:14px 18px; }
  .hero{ padding:40px 18px 56px; }
  .section{ padding:56px 18px; }
  .collections-grid{ grid-template-columns: 1fr 1fr; gap:14px; }
  .product-grid{ grid-template-columns: repeat(2,1fr); gap:14px; }
  .trust-strip{ grid-template-columns: 1fr; padding:36px 18px; border-radius:24px 24px 0 0; }
  .section-heading-row{ flex-direction:column; align-items:flex-start; gap:12px; }
  .cart-drawer{ width:100vw; }
  .announce-track{ font-size:11.5px; gap:7px; }
}

@media (prefers-reduced-motion: reduce){
  *{ transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
/* ===========================
   HERO TO COLLECTION DIVIDER
=========================== */

.collections{
    position:relative;
    padding-top:20px;
}

.collections::before{
    content:"";
    position:absolute;
    top:-40px;
    left:50%;
    transform:translateX(-50%);
    width:75%;
    max-width:1000px;
    height:2px;
    background:linear-gradient(
        to right,
        transparent,
        #f6b6c8 20%,
        #f6b6c8 80%,
        transparent
    );
}

.collections::after{
    content:"✦CREATES WITH MAY✦";
    position:absolute;
    top:-30px;
    left:12%;
    color:#ee5c72;
    font-size:16px;
    text-shadow:0 0 10px rgba(238,92,114,.35);
    animation:sparkleMove 10s ease-in-out infinite alternate;
}

@keyframes sparkleMove{
 0%{
        left:0%;
        transform:translateY(0) scale(1.2);
    }

    45%{
        left:80%;
        transform:translateY(0) scale(1.2);
    }

    50%{
        left:80%;
        transform:translateY(0px) scale(1.2);
    }

    55%{
        left:80%;
        transform:translateY(0) scale(1.2);
    }

    100%{
        left:0%;
        transform:translateY(0) scale(1.2);
    }

}

.divider-line{
    position:absolute;
    left:0;
    width:100%;
    height:3px;
    background:linear-gradient(
        to right,
        transparent,
        #f4b6c8,
        transparent
    );
}

.divider-line:first-child{
    top:0;
}

.divider-line:last-child{
    bottom:100px;
}
.collections::before{
    content:"";
    position:absolute;
    top:-40px;
    left:50%;
    transform:translateX(-50%);
    width:75%;
    max-width:1000px;
    height:2px;
    background:linear-gradient(
        to right,
        transparent,
        #f6b6c8 20%,
        #f6b6c8 80%,
        transparent
    );
 }   