/* =========================
🌸 GLOBAL
========================= */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  background: white;
}

/* =========================
🌸 VARIABLES
========================= */

:root{

  --white: #FFFFFF;
  --pink: #FFC0CB;
  --blue: #E7FEFF;
  --darkPink: #FF5F91;
  --lavender: #F6F0FF;

}

/* =========================
🌸 NAVBAR
========================= */

.navbar{
  position: fixed;

  top: 20px;
  left: 50%;

  transform: translateX(-50%);

  width: 92%;

  padding: 14px 24px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  border-radius: 50px;

  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.4);

  z-index: 999;

  transition: 0.4s ease;
}

/* SCROLLED NAV */

.navbar.scrolled{
  background: rgba(255, 192, 203, 0.45);
  backdrop-filter: blur(20px);
}

/* =========================
🌸 LOGO CAPSULE
========================= */

.logo-capsule{
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 8px 16px;

  border-radius: 30px;

  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.5);

  box-shadow:
  inset 0 1px 1px rgba(255,255,255,0.5),
  0 5px 20px rgba(0,0,0,0.08);
}

.logo{
  width: 32px;
}

.logo-capsule h2{
  color: white;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 1px;

  font-family: 'Quicksand', sans-serif;
}

/* =========================
🌸 NAV LINKS
========================= */

.nav-links{
  display: flex;
  gap: 35px;

  list-style: none;
}

.nav-links a{
  text-decoration: none;

  color: white;
  font-weight: 500;

  transition: 0.3s ease;
}

.nav-links a:hover{
  color: var(--darkPink);
}

/* =========================
🌸 CONTACT BUTTON
========================= */

.contact-btn{
  padding: 12px 22px;

  border-radius: 30px;

  text-decoration: none;

  color: white;
  font-weight: 500;

  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.5);

  transition: 0.3s ease;
}

.contact-btn:hover{
  background: var(--blue);
  color: var(--darkPink);
}

/* =========================
🌸 MOBILE TOGGLE
========================= */

.menu-toggle{
  display: none;

  font-size: 30px;
  color: white;

  cursor: pointer;
}

/* =========================
🌸 HERO
========================= */

.hero{
  position: relative;

  min-height: 100vh;

  overflow: hidden;

  background:
  linear-gradient(
    135deg,
    #FFC0CB 0%,
    #FFE4EC 35%,
    #E7FEFF 100%
  );

  display: flex;
  align-items: center;
}

/* SLIDES */

.hero-slide{
  position: absolute;

  width: 100%;
  height: 100%;

  opacity: 0;
  transition: 1s ease;
}

.hero-slide.active{
  opacity: 1;
}

/* CONTENT */

.hero-content{
  width: 92%;

  margin: auto;

  min-height: 100vh;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;

  gap: 60px;
}

/* =========================
🌸 HERO TEXT
========================= */

.hero-text{
  z-index: 2;
}

.mini-capsule{
  display: inline-block;

  padding: 10px 18px;

  border-radius: 30px;

  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.6);

  color: var(--darkPink);

  font-size: 0.95rem;
  font-weight: 600;

  margin-bottom: 24px;
}

.hero-text h1{
  font-size: 4.5rem;
  line-height: 1.1;

  color: #2b2b2b;

  margin-bottom: 24px;
}

.hero-text p{
  font-size: 1.05rem;
  line-height: 1.8;

  color: #555;

  max-width: 550px;

  margin-bottom: 35px;
}

/* BUTTONS */

.hero-buttons{
  display: flex;
  gap: 18px;
}

.glass-btn,
.outline-btn{
  padding: 14px 28px;

  border-radius: 35px;

  text-decoration: none;

  transition: 0.3s ease;
}

.glass-btn{
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.6);

  color: var(--darkPink);
  font-weight: 600;
}

.glass-btn:hover{
  background: var(--darkPink);
  color: white;
}

.outline-btn{
  border: 1px solid var(--darkPink);

  color: var(--darkPink);
}

.outline-btn:hover{
  background: var(--darkPink);
  color: white;
}

/* =========================
🌸 HERO IMAGE
========================= */

.hero-image{
  display: flex;
  justify-content: center;
}

.hero-image img{
  width: 100%;
  max-width: 520px;
}

/* =========================
📱 RESPONSIVE
========================= */

