* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: #151515;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  display: block;
}

/* HERO */

.shop-hero{
  position:relative;
  overflow:hidden;

  min-height:430px;
  padding:110px 20px 70px;

  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;

  background:
  radial-gradient(circle at top, rgba(255,222,234,.95), transparent 45%),
  linear-gradient(135deg,#fff7fa,#ffdce9);
}

.shop-stars{
  position:absolute;
  inset:0;
  pointer-events:none;
}

.shop-stars span{
  position:absolute;
  width:8px;
  height:8px;
  background:#fff;
  border-radius:50%;
  box-shadow:
  0 0 8px rgba(255,255,255,.9),
  0 0 18px rgba(255,255,255,.7);
  animation:shopTwinkle 3s ease-in-out infinite;
}

.shop-stars span:nth-child(1){
  top:15%;
  left:20%;
  animation-delay:0s;
}

.shop-stars span:nth-child(2){
  top:25%;
  right:18%;
  animation-delay:.5s;
}

.shop-stars span:nth-child(3){
  top:45%;
  left:12%;
  animation-delay:1s;
}

.shop-stars span:nth-child(4){
  top:35%;
  right:30%;
  animation-delay:1.5s;
}

.shop-stars span:nth-child(5){
  top:60%;
  left:25%;
  animation-delay:2s;
}

.shop-stars span:nth-child(6){
  top:70%;
  right:15%;
  animation-delay:2.5s;
}

.shop-stars span:nth-child(7){
  top:20%;
  left:50%;
  animation-delay:3s;
}

.shop-stars span:nth-child(8){
  top:55%;
  right:45%;
  animation-delay:1.2s;
}

.shop-stars span:nth-child(9){
  top:80%;
  left:60%;
  animation-delay:2.2s;
}

.shop-stars span:nth-child(10){
  top:75%;
  right:35%;
  animation-delay:.8s;
}

@keyframes shopTwinkle{

  0%,100%{
    opacity:.2;
    transform:scale(.6);
  }

  50%{
    opacity:1;
    transform:scale(1.4);
  }

}

.shop-hero-content{
  position:relative;
  z-index:2;
}

.shop-hero-content {
  max-width: 780px;
}

.shop-kicker {
  display: block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #e7357c;
}

.shop-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 6vw, 74px);
  line-height: 0.95;
  font-weight: 600;
}

.shop-hero h1 span {
  color: #e7357c;
}

.shop-hero h1 em {
  display: block;
  font-style: italic;
  color: #e7357c;
}

.shop-hero p {
  max-width: 540px;
  margin: 22px auto 0;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.shop-hero-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.shop-btn {
  min-width: 180px;
  height: 50px;
  padding: 0 28px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.shop-btn-primary {
  background: #e7357c;
  color: #fff;
}

.shop-btn-primary:hover {
  background: #c91f64;
  transform: translateY(-3px);
}

.shop-btn-outline {
  background: transparent;
  border: 2px solid #e7357c;
  color: #e7357c;
}

.shop-btn-outline:hover {
  background: #e7357c;
  color: #fff;
  transform: translateY(-3px);
}

/* CATEGORY CARDS */

.shop-category-wrap {
  width: min(1180px, 90%);
  margin: 34px auto 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.shop-category-card {
  min-height: 245px;
  padding: 28px 34px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 18px;
  background: #fff7fa;
  border: 1px solid #f4c7d8;
  border-radius: 14px;
  overflow: hidden;
}

.shop-category-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  color: #d73578;
  margin-bottom: 12px;
}

.shop-category-card p {
  max-width: 190px;
  font-size: 15px;
  line-height: 1.6;
  color: #222;
  margin-bottom: 24px;
}

.shop-category-card span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #d73578;
}

.shop-category-card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  object-position: center;
}

/* Make product category background match image background */
.shop-category-card:nth-child(2) {
  background: #fff1f6;
}

/* Make weave category background match image background */
.shop-category-card:nth-child(1) {
  background: #fff4f8;
}

/* TABLET */

@media (max-width: 1024px) {
  .shop-category-card {
    min-height: 235px;
  }

  .shop-category-card img {
    height: 210px;
  }
}

/* MOBILE */

