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

body {
    font-family: "Marcellus", "Roboto", sans-serif;
    /* font-family: 'Poppins', sans-serif; */
    overflow-x: hidden;
}


.social-icons i {
    margin-right: 15px;
    cursor: pointer;
    font-size: 19px;
    color: black;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
}

.header-icons {
    display: flex;
    gap: 15px;
    font-size: 18px;
    color: black;
}

.wrappers {
    display: flex;
    justify-content: center;
    align-items: center;
}

.elements {
    width: 791px;
    height: 1px;
    background: rgba(34, 34, 34, 0.15);
}

.mobile-menu {
    font-size: 20px;
    cursor: pointer;
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: center;
    gap: 35px;
    padding: 15px 0;
}

.navbar a {
    text-decoration: none;
    color: #000;
    position: relative;
    font-weight: 400;
    font-size: 18px;
}

.navbar a:hover {
    color: #d62828;
}

.badge {
    position: absolute;
    top: -10px;
    right: -28px;
    background: red;
    color: #fff;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 3px;
}

/* ===== main ===== */
.main {
    position: relative;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.8s ease-in-out;
}
.slide {
    min-width: 100%;
    position: relative;
}



.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark overlay */
/* .slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
} */

.main-text {
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    z-index: 2;
    background: rgba(255, 255, 255, 0.75);
    padding: 30px;
    border-radius: 6px;
}

.main-text h2 {
    font-size: 40px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

.main-text button {
    padding: 12px 28px;
    border: none;
    background: #fff;
    color: #000;
    font-weight: 600;
    cursor: pointer;
}

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

    .navbar {
        display: none;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .navbar.active {
        display: flex;
    }

    .slide img {
        height: 30vh;
    }


    .main-text {
        left: 46%;
        top: 52%;
        transform: translate(-50%, -50%);
        text-align: center;
        background: rgba(255, 255, 255, 0.75);
        padding: 10px;
        border-radius: 6px;
    }

    .main-text h2 {
        font-size: 18px;
    }

    .main-text button {
        padding: 8px 18px;
        font-size: 12px;
    }

}


.title {
    font-size: 20px;
    letter-spacing: 2px;
    margin-right: 60px;
    white-space: nowrap;
}

/* Slider */
.slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slide-track {
    display: flex;
    gap: 60px;
    width: calc(250px * 12);
    animation: scroll 25s linear infinite;
}

.item {
    text-align: center;
    width: 140px;
    flex-shrink: 0;
}

.item img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
}

.item span {
    font-size: 12px;
    letter-spacing: 1.5px;
}

/* Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

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

    .container {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
    }

    .title {
        margin-bottom: 25px;
    }

    .item img {
        width: 100px;
        height: 100px;
    }

    .slide-track {
        gap: 30px;
    }
}

/* Pause animation on hover */
.slider:hover .slide-track {
    animation-play-state: paused;
}

/* Section */

.shop-category {
    width: 100%;
}

/* Title */

.section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    color: black
}

.section-heading::before,
.section-heading::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #d9d9d9;
}