@media(max-width: 992px){

  .hero-content{
    grid-template-columns: 1fr;

    text-align: center;

    padding-top: 140px;
  }

  .hero-text p{
    margin-inline: auto;
  }

  .hero-buttons{
    justify-content: center;
  }

  .hero-image img{
    max-width: 380px;
  }

}

@media(max-width:768px){

  .menu-toggle{
    display: block;
  }

  .contact-btn{
    display: none;
  }

  .nav-links{
    position: absolute;

    top: 90px;
    right: 0;

    width: 220px;

    background: white;

    flex-direction: column;

    align-items: center;

    padding: 25px;

    border-radius: 20px;

    opacity: 0;
    visibility: hidden;

    transition: 0.3s ease;
  }

  .nav-links.active{
    opacity: 1;
    visibility: visible;
  }

  .nav-links a{
    color: #222;
  }

  .hero-text h1{
    font-size: 3rem;
  }

}

@media(max-width:576px){

  .hero-text h1{
    font-size: 2.4rem;
  }

  .hero-buttons{
    flex-direction: column;
  }

}
/* =========================
🌸 ABOUT SECTION
========================= */

.about{
  padding: 120px 8%;

  background: white;

  position: relative;
}

/* =========================
🌸 SECTION HEADING
========================= */

.section-heading{
  text-align: center;

  margin-bottom: 70px;
}

.section-heading span{
  display: inline-block;

  padding: 10px 18px;

  border-radius: 30px;

  background: rgba(255,192,203,0.15);

  color: var(--darkPink);

  font-weight: 600;

  margin-bottom: 20px;
}

.section-heading h2{
  font-size: 3rem;
  line-height: 1.2;

  color: #222;
}

/* =========================
🌸 ABOUT LAYOUT
========================= */

.about-container{
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 70px;

  align-items: center;
}

/* =========================
🌸 LEFT SIDE
========================= */

.about-left{
  position: relative;
}

/* REUSABLE GLASS CARD */

.glass-card{
  background: rgba(255,255,255,0.35);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.5);

  box-shadow:
  inset 0 1px 1px rgba(255,255,255,0.5),
  0 8px 30px rgba(0,0,0,0.08);

  border-radius: 30px;
}

/* VIDEO CARD */

.video-card{
  overflow: hidden;

  padding: 14px;
}

.video-card video{
  width: 100%;
  height: 500px;

  object-fit: cover;

  border-radius: 22px;
}

/* FOUNDER CARD */

.founder-card{
  position: absolute;

  bottom: -40px;
  right: -20px;

  width: 360px;

  padding: 15px;

  display: flex;
  align-items: center;
  gap: 14px;
}

.founder-card img{
  width: 200px;
  height: 200px;

  border-radius: 18px;

  object-fit: cover;
}

.founder-info h4{
  color: #222;
  margin-bottom: 4px;
}

.founder-info p{
  color: #777;
  font-size: 0.9rem;
}

/* =========================
🌸 RIGHT SIDE
========================= */

.about-right h3{
  font-size: 3rem;
  line-height: 1.2;

  margin: 24px 0;

  color: #222;
}

.about-right p{
  color: #666;

  line-height: 1.9;

  margin-bottom: 24px;
}

/* =========================
📱 RESPONSIVE
========================= */

@media(max-width:992px){

  .about-container{
    grid-template-columns: 1fr;
  }

  .about-right{
    text-align: center;
  }

  .about-right .mini-capsule{
    margin-inline: auto;
  }

  .founder-card{
    position: relative;

    bottom: auto;
    right: auto;

    margin: 20px auto 0;
  }

}

@media(max-width:768px){

  .section-heading h2{
    font-size: 2.3rem;
  }

  .about-right h3{
    font-size: 2.2rem;
  }

  .video-card video{
    height: 380px;
  }

}

