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

:root{
  --pink:#f7b8c8;
  --hot:#e77c99;
  --soft:#fff3f6;
  --cream:#fffaf6;
  --text:#2b1d23;
  --muted:#7c6670;
  --gold:#c89b3c;
  --white:#ffffff;
  --shadow:0 24px 70px rgba(180, 90, 120, .18);
}

html{scroll-behavior:smooth}

body{
  font-family:"Inter", sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(247,184,200,.38), transparent 32%),
    radial-gradient(circle at 80% 15%, rgba(255,230,236,.9), transparent 30%),
    linear-gradient(135deg, #fff, var(--soft) 55%, #fff8fb);
  overflow-x:hidden;
}

a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:100;
  padding:14px 7%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(231,124,153,.16);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-family:"Cinzel", serif;
  color:#8f4960;
  font-weight:700;
  font-size:20px;
}

.brand img{
  width:54px;
  height:54px;
  object-fit:cover;
  border-radius:50%;
  background:#fff;
  box-shadow:0 8px 24px rgba(231,124,153,.2);
}

.nav{
  display:flex;
  align-items:center;
  gap:28px;
  font-weight:600;
  color:#6b4a55;
  font-size:14px;
}

.nav a:hover{color:var(--hot)}

#nav-toggle{display:none}
.nav-btn{display:none;font-size:30px;color:#9b5066}

.hero{
  min-height:100vh;
  padding:125px 7% 70px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.mini{
  display:inline-block;
  color:var(--hot);
  text-transform:uppercase;
  letter-spacing:3px;
  font-weight:800;
  font-size:12px;
  margin-bottom:16px;
}

.hero h1{
  font-family:"Cinzel", serif;
  font-size:clamp(44px, 6.5vw, 82px);
  line-height:1.02;
  color:#3b2430;
  margin-bottom:22px;
}

.hero p{
  color:var(--muted);
  line-height:1.8;
  font-size:18px;
  max-width:580px;
  margin-bottom:32px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 26px;
  border-radius:999px;
  font-weight:800;
  transition:.28s ease;
}

.btn:hover{transform:translateY(-3px)}

.btn-main{
  color:white;
  background:linear-gradient(135deg, var(--hot), #c34f74);
  box-shadow:0 16px 34px rgba(231,124,153,.35);
}

.btn-light{
  color:#9b5066;
  background:#fff;
  border:1px solid rgba(231,124,153,.26);
  box-shadow:0 12px 26px rgba(231,124,153,.12);
}

.hero-showcase{
  position:relative;
  min-height:650px;
}

.main-photo{
  width:min(460px, 88%);
  margin-left:auto;
  border-radius:38px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:white;
  padding:10px;
}

.main-photo img{
  width:100%;
  height:620px;
  object-fit:cover;
  object-position:top center;
  border-radius:30px;
}

.floating-card{
  position:absolute;
  display:grid;
  gap:8px;
  width:170px;
  background:rgba(255,255,255,.88);
  padding:10px;
  border-radius:24px;
  box-shadow:0 18px 45px rgba(122,66,84,.16);
  backdrop-filter:blur(8px);
  animation:float 5s ease-in-out infinite;
}

.floating-card img{
  height:190px;
  width:100%;
  object-fit:cover;
  object-position:top center;
  border-radius:18px;
}

.floating-card span{
  text-align:center;
  color:#8f4960;
  font-size:13px;
  font-weight:800;
}

.card-one{left:0;bottom:70px}
.card-two{right:0;top:80px;animation-delay:1.2s}

.strip{
  margin:0 7%;
  padding:20px;
  border-radius:999px;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:18px 34px;
  background:#fff;
  box-shadow:0 18px 45px rgba(231,124,153,.13);
  color:#9b5066;
  font-weight:800;
}

.strip span::before{
  content:"✦";
  color:var(--hot);
  margin-right:10px;
}

.section{
  padding:95px 7%;
}

.section-head{
  text-align:center;
  max-width:720px;
  margin:0 auto 48px;
}

.section-head span{
  color:var(--hot);
  text-transform:uppercase;
  letter-spacing:3px;
  font-weight:800;
  font-size:12px;
}

.section-head h2,
.collections h2,
.promo h2,
.contact h2{
  font-family:"Cinzel", serif;
  font-size:clamp(34px, 4.5vw, 58px);
  color:#3b2430;
  margin:12px 0 14px;
}

.section-head p,
.collections p,
.promo p,
.contact p{
  color:var(--muted);
  line-height:1.8;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
}

.product-card{
  background:#fff;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 18px 50px rgba(160,80,105,.12);
  transition:.3s ease;
  border:1px solid rgba(231,124,153,.12);
}

.product-card:hover{
  transform:translateY(-8px);
  box-shadow:0 24px 65px rgba(160,80,105,.18);
}

.product-img{
  position:relative;
  height:360px;
  background:#fff5f8;
}

.product-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top center;
}

.badge{
  position:absolute;
  top:14px;
  left:14px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.9);
  color:var(--hot);
  font-weight:900;
  font-size:12px;
}

.product-info{
  padding:20px;
}

.product-info h3{
  font-family:"Cinzel", serif;
  font-size:20px;
  color:#3b2430;
  margin-bottom:8px;
}

.product-info p{
  color:var(--muted);
  font-size:14px;
  line-height:1.65;
  margin-bottom:18px;
}

.price-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.price-row strong{
  color:#9b5066;
  font-size:18px;
}

.price-row a{
  padding:10px 16px;
  border-radius:999px;
  color:#fff;
  background:var(--hot);
  font-size:13px;
  font-weight:800;
}

.collections{
  padding:95px 7%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
  background:linear-gradient(135deg, rgba(255,255,255,.7), rgba(255,231,238,.8));
}

.collection-image{
  border-radius:38px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:white;
  padding:10px;
}

.collection-image img{
  height:620px;
  width:100%;
  object-fit:cover;
  object-position:top center;
  border-radius:30px;
}

.category-list{
  margin-top:30px;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px;
}

.category-list div{
  padding:20px;
  border-radius:22px;
  background:white;
  box-shadow:0 12px 28px rgba(160,80,105,.1);
}

.category-list strong{
  display:block;
  color:var(--hot);
  margin-bottom:8px;
}

.category-list span{
  font-weight:800;
  color:#3b2430;
}

.masonry{
  columns:4 230px;
  column-gap:18px;
}

.masonry img{
  width:100%;
  margin-bottom:18px;
  border-radius:24px;
  box-shadow:0 14px 36px rgba(160,80,105,.14);
  break-inside:avoid;
}

.promo{
  margin:20px 7% 70px;
  padding:58px;
  border-radius:38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  background:
    radial-gradient(circle at right, rgba(255,255,255,.7), transparent 35%),
    linear-gradient(135deg, #ffdbe5, #fff7f9);
  box-shadow:var(--shadow);
}

.contact{
  padding:95px 7%;
  display:grid;
  place-items:center;
  background:#fff;
}

.contact-box{
  width:min(760px,100%);
  text-align:center;
  padding:48px;
  border-radius:38px;
  background:linear-gradient(135deg, #fff7fa, #fff);
  box-shadow:var(--shadow);
}

.contact-box img{
  width:100px;
  height:100px;
  object-fit:cover;
  border-radius:50%;
  margin:0 auto 18px;
  box-shadow:0 12px 28px rgba(231,124,153,.18);
}

.contact-links{
  display:grid;
  gap:14px;
  margin-top:24px;
}

.contact-links a{
  padding:17px;
  border-radius:18px;
  background:white;
  border:1px solid rgba(231,124,153,.18);
  color:#8f4960;
  font-weight:800;
}

footer{
  padding:28px 7%;
  text-align:center;
  color:var(--muted);
  background:#fff;
  border-top:1px solid rgba(231,124,153,.14);
}

@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-14px)}
}