.section-heading span {
    padding: 0 20px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Grid */

.categories {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

/* Category box */

.category {
    text-align: center;
}

/* Image */

.category img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Label */

.category-name {
    background: #f3f3f3;
    padding: 14px 0;
    letter-spacing: 1px;
    font-size: 14px;
}

/* Tablet */

@media (max-width:992px) {

    .categories {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* Mobile */

@media (max-width:576px) {

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

    .category img {
        height: 220px;
    }

}

.trending-section {
    width: 90%;
    margin: auto;
    padding: 40px 0;
}

.feature-section {
    width: 90%;
    margin: auto;
    padding: 60px 0;
}

.trending-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.line {
    flex: 1;
    height: 1px;
    background: #ccc;
}

.title-text {
    text-align: center;
}

.title-text h2 {
    margin: 0;
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 600;
}

.title-text p {
    margin: 5px 0 0;
    font-size: 12px;
    color: #999;
    letter-spacing: 1px;
}

.product-card {
    background: #fff;
}

.product-img {
    position: relative;
}

.product-img img {
    width: 100%;
    display: block;
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 10px 12px;
    border-radius: 50%;
    font-size: 12px;
    color: #fff;
}

.sale {
    background: #ff5a00;
}

.sold {
    background: #999;
    top: 60px;
}

.product-info {
    padding: 10px 5px;
}

.product-info h3 {
    font-size: 14px;
    margin: 5px 0;
}

.price {
    font-size: 14px;
}

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

.new {
    color: #ff5a00;
    font-weight: bold;
}

.fusionStyledWrap {
    background: #e6dfc6;
    padding: 50px 0;
    text-align: center;
    overflow: hidden;
}

.fusionStyledTitle {
    font-size: 28px;
    margin-bottom: 5px;
}

.fusionStyledSub {
    color: #555;
    margin-bottom: 30px;
}

.fusionSliderOuter {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.fusionSliderTrack {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: fusionScroll 35s linear infinite;
}

.fusionSliderOuter:hover .fusionSliderTrack {
    animation-play-state: paused;
}

.fusionCard {
    width: 250px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.fusionCard img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.fusionCard h4 {
    margin: 10px 0 5px;
    font-size: 16px;
}

.fusionCard p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    padding: 0 10px;
}

@keyframes fusionScroll {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}

/* Mobile */

@media(max-width:768px) {

    .fusionCard {
        width: 180px;
    }

    .fusionCard img {
        height: 230px;
    }

}

.color-circle {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
}

.banner-btn {
    background: black;
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 4px;
}

/* Product Section */
.fs-products-section {
  padding: 60px 20px;
}

.fs-title {
  font-size: 30px;
  margin-bottom: 5px;
  text-align: center;
}

.fs-subtitle {
  color: #777;
  margin-bottom: 40px;
  font-size: 14px;
  text-align: center;
}

/* Product Card */
.fs-product-card {
  background: white;
  padding: 18px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Image Slider */
.fs-image-slider {
  position: relative;
  overflow: hidden;
  height: 300px;
  margin-bottom: 15px;
}

.fs-slide-track {
  display: flex;
  transition: transform 0.4s ease;
}

.fs-slide-track img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  flex-shrink: 0;
  pointer-events: none;
}

/* Slider Buttons */
.fs-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.fs-prev { left: 10px; }
.fs-next { right: 10px; }

.fs-product-name {
  margin-top: 12px;
  font-weight: 600;
  font-size: 18px;
}

.fs-product-desc {
  font-size: 14px;
  color: #777;
}

.fs-product-price {
  margin: 10px 0;
  font-size: 22px;
}

.fs-select-btn {
  width: 100%;
  padding: 12px;
  border: none;
  background: black;
  color: white;
  cursor: pointer;
  border-radius: 4px;
  /* margin-top: auto; */
}
.fs-select-btn:hover  {
  color: #f7ef8a;
}

/* Responsive adjustments for mobile */
@media(max-width: 768px) {
  .fs-products-section {
    padding: 40px 10px;
  }

  .fs-image-slider {
    height: auto; /* let the image height adjust automatically */
  }

  .fs-slide-track img {
    height: auto; /* adjust height */
    width: 100%; /* full width */
    object-fit: contain; /* fit entire image inside container */
  }
}

@media(max-width: 576px) {
  .fs-image-slider {
    height: auto;
  }

  .fs-slide-track img {
    height: auto;
    width: 100%;
    object-fit: contain;
  }

  .fs-slider-btn {
    width: 28px;
    height: 28px;
  }
}


/* SECTION */

.category-section{
    padding:60px 5%;
    background:#f3f3f3;
    text-align:center;
}

.category-title{
    font-size:28px;
    font-weight:600;
    margin-bottom:40px;
}

/* FLEX CONTAINER */

.category-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;   /* THIS CENTERS 3 ITEMS */
    gap:25px;
}

/* CARD */

.category-card{
    width:23%;
    position:relative;
    overflow:hidden;
    cursor:pointer;
}

/* IMAGE SAME SIZE */

.category-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
    transition:0.4s;
}

/* OVERLAY */

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:250px;
    background:rgba(0,0,0,0.35);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:22px;
    font-weight:600;
}

/* TEXT */

.category-card p{
    margin-top:12px;
    font-size:14px;
    color:#333;
}

/* HOVER */

.category-card:hover img{
    transform:scale(1.08);
}
.category-card:hover .overlay{
    transform:scale(1.08);
}

.care-section{
max-width:1200px;
margin:auto;
padding:80px 20px;
text-align:center;
background:#f5f5f5;
/* font-family:Arial, Helvetica, sans-serif; */
}

.care-title{
font-size:34px;
margin-bottom:10px;
}

.care-subtitle{
font-size:14px;
color:#555;
max-width:700px;
margin:auto;
margin-bottom:60px;
}

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

.care-box{
text-align:center;
}

.care-box i{
font-size:48px;
color:#222;
margin-bottom:15px;
}

.care-box h4{
margin:10px 0;
font-size:16px;
}

.care-box p{
font-size:13px;
color:#777;
max-width:200px;
margin:auto;
line-height:1.6;
}


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

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

}

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

.care-title{
font-size:26px;
}

.care-grid{
grid-template-columns:1fr;
gap:40px;
}

}

