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

    body{
      font-family:Arial, sans-serif;
      color:#222;
    }

    .top-bar{
      background:#1b8f82;
      color:white;
      text-align:center;
      padding:17px;
      font-weight:600;
    }

    .info-bar{
      min-height:70px;
      background:#f7f7f7;
      display:flex;
      align-items:center;
      padding:0 6%;
      gap:55px;
    }

    .info-links{
      margin-left:auto;
      display:flex;
      gap:35px;
    }

    .main-header{
      min-height:65px;
      display:flex;
      align-items:center;
      padding:0 6%;
      border-bottom:1px solid #ddd;
      gap:40px;
    }

    .logo{
      font-size:25px;
      font-weight:bold;
      color:#1b9d91;
      white-space:nowrap;
    }

    .logo-icon{
      color:#168b80;
    }

    .search-box{
      max-width:530px;
      width:100%;
      margin:auto;
      position:relative;
    }

    .search-box input{
      width:100%;
      padding:17px 45px 17px 28px;
      border:1px solid #333;
      outline:none;
    }

    .search-icon{
      position:absolute;
      right:17px;
      top:10px;
      font-size:28px;
    }

    .header-icons{
      display:flex;
      gap:25px;
      font-size:25px;
    }

    nav{
      display:flex;
      justify-content:space-around;
      align-items:center;
      padding:22px 5%;
      border-bottom:1px solid #eee;
      background:#fff;
    }

    nav a{
      text-decoration:none;
      color:#222;
      font-weight:600;
    }

    nav a:hover{
      color:#1b8f82;
    }

    .menu-btn{
      display:none;
      background:none;
      border:none;
      font-size:29px;
      cursor:pointer;
    }

    /* Mobile */
    @media(max-width:768px){

      .top-bar{
        padding:12px 10px;
        font-size:14px;
      }

      .info-bar{
        min-height:auto;
        padding:13px 16px;
        gap:15px;
        font-size:13px;
      }

      .info-links{
        gap:12px;
        font-size:12px;
      }

      .main-header{
        min-height:60px;
        padding:12px 16px;
        gap:10px;
      }

      .logo{
        font-size:20px;
      }

      /* Hide icons only */
      .header-icons{
        display:none;
      }

      /* Hide search on mobile */
      .search-box{
        display:none;
      }

      .menu-btn{
        display:block;
        margin-left:auto;
      }

      nav{
        display:none;
        flex-direction:column;
        align-items:flex-start;
        padding:0 16px;
      }

      nav.active{
        display:flex;
      }

      nav a{
        width:100%;
        padding:15px 5px;
        border-bottom:1px solid #eee;
      }
    }

    @media(max-width:520px){

      .info-bar{
        flex-wrap:wrap;
      }

      .info-links{
        width:100%;
        margin-left:0;
        flex-wrap:wrap;
      }

    }
  /* end */

  /* section 1  */

  .hero-banner{
  width:100%;
  overflow:hidden;
}

.hero-banner picture,
.hero-banner img{
  width:100%;
  display:block;
}

.hero-banner img{
  height:auto;
  object-fit:cover;
}

/* Desktop / Tablet */
@media(max-width:992px) and (min-width:769px){
  .hero-banner img{
    width:100%;
    height:auto;
  }
}

/* Mobile */
@media(max-width:768px){
  .hero-banner img{
    width:100%;
    height:auto;
    aspect-ratio:444 / 715;
    object-fit:cover;
  }
}
/* end */

/* section 2 */
.promo-banners{
  width:90%;
  max-width:1465px;
  margin:32px auto;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:30px;
}

.promo-banner{
  width:100%;
  overflow:hidden;
}

.promo-banner img{
  width:100%;
  height:auto;
  aspect-ratio:731 / 312;
  object-fit:cover;
  display:block;
}

/* Tablet */
@media(max-width:900px){

  .promo-banners{
    width:94%;
    gap:18px;
  }

}

/* Mobile */
@media(max-width:700px){

  .promo-banners{
    grid-template-columns:1fr;
    width:94%;
    gap:15px;
    margin:20px auto;
  }

  .promo-banner img{
    width:100%;
    height:auto;
  }

}
/* end  */