@media(max-width:576px){

  .section-heading h2{
    font-size: 2rem;
  }

  .about-right h3{
    font-size: 1.8rem;
  }

  .video-card video{
    height: 300px;
  }

}
```html id="shopsection001"
<!-- =========================
🌸 SHOP SECTION
========================= -->

<section class="shop" id="shop">

  <!-- SECTION TITLE -->
  <div class="section-heading">

    <span>Our Collection</span>

    <h2>
      Baby Essentials <br>
      Made With Care
    </h2>

  </div>

  <!-- PRODUCTS GRID -->
  <div class="shop-container">

    <!-- PRODUCT 1 -->
    <div class="product-card glass-card">

      <div class="product-image">
        <img src="images/product-1.png" alt="Baby Clothes">
      </div>

      <div class="product-info">

        <h3>Newborn Romper</h3>

        <p>
          Ultra-soft cotton romper for newborn comfort.
        </p>

        <span>$24</span>

        <div class="product-buttons">

          <a href="#" class="details-btn">
            Details
          </a>

          <a href="#" class="buy-btn">
            Buy Now
          </a>

        </div>

      </div>

    </div>


    <!-- PRODUCT 2 -->
    <div class="product-card glass-card">

      <div class="product-image">
        <img src="images/product-2.png" alt="Baby Towel">
      </div>

      <div class="product-info">

        <h3>Baby Towel Set</h3>

        <p>
          Gentle hooded towels made for delicate skin.
        </p>

        <span>$18</span>

        <div class="product-buttons">

          <a href="#" class="details-btn">
            Details
          </a>

          <a href="#" class="buy-btn">
            Buy Now
          </a>

        </div>

      </div>

    </div>


    <!-- PRODUCT 3 -->
    <div class="product-card glass-card">

      <div class="product-image">
        <img src="images/product-3.png" alt="Baby Blanket">
      </div>

      <div class="product-info">

        <h3>Cloud Blanket</h3>

        <p>
          Cozy lightweight blanket with premium softness.
        </p>

        <span>$28</span>

        <div class="product-buttons">

          <a href="#" class="details-btn">
            Details
          </a>

          <a href="#" class="buy-btn">
            Buy Now
          </a>

        </div>

      </div>

    </div>


    <!-- PRODUCT 4 -->
    <div class="product-card glass-card">

      <div class="product-image">
        <img src="images/product-4.png" alt="Baby Nappies">
      </div>

      <div class="product-info">

        <h3>Soft Nappies</h3>

        <p>
          Breathable nappies designed for all-day comfort.
        </p>

        <span>$20</span>

        <div class="product-buttons">

          <a href="#" class="details-btn">
            Details
          </a>

          <a href="#" class="buy-btn">
            Buy Now
          </a>

        </div>

      </div>

    </div>


    <!-- PRODUCT 5 -->
    <div class="product-card glass-card">

      <div class="product-image">
        <img src="images/product-5.png" alt="Baby Bib">
      </div>

      <div class="product-info">

        <h3>Feeding Bib Set</h3>

        <p>
          Stylish waterproof bibs for everyday feeding.
        </p>

        <span>$15</span>

        <div class="product-buttons">

          <a href="#" class="details-btn">
            Details
          </a>

          <a href="#" class="buy-btn">
            Buy Now
          </a>

        </div>

      </div>

    </div>


    <!-- PRODUCT 6 -->
    <div class="product-card glass-card">

      <div class="product-image">
        <img src="images/product-6.png" alt="Baby Toy">
      </div>

      <div class="product-info">

        <h3>Plush Bunny Toy</h3>

        <p>
          Adorable cuddly bunny toy for newborn playtime.
        </p>

        <span>$22</span>

        <div class="product-buttons">

          <a href="#" class="details-btn">
            Details
          </a>

          <a href="#" class="buy-btn">
            Buy Now
          </a>

        </div>

      </div>

    </div>

  </div>

</section>
```

---

# 🎨 ADD THIS TO STYLE.CSS