.customer-review-section {
    padding: 60px 20px;
    /* background: #f7f7f7; */
}

.review-container {
    max-width: 1200px;
    margin: auto;
}

.review-heading {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

.review-slider {
    position: relative;
    overflow: hidden;
}

.review-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.review-card {
    flex: 0 0 25%;
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-right: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.review-user {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 10px;
}

.review-stars {
    margin-bottom: 10px;
    color: #f5a623;
}

.review-card h4 { margin: 5px 0; }
.review-card p { font-size: 14px; color: #555; }

.review-product {
    display: flex;
    align-items: center;
    margin-top: 15px;
    font-size: 13px;
    color: #777;
}

.review-product img {
    width: 30px;
    margin-right: 8px;
}

.review-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.review-left { left: 0; }
.review-right { right: 0; }

@media(max-width: 992px) { .review-card { flex: 0 0 50%; } }
@media(max-width: 600px) { .review-card { flex: 0 0 100%; } }

.usage-section {
  padding: 60px 20px;
  text-align: center;
  background: #f9fafc;
}

.usage-title {
  font-size: 32px;
  margin-bottom: 40px;
}

.usage-wrapper {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.usage-card {
  background: #fff;
  padding: 25px;
  width: 280px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.usage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.usage-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.usage-card h3 {
  margin-bottom: 15px;
}

.usage-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.usage-card ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}

.usage-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: green;
}

.usage-icon i {
  font-size: 32px;
  color: #2e7d32; /* green natural look */
  background: #e8f5e9;
  padding: 15px;
  border-radius: 50%;
}
.care-icon i {
  font-size: 41px;
  color: #2e7d32; /* green natural look */
  background: #e8f5e9;
  padding: 15px;
  border-radius: 50%;
}

@media(max-width: 768px) {
  .usage-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

.wsk-cp-text{
  text-align:center;
  font-size:12px;
  font-weight:bold;
  padding:5px;
  /* margin-bottom:45px; */
  position:relative;
  transition: all 0.2s ease-in-out;
}
.wsk-cp-text > span{
  padding: 4px 12px;
  border: 1px solid #313131;
  background:#212121;
  color:#fff;
  /* box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22); */
  border-radius:27px;
  transition: all 0.05s ease-in-out;
  
}
.wsk-cp-text:hover  > span{
  border-color:#ddd;
  box-shadow: none;
  padding: 11px 28px;
}

.wsk-cp-textp{
  /* text-align:center; */
  font-size:14px;
  font-weight:bold;
  padding:5px;
  /* margin-bottom:45px; */
  position:relative;
  transition: all 0.2s ease-in-out;
}
.wsk-cp-textp > span{
  padding: 4px 12px;
  border: 1px solid #313131;
  background:#212121;
  color:#fff;
  /* box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22); */
  border-radius:27px;
  transition: all 0.05s ease-in-out;
  
}

/* =========================
   LAYOUT
========================= */
.sk-bundle-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 55px;
    text-align: center;
}

/* =========================
   ANIMATION BASE
========================= */
.sk-animate-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.sk-animate-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   LEFT CONTENT
========================= */
.sk-bundle-content {
    flex: 1;
}

.sk-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f7ef8a, #d2ac47);
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.sk-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.sk-subtitle {
    color: #777;
    margin-bottom: 25px;
}

/* =========================
   PRODUCTS
========================= */
.sk-products {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.sk-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.sk-product img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eee;
    transition: 0.3s;
}

.sk-product:hover img {
    transform: scale(1.1);
    border-color: #000;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.sk-plus {
    font-size: 20px;
    font-weight: bold;
    color: #999;
}

/* =========================
   PRICE
========================= */
.sk-price-box {
    margin-bottom: 20px;
}

.sk-old-price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 14px;
}

.sk-price {
    font-size: 36px;
    margin: 5px 0;
}

.sk-save {
    color: #28a745;
}

/* =========================
   BUTTON
========================= */
.sk-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #000;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.sk-btn:hover {
    transform: scale(1.05);
    background: #000;
    color: #f7ef8a;
}

/* =========================
   RIGHT IMAGE
========================= */
.sk-banner {
    flex: 1;
    text-align: center;
}

.sk-banner img {
    max-width: 100%;
    border-radius: 20px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .sk-bundle-container {
        flex-direction: column;
        text-align: center;
    }

    .sk-banner {
        order: -1;
    }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
    .sk-title {
        font-size: 1.5rem;
    }

    .sk-product img {
        width: 65px;
        height: 65px;
    }

    .sk-btn {
        width: 100%;
    }
}

.usecare img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eee;
    transition: 0.3s;
}