/* section 3 */
/* BEST SELLERS */

.best-sellers{
  padding:55px 5%;
  text-align:center;
}

.best-sellers h2{
  font-size:32px;
  margin-bottom:55px;
}

.products-grid{
  max-width:1400px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:35px;
}

.product-card{
  position:relative;
  cursor:pointer;
  text-align:center;
}

.product-image{
  height:260px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.product-image img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.discount{
  position:absolute;
  right:15px;
  top:0;
  width:50px;
  height:50px;
  background:#ff6d61;
  color:white;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:bold;
}

.product-card h3{
  font-size:17px;
  margin:20px 0 10px;
}

.price{
  font-size:15px;
}

.old-price{
  color:#999;
  text-decoration:line-through;
  margin-left:8px;
}

.rating{
  margin-top:12px;
  font-size:14px;
}

.stars{
  color:#f5a25d;
  font-size:21px;
}

.view-more{
  margin-top:60px;
  padding:14px 30px;
  background:white;
  border:1px solid #222;
  cursor:pointer;
}

/* TABLET */

@media(max-width:1000px){

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

}

/* MOBILE */

@media(max-width:600px){

  .best-sellers{
    padding:35px 15px;
  }

  .best-sellers h2{
    font-size:26px;
    margin-bottom:30px;
  }

  .products-grid{
    grid-template-columns:repeat(2,1fr);
    gap:25px 12px;
  }

  .product-image{
    height:170px;
  }

  .product-card h3{
    font-size:14px;
  }

  .price{
    font-size:13px;
  }

  .stars{
    font-size:17px;
  }

  .rating{
    font-size:12px;
  }

}

/* end */

/* section 5 */
.trending-categories{
  max-width:1400px;
  margin:60px auto;
  padding:0 40px;
}

.trending-categories h2{
  text-align:center;
  font-size:30px;
  margin-bottom:50px;
}

.category-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:35px 70px;
}

.category-item{
  display:grid;
  grid-template-columns:343px 1fr;
  align-items:center;
  gap:35px;
}

.category-item img{
  width:100%;
  max-width:343px;
  aspect-ratio:1 / 1;
  object-fit:cover;
  display:block;
}

.category-content h3{
  font-size:21px;
  margin-bottom:18px;
  line-height:1.2;
}

.category-content p{
  font-size:14px;
  margin:0 0 12px;
  color:#444;
}


/* Tablet */

@media(max-width:1100px){

  .category-item{
    grid-template-columns:220px 1fr;
    gap:25px;
  }

}


/* Mobile */

@media(max-width:768px){

  .trending-categories{
    padding:0 15px;
    margin:40px auto;
  }

  .trending-categories h2{
    font-size:25px;
    margin-bottom:30px;
  }

  .category-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  .category-item{
    grid-template-columns:150px 1fr;
    gap:18px;
  }

  .category-item img{
    width:150px;
    height:150px;
  }

  .category-content h3{
    font-size:18px;
    margin-bottom:12px;
  }

  .category-content p{
    font-size:13px;
    margin-bottom:8px;
  }

}


/* Small Mobile */

@media(max-width:480px){

  .category-item{
    grid-template-columns:125px 1fr;
    gap:15px;
  }

  .category-item img{
    width:125px;
    height:125px;
  }

  .category-content h3{
    font-size:16px;
  }

  .category-content p{
    font-size:12px;
    margin-bottom:6px;
  }

}.trending-categories{
  max-width:1400px;
  margin:60px auto;
  padding:0 40px;
}

.trending-categories h2{
  text-align:center;
  font-size:30px;
  margin-bottom:50px;
}

.category-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:35px 70px;
}

.category-item{
  display:grid;
  grid-template-columns:343px 1fr;
  align-items:center;
  gap:35px;
}

.category-item img{
  width:100%;
  max-width:343px;
  aspect-ratio:1 / 1;
  object-fit:cover;
  display:block;
}