@media (max-width: 650px) {
  .shop-category-wrap {
    width: calc(100% - 30px);
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 26px auto 46px;
  }

  .shop-category-card {
    min-height: 190px;
    padding: 22px;
    grid-template-columns: 0.85fr 1.15fr;
    border-radius: 12px;
  }

  .shop-category-card h2 {
    font-size: 30px;
  }

  .shop-category-card p {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .shop-category-card span {
    font-size: 11px;
  }

  .shop-category-card img {
    height: 160px;
  }
}

/* PRODUCT SECTIONS */

.shop-section {
  width: min(1180px, 90%);
  margin: 0 auto 56px;
}

.shop-section-head {
  margin-bottom: 26px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.shop-section-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1;
  font-weight: 600;
}

.view-link {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e7357c;
}

/* =========================
   PRODUCT GRID
========================= */

.shop-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

/* =========================
   CARD
========================= */

.shop-card{
    background:#fff;
    border:1px solid #f0d9e1;
    border-radius:10px;
    overflow:hidden;
}

/* =========================
   IMAGE AREA ONLY
========================= */

.shop-card-img{
    height:320px;
    background:#fff0f6;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.shop-card-img img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    display:block;
}

/* =========================
   INFO AREA
========================= */

.shop-card-info{
    background:#fff;
    padding:16px;
}

.shop-card-info h3{
    font-size:15px;
    font-weight:700;
    line-height:1.4;
    margin-bottom:12px;
    color:#222;
}

.shop-card-info p{
    font-size:18px;
    font-weight:800;
    color:#e7357c;
    margin-bottom:14px;
}

/* =========================
   BUTTON
========================= */

.shop-card-info button{
    width:100%;
    height:42px;
    border:2px solid #e7357c;
    border-radius:6px;
    background:transparent;
    color:#e7357c;
    font-size:11px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:uppercase;
    cursor:pointer;
    transition:.3s ease;
}

.shop-card-info button:hover{
    background:#e7357c;
    color:#fff;
}

/* =========================
   TABLET
========================= */

@media (max-width:1024px){

    .shop-grid{
        gap:16px;
    }

    .shop-card-img{
        height:250px;
        background:#fff0f6;
        padding:16px;
    }

    .shop-card-info{
        padding:14px;
    }

    .shop-card-info h3{
        font-size:14px;
    }

    .shop-card-info p{
        font-size:17px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width:650px){

    .shop-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .shop-card-img{
        height:180px;
        background:#fff0f6;
        padding:10px;
    }

    .shop-card-img img{
        object-fit:contain;
    }

    .shop-card-info{
        background:#fff;
        padding:10px;
    }

    .shop-card-info h3{
        font-size:12px;
        line-height:1.3;
        margin-bottom:8px;
    }

    .shop-card-info p{
        font-size:16px;
        margin-bottom:10px;
    }

    .shop-card-info button{
        height:36px;
        font-size:9px;
    }
}

/* BENEFITS */

.shop-benefits {
  width: 100%;
  padding: 28px 7%;
  margin: 10px 0 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  background: #fff4f8;
  border-top: 1px solid #f4d3df;
  border-bottom: 1px solid #f4d3df;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.benefit-item i {
  font-size: 30px;
  color: #e7357c;
}

.benefit-item h4 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.benefit-item p {
  font-size: 13px;
  color: #555;
}

/* CTA */

.shop-cta {
  width: min(1180px, 90%);
  min-height: 285px;
  margin: 0 auto 70px;
  padding: 44px 58px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-image: url("WhatsApp Image 2026-06-24 at 22.24.03.jpeg");
  background-size: cover;
  background-position: center;
}

.shop-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(78, 4, 32, 0.82),
    rgba(215, 45, 107, 0.42),
    rgba(255, 192, 213, 0.12)
  );
}

.shop-cta-content {
  position: relative;
  z-index: 2;
  max-width: 480px;
  color: #fff;
}

.shop-cta .shop-kicker {
  color: #ff94ba;
  margin-bottom: 8px;
}

.shop-cta h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.95;
  font-weight: 600;
  margin-bottom: 16px;
}

.shop-cta h2 span {
  display: block;
}