/* Button */

.wa__btn_popup{
position:fixed;
bottom:20px;
right:20px;
z-index:999;
cursor:pointer;
display:flex;
align-items:center;
}

.wa__btn_popup_icon{
width:60px;
height:60px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 8px 20px rgba(0,0,0,.2);
}

.wa__btn_popup_icon img{
width:30px;
}

.wa__btn_popup_txt{
background:#25D366;
color:#fff;
padding:10px 15px;
border-radius:20px;
margin-right:10px;
font-size:14px;
}


/* Popup */

.wa__popup_chat_box{
position:fixed;
bottom:100px;
right:20px;
width:320px;
background:#fff;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,.2);
overflow:hidden;
display:none;
z-index:999;
}


/* Header */

.wa__popup_heading{
background:linear-gradient(45deg,#25D366,#128C7E);
color:#fff;
padding:15px;
}

.wa__popup_title{
font-size:16px;
font-weight:bold;
}

.wa__popup_intro{
font-size:13px;
margin-top:4px;
}


/* Content */

.wa__popup_content{
padding:15px;
}

.wa__popup_notice{
font-size:12px;
margin-bottom:10px;
color:#666;
}

.wa__popup_content_item a{
display:flex;
align-items:center;
background:#f5f7f9;
padding:10px;
border-radius:8px;
text-decoration:none;
color:#333;
transition:.3s;
}

.wa__popup_content_item a:hover{
background:#fff;
box-shadow:0 5px 10px rgba(0,0,0,.1);
}

.wa__popup_avatar{
width:45px;
height:45px;
border-radius:50%;
overflow:hidden;
margin-right:10px;
}

.wa__popup_avatar img{
width:100%;
}

.wa__member_name{
font-weight:bold;
font-size:14px;
}

.wa__member_duty{
font-size:12px;
color:#666;
}

.delivery-modern {
  padding: 90px 20px;
  text-align: center;
  background: radial-gradient(circle at top, #eef3ff, #ffffff);
}

.delivery-content {
  max-width: 800px;
  margin: auto;
}

.delivery-icon i {
  font-size: 55px;
  color: #28a745;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

.delivery-modern h2 {
  font-size: 38px;
  margin-bottom: 15px;
  font-weight: 700;
}

.delivery-modern p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.delivery-tags {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.delivery-tags span {
  font-size: 14px;
  padding: 10px 18px;
  border: 1px solid #ddd;
  border-radius: 50px;
  background: #fff;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.delivery-tags span:hover {
  background: #28a745;
  color: #fff;
  transform: translateY(-3px);
  border-color: #28a745;
}

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

@media(max-width:600px){
  .delivery-modern h2 {
    font-size: 28px;
  }

  .delivery-tags {
    flex-direction: column;
    align-items: center;
  }
}

.product-banner {
    width: 100%;
    padding: 30px 15px;
    background: #f8f8f8;
    display: flex;
    justify-content: center;
}

.banner-container {
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    border-radius: 14px;
}

/* Image Styling */
.banner-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.4s ease;
}

/* Hover Effect (only desktop) */
@media (hover: hover) {
    .banner-container:hover img {
        transform: scale(1.05);
    }
}

/* Tablet */
@media (max-width: 992px) {
    .product-banner {
        padding: 20px 10px;
    }

    .banner-container {
        border-radius: 10px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .product-banner {
        padding: 15px 8px;
    }

    .banner-container {
        border-radius: 8px;
    }

    .banner-container img {
        border-radius: 8px;
    }
}

/* SECTION */
.skin-section {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 80px;
  overflow: hidden;
}

/* 🎬 VIDEO BACKGROUND */
.skin-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.65); /* dark for text visibility */
}

/* 🌫 OVERLAY (ABOVE VIDEO) */
.skin-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    90deg,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.3) 40%,
    rgba(0,0,0,0) 100%
  ); */
  z-index: 1;
}