@media(max-width:1050px){
  .hero,
  .collections{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero p,
  .collections p{
    margin-left:auto;
    margin-right:auto;
  }

  .hero-actions{
    justify-content:center;
  }

  .hero-showcase{
    min-height:auto;
    display:grid;
    place-items:center;
  }

  .main-photo{
    margin:0 auto;
    width:min(460px, 100%);
  }

  .floating-card{display:none}

  .product-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media(max-width:760px){
  .header{
    padding:12px 5%;
  }

  .brand span{
    font-size:16px;
  }

  .brand img{
    width:46px;
    height:46px;
  }

  .nav-btn{display:block}

  .nav{
    position:absolute;
    top:74px;
    left:5%;
    right:5%;
    display:none;
    flex-direction:column;
    gap:0;
    padding:12px;
    border-radius:22px;
    background:rgba(255,255,255,.98);
    box-shadow:0 20px 45px rgba(160,80,105,.15);
  }

  .nav a{
    padding:14px;
    border-bottom:1px solid rgba(231,124,153,.12);
  }

  #nav-toggle:checked ~ .nav{
    display:flex;
  }

  .hero{
    padding:110px 5% 48px;
    gap:34px;
  }

  .hero h1{
    font-size:42px;
  }

  .hero p{
    font-size:15px;
  }

  .hero-actions .btn{
    width:100%;
  }

  .main-photo img{
    height:500px;
  }

  .strip{
    margin:0 5%;
    border-radius:28px;
  }

  .section,
  .collections,
  .contact{
    padding:70px 5%;
  }

  .product-grid{
    grid-template-columns:1fr;
  }

  .product-img{
    height:460px;
  }

  .category-list{
    grid-template-columns:1fr;
  }

  .collection-image img{
    height:520px;
  }

  .promo{
    margin:10px 5% 60px;
    padding:34px 20px;
    text-align:center;
    flex-direction:column;
  }

  .contact-box{
    padding:34px 18px;
  }

  .contact-links a{
    font-size:14px;
    word-break:break-word;
  }
}

@media(max-width:430px){
  .hero h1{
    font-size:36px;
  }

  .mini,
  .section-head span{
    letter-spacing:2px;
    font-size:10px;
  }

  .main-photo img,
  .product-img{
    height:420px;
  }

  .collection-image img{
    height:450px;
  }

  .section-head h2,
  .collections h2,
  .promo h2,
  .contact h2{
    font-size:30px;
  }
}