```css id="shopcss001"
/* =========================
🌸 SHOP SECTION
========================= */

.shop{
  padding: 120px 8%;

  background:
    radial-gradient(circle at top left, #FFE4EC 0%, transparent 45%),
    radial-gradient(circle at bottom right, #E7FEFF 0%, transparent 45%),
    linear-gradient(135deg, #FFF8FA 0%, #F6F0FF 100%);
}

/* =========================
🌸 SHOP GRID
========================= */

.shop-container{
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 28px;

  max-width: 1200px;
  margin: 0 auto;
}
/* =========================
🌸 PRODUCT CARD
========================= */

.product-card{
  padding: 16px;

  border-radius: 28px;

  transition: 0.4s ease;
}

.product-card:hover{
  transform: translateY(-8px);
}
/* PRODUCT IMAGE */

.product-image{
  background: rgba(255,255,255,0.45);

  border-radius: 25px;

  padding: 20px;

  margin-bottom: 20px;
}

.product-image img{
  width: 100%;
  height: 220px;

  object-fit: cover;
  border-radius: 25px 25px 0 0;
}

/* PRODUCT INFO */

.product-info h3{
  font-size: 1.3rem;

  color: #222;

  margin-bottom: 12px;
}

.product-info p{
  color: #666;

  line-height: 1.7;

  margin-bottom: 16px;
}

.product-info span{
  display: inline-block;

  font-size: 1.2rem;
  font-weight: 700;

  color: var(--darkPink);

  margin-bottom: 20px;
}

/* =========================
🌸 BUTTONS
========================= */

.product-buttons{
  display: flex;
  gap: 12px;
}

.details-btn,
.buy-btn{
  flex: 1;

  text-align: center;

  padding: 12px;

  border-radius: 25px;

  text-decoration: none;

  transition: 0.3s ease;
}

/* DETAILS */

.details-btn{
  border: 1px solid rgba(255,255,255,0.5);

  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(12px);

  color: var(--darkPink);

  font-weight: 500;
}

.details-btn:hover{
  background: white;
}

/* BUY */

.buy-btn{
  background: var(--darkPink);

  color: white;

  font-weight: 600;
}

.buy-btn:hover{
  background: #ff3d79;
}

/* =========================
📱 RESPONSIVE
========================= */

@media(max-width:992px){

  .shop-container{
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:768px){

  .shop-container{
    grid-template-columns: 1fr;
  }

  .product-image img{
    height: 220px;
  }

}

@media(max-width:576px){

  .product-buttons{
    flex-direction: column;
  }

}
```
/* =========================
🌸 SECTION BASE
========================= */

.section-gap{
  padding-top: 120px;
}

.baby-grid{
  padding: 100px 8%;
  background: #fff;
}

/* =========================
🌸 TITLE
========================= */

.section-heading{
  text-align: center;
  margin-bottom: 60px;
}

.section-heading span{
  display: inline-block;

  padding: 10px 18px;
  border-radius: 30px;

  background: rgba(255,192,203,0.2);

  color: #ff5f91;
  font-weight: 600;

  margin-bottom: 15px;
}

.section-heading h2{
  font-size: 2.8rem;
  color: #222;
}

/* =========================
🌸 MASONRY GRID
========================= */

.masonry{
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 25px;
}

/* LEFT SIDE */
.masonry-left{
  display: grid;
  gap: 20px;
}