/* CONTENT */
.skin-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  color: #fff;
  animation: fadeUp 1s ease;
}

/* BUTTON */
.skin-btn {
  background: #fff;
  color: #000;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.skin-btn:hover {
  background: #000;
  color: #fff;
}

/* COMPARE CARD */
.skin-compare {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  z-index: 2;
}

/* IMAGES */
.skin-compare img {
  width: 100%;
  display: block;
}

/* BEFORE IMAGE */
.skin-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  clip-path: inset(0 50% 0 0);
}

/* SLIDER LINE */
.skin-slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: #fff;
  cursor: ew-resize;
}

/* HANDLE */
.skin-handle {
  position: absolute;
  top: 50%;
  left: -18px;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  transform: translateY(-50%);
  font-size: 14px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {opacity: 0; transform: translateY(40px);}
  to {opacity: 1; transform: translateY(0);}
}

/* 📱 MOBILE RESPONSIVE */
@media(max-width: 768px){
  .skin-section {
    flex-direction: column;
    height: auto;
    padding: 40px 20px;
  }

  .skin-content {
    text-align: center;
  }

  .skin-title {
    font-size: 32px;
  }

  .skin-compare {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-top: 30px;
    width: 100%;
    max-width: 320px;
  }
}

/* Button Group */
.fs-btn-group {
  margin-top: auto;
}

/* Base Button */
.btn-modern {
  flex: 1;
  text-align: center;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid #e5e5e5;
}

/* Quick View (Light Style) */
.btn-view {
  background: #fff;
  color: #333;
}

.btn-view:hover {
  background: #f8f8f8;
  border-color: #ccc;
}

/* Quick Buy (Primary Button) */
.btn-buy {
  background: #111;
  color: #fff;
  border-color: #111;
}

.btn-buy:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Mobile Fix */
@media(max-width: 576px) {
  .btn-modern {
    font-size: 14px;
    padding: 8px;
  }
}