.menu-heading > a {
    font-weight: bold;
    pointer-events: none; /* disables clicking */
    color: #000; /* or any color */
    cursor: default;
}
/* home page category set css */
.category-grid .category-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
}

.category-grid .category-image-wrapper img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
    border-radius: 20px;
}

/* Hover image zoom effect */
.category-grid a:hover .category-image-wrapper img {
    transform: scale(1.05);
}

/* Hover shadow */
.category-grid a:hover .position-relative {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Badge styles (top right products count) */
.category-grid .badge {
    font-size: 14px;
    color: #1a1a1a !important;
    background-color: #ffffff;
    border: 1px solid #ddd;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
}

/* Category name styles */
.category-grid h6 {
    font-size: 15px;
    color: #0e1c36;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

/* On hover, change name color */
.category-grid a:hover h6 {
    color: #0e1c36;
}
.category-grid .rounded-3 {
    border-radius: 24px !important;
}

/* skincare */
.skincare-banner {
        background-color: #601e1e;
        color: white;
        padding: 0px 0 80px;
        font-family: 'Segoe UI', sans-serif;
    }

    .skincare-container {
        max-width: 1400px;
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .skincare-image-stack {
        position: relative;
        width: max-content;
        margin-left: 150px;

    }

    .skincare-main-img {
        display: block;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .skincare-overlay-img {
        position: absolute;
        bottom: -200px;
        right: -30px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
        z-index: 2;
    }

    .skincare-content {
        text-align: center;
        flex: 1;
        max-width: 440px;
        margin-top: 150px;

    }

    .skincare-content h2 {
        font-size: 26px;
        line-height: 1.6;
        font-weight: 400;
        margin-bottom: 40px;
        color: white;


    }

    .skincare-content strong {
        font-weight: 700;
    }

    .skincare-content em {
        font-style: italic;
    }

    .skincare-btn {

        background-color: white;
        color: #601e1e;
        padding: 12px 28px;
        border-radius: 6px;
        font-weight: 600;
        text-decoration: none;
        transition: background 0.3s ease;
    }

    .skincare-btn:hover {
        background-color: #f5f5f5;
    }

    .skincare-right-images {
        padding-top: 60px;
        margin-right: 150px;
        display: flex;
        flex-direction: column;
    }



    .skincare-right-images img:nth-child(2) {
        margin-left: -40px;
    }

    .skincare-right-images img {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        object-fit: cover;
        margin-bottom: 20px;

    }

    @media (max-width: 768px) {
        .skincare-container {
            flex-direction: column;
            align-items: center;
        }

        .skincare-overlay-img {
            position: static;
            margin-top: 20px;
        }

        .skincare-right-images {
            flex-direction: row;
            margin: 0;
        }

        .skincare-right-images img {
            width: 120px;
        }

        .skincare-content h2 {
            font-size: 20px;
        }
    }
/*hero banner*/
 .hero-banner {
        background-color: #0e2949;
        color: white;
        font-family: 'Segoe UI', sans-serif;
        padding: 0px 0px 100px;

    }

    .hero-wrapper {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 30px;
    }

    .hero-image-container {
        position: relative;
        margin-left: 100px;
    }

    .hero-main-img {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        display: block;
    }

    .hero-top-right-img {
        position: absolute;
        bottom: -80px;
        right: -60px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
        z-index: 2;
    }

    .hero-center {
        text-align: center;
        color: white;
        flex: 1;

        margin-top: 100px;

    }

    .hero-center h2 {
        font-size: 30px;
        line-height: 1.6;
        font-weight: 100;
        margin-bottom: 20px;
        color: white;

    }

    .hero-center strong {
        font-weight: 700;
    }

    .hero-btn {
        display: inline-block;
        background-color: white;
        color: #0e2949;
        padding: 12px 28px;
        border-radius: 6px;
        font-weight: 600;
        text-decoration: none;
        transition: background 0.3s ease;
    }

    .hero-btn:hover {
        background-color: #f5f5f5;
    }

    .hero-left {
        margin-left: 50px;

    }

    .hero-right img {
        padding-top: 30px;
        margin-right: 150px;

        object-fit: cover;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 768px) {
        .hero-wrapper {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .hero-top-right-img {
            bottom: -40px;
            right: -20px;
            width: 140px;
            height: auto;
        }
    }
/* How to Order Section */
.how-to-order-section {
    padding: 60px 0;
    background-color: #fff;
}

.how-to-order-title {
    font-weight: 600;
}

.how-to-order-pt-40 {
    padding-top: 40px;
}

.how-to-order-step-icon {
    background-color: #E2E3EC;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-to-order-step-icon img {
    height: 24px;
}

.how-to-order-step-label {
    margin-top: 12px;
    margin-bottom: 4px;
    font-weight: bold;
}

.how-to-order-step-heading {
    font-weight: bold;
}

.how-to-order-step-description {
    font-size: 0.875rem;
    color: #6c757d;
}
/* faq */
 .faq-section {
        background: #fff;
        padding: 60px 20px;
        font-family: 'Segoe UI', sans-serif;
        color: #0e2949;
    }

    .faq-container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 60px;
        max-width: 1200px;
        margin: auto;
    }

    .faq-left {
        flex: 1 1 30%;
    }

    .faq-left h2 {
        font-size: 32px;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 16px;
    }

    .faq-answer ol {
        list-style-type: decimal;
        padding-left: 20px;
        margin: 10px 0;
    }

    .faq-answer ul {
        list-style-type: disc;
        padding-left: 20px;
        margin: 10px 0;
    }

    .faq-answer li {
        margin-bottom: 8px;
    }

    .faq-left ul {
        list-style: disc;
        margin-left: 20px;
    }

    .faq-left a {
        color: #0e2949;
        text-decoration: underline;
    }

    .faq-right {
        flex: 1 1 60%;
    }

    .faq-item {
        border-top: 1px solid #ddd;
        padding: 20px 0;
        cursor: pointer;
    }

    .faq-question {
        font-weight: 600;
        position: relative;
        padding-right: 30px;
    }

    .faq-question::after {
        content: '⌄';
        position: absolute;
        right: 0;
        top: 0;
        transition: transform 0.3s ease;
    }

    .faq-item.open .faq-question::after {
        transform: rotate(180deg);
    }

    .faq-answer {
        margin-top: 12px;
        display: none;
        color: #333;
        font-size: 15px;
    }

    .faq-item.open .faq-answer {
        display: block;
    }

/* Top selling  & recently Added product & Trending Products Product home page*/
.line-clamp-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* second Section Custom Feature */

 .second-section {
        height: 72px;
        width: 72px;
        background-color: #E2E3EC; /* Light blue background */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        margin-bottom: 15px;
    }

    .second-section img {
        height: 32px;
        width: 32px;
        object-fit: contain;
    }
.hero-slider-1 .slider-content p{
font-size: 16px;
}
.display-2{
font-size: 64px;
}