/* BOX STYLE */
.box{
  padding: 25px;
  border-radius: 22px;

  min-height: 140px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* COLORS */
.blue-box{
  background: #E7FEFF;
}

.grey-box{
  background: #f3f3f3;
}

.pink-box{
  background: #FFC0CB;
}

.box h3{
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #222;
}

.box p{
  font-size: 0.9rem;
  color: #444;
}

.socials{
  margin-top: 10px;
  font-size: 0.9rem;
  color: #333;
}

/* =========================
🌸 RIGHT SIDE IMAGES
========================= */

.masonry-right{
  display: grid;
  gap: 20px;
}

/* IMAGE BOX */
.image-box{
  position: relative;

  border-radius: 25px;
  overflow: hidden;

  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.image-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* LARGE IMAGE */
.image-box.large{
  height: 280px;
}

/* SMALL IMAGE */
.image-box.small{
  height: 220px;
}

/* OVERLAY TEXT */
.overlay{
  position: absolute;

  bottom: 0;
  left: 0;

  width: 100%;

  padding: 18px;

  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);

  color: white;
}

/* =========================
📱 RESPONSIVE
========================= */

@media(max-width: 992px){

  .masonry{
    grid-template-columns: 1fr;
  }

  .image-box.large,
  .image-box.small{
    height: 240px;
  }

}
/* =========================
🌸 TESTIMONIAL SECTION
========================= */

.testimonials{
  padding: 120px 8%;

  background:
  linear-gradient(
    135deg,
    #fff 0%,
    #fff5f7 40%,
    #E7FEFF 100%
  );

  overflow: hidden;

  position: relative;
}

/* =========================
🌸 CAROUSEL
========================= */

.testimonial-carousel{
  position: relative;

  min-height: 650px;
}

.testimonial-slide{
  position: absolute;

  width: 100%;

  opacity: 0;
  visibility: hidden;

  transition: 0.8s ease;
}

.testimonial-slide.active{
  opacity: 1;
  visibility: visible;
}

/* =========================
🌸 WRAPPER
========================= */

.testimonial-wrapper{
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 70px;

  align-items: center;
}

/* =========================
🌸 LEFT SIDE
========================= */

.quote-mark{
  font-size: 7rem;
  line-height: 1;

  color: #FFC0CB;

  margin-bottom: 20px;
}

.testimonial-text{
  font-size: 1.15rem;
  line-height: 2;

  color: #444;

  margin-bottom: 40px;
}

/* USER */

.testimonial-user{
  display: flex;
  align-items: center;

  gap: 15px;
}

.testimonial-user img{
  width: 70px;
  height: 70px;

  border-radius: 50%;

  object-fit: cover;
}

.testimonial-user h4{
  color: #222;
  margin-bottom: 4px;
}

.testimonial-user span{
  color: #777;
}

/* =========================
🌸 RIGHT SIDE
========================= */

.testimonial-right{
  position: relative;
}

.testimonial-image{
  border-radius: 35px;
  overflow: hidden;

  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.testimonial-image img{
  width: 100%;
  height: 500px;

  object-fit: cover;
  display: block;
  
}

/* FLOATING BOX */

.floating-review{
  position: absolute;

  top: -30px;
  left: -30px;

  padding: 30px;

  border-radius: 30px;

  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.5);

  box-shadow:
  inset 0 1px 1px rgba(255,255,255,0.5),
  0 10px 30px rgba(0,0,0,0.08);

  z-index: 2;
}

.floating-review h3{
  font-size: 2.4rem;

  color: #ff5f91;

  margin-bottom: 8px;
}

.floating-review p{
  color: #444;
  line-height: 1.6;
}

/* =========================
📱 RESPONSIVE
========================= */

@media(max-width:992px){

  .testimonial-wrapper{
    grid-template-columns: 1fr;
  }

  .testimonial-left{
    text-align: center;
  }

  .testimonial-user{
    justify-content: center;
  }

  .floating-review{
    left: 20px;
  }

}

@media(max-width:768px){

  .testimonial-carousel{
    min-height: 950px;
  }

  .testimonial-text{
    font-size: 1rem;
  }

  .testimonial-image img{
    height: 420px;
  }

}

@media(max-width:576px){

  .testimonial-carousel{
    min-height: 820px;
  }

  .floating-review{
    position: relative;

    top: auto;
    left: auto;

    margin-bottom: 20px;
  }

  .testimonial-image img{
    height: 320px;
  }

}
/* =========================
🌸 DEAL BANNER
========================= */

.deal-banner{
  margin: 120px 8%;

  padding: 80px;

  border-radius: 40px;

  position: relative;

  overflow: hidden;

  display: grid;
  grid-template-columns: 1.2fr 1fr;

  align-items: center;

  gap: 60px;

  background:
  linear-gradient(
    135deg,
    #FFC0CB 0%,
    #FFD9E2 40%,
    #E7FEFF 100%
  );

  box-shadow:
  0 20px 60px rgba(0,0,0,0.08);
}

/* =========================
🌸 CONTENT
========================= */

.deal-content{
  z-index: 2;
}

.deal-content h2{
  font-size: 3.5rem;
  line-height: 1.1;

  color: #222;

  margin: 25px 0;
}

.deal-content p{
  color: #555;

  line-height: 1.9;

  max-width: 520px;

  margin-bottom: 35px;
}

/* BUTTONS */

.deal-buttons{
  display: flex;
  gap: 18px;
}

.deal-btn,
.deal-outline{
  padding: 14px 28px;

  border-radius: 35px;

  text-decoration: none;

  transition: 0.3s ease;
}

/* MAIN BTN */

.deal-btn{
  background: rgba(255,255,255,0.3);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.6);

  color: #ff5f91;
  font-weight: 600;
}

.deal-btn:hover{
  background: #ff5f91;
  color: white;

  transform: translateY(-3px);
}

/* OUTLINE BTN */

.deal-outline{
  border: 1px solid #ff5f91;

  color: #ff5f91;
}

.deal-outline:hover{
  background: #ff5f91;
  color: white;
}

/* =========================
🌸 IMAGE
========================= */