.shop-cta p {
  max-width: 360px;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.shop-btn-light {
  min-width: 175px;
  height: 46px;
  background: #fff;
  color: #e7357c;
}

.shop-btn-light:hover {
  background: #e7357c;
  color: #fff;
  transform: translateY(-3px);
}

/* TABLET */

@media (max-width: 1024px) {
  .shop-hero {
    min-height: 400px;
    padding: 105px 24px 65px;
  }

  .shop-category-wrap,
  .shop-section,
  .shop-cta {
    width: 92%;
  }

  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-card-img {
    height: 280px;
  }

  .shop-benefits {
    grid-template-columns: repeat(2, 1fr);
    padding: 28px 5%;
  }
}

/* MOBILE */

@media (max-width: 650px) {
  .shop-hero {
    min-height: 390px;
    padding: 95px 18px 56px;
  }

  .shop-hero h1 {
    font-size: 45px;
  }

  .shop-hero p {
    font-size: 14px;
  }

  .shop-hero-actions {
    gap: 10px;
  }

  .shop-btn {
    min-width: auto;
    flex: 1;
    height: 45px;
    padding: 0 14px;
    font-size: 11px;
  }

  .shop-category-wrap {
    width: calc(100% - 30px);
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 26px auto 46px;
  }

  .shop-category-card {
    min-height: 160px;
    padding: 22px;
    border-radius: 10px;
  }

  .shop-category-card h2 {
    font-size: 28px;
  }

  .shop-category-card p {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .shop-category-card img {
    width: 140px;
    height: 130px;
  }

  .shop-section {
    width: calc(100% - 30px);
    margin-bottom: 44px;
  }

  .shop-section-head {
    margin-bottom: 18px;
  }

  .shop-section-head h2 {
    font-size: 36px;
  }

  .view-link {
    font-size: 10px;
  }

  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .shop-card {
    border-radius: 7px;
  }

  .shop-card-img {
    height: 155px;
  }

  .shop-card-img img {
    padding: 10px;
  }

  .shop-card-info {
    padding: 10px;
  }

  .shop-card-info h3 {
    min-height: 38px;
    font-size: 11px;
    line-height: 1.35;
    margin-bottom: 6px;
  }

  .shop-card-info p {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .shop-card-info button {
    height: 32px;
    font-size: 9px;
    border-radius: 4px;
  }

  .shop-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 12px;
    padding: 22px 18px;
    margin-bottom: 28px;
  }

  .benefit-item {
    gap: 10px;
  }

  .benefit-item i {
    font-size: 22px;
  }

  .benefit-item h4 {
    font-size: 10px;
  }

  .benefit-item p {
    font-size: 10px;
  }

  .shop-cta {
    width: calc(100% - 30px);
    min-height: 250px;
    padding: 30px 24px;
    border-radius: 12px;
    margin-bottom: 52px;
    background-position: center;
  }

  .shop-cta::before {
    background: linear-gradient(
      90deg,
      rgba(78, 4, 32, 0.88),
      rgba(215, 45, 107, 0.48)
    );
  }

  .shop-cta h2 {
    font-size: 40px;
  }

  .shop-cta p {
    max-width: 260px;
    font-size: 13px;
  }

  .shop-btn-light {
    max-width: 180px;
  }
}

.cart-btn,
.mobile-cart{
  position:relative;
  width:58px;
  height:58px;
  border-radius:18px;
  background:#fff4f8;
  border:1px solid rgba(231,53,124,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#e7357c;
  text-decoration:none;
  transition:.3s ease;
}

.cart-btn i,
.mobile-cart i{
  font-size:22px;
}

.cart-btn:hover,
.mobile-cart:hover{
  background:#ffe6f0;
  transform:translateY(-3px);
  box-shadow:0 12px 26px rgba(231,53,124,.18);
}

.cart-count{
  position:absolute;
  top:-8px;
  right:-8px;
  width:24px;
  height:24px;
  border-radius:50%;
  background:#e7357c;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  font-weight:800;
  border:2px solid #fff;
}

/* MOBILE CART */

@media (max-width:768px){

  .mobile-actions{
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:24px;
  }

  .mobile-cart{
    width:60px;
    height:60px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#fff4f8;
    border:1px solid rgba(255,255,255,.35);
    border-radius:18px;

    color:#e7357c;
    text-decoration:none;

    transition:.3s ease;
    box-shadow:
    0 10px 25px rgba(0,0,0,.08);
  }

  .mobile-cart i{
    font-size:22px;
    color:#e7357c;
  }

  .mobile-cart:hover{
    transform:translateY(-2px);
    background:#fff;
  }

  .mobile-cart .cart-count,
  .mobile-cart .mobile-count{
    display:none;
  }
}