.skin-hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: flex-end;
}

.inner-banner.image {
    background: url('../../assets/images/category/skin-care-hero.webp');
    background-size: cover !important;
    background-position: 15% 20% !important;
    height: 95vh !important
}

.page-title-box {
    width: 100%;
    background: linear-gradient(180deg,
            rgba(124, 213, 244, 0.85) 0%,
            rgba(192, 232, 255, 0.85) 100%);
    padding: 20px 60px;
}

.hero-badge {
    display: inline-block;
    background: #DDEFE3;
    color: #2F6B4F;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #6B4E3D;
}

.hero-text {
    font-size: 18px;
    color: #3f3e3e;
    line-height: 1.8;
}

.baby-btn {
    background-color: #DDEFE3;
    color: #2F6B4F;
    border-radius: 30px;
    padding: 10px 28px;
    font-weight: 500;
    border: none;
}

.baby-btn:hover {
    background-color: #C8E6D6;
    color: #2F6B4F;
}

/* ============================= */
/* Story Section / Our Promise CSS with Floral Overlay */
/* ============================= */

.our-promise-section {
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background-color: #FAF9F6;
    /* soft cream */
    position: relative;
    overflow: hidden;
}

/* Floral Overlay */
.our-promise-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 600px;
    height: 600px;
    background: url('../../assets/images/category/floral-overlay.png') no-repeat center center;
    background-size: contain;
    opacity: 0.08;
    /* subtle effect */
    pointer-events: none;
    /* overlay doesn’t block interaction */
    z-index: 0;
}

.our-promise-image img {
    width: 100%;
    height: auto;
    display: block;
}

.our-promise-content {
    flex: 1 1 400px;
    max-width: 500px;
    margin: 20px;
    text-align: left;
    position: relative;
    z-index: 1;
    /* above overlay */
}

.our-promise-content h2 {
    font-family: 'Georgia', serif;
    font-size: 36px;
    color: #2E2E2E;
    /* soft dark */
    margin-bottom: 20px;
}

.our-promise-content p {
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    color: #555555;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 900px) {
    .our-promise-section {
        flex-direction: column;
        padding: 60px 15px;
    }

    .our-promise-content {
        text-align: center;
    }

    .our-promise-section::before {
        width: 400px;
        height: 400px;
        top: -30px;
        left: -30px;
    }
}

/* Ingredients Section */
.our-promise-section {
    /* display: flex;
    flex-wrap: wrap; */
    /* Responsive */
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background-color: #FAF9F6;
    /* soft cream */
    position: relative;
    overflow: hidden;
}

/* Floral Overlay */
.our-promise-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 600px;
    height: 600px;
    background: url('../../assets/images/category/floral-overlay.png') no-repeat center center;
    background-size: contain;
    opacity: 0.08;
    /* subtle effect */
    pointer-events: none;
    /* overlay doesn’t block interaction */
    z-index: 0;
}

.ingredients-section {
    background-color: #fdfcf7;
    position: relative;
    overflow: hidden;

    /* soft cream */
}

.ingredients-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 600px;
    height: 600px;
    background: url('../../assets/images/skin/floral-1.png') no-repeat center center;
    background-size: contain;
    opacity: 0.08;
    /* subtle effect */
    pointer-events: none;
    /* overlay doesn’t block interaction */
    z-index: 0;
}

.section-title {
    font-family: 'Georgia', serif;
    font-size: 36px;
    color: #2E2E2E;
    font-weight: 600;
}

.section-subtitle {
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    color: #555555;
}

/* Ingredients Section */
.ingredients-section {
    background-color: #fdfcf7;
    /* soft cream */
}

.section-title {
    font-family: 'Georgia', serif;
    font-size: 36px;
    color: #2E2E2E;
    font-weight: 600;
}

.section-subtitle {
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    color: #555555;
}

/* Ingredient Card */
.ingredient-card {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.ingredient-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
}