.deal-image{
  display: flex;
  justify-content: center;
}

.deal-image img{
  width: 100%;
  max-width: 450px;
  border-radius: 25px 25px 25px 25px;

  z-index: 2;
}

/* =========================
🌸 DISCOUNT BADGE
========================= */

.discount-badge{
  position: absolute;

  top: 40px;
  right: 40px;

  width: 130px;
  height: 130px;

  border-radius: 50%;

  background: rgba(255,255,255,0.35);

  backdrop-filter: blur(15px);

  border: 1px solid rgba(255,255,255,0.6);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  color: #ff5f91;
  font-weight: 700;

  box-shadow:
  inset 0 1px 1px rgba(255,255,255,0.5),
  0 10px 30px rgba(0,0,0,0.08);
}

.discount-badge span{
  font-size: 2.5rem;
  line-height: 1;
}

/* =========================
📱 RESPONSIVE
========================= */

@media(max-width:992px){

  .deal-banner{
    grid-template-columns: 1fr;

    text-align: center;

    padding: 70px 40px;
  }

  .deal-content p{
    margin-inline: auto;
  }

  .deal-buttons{
    justify-content: center;
  }

  .discount-badge{
    top: 20px;
    right: 20px;
  }

}

@media(max-width:768px){

  .deal-content h2{
    font-size: 2.5rem;
  }

  .deal-image img{
    max-width: 320px;
  }

}

@media(max-width:576px){

  .deal-banner{
    padding: 60px 25px;
  }

  .deal-content h2{
    font-size: 2rem;
  }

  .deal-buttons{
    flex-direction: column;
  }

  .discount-badge{
    width: 100px;
    height: 100px;

    font-size: 0.9rem;
  }

  .discount-badge span{
    font-size: 2rem;
  }

}
/* =========================
🌸 CONTACT SECTION
========================= */

.contact-section{
  padding: 120px 8%;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 70px;

  align-items: center;

  background: white;
}

/* LEFT */

.contact-left h2{
  font-size: 3rem;
  line-height: 1.2;

  margin: 25px 0;

  color: #222;
}

.contact-left p{
  color: #666;
  line-height: 1.9;

  max-width: 500px;
}

/* CONTACT INFO */

.contact-info{
  margin-top: 40px;

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item{
  display: flex;
  align-items: center;

  gap: 14px;

  font-size: 1rem;
}

.info-item span{
  width: 50px;
  height: 50px;

  border-radius: 50%;

  background: rgba(255,192,203,0.2);

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 1.2rem;
}

/* MAP */

.contact-map{
  border-radius: 35px;

  overflow: hidden;
  display: block;

  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.contact-map iframe{
  width: 100%;
  height: 500px;

  border: none;
}

/* =========================
🌸 FOOTER
========================= */

.footer{
  background: #ffb6c7;

  padding: 80px 8% 30px;

  color: white;
}

/* TOP */

.footer-top{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;

  gap: 60px;

  margin-bottom: 50px;
}

/* BRAND */

.footer-logo{
  display: flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 20px;
}

.footer-logo img{
  width: 40px;
}

.footer-logo h3{
  font-size: 1.4rem;
  font-weight: 800;

  letter-spacing: 1px;
}

.footer-brand p{
  line-height: 1.9;

  max-width: 400px;

  color: rgba(255,255,255,0.9);
}

/* LINKS */

.footer-links,
.footer-socials{
  display: flex;
  flex-direction: column;
}

.footer-links h4,
.footer-socials h4{
  margin-bottom: 20px;

  font-size: 1.2rem;
}

.footer-links a,
.footer-socials a{
  color: rgba(255,255,255,0.9);

  text-decoration: none;

  margin-bottom: 14px;

  transition: 0.3s ease;
}

.footer-links a:hover,
.footer-socials a:hover{
  color: white;

  transform: translateX(5px);
}

/* BOTTOM */

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.3);

  padding-top: 25px;

  text-align: center;
}

.footer-bottom p{
  color: rgba(255,255,255,0.85);
}

/* =========================
📱 RESPONSIVE
========================= */

@media(max-width:992px){

  .contact-section{
    grid-template-columns: 1fr;
  }

  .footer-top{
    grid-template-columns: 1fr;
  }

}