.category-content h3{
  font-size:21px;
  margin-bottom:18px;
  line-height:1.2;
}

.category-content p{
  font-size:14px;
  margin:0 0 12px;
  color:#444;
}


/* Tablet */

@media(max-width:1100px){

  .category-item{
    grid-template-columns:220px 1fr;
    gap:25px;
  }

}


/* Mobile */

@media(max-width:768px){

  .trending-categories{
    padding:0 15px;
    margin:40px auto;
  }

  .trending-categories h2{
    font-size:25px;
    margin-bottom:30px;
  }

  .category-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  .category-item{
    grid-template-columns:150px 1fr;
    gap:18px;
  }

  .category-item img{
    width:150px;
    height:150px;
  }

  .category-content h3{
    font-size:18px;
    margin-bottom:12px;
  }

  .category-content p{
    font-size:13px;
    margin-bottom:8px;
  }

}


/* Small Mobile */

@media(max-width:480px){

  .category-item{
    grid-template-columns:125px 1fr;
    gap:15px;
  }

  .category-item img{
    width:125px;
    height:125px;
  }

  .category-content h3{
    font-size:16px;
  }

  .category-content p{
    font-size:12px;
    margin-bottom:6px;
  }

}
/* end */

/* section 4 */
.wide-banner{
  width:100%;
  max-width:1525px;
  margin:40px auto;
  padding:0 15px;
}

.wide-banner picture,
.wide-banner img{
  width:100%;
  display:block;
}

.wide-banner img{
  height:auto;
  aspect-ratio:1525 / 255;
  object-fit:cover;
  border-radius:4px;
}

/* Mobile */
@media(max-width:768px){

  .wide-banner{
    margin:25px auto;
    padding:0 12px;
  }

  .wide-banner img{
    width:100%;
    height:auto;
    aspect-ratio:787 / 376;
    object-fit:contain;
  }
}
/* end */

/* section 6 */
.dual-image-section{
  width:76%;
  max-width:1170px;
  margin:45px auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}

.dual-image-card{
  position:relative;
  display:block;
  overflow:hidden;
  color:#000;
  text-decoration:none;
}

.dual-image-card img{
  width:100%;
  aspect-ratio:1 / 1;
  object-fit:cover;
  display:block;
}

.overlay-text{
  position:absolute;
  top:8%;
  z-index:2;
}

.left-text{
  left:7%;
  text-align:left;
}

.right-text{
  right:7%;
  text-align:right;
}

.overlay-text h3{
  font-size:26px;
  margin-bottom:22px;
}

.overlay-text p{
  font-size:13px;
  line-height:1.55;
  margin-bottom:24px;
}

.overlay-text span{
  font-size:14px;
  font-weight:600;
}

.dual-image-card:hover img{
  transform:scale(1.02);
}

.dual-image-card img{
  transition:.3s;
}


/* Tablet */

@media(max-width:900px){

  .dual-image-section{
    width:92%;
    gap:18px;
  }

  .overlay-text h3{
    font-size:21px;
    margin-bottom:14px;
  }

  .overlay-text p{
    font-size:11px;
    margin-bottom:16px;
  }

}


/* Mobile */

@media(max-width:700px){

  .dual-image-section{
    width:94%;
    grid-template-columns:1fr;
    margin:25px auto;
    gap:18px;
  }

  .dual-image-card img{
    width:100%;
    aspect-ratio:1 / 1;
  }

  .overlay-text{
    top:7%;
  }

  .overlay-text h3{
    font-size:20px;
  }

  .overlay-text p{
    font-size:12px;
    line-height:1.45;
  }

  .left-text{
    left:6%;
  }

  .right-text{
    right:6%;
  }

}
/* end */

/* footer */
.site-footer{
  margin-top:70px;
  padding:0 4%;
  background:#fff;
  color:#111;
}

/* Newsletter */

.newsletter{
  text-align:center;
  padding:20px 0 60px;
}

.newsletter h2{
  font-size:28px;
  margin-bottom:15px;
}

.newsletter p{
  font-size:13px;
  color:#666;
  margin-bottom:45px;
}