/* Badge for Ingredient Initial */
.ingredient-badge {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Interactive hover effect */
.ingredient-card:hover .ingredient-badge {
    transform: scale(1.2) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Background colors for different ingredients */
.bg-aloe {
    background: linear-gradient(135deg, #A8E6CF, #56C596);
}

.bg-strawberry {
    background: linear-gradient(135deg, #FFB3BA, #FF6F91);
}

.bg-glycerin {
    background: linear-gradient(135deg, #B5EAEA, #55CBCD);
}

.bg-organic {
    background: linear-gradient(135deg, #FFD3B6, #FFAAA5);
}

.ingredient-name {
    font-family: 'Georgia', serif;
    font-size: 20px;
    margin-bottom: 10px;
    color: #2E2E2E;
}

.ingredient-desc {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}

/* ============================ */
/* How to Use Section CSS */
/* ============================ */

.how-to-use-section {
    background-color: #FAF9F6;
    /* soft cream */
}

.section-title {
    font-family: 'Georgia', serif;
    font-size: 36px;
    color: #2E2E2E;
    font-weight: 600;
}

.section-subtitle {
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    color: #555555;
}

.video-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.steps-container {
    display: flex;
    flex-direction: column;
}

.how-to-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #79424c, #78081C);
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-to-step:hover .step-number {
    transform: scale(1.2) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.step-text h5 {
    font-family: 'Georgia', serif;
    font-size: 20px;
    color: #2E2E2E;
    margin-bottom: 5px;
}

.step-text p {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .how-to-step {
        flex-direction: row;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .how-to-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-number {
        margin-bottom: 10px;
    }
}

.serum-section {
    padding: 80px 20px;
    /* background: linear-gradient(135deg, #fdfbfb, #f1f5ff); */
}

/* LEFT CONTENT */
.serum-badge {
    display: inline-block;
    padding: 6px 18px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6a7cff;
    background: rgba(106, 124, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 15px;
}

.serum-title {
    font-size: 40px;
    font-weight: 600;
    color: #1f1f2f;
    margin-bottom: 15px;
}

.serum-text {
    font-size: 16px;
    color: #6a6a6a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.serum-points {
    list-style: none;
    padding: 0;
}

.serum-points li {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
}

/* FLIP CARD */
.flip-card {
    perspective: 1000px;
    height: 380px;
    /* slightly taller for serum bottles */
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s ease;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
    transform: rotateY(180deg);
}

.flip-front,
.flip-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    /* border-radius: 22px; */
    /* padding: 20px; */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    border-radius: 1.5rem;
}

/* FRONT TITLE */
.flip-front h4 {
    font-size: 17px;
    font-weight: 600;
    color: #2a2a3c;
}

.flip-front-1 {
    background: linear-gradient(135deg, #FDB5A2, #FEC3B2);
    color: #000;
    justify-content: center;
    border-radius: 1.5rem;
}

.flip-front-2 {
    background: linear-gradient(135deg, #AC475B, #FDBAC7);
    color: #000;
    justify-content: center;
    border-radius: 1.5rem;
}

/* BACK */
.flip-back {
    /* background: linear-gradient(135deg, #6a7cff, #8fa4ff); */
    /* color: #ffffff; */
    transform: rotateY(180deg);
    justify-content: center;
}

.flip-back h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.flip-back p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 100%;
}

.serum-image-wrap {
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.serum-image-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: 1.5rem;
}

.feature_content-left {
    grid-column-gap: 4rem;
    grid-row-gap: 1rem;
    border-radius: 1.5rem;
    background-color: #f7f6f3;
    text-align: left;
    flex-flow: column;
    flex: 1;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem;
    display: flex;
}


.sunscreen-section {
    /* background: url('../../assets/images/sunscreen/sunscreen-bg.jpg') no-repeat center center; */
    /* background-color: #ecfcc2; */

    background: linear-gradient(rgba(238, 113, 10, 0.5), rgba(255, 255, 255, 0.5)),
        url('../../assets/images/sunscreen/sunscreen-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

/* .sunscreen-section::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 600px;
    background: url('../../assets/images/sunscreen/sunscreen-bg.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
} */

.sunscreen-card {
    background-color: #FFE3B8;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.sunscreen-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
}

.sunscreen-section img {
    border-radius: 1.5rem;
}

.sunscreen-section ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.sunscreen-section ul li {
    position: relative;
    padding-left: 30px;
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #555;
}

.sunscreen-section ul li::before {
    content: '✓';
    /* Stylish check mark */
    position: absolute;
    left: 0;
    top: 0;
    color: #ff9800;
    /* Highlight color for checkmark */
    font-size: 1.2rem;
}

.soap-section {
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background-color: #FFE1EE;
    position: relative;
    overflow: hidden;
}

.soap-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 600px;
    height: 600px;
    background: url('../../assets/images/soap/soap-bg.webp') no-repeat center center;
    background-size: contain;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.soap-section .container {
    position: relative;
    z-index: 2;
}

.soap-section-title {
    text-align: left;
    font-size: 2.2rem;
    color: #2b4d3a;
    margin-bottom: 10px;
}

.soap-section-text {
    text-align: left;
    max-width: 600px;
    margin: 0 0 35px;
    color: #5f7f6d;
    font-size: 1.3rem;
}

.soap-carousel {
    position: relative;
    display: flex;
    align-items: center;
    /* overflow: hidden;
    padding: 0 50px;
    z-index: 4; */
    /* space for arrows */
}

.soap-viewport {
    overflow: hidden;
    width: 100%;
}

.soap-track {
    display: flex;
    /* gap: 20px; */
    transition: transform 0.6s ease-in-out;
}

.soap-card {
    min-width: 100%;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    /* box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08); */
    text-align: center;
}

.soap-card h3 {
    color: #2b4d3a;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.soap-card p {
    color: #6b6b6b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.soap-card ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.soap-card ul li {
    position: relative;
    padding-left: 30px;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #555;
}

.soap-card ul li::before {
    content: '✓';
    /* Stylish check mark */
    position: absolute;
    left: 0;
    top: 0;
    color: #BD047C;
    /* Highlight color for checkmark */
    font-size: 1.2rem;
}

.soap-carousel .nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #2b4d3a;
    /* dark green for contrast */
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.soap-carousel .nav.prev {
    left: -22px;
}

.soap-carousel .nav.next {
    right: -22px;
}

.soap-carousel .nav:hover {
    background: #1f3a2c;
    color: #ffffff;
}

@media (max-width: 768px) {
    .soap-carousel .nav {
        display: none;
    }
}