@media(max-width:768px){

  .contact-left{
    text-align: center;
  }

  .contact-left h2{
    font-size: 2.3rem;
  }

  .info-item{
    justify-content: center;
  }

  .contact-map iframe{
    height: 400px;
  }

}

@media(max-width:576px){

  .contact-left h2{
    font-size: 2rem;
  }

  .contact-map iframe{
    height: 320px;
  }

}
/* =========================
🌸 PRODUCT PAGE
========================= */

.product-page{
  padding: 180px 8% 120px;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 80px;

  background:
  linear-gradient(
    135deg,
    #FFC0CB 0%,
    #fff 40%,
    #E7FEFF 100%
  );
}

/* =========================
🌸 PRODUCT GALLERY
========================= */

.main-image{
  padding: 30px;

  border-radius: 35px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.main-image img{
  width: 100%;
  max-width: 450px;

  transition: 0.4s ease;
}

.thumbnail-row{
  display: flex;
  gap: 20px;

  margin-top: 25px;
}

.thumb{
  width: 90px;
  height: 90px;

  border-radius: 20px;

  overflow: hidden;

  cursor: pointer;

  border: 2px solid transparent;

  transition: 0.3s ease;
}

.thumb img{
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.active-thumb{
  border-color: #ff5f91;
}

/* =========================
🌸 PRODUCT INFO
========================= */

.product-info h1{
  font-size: 4rem;
  line-height: 1.1;

  margin: 25px 0;

  color: #222;
}

.product-price{
  display: flex;
  align-items: center;

  gap: 20px;

  margin-bottom: 30px;
}

.product-price h2{
  color: #ff5f91;
  font-size: 2.5rem;
}

.product-price span{
  padding: 10px 16px;

  border-radius: 30px;

  background: rgba(255,255,255,0.4);

  color: #444;
}

.product-description{
  color: #555;

  line-height: 2;

  margin-bottom: 35px;
}

/* FEATURES */

.product-features{
  display: flex;
  flex-direction: column;

  gap: 18px;

  margin-bottom: 35px;
}

.feature-item{
  color: #444;
}

/* QUANTITY */

.quantity-box{
  display: flex;
  align-items: center;

  gap: 20px;

  margin-bottom: 35px;
}

.quantity-box button{
  width: 45px;
  height: 45px;

  border: none;

  border-radius: 50%;

  background: rgba(255,255,255,0.4);

  font-size: 1.4rem;

  cursor: pointer;

  transition: 0.3s ease;
}

.quantity-box button:hover{
  background: #ff5f91;
  color: white;
}

.quantity-box span{
  font-size: 1.2rem;
  font-weight: 600;
}

/* BUTTONS */

.product-buttons{
  display: flex;
  gap: 20px;
}

/* =========================
🌸 DESCRIPTION SECTION
========================= */

.product-description-section{
  padding: 120px 8%;

  background: white;
}

.description-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);

  gap: 30px;
}

.description-card{
  padding: 40px;

  border-radius: 30px;
}

.description-card h3{
  margin-bottom: 20px;

  color: #222;
}

.description-card p,
.description-card li{
  color: #666;
  line-height: 1.9;
}

.description-card ul{
  padding-left: 18px;
}

/* =========================
🌸 RELATED PRODUCTS
========================= */

.related-products{
  padding: 120px 8%;

  background: #F6F0FF;
}

.related-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);

  gap: 30px;
}

.related-card{
  padding: 30px;

  border-radius: 30px;

  text-align: center;
}

.related-card img{
  width: 100%;
  max-width: 220px;

  margin-bottom: 20px;
}

.related-card h3{
  margin-bottom: 10px;

  color: #222;
}

.related-card p{
  color: #ff5f91;

  margin-bottom: 25px;

  font-weight: 600;
}

/* =========================
📱 RESPONSIVE
========================= */

@media(max-width:992px){

  .product-page{
    grid-template-columns: 1fr;
  }

  .description-grid{
    grid-template-columns: 1fr;
  }

  .related-grid{
    grid-template-columns: 1fr;
  }

}

@media(max-width:768px){

  .product-info h1{
    font-size: 2.8rem;
  }

  .product-buttons{
    flex-direction: column;
  }

}

@media(max-width:576px){

  .product-page{
    padding-top: 150px;
  }

  .product-info h1{
    font-size: 2.2rem;
  }

  .thumbnail-row{
    flex-wrap: wrap;
  }

}