.newsletter-form{
  max-width:520px;
  margin:auto;
  display:flex;
  border-bottom:1px solid #222;
}

.newsletter-form input{
  flex:1;
  border:0;
  outline:none;
  padding:12px 10px;
  font-size:14px;
}

.newsletter-form button{
  border:0;
  background:none;
  padding:12px 15px;
  cursor:pointer;
}

.footer-line{
  height:1px;
  background:#ddd;
}


/* Footer Columns */

.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1fr;
  gap:55px;
  padding:60px 0 45px;
}

.footer-logo{
  color:#1b9d91;
  font-size:22px;
  font-weight:700;
  margin-bottom:20px;
}

.footer-about p,
.footer-column p{
  font-size:13px;
  line-height:1.6;
  color:#333;
}

.footer-column h3{
  font-size:14px;
  font-weight:500;
  margin-bottom:22px;
}

.footer-column a{
  display:block;
  text-decoration:none;
  color:#111;
  font-size:13px;
  margin-bottom:13px;
}

.footer-column a:hover{
  color:#1b8f82;
}

.footer-column p{
  margin-bottom:25px;
}


/* Bottom */

.footer-bottom{
  text-align:center;
  padding:20px 0;
  font-size:12px;
}


/* Tablet */

@media(max-width:900px){

  .footer-grid{
    grid-template-columns:repeat(2,1fr);
    gap:35px;
  }

}


/* Mobile */

@media(max-width:600px){

  .site-footer{
    padding:0 18px;
  }

  .newsletter{
    padding:10px 0 40px;
  }

  .newsletter h2{
    font-size:23px;
  }

  .newsletter p{
    margin-bottom:30px;
  }

  .newsletter-form{
    max-width:100%;
  }

  .footer-grid{
    grid-template-columns:1fr;
    padding:40px 0 30px;
    gap:30px;
  }

  .footer-column h3{
    margin-bottom:15px;
  }

  .footer-bottom{
    padding:18px 0;
  }

}
/* end */


/* shop page */

.shop-page{
  max-width:1400px;
  margin:50px auto;
  padding:0 5%;
}

.shop-page h2{
  font-size:32px;
  text-align:center;
  margin-bottom:35px;
}

.shop-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  border-top:1px solid #eee;
  border-bottom:1px solid #eee;
  margin-bottom:40px;
}

.product-count{
  font-size:14px;
  color:#555;
}

.sort-box{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  color:#555;
}

.sort-box select{
  padding:8px 14px;
  border:1px solid #ddd;
  outline:none;
  font-size:14px;
  cursor:pointer;
  background:#fff;
}

@media(max-width:768px){
  .shop-page h2{ font-size:24px; }
  .product-count{ font-size:13px; }
}
/* end shop page */

/* ── Repeating pink site notification ── */
.beaumale-site-popup{
  position:fixed;
  left:18px;
  bottom:24px;
  width:min(330px, calc(100vw - 36px));
  box-sizing:border-box;
  padding:10px 42px 10px 18px;
  background:#ff4f9a;
  color:#fff;
  border-radius:12px;
  box-shadow:0 8px 28px rgba(0,0,0,.22);
  z-index:99999;
  opacity:0;
  transform:translateX(-120%);
  pointer-events:none;
  transition:opacity .35s ease, transform .35s ease;
}

.beaumale-site-popup.show{
  opacity:1;
  transform:translateX(0);
  pointer-events:auto;
}

.beaumale-popup-title{
  font-size:18px;
  font-weight:700;
  margin-bottom:5px;
}

.beaumale-popup-text{
  font-size:13px;
  line-height:1.45;
}

.beaumale-popup-close{
  position:absolute;
  top:7px;
  right:9px;
  width:28px;
  height:28px;
  padding:0;
  border:0;
  background:transparent;
  color:#fff;
  font-size:23px;
  line-height:28px;
  cursor:pointer;
}

@media(max-width:480px){
  .beaumale-site-popup{
    left:12px;
    bottom:14px;
    width:calc(100vw - 24px);
  }
}
