﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: white;
    width: 100%;
    overflow-x: hidden;
}

.main-body {
    width: 100%;
    margin: 0;
    padding: 0;
}

html {
    width: 100%;
}

.container,
.body-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.top-bar {
    background: #f2f2f2;
    padding: 12px 40px;
    display: flex;
    justify-content: flex-end;
}

.top-right {
    display: flex;
    gap: 20px;
    font-size: 14px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    border-bottom: 1px solid #ddd;
}
.search-box {
    width: 45%;
    display: flex;
    background: #f3f3f3;
    border-radius: 50px;
    overflow: hidden;
}

    .search-box input {
        width: 100%;
        padding: 18px;
        border: none;
        outline: none;
        background: transparent;
        font-size: 16px;
    }

    .search-box button {
        width: 70px;
        border: none;
        background: #6a1fd0;
        color: white;
        font-size: 20px;
    }

.header-icons {
    display: flex;
    gap: 25px;
    font-size: 25px;
}

nav {
    display: flex;
    justify-content: center;
    gap: 35px;
    padding: 22px;
    font-weight: 600;
}

    nav a {
        text-decoration: none;
        color: black;
    }

.sale {
    color: #ff2c5f;
}

.offer-bar {
    background: #5e17c5;
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.hero {
    height: 700px;
    background: linear-gradient(to right, #6825d4, #5e17c5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
}

.left-product img,
.right-product img {
    width: 350px;
    border-radius: 25px;
}

.hero-content {
    text-align: center;
    color: white;
}

    .hero-content h1 {
        font-size: 95px;
        font-weight: 800;
    }

    .hero-content span {
        color: #ff2c5f;
    }

    .hero-content p {
        font-size: 35px;
        margin: 20px 0;
    }

.hero-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

    .hero-buttons button {
        padding: 16px 25px;
        border: none;
        border-radius: 40px;
        background: white;
        color: #5e17c5;
        font-size: 18px;
        font-weight: 600;
        transition: 0.3s;
    }

        .hero-buttons button:hover {
            background: #ff2c5f;
            color: white;
        }

.bottom-info {
    background: #f5f5f5;
    text-align: center;
    padding: 20px;
}

    .bottom-info a {
        color: #5e17c5;
        font-weight: 600;
        text-decoration: none;
    }

@media(max-width:900px) {

    header {
        flex-direction: column;
        gap: 20px;
    }

    .search-box {
        width: 100%;
    }

    nav {
        flex-wrap: wrap;
    }

    .hero {
        flex-direction: column;
        height: auto;
        gap: 40px;
        padding: 50px 20px;
    }

    .hero-content h1 {
        font-size: 60px;
    }

    .hero-buttons {
        grid-template-columns: 1fr;
    }
}
/* CATEGORY BANNERS */

.category-banners {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2px;
}

.banner-card {
    position: relative;
    height: 450px;
    overflow: hidden;
}

    .banner-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.pink {
    background: #ff2c86;
}

.purple {
    background: #7b3cff;
}

.blue {
    background: #21a6ff;
}

.green {
    background: #66bb00;
}

.discount {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 90px;
    height: 90px;
    background: #ff295f;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.1;
    font-size: 22px;
}

.banner-content {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
    color: white;
}

    .banner-content h3 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .banner-content p {
        margin-bottom: 20px;
    }

    .banner-content button {
        padding: 12px 25px;
        border: 2px solid white;
        background: transparent;
        color: white;
        border-radius: 30px;
        cursor: pointer;
    }

/* SHOP CATEGORY SECTION */

.shop-category {
    width: 96%;
    margin: 60px auto;
    padding: 0 10px;
    font-family: "Segoe UI", sans-serif;
}


    /* HEADING */

    .shop-category h2 {
        text-align: center;
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 40px;
        color: #111;
    }


/* ROW */

.category-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}


/* LINK */

.category-link {
    text-decoration: none;
    color: inherit;
    display: block;
}


/* CARD */

.category-box {
    background: #f5f5f5;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    min-height: 180px;
    transition: all 0.35s ease;
    cursor: pointer;
}


    /* HOVER */

    .category-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.12);
        background: #fff;
    }


/* TEXT */

.category-text {
    font-size: 30px;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
}


/* IMAGE */

.category-image {
    width: 250px;
    height: 160px;
    border-radius: 22px;
    overflow: hidden;
    flex-shrink: 0;
}

    .category-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.4s ease;
    }


/* IMAGE HOVER */

.category-box:hover .category-image img {
    transform: scale(1.08);
}


/* BACKGROUND COLORS */

.pink-bg {
    background: #ffdce9;
}

.red-bg {
    background: #ffe1e1;
}

.green-bg {
    background: #ddf7df;
}

.yellow-bg {
    background: #fff3c7;
}

.pink2-bg {
    background: #ffe5ef;
}

.orange-bg {
    background: #ffe4cb;
}

.green2-bg {
    background: #d8f7e6;
}

.orange2-bg {
    background: #ffe9d6;
}


/* TABLET */

@media(max-width:1200px) {

    .category-row {
        grid-template-columns: repeat(2,1fr);
    }

    .category-text {
        font-size: 24px;
    }
}


/* MOBILE */

@media(max-width:768px) {

    .category-row {
        grid-template-columns: 1fr;
    }

    .category-box {
        min-height: auto;
    }

    .category-image {
        width: 180px;
        height: 130px;
    }

    .category-text {
        font-size: 22px;
    }

    .shop-category h2 {
        font-size: 32px;
    }
}
/* =========================
   EXPLORE SECTION
========================= */

.explore-section {
    width: 95%;
    margin: 70px auto;
    padding: 20px 10px;
    font-family: "Segoe UI", sans-serif;
}


    /* HEADING */

    .explore-section h2 {
        text-align: center;
        color: #5e17c5;
        font-size: 40px;
        font-weight: 800;
        margin-bottom: 45px;
    }


/* GRID */

.explore-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}


    /* LINK */

    .explore-grid a {
        text-decoration: none !important;
        color: inherit !important;
        display: block;
    }


/* CARD */

.explore-item {
    background: #fff;
    border-radius: 28px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.35s ease;
    cursor: pointer;
}


    /* HOVER */

    .explore-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.10);
    }


    /* IMAGE */

    .explore-item img {
        width: 210px;
        height: 210px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 22px;
        transition: 0.4s ease;
        border: 6px solid #f5f0ff;
    }


    /* IMAGE HOVER */

    .explore-item:hover img {
        transform: scale(1.05);
    }


    /* TEXT */

    .explore-item h3 {
        color: #5e17c5 !important;
        font-size: 24px;
        font-weight: 700;
        margin: 0;
        text-decoration: none !important;
    }


/* TABLET */

@media(max-width:1000px) {

    .explore-grid {
        grid-template-columns: repeat(2,1fr);
    }
}


/* MOBILE */

@media(max-width:700px) {

    .explore-grid {
        grid-template-columns: 1fr;
    }

    .explore-item img {
        width: 180px;
        height: 180px;
    }

    .explore-section h2 {
        font-size: 32px;
    }

    .explore-item h3 {
        font-size: 22px;
    }
}

/* PRODUCT SLIDER */


.product-slider-section {
    position: relative;
    padding: 40px 70px;
    background: #f3f3f3;
    overflow: hidden;
}

.product-slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.product-slider {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: autoSlide 20s linear infinite;
}

.product-card {
    min-width: 240px;
    max-width: 240px;
    background: white;
    padding: 12px;
    position: relative;
    border-radius: 10px;
}

    .product-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        border-radius: 8px;
    }

.rating {
    color: #5e17c5;
    font-size: 14px;
    margin-top: 10px;
}

    .rating span {
        color: gray;
    }

.product-name {
    font-size: 14px;
    margin: 10px 0;
    line-height: 1.4;
    min-height: 45px;
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .product-bottom h3 {
        font-size: 28px;
    }

    .product-bottom i {
        color: gray;
    }

.new-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #5e17c5;
    color: white;
    padding: 10px 14px;
    border-radius: 50px;
    font-size: 14px;
    z-index: 5;
}

/* AUTO SLIDE */

@keyframes autoSlide {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* BUTTONS */

.slider-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 10;
    font-size: 20px;
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .product-slider-section {
        padding: 40px 20px;
    }

    .product-card {
        min-width: 200px;
        max-width: 200px;
    }
}

/* TRUSTPILOT */

.trustpilot-bar {
    background: #02004b;
    padding: 20px;
}

.trustpilot-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: white;
}

.stars {
    color: #41d85f;
    font-size: 26px;
}

/* PROMO BANNERS */

.promo-banners {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2px;
    gap: 16px;
    padding: 20px;
    background: #f3f3f3;
}

.promo-card {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 14px;
}

    .promo-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.orange-bg2 {
    background: orange;
}

.pink-bg2 {
    background: hotpink;
}

.pink-bg3 {
    background: #ff5ca8;
}

.purple-bg2 {
    background: #dca8ff;
}

.promo-circle {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 120px;
    height: 120px;
    background: #ff295f;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 5;
    font-size: 20px;
    font-weight: bold;
}

.promo-content {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
    color: white;
}

    .promo-content h2 {
        font-size: 42px;
        margin-bottom: 10px;
    }

    .promo-content p {
        margin-bottom: 20px;
    }

    .promo-content button {
        padding: 14px 28px;
        border: 2px solid white;
        background: transparent;
        color: white;
        border-radius: 40px;
    }

/* RESPONSIVE */

@media(max-width:1100px) {

    .product-slider {
        grid-template-columns: repeat(2,1fr);
    }

    .promo-banners {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:700px) {

    .product-slider {
        grid-template-columns: 1fr;
    }

    .promo-banners {
        grid-template-columns: 1fr;
    }
}

/* FREE GIFT SECTION */

.gift-section {
    height: 320px;
    background: linear-gradient(to right,#6d24d3,#7d37ff,#5f14bf);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    border-radius: 12px;
}

.gift-ribbon {
    position: absolute;
    left: -45px;
    top: 20px;
    background: #ff295f;
    color: white;
    padding: 15px 60px;
    transform: rotate(-45deg);
    font-weight: bold;
    font-size: 24px;
}

.gift-content {
    text-align: center;
    color: white;
}

.gift-title {
    background: #ffe100;
    color: #5f14bf;
    display: inline-block;
    padding: 10px 30px;
    font-size: 50px;
    font-weight: 800;
    transform: rotate(-3deg);
    margin-bottom: 20px;
}

.gift-content h2 {
    font-size: 38px;
    margin-bottom: 10px;
}

.gift-content p {
    margin-bottom: 25px;
}

.gift-content button {
    padding: 14px 30px;
    border: none;
    border-radius: 40px;
    background: white;
    color: #5f14bf;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

/* INFO BOXES */

.info-boxes {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
    padding: 20px 30px;
    background: #f3f3f3;
}

.info-card {
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    color: white;
}

.orange-card {
    background: #ffab0f;
}

.blue-card {
    background: #21a6e8;
}

.green-card {
    background: #7bc400;
}

.info-card h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

/* GUARANTEE */

.guarantee-section {
    background: linear-gradient(to right,#6d24d3,#5f14bf);
    padding: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.guarantee-left h1 {
    font-size: 70px;
    width: 70%;
    line-height: 1.2;
}

.guarantee-badge {
    width: 300px;
    height: 300px;
    background: #ff295f;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .guarantee-badge span {
        font-size: 90px;
        font-weight: 800;
    }

    .guarantee-badge p {
        font-size: 60px;
        font-weight: bold;
    }

    .guarantee-badge h3 {
        font-size: 30px;
    }

/* CONTENT SECTION */

.content-section {
    padding: 70px 140px;
    background: white;
}

    .content-section h1 {
        font-size: 55px;
        margin-bottom: 35px;
        line-height: 1.3;
    }

    .content-section h2 {
        font-size: 40px;
        margin-top: 50px;
        margin-bottom: 20px;
    }

    .content-section p {
        font-size: 22px;
        line-height: 1.9;
        margin-bottom: 25px;
        color: #222;
    }

    .content-section ul {
        margin-top: 20px;
        margin-left: 30px;
    }

        .content-section ul li {
            font-size: 22px;
            margin-bottom: 15px;
        }

/* RESPONSIVE */
@media(max-width:900px) {

    .info-boxes {
        grid-template-columns: 1fr;
    }

    .guarantee-section {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .guarantee-left h1 {
        width: 100%;
        font-size: 45px;
    }

    .content-section {
        padding: 40px 20px;
    }

        .content-section h1 {
            font-size: 35px;
        }

        .content-section h2 {
            font-size: 28px;
        }

        .content-section p,
        .content-section ul li {
            font-size: 18px;
        }
}

/* GUIDE SECTION */

.guide-section {
    padding: 70px 30px;
    background: #f7f7f7;
}

.guide-container {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.guide-card {
    height: 320px;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    color: white;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

    .guide-card:hover {
        transform: translateY(-10px);
    }

.blue-guide {
    background: linear-gradient(135deg,#00b7ff,#007fff);
}

.orange-guide {
    background: linear-gradient(135deg,#ff8c00,#ff4d00);
}

.purple-guide {
    background: linear-gradient(135deg,#8e2dff,#5f14bf);
}

.pink-guide {
    background: linear-gradient(135deg,#ff008c,#ff3cac);
}

.guide-icon {
    font-size: 85px;
    margin-bottom: 20px;
}

.guide-card h3 {
    font-size: 30px;
    line-height: 1.3;
    width: 80%;
    margin-bottom: 25px;
    font-weight: 700;
}

.guide-card a {
    padding: 14px 35px;
    background: white;
    color: black;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

    .guide-card a:hover {
        background: black;
        color: white;
    }

/* NEWSLETTER */

.newsletter-section {
    padding: 80px 20px;
    background: white;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.newsletter-content {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

    .newsletter-content h2 {
        font-size: 52px;
        margin-bottom: 20px;
        font-weight: 800;
        color: #111;
    }

    .newsletter-content p {
        font-size: 22px;
        color: #555;
        line-height: 1.7;
        margin-bottom: 35px;
    }

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 45px;
}

    .newsletter-form input {
        width: 70%;
        padding: 20px 28px;
        border-radius: 50px;
        border: 2px solid #ddd;
        font-size: 18px;
        outline: none;
    }

        .newsletter-form input:focus {
            border-color: #7b2cff;
        }

    .newsletter-form button {
        padding: 18px 45px;
        border: none;
        background: #6f1dff;
        color: white;
        border-radius: 50px;
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
    }

        .newsletter-form button:hover {
            background: #5311d6;
        }

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

    .social-icons a {
        width: 60px;
        height: 60px;
        background: #f3f3f3;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #111;
        font-size: 24px;
        transition: 0.3s;
        text-decoration: none;
    }

        .social-icons a:hover {
            background: #6f1dff;
            color: white;
            transform: translateY(-5px);
        }

/* RESPONSIVE */

@media(max-width:1000px) {

    .guide-container {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .guide-container {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

        .newsletter-form input {
            width: 100%;
        }

    .newsletter-content h2 {
        font-size: 38px;
    }

    .newsletter-content p {
        font-size: 18px;
    }
}

/* AUTH SIDEBAR */

.auth-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 430px;
    height: 100vh;
    background: white;
    z-index: 99999;
    transition: 0.4s ease;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    padding: 40px 35px;
}

    .auth-sidebar.active-sidebar {
        right: 0;
    }

/* OVERLAY */

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

    .overlay.show-overlay {
        opacity: 1;
        visibility: visible;
    }

/* CLOSE BUTTON */

.close-sidebar {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #f3f3f3;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;
}

    .close-sidebar:hover {
        background: #6f1dff;
        color: white;
    }

/* HEADER */

.auth-header {
    display: flex;
    gap: 30px;
    border-bottom: 2px solid #eee;
    margin-bottom: 40px;
}

.auth-tab {
    background: none;
    border: none;
    font-size: 20px;
    padding-bottom: 18px;
    cursor: pointer;
    color: #999;
    font-weight: 600;
}

.active-tab {
    color: #6f1dff;
    border-bottom: 4px solid #6f1dff;
}

/* FORM */

.auth-form h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.auth-subtitle {
    color: #666;
    margin-bottom: 35px;
    font-size: 17px;
}

/* INPUTS */

.input-group {
    margin-bottom: 22px;
}

    .input-group label {
        display: block;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .input-group input {
        width: 100%;
        padding: 18px 24px;
        border-radius: 50px;
        border: 2px solid #ddd;
        outline: none;
        font-size: 16px;
        transition: 0.3s;
    }

        .input-group input:focus {
            border-color: #6f1dff;
        }

/* DOUBLE */

.double-input {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
}

/* FORGOT */

.forgot-link {
    display: block;
    text-align: right;
    margin-bottom: 25px;
    color: #6f1dff;
    text-decoration: none;
}

/* BUTTON */

.auth-btn {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(to right,#7b2cff,#5f14bf);
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

    .auth-btn:hover {
        transform: translateY(-3px);
    }

/* BENEFITS */

.auth-benefits {
    margin-top: 40px;
    background: #f7f7f7;
    padding: 25px;
    border-radius: 20px;
}

    .auth-benefits h3 {
        margin-bottom: 18px;
    }

    .auth-benefits ul {
        padding-left: 20px;
    }

        .auth-benefits ul li {
            margin-bottom: 12px;
            color: #444;
        }

/* SOCIAL */

.social-login {
    margin-top: 35px;
    text-align: center;
}

    .social-login p {
        margin-bottom: 20px;
        color: #666;
    }

.social-buttons {
    display: flex;
    gap: 15px;
}

    .social-buttons button {
        flex: 1;
        padding: 16px;
        border: 2px solid #ddd;
        background: white;
        border-radius: 50px;
        cursor: pointer;
        font-weight: 600;
        transition: 0.3s;
    }

        .social-buttons button:hover {
            border-color: #6f1dff;
            color: #6f1dff;
        }

/* HIDDEN */

.hidden-auth {
    display: none !important;
}

/* MOBILE */

@media(max-width:500px) {

    .auth-sidebar {
        width: 100%;
        padding: 30px 20px;
    }

    .double-input {
        grid-template-columns: 1fr;
    }
}
/* ==========================================================================
   MEGA NAVBAR (Main Container)
   ========================================================================== */
.mega-navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    background: #ffffff;
    padding: 18px 35px;
    border-bottom: 1px solid #ececec;
    position: sticky;
    top: 0;
    z-index: 9999;
}

/* NAV ITEM */
.nav-item {
    position: relative;
}

    /* NAV LINKS */
    .nav-item > a {
        text-decoration: none;
        color: #111111;
        font-size: 15px;
        font-weight: 600;
        transition: color 0.3s ease;
        position: relative;
        padding-bottom: 8px;
        display: inline-block;
    }

        /* UNDERLINE HOVER EFFECT */
        .nav-item > a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0%;
            height: 2px;
            background: #6f1dff;
            transition: width 0.3s ease;
        }

        .nav-item > a:hover::after {
            width: 100%;
        }

        .nav-item > a:hover {
            color: #6f1dff;
        }

/* SALE LINK (Pink Highlight) */
.sale-link {
    color: #ff006a !important;
    font-weight: 700 !important;
}

/* ==========================================================================
   MEGA MENU DROPDOWN (Updated for Banner)
   ========================================================================== */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0; /* Aligns perfectly under the main text */
    transform: translateY(15px);
    right: auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: stretch; /* Ensures columns and promo card have equal height */
    gap: 35px;
    width: auto;
    max-width: 90vw;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 99999;
    white-space: normal;
}
.nav-item:last-child .mega-menu,
.nav-item:nth-last-child(2) .mega-menu {
    right: 0;
    left: auto;
}

/* SHOW DROPDOWN ON HOVER */
.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* LITTLE TOP ARROW */
.mega-menu::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 65px;
    transform: rotate(45deg);
    width: 12px;
    height: 12px;
    background: #ffffff;
}
.sale-nav .mega-menu {
    right: 0;
    left: auto;
}

/* ==========================================================================
   COLUMNS INSIDE MEGA MENU
   ========================================================================== */
.mega-column {
    min-width: 160px;
    max-height: 420px;
    overflow-y: auto; /* Adds scrollbar if content is too long like your screenshot */
    padding-right: 8px;
}

    /* Custom Minimal Scrollbar (Screenshot Style) */
    .mega-column::-webkit-scrollbar {
        width: 4px;
    }

    .mega-column::-webkit-scrollbar-thumb {
        background: #e0e0e0;
        border-radius: 10px;
    }

    /* COLUMN TITLE */
    .mega-column h3 {
        font-size: 15px;
        color: #111111;
        margin-bottom: 16px;
        font-weight: 700;
        white-space: nowrap;
    }

    /* LINKS INSIDE COLUMNS */
    .mega-column a {
        display: block;
        text-decoration: none;
        color: #555555;
        margin-bottom: 12px;
        transition: color 0.2s ease, transform 0.2s ease;
        font-size: 14px;
        white-space: nowrap;
    }

        /* LINK HOVER ACTION */
        .mega-column a:hover {
            color: #6f1dff;
            transform: translateX(4px);
        }

/* ==========================================================================
   MEGA MENU FEATURED PROMO CARD (Lovehoney Style)
   ========================================================================== */
.mega-promo {
    width: 250px;
    background: linear-gradient(145deg, #ff007f 0%, #7d00b4 100%); /* Vibrant Pink-Purple */
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-left: 10px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* "Up to 50% OFF" Circle Badge */
.promo-badge {
    background: #ffffff;
    color: #ff007f;
    font-weight: 800;
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 12px;
}

/* Toy Image */
.mega-promo img {
    max-width: 85%;
    height: auto;
    object-fit: contain;
    margin-bottom: 12px;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hover effect on Image */
.mega-promo:hover img {
    transform: scale(1.06);
}

/* Promo Text */
.mega-promo p {
    font-size: 13px;
    line-height: 1.4;
    margin: 0 0 16px 0;
    color: rgba(255, 255, 255, 0.95);
}

    .mega-promo p strong {
        font-size: 16px;
        color: #ffffff;
        display: block;
        margin-top: 4px;
        font-weight: 700;
    }

/* "Shop Now" White Button */
.promo-btn {
    width: 100%;
    background: #ffffff;
    color: #111111;
    padding: 10px 0;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: block;
}

    .promo-btn:hover {
        background: #f5f5f5;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    }


/* =========================
   MOBILE
========================= */

@media(max-width:1100px) {

    .mega-navbar {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 18px 20px;
        gap: 24px;
    }

        .mega-navbar::-webkit-scrollbar {
            display: none;
        }

    .mega-menu {
        max-width: 600px;
        padding: 24px;
    }
}

@media(max-width:768px) {

    .mega-menu {
        width: 300px;
        max-width: 300px;
        flex-direction: column;
        gap: 22px;
        left: 0;
        transform: translateY(15px);
        padding: 22px;
    }

    .nav-item:hover .mega-menu {
        transform: translateY(0);
    }

    .mega-column {  
        min-width: 100%;
    }
}
/* ==========================================================================
   SEX TOYS LANDING PAGE (Screenshot 1 & 2 Exact Styles)
   ========================================================================== */
.sex-toys-landing {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 20px 40px;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.page-hero {
    background: linear-gradient(135deg, #fff 0%, #f7f7ff 100%);
    padding: 40px 30px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    margin-bottom: 40px;
}

    /* Breadcrumb */
    .page-hero .breadcrumb {
        font-size: 13px;
        color: #666;
        margin-bottom: 12px;
    }

        .page-hero .breadcrumb a {
            color: #5e17eb;
            text-decoration: none;
            font-weight: 600;
        }

            .page-hero .breadcrumb a:hover {
                text-decoration: underline;
            }

/* Title */
.hero-title {
    font-size: 34px;
    font-weight: 800;
    color: #111;
    margin: 10px 0 15px;
    letter-spacing: 0.5px;
}

/* Description */
.hero-description {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    max-width: 900px;
}

/* Decorative left border accent */
.page-hero {
    border-left: 6px solid #5e17eb;
}

    /* Hover effect */
    .page-hero:hover {
        transform: translateY(-2px);
        transition: 0.3s ease;
    }

/* --- SECTION 1: CIRCLE GRID (Find the Perfect Sex Toy) --- */
.purple-banner {
    background-color: #5e17eb; /* Exact Lovehoney Purple */
    color: #ffffff;
    font-weight: 700;
    font-size: 24px;
    padding: 16px 0;
    text-align: center;
    margin-bottom: 45px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.category-circle-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
}

.category-circle-item {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 220px;
    transition: transform 0.3s ease;
}

    .category-circle-item:hover {
        transform: scale(1.05);
    }

/* Exact Orange Circles from Image 1 */
.circle-bg-orange {
    width: 210px;
    height: 210px;
    background: linear-gradient(135deg, #ff9000 0%, #ff6a00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    background: #ffffff;
}

    .circle-bg-orange img {
        width: 92%;
        height: 92%;
        object-fit: cover;
        border-radius: 50%;
        transition: transform 0.3s ease;
    }

.category-title-overlay {
    font-weight: 700;
    font-size: 16px;
    color: #111;
    margin-top: 15px;
    text-align: center;
}


/* --- SECTION 2: EXPLORE MORE (Gradient Blocks from Image 2) --- */
.section-main-title {
    font-size: 22px;
    font-weight: 700;
    color: #5e17eb;
    text-align: center;
    margin-bottom: 25px;
}

.gradient-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
    margin-bottom: 60px;
}

.gradient-block-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 110px;
    border-radius: 4px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    transition: opacity 0.2s ease;
}

    .gradient-block-item:hover {
        opacity: 0.9;
    }

/* Gradients Matching Image 2 */
.block-orange {
    background: linear-gradient(90deg, #ff7300, #ff9100);
}

.block-pink {
    background: linear-gradient(90deg, #ff007f, #ff409f);
}

.block-purple {
    background: linear-gradient(90deg, #7d00b4, #5e17eb);
}


/* --- SECTION 3: SHOP BY CATEGORY (FINAL PREMIUM DESIGN) --- */
.category-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-bottom: 60px;
}

/* CARD */
.category-card-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(145deg, #f3f3f3, #e6e6e6);
    border: 1px solid #dedede;
    border-radius: 18px;
    padding: 0 0 0 25px;
    height: 110px;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

    /* HOVER EFFECT */
    .category-card-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.12);
        background: linear-gradient(145deg, #ffffff, #ececec);
    }

/* TEXT SIDE */
.card-text-side {
    font-size: 16px;
    font-weight: 800;
    color: #111;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

/* IMAGE SIDE */
.card-img-side {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.6);
    border-top-left-radius: 60% 100%;
    border-bottom-left-radius: 60% 100%;
    border-left: 1px solid #ddd;
    overflow: hidden;
}

    /* IMAGE */
    .card-img-side img {
        width: 80%;
        height: 80%;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

/* IMAGE HOVER */
.category-card-item:hover .card-img-side img {
    transform: scale(1.08);
}

/* OPTIONAL: SHINE EFFECT */
.category-card-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient( 120deg, transparent, rgba(255,255,255,0.4), transparent );
    transform: skewX(-20deg);
    transition: 0.5s;
}

.category-card-item:hover::before {
    left: 130%;
}



/* --- SECTION 4: BEST SELLING SEX TOYS (Product Carousel Grid) --- */
.carousel-section-title {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
}

.products-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
    gap: 15px;
}

.premium-product-card {
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.3s ease;
}

    .premium-product-card:hover {
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

/* Dynamic Label Tags (Top-Left corner) */
.product-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 2px;
    text-transform: uppercase;
    z-index: 5;
}

.tag-purple {
    background-color: #5e17eb;
}

.tag-red {
    background-color: #cc0c39;
}

.tag-dark {
    background-color: #222222;
}

.product-img-box {
    background-color: #f8f8f8;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

    .product-img-box img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.product-details-box {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name-link {
    font-size: 13px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
    line-height: 1.4;
    margin-bottom: 6px;
    height: 36px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

    .product-name-link:hover {
        color: #5e17eb;
    }

.stars-row {
    font-size: 11px;
    color: #ff9900;
    margin-bottom: 10px;
}

    .stars-row .review-count {
        color: #007185;
        margin-left: 4px;
    }

.price-row {
    margin-top: auto;
}

.current-sale-price {
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.mrp-crossed {
    color: #565959;
    font-size: 12px;
    margin-left: 5px;
    text-decoration: line-through;
}
.products-slider {
    overflow: hidden;
    width: 100vw;
    position: relative;
    margin-left: calc(-50vw + 50%);
}

.products-track {
    display: flex;
    gap: 15px;
    width: max-content;
    animation: scrollLeft 18s linear infinite;
}

/* Smooth infinite right-to-left scroll */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.products-slider:hover .products-track {
    animation-play-state: paused;
}

/* Keep cards fixed size */
.premium-product-card {
    min-width: 215px;
    flex-shrink: 0;
}

/* ==========================================================================
   PRODUCTION READY FULL-WIDTH MASTER LAYOUT
   ========================================================================== */
.landing-fullwidth-container {
    width: 100%;
    max-width: 1400px; /* Laptop/Desktop monitor ki poori screen width use karega */
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #ffffff;
}

/* Global Section Header Style */
.global-section-heading {
    font-size: 24px;
    font-weight: 700;
    color: #5e17eb; /* Core Purple Theme */
    text-align: center;
    margin-bottom: 35px;
    text-transform: none;
}

/* ==========================================================================
   STYLE 1: SHOP BY EXPERIENCE (Circles Rows)
   ========================================================================== */
.experience-section {
    margin-bottom: 70px;
}

.experience-circle-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap; /* Screen choti hone par blocks auto fold ho jayenge */
}

.experience-circle-card {
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

    .experience-circle-card:hover {
        transform: translateY(-8px);
    }

.circle-frame {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Background Gradients Assumed from Image Slots */
.frame-blue {
    background: linear-gradient(135deg, #74ebd5 0%, #9ecefa 100%);
}

.frame-pink {
    background: linear-gradient(135deg, #ff758c 0%, #ff7eb3 100%);
}

.frame-orange {
    background: linear-gradient(135deg, #ff9900 0%, #ff5e00 100%);
}

.frame-purple {
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
}

.circle-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Images perfect circle frame me stretch nahi hongi */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Center Blur Overlay Text Card Box */
.circle-overlay-text {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    color: #111111;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 80%;
}
/* ==========================================================================
   STYLE 3: SEX TOY DEALS (Tall Promo Cards Grid)
   ========================================================================== */
.deals-flex-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .deals-flex-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .deals-flex-grid {
        grid-template-columns: 1fr;
    }
}

.promo-tall-card {
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    height: 480px;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* Background card slots matching colors screenshot 3 */
.item-hotpink {
    background: linear-gradient(180deg, #ec008c 0%, #fc67fa 100%);
}

.item-softpink {
    background: linear-gradient(180deg, #ff409f 0%, #ff94c9 100%);
}

.item-cyan-blue {
    background: linear-gradient(180deg, #00b4db 0%, #0083b0 100%);
}

.item-gold-orange {
    background: linear-gradient(180deg, #f857a6 0%, #ff5858 100%);
}

/* Top Badge Badge items inside cards */
.promo-round-badge {
    background-color: #ffffff;
    color: #ec008c;
    font-weight: 800;
    font-size: 11px;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 3;
}

    .promo-round-badge.badge-coral {
        color: #ff5858;
    }

/* Image containment boxes */
.promo-image-holder {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

    .promo-image-holder img {
        max-width: 90%;
        max-height: 100%;
        object-fit: contain;
        filter: drop-shadow(0px 10px 15px rgba(0,0,0,0.15));
        transition: transform 0.3s ease;
    }

.promo-tall-card:hover .promo-image-holder img {
    transform: scale(1.06);
}

/* Bottom Text Content Area Blocks */
.promo-card-content {
    width: 100%;
    z-index: 3;
}

    .promo-card-content h3 {
        font-size: 22px;
        font-weight: 700;
        margin: 0 0 5px 0;
    }

    .promo-card-content p {
        font-size: 14px;
        margin: 0 0 20px 0;
        color: rgba(255, 255, 255, 0.9);
    }

.sub-brand-logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Action Buttons Styles inside Cards elements structure */
.promo-action-btn {
    display: block;
    width: 100%;
    padding: 12px 0;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

    .promo-action-btn:active {
        transform: scale(0.98);
    }

/* Individual button themes matching labels content */
.button-pink-style {
    background-color: #ffffff;
    color: #ec008c;
}

.button-white-style {
    background-color: #ffffff;
    color: #ff409f;
}

.button-blue-style {
    background-color: #ffffff;
    color: #0083b0;
}

.button-orange-style {
    background-color: #ffffff;
    color: #ff5858;
}

    .button-pink-style:hover, .button-white-style:hover,
    .button-blue-style:hover, .button-orange-style:hover {
        background-color: #f5f5f5;
    }

/* ==========================================================================
   SECTION 5 & 6: SATISFACTION BANNER & SEO TEXT
   ========================================================================== */
.satisfaction-banner-section {
    margin-top: 50px;
    margin-bottom: 40px;
}

.purple-satisfaction-banner {
    background-color: #5e17eb; /* Exact Lovehoney Purple */
    height: 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.banner-left-text h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

/* Guarantee Badge Sticker Effect */
.banner-right-seal {
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-seal {
    width: 120px;
    height: 120px;
    background-color: #ff3b30; /* Red Badge background */
    border: 3px dashed #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    transform: rotate(-10deg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.seal-top {
    font-size: 10px;
    letter-spacing: 1px;
}

.seal-middle {
    font-size: 20px;
    line-height: 0.95;
    margin: 4px 0;
}

.seal-bottom {
    font-size: 9px;
    letter-spacing: 0.5px;
}

/* Trustpilot Ribbon Style Bar */
.trustpilot-bar {
    background-color: #00041a; /* Dark Navy-Black */
    color: #ffffff;
    padding: 12px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 13px;
}

.trustpilot-stars {
    display: flex;
    gap: 2px;
}

.tp-star {
    background-color: #00b67a; /* Trustpilot Green */
    color: white;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.trustpilot-bar a {
    color: #ffffff;
    text-decoration: underline;
}

.tp-logo {
    font-weight: bold;
    margin-left: 10px;
}

.tp-green-star {
    color: #00b67a;
    font-size: 15px;
}

/* SEO Article Styles */
.seo-articles-section {
    padding: 20px 10px;
    text-align: left;
}

.seo-article-block h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111111;
    margin-top: 30px;
    margin-bottom: 15px;
}

.seo-article-block h4 {
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    margin-top: 20px;
    margin-bottom: 10px;
}

.seo-article-block p {
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 15px;
}

.seo-article-block a {
    color: #5e17eb;
    text-decoration: underline;
}
/* ==========================================================================
   SECTION 7: SEX TOY GUIDES CARDS (4 Color blocks with patterns)
   ========================================================================== */
.toy-guides-section {
    margin-top: 50px;
    margin-bottom: 50px;
}

.guides-main-title {
    font-size: 22px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 8px;
}

.guides-sub-title {
    font-size: 14px;
    color: #555555;
    margin-bottom: 25px;
}

.guides-color-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .guides-color-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.guide-tile {
    height: 240px;
    border-radius: 4px;
    display: flex;
    align-items: flex-end;
    padding: 25px;
    text-decoration: none;
    color: #ffffff;
    box-sizing: border-box;
    transition: transform 0.2s ease;
}

    .guide-tile:hover {
        transform: translateY(-4px);
    }

.guide-tile-content {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
}
/* Background Patterns placeholders matching your image grids */
.tile-zigzag-pink {
    background: #ff007f linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
}
.tile-wave-orange {
    background: #ff6a00 linear-gradient(-45deg, rgba(0,0,0,0.05) 25%, transparent 25%, transparent 50%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.05) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
}
.tile-dots-blue {
    background: #0083b0;
    position: relative;
}

    .tile-dots-blue::before {
        content: "• • • • •";
        font-size: 32px;
        opacity: 0.15;
        position: absolute;
        top: 20px;
        left: 20px;
    }

.tile-stripes-green {
    background: #27ae60 linear-gradient(90deg, rgba(255,255,255,0.07) 50%, transparent 50%);
    background-size: 20px 20px;
}

/* Footer Link Strip button */
.view-all-guides-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #dcdcdc;
    padding: 14px 20px;
    border-radius: 4px;
    color: #5e17eb;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    margin-top: 20px;
    transition: background 0.2s;
}

    .view-all-guides-btn:hover {
        background-color: #f9f9f9;
    }

.arrow-icon {
    font-size: 12px;
    color: #888888;
}
/* ==========================================================================
   SECTION 8: SEX TOY FAQs STYLE
   ========================================================================== */
.faq-accordion-section {
    margin-top: 50px;
    margin-bottom: 60px;
    font-family: Arial, sans-serif;
    text-align: left;
}

.faq-main-heading {
    font-size: 20px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 25px;
}

.faq-wrapper {
    border-top: 1px solid #cccccc; /* Top main border line */
}

.faq-item {
    border-bottom: 1px solid #cccccc; /* Screenshot jaisi grey line separation */
}

/* Accordion Accordion Button Box */
.faq-toggle-btn {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    font-size: 14px;
    font-weight: 600;
    color: #111111;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
}

    .faq-toggle-btn:hover {
        color: #5e17eb; /* Hover hone par purple feedback */
    }

.faq-icon {
    font-size: 18px;
    font-weight: 400;
    color: #111111;
    transition: transform 0.3s ease;
}

/* Open states content smooth transitions */
.faq-answer-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1); /* Slide effect pattern */
}

    .faq-answer-panel p {
        font-size: 14px;
        line-height: 1.6;
        color: #333333;
        padding: 0 0 18px 0;
        margin: 0;
    }

/* Active Open modification dynamic classes rules toggled by JS */
.faq-item.faq-active .faq-icon {
    transform: rotate(45deg); /* Plus target sign turns into an X close mark */
}

.faq-item.faq-active .faq-answer-panel {
    max-height: 500px; /* Expands panels smoothly */
    transition: max-height 0.3s ease-in-out;
}

/* =========================
   GLOBAL PAGE LAYOUT
========================= */

.toys-page,
.category-container,
.info-page-container {
    width: 100%;
    max-width: 100%;
    padding-left: 32px;
    padding-right: 32px;
    box-sizing: border-box;
}

/* Large Screens */

@media (min-width: 1600px) {
    .toys-page,
    .category-container,
    .info-page-container {
        padding-left: 55px;
        padding-right: 55px;
    }
}

/* Mobile */

@media (max-width: 768px) {
    .toys-page,
    .category-container,
    .info-page-container {
        padding-left: 18px;
        padding-right: 18px;
    }
}

/* =========================
   HERO SECTION
========================= */

.page-hero {
    padding-top: 25px;
    padding-bottom: 35px;
    border-bottom: 1px solid #ececec;
    margin-bottom: 35px;
}

.breadcrumb {
    font-size: 13px;
    color: #777;
    margin-bottom: 18px;
}

    .breadcrumb a {
        text-decoration: none;
        color: #777;
        transition: 0.2s;
    }

        .breadcrumb a:hover {
            color: #000;
        }

.hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero-description {
    max-width: 1050px;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* =========================
   MAIN LAYOUT
========================= */

.toys-layout {
    display: flex;
    gap: 38px;
    align-items: flex-start;
}



/* =========================
   PRODUCTS SECTION
========================= */

.products-section {
    flex: 1;
    min-width: 0;
}

/* TOPBAR */

.products-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.product-count {
    font-size: 18px;
    font-weight: 700;
}

.sort-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .sort-box label {
        font-size: 14px;
        color: #444;
    }

    .sort-box select {
        width: 180px;
        height: 44px;
        border-radius: 40px;
        border: 1px solid #d5d5d5;
        padding: 0 16px;
        background: #fff;
        outline: none;
        font-size: 14px;
    }

/* =========================
   PRODUCTS GRID
========================= */

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

/* =========================
   PRODUCT CARD
========================= */

.product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.3s ease;
    border: 1px solid #efefef;
}

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    }

/* IMAGE */

.product-image {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #f5f5f5;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.4s;
    }

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* BADGES */

.badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: #6d28d9;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

    .badge.purple {
        padding: 7px 14px;
        border-radius: 30px;
    }

    .badge.circle {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1.2;
        text-align: center;
        padding: 8px;
    }

/* SELLING TAG */

.selling-tag {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: #3fa652;
    color: #fff;
    padding: 7px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

/* CONTENT */

.product-content {
    padding: 18px;
}

/* RATING */

.rating {
    color: #6d28d9;
    font-size: 14px;
    margin-bottom: 10px;
}

    .rating span {
        color: #777;
    }

/* TITLE */

.product-card h4 {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
    margin-bottom: 18px;
    min-height: 72px;
    color: #111;
}

/* PRICE */

.price-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: #000;
}

.old-price {
    display: block;
    margin-top: 5px;
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
}

.price-box i {
    font-size: 19px;
    color: #777;
    cursor: pointer;
}

/* BUTTON */

.product-card button {
    width: 100%;
    height: 46px;
    border: none;
    border-radius: 40px;
    background: #6d28d9;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

    .product-card button:hover {
        background: #581db0;
    }

/* =========================
   CATEGORIES GRID
========================= */

.categories-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 24px;
    text-align: center;
    margin-bottom: 45px;
}

.category-item {
    text-decoration: none;
    color: inherit;
}

.circle-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(to bottom,#60a5fa,#2563eb);
    padding: 4px;
    transition: 0.3s;
}

    .circle-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

.category-item:hover .circle-wrapper {
    transform: scale(1.05);
}

.category-name {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}
/* =========================
   LOAD MORE
========================= */
.load-more-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 55px 20px;
}
.progress-text {
    font-size: 13px;
    margin-bottom: 14px;
    color: #444;
}
.progress-bar-container {
    width: 100%;
    max-width: 360px;
    height: 6px;
    background: #e7daf8;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
}
.progress-bar-fill {
    width: 9%;
    height: 100%;
    background: #6d28d9;
}
.btn-load-more {
    background: #fff;
    border: 1.5px solid #000;
    border-radius: 30px;
    padding: 12px 34px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

    .btn-load-more:hover {
        background: #000;
        color: #fff;
    }

/* =========================
   BOTTOM FEATURES
========================= */

.bottom-features {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
    margin-top: 40px;
}
.feature-box {
    background: #f1f1f1;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: 0.3s;
}

    .feature-box:hover {
        background: #e5e5e5;
    }
.feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .feature-icon i {
        color: #6d28d9;
    }

.feature-text h4 {
    font-size: 13px;
    line-height: 1.5;
}

/* =========================
   INFO SECTION
========================= */

.info-page-container {
    padding-top: 45px;
    padding-bottom: 50px;
}

.info-section {
    margin-bottom: 42px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #000;
}
.section-text {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 16px;
    max-width: 1450px;
}
.text-link {
    color: #000;
    text-decoration: underline;
    font-weight: 500;
}

    .text-link:hover {
        color: #666;
    }

/* =========================
   FAQ SECTION
========================= */
.faq-accordion-section {
    margin-top: 50px;
}
.faq-main-heading {
    font-size: 30px;
    margin-bottom: 24px;
}
.faq-item {
    border-bottom: 1px solid #e7e7e7;
}
.faq-toggle-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.faq-answer-panel {
    padding-bottom: 20px;
    color: #555;
    line-height: 1.8;
}
/* =========================
   VIEW ALL BUTTON
========================= */
.view-all-guides-btn {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #000;
    border: 1px solid #000;
    padding: 12px 24px;
    border-radius: 40px;
    transition: 0.3s;
}

    .view-all-guides-btn:hover {
        background: #000;
        color: #fff;
    }

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1400px) {
    .products-grid {
        grid-template-columns: repeat(3,1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(6,1fr);
    }
}

@media(max-width:1100px) {

    .toys-layout {
        flex-direction: column;
    }

    .filter-sidebar {
        width: 100%;
        position: static;
    }

    .products-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(4,1fr);
    }

    .bottom-features {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .hero-title {
        font-size: 34px;
    }

    .products-topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 18px;
    }

    .bottom-features {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 300px;
    }

    .section-title {
        font-size: 24px;
    }

    .faq-main-heading {
        font-size: 26px;
    }
}
/* =========================================================
   FOOTER MAIN WRAPPER
========================================================= */
.site-footer {
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #ebebeb;
    margin-top: 70px;
}

    /* INNER CONTAINER */

    .site-footer .footer-container {
        max-width: 1450px;
        margin: 0 auto;
        padding: 60px 45px 30px;
        box-sizing: border-box;
    }
/* =========================================================
   TOP GRID
========================================================= */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 55px;
    padding-bottom: 45px;
    border-bottom: 1px solid #ececec;
}
/* COLUMN */
.footer-column {
    min-width: 0;
}

/* HEADING */
.footer-heading {
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 20px;
    letter-spacing: 0.2px;
}

/* LINKS */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-list li {
        margin-bottom: 13px;
    }

    .footer-list a {
        text-decoration: none;
        color: #555555;
        font-size: 13px;
        line-height: 1.5;
        transition: 0.2s ease;
    }

        .footer-list a:hover {
            color: #000000;
            text-decoration: underline;
        }

/* =========================================================
   BOTTOM AREA
========================================================= */
.footer-bottom-row {
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* =========================================================
   ACCESSIBILITY BUTTON
========================================================= */

.accessibility-btn {
    width: 82px;
    height: 82px;
    border-radius: 14px;
    border: none;
    background: #6d28d9;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
}

    .accessibility-btn:hover {
        background: #5b21b6;
        transform: translateY(-2px);
    }

/* PAYMENT ICONS */
.payment-icons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.payment-card {
    min-width: 68px;
    height: 42px;
    padding: 0 14px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    font-size: 13px;
    font-weight: 700;
    color: #222222;
    transition: 0.25s ease;
}

    .payment-card:hover {
        transform: translateY(-2px);
    }

    /* PAYPAL */

    .payment-card .fa-paypal {
        color: #003087;
        font-size: 20px;
    }

/* VISA */

.visa-card {
    color: #1a1f71;
    letter-spacing: 1px;
    font-weight: 800;
}

/* MASTERCARD */

.mastercard-card {
    position: relative;
    width: 72px;
}

.mc-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: block;
}

    .mc-circle.red {
        background: #eb001b;
        margin-right: -6px;
        z-index: 2;
    }

    .mc-circle.orange {
        background: #f79e1b;
    }

/* APPLE PAY */
.apple-card .fa-apple {
    font-size: 18px;
}
.apple-card span {
    font-weight: 700;
}
/* GPAY */
.gpay-card {
    color: #4285f4;
    font-weight: 800;
}
/* =========================================================
   TRUSTPILOT
========================================================= */
.trustpilot-widget {
    text-align: right;
}

.tp-stars {
    font-size: 15px;
    font-weight: 700;
    color: #00b67a;
    margin-bottom: 4px;
}

.tp-score {
    font-size: 13px;
    color: #333333;
    margin-bottom: 3px;
}

.tp-reviews {
    font-size: 13px;
    color: #555555;
    text-decoration: underline;
}
/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px) {

    .footer-links-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 40px;
    }
}

@media(max-width:768px) {

    .site-footer .footer-container {
        padding: 45px 22px 25px;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .payment-icons {
        justify-content: center;
    }

    .trustpilot-widget {
        text-align: center;
    }
}

.brand-shop-container,
.style-section-container,
.size-banner-container,
.best-selling-carousel,
.deals-section,
.shop-by-category,
.faq-accordion-section,
.bottom-features,
.view-all-guides-btn,
.site-footer {
    width: 100%;
    max-width: 1450px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

/* =========================================================
   MAIN PAGE SIDE SPACING
========================================================= */

.toys-page {
    padding-left: 28px;
    padding-right: 28px;
}

/* =========================================================
   HERO SECTION
========================================================= */

.page-hero {
    padding-top: 30px;
    padding-bottom: 30px;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #111;
}

.hero-description {
    max-width: 950px;
    line-height: 1.8;
    color: #555;
    font-size: 15px;
}

/* =========================================================
   SIZE BANNER
========================================================= */

.size-banner-container {
    position: relative;
    padding: 70px 30px;
    border-radius: 18px;
    overflow: hidden;
    margin-top: 30px;
    margin-bottom: 55px;
    background: linear-gradient(135deg, #ff2a54 0%, #ff1a8c 50%, #b816d9 100%);
}

    .size-banner-container::before {
        content: '';
        position: absolute;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: rgba(255,255,255,0.10);
        top: -120px;
        left: 18%;
    }

    .size-banner-container::after {
        content: '';
        position: absolute;
        width: 250px;
        height: 250px;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
        bottom: -100px;
        right: 5%;
    }

.size-banner-title {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 35px;
}

.size-button-group {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.size-pill {
    background: #fff;
    color: #111;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    min-width: 110px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

    .size-pill:hover {
        transform: translateY(-4px);
        background: #fafafa;
    }

.plus-size {
    color: #c2185b;
}

/* =========================================================
   BRAND SECTION
========================================================= */

.brand-shop-container {
    margin-top: 70px;
    margin-bottom: 70px;
    padding: 0 10px;
}

.brand-shop-heading {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 28px;
    color: #111;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.brand-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 4 / 4.5;
    display: block;
}

    .brand-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.4s;
    }

    .brand-card:hover img {
        transform: scale(1.06);
    }

.brand-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.70), rgba(0,0,0,0.05));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
}

.brand-logo-text {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 3px 10px rgba(0,0,0,0.45);
}

/* =========================================================
   STYLE SECTION
========================================================= */

.style-section-container {
    margin-top: 70px;
    margin-bottom: 70px;
}

.style-main-heading {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #111;
}

.style-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.style-card {
    border-radius: 24px;
    overflow: hidden;
    padding: 45px 22px 35px;
    text-align: center;
    color: #fff;
}

.style-card-blue {
    background: linear-gradient(180deg, #2196f3, #1565c0);
}

.style-card-orange {
    background: linear-gradient(180deg, #ff9800, #ef6c00);
}

.style-card-pink {
    background: linear-gradient(180deg, #ff2a8b, #c2185b);
}

.style-card-purple {
    background: linear-gradient(180deg, #7b1fa2, #4a148c);
}

.image-circle-wrapper {
    width: 210px;
    height: 210px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(255,255,255,0.25);
}

    .image-circle-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.style-card-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.style-card-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.95;
}

.style-shop-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    color: #fff;
    border: 2px solid #fff;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s;
}

    .style-shop-btn:hover {
        background: #fff;
        color: #111;
    }

/* =========================================================
   GUIDE SECTION
========================================================= */

.guides-banner-container {
    margin-top: 18px;
    border-radius: 24px;
    padding: 45px 25px;
    background: linear-gradient(135deg, #5e17eb, #c2185b);
    text-align: center;
}

.guides-banner-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 28px;
}

.guides-buttons-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.guide-pill-btn {
    background: #fff;
    color: #111;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
}

    .guide-pill-btn:hover {
        transform: translateY(-3px);
    }

/* Core Section Container */
.explore-more-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    box-sizing: border-box;
}

/* Section Header Text */
.explore-main-heading {
    font-size: 24px;
    font-weight: 700;
    color: #4a148c; /* Branding Purple Color */
    text-align: center;
    margin-bottom: 24px;
}

/* --- Top Grid Layout --- */
.explore-top-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px; /* Tight gaps between blocks as referenced */
    margin-bottom: 4px;
}

/* Individual Top Cards Styling Rules */
.explore-top-card {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    box-sizing: border-box;
    transition: opacity 0.2s ease-in-out;
}

    .explore-top-card:hover {
        opacity: 0.9; /* Slight feedback on interactive hover */
    }

/* Color Gradients for 4 top block layouts */
.card-orange {
    background: linear-gradient(135deg, #ff6d00 0%, #ffab00 100%);
}

.card-blue {
    background: linear-gradient(135deg, #0091ea 0%, #00b0ff 100%);
}

.card-pink {
    background: linear-gradient(135deg, #f50057 0%, #ff4081 100%);
}

.card-purple {
    background: linear-gradient(135deg, #4a148c 0%, #7c4dff 100%);
}


/* --- Bottom Hero Combo Block Layout --- */
.explore-bottom-banner {
    display: flex;
    width: 100%;
    min-height: 280px; /* Pehle 380px tha */
    max-height: 320px;
    overflow: hidden;
    border-radius: 8px;
    box-sizing: border-box;
}

/* LEFT IMAGE SIDE */
.banner-image-side {
    flex: 1;
    background-color: #43a047;
    background-image: repeating-conic-gradient( from 0deg, rgba(255,255,255,0.08) 0deg 15deg, transparent 15deg 30deg );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding-top: 10px;
}

    .banner-image-side img {
        max-width: 90%;
        max-height: 90%;
        object-fit: contain;
        display: block;
        transform: scale(0.95); /* Thoda smaller */
    }

/* RIGHT CONTENT SIDE */
.banner-text-side {
    flex: 1;
    background-color: #5118ac;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    color: #ffffff;
    text-align: center;
    box-sizing: border-box;
}

/* TITLE */
.promo-main-title {
    font-size: 30px; /* Pehle 38px */
    font-weight: 700;
    margin: 0 0 10px 0;
    max-width: 340px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* SUBTITLE */
.promo-sub-title {
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 24px 0;
    opacity: 0.9;
}

/* BUTTON */
.promo-shop-btn {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    padding: 9px 28px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.2s ease-in-out;
}

    .promo-shop-btn:hover {
        background-color: #ffffff;
        color: #5118ac;
        border-color: #ffffff;
    }

/* ---------- TABLET ---------- */
@media (max-width: 992px) {

    .explore-bottom-banner {
        min-height: 240px;
    }

    .promo-main-title {
        font-size: 24px;
    }

    .banner-text-side {
        padding: 24px;
    }
}

/* ---------- MOBILE ---------- */
@media (max-width: 640px) {

    .explore-bottom-banner {
        flex-direction: column;
        max-height: unset;
    }

    .banner-image-side {
        height: 180px;
    }

    .banner-text-side {
        padding: 24px 18px;
    }

    .promo-main-title {
        font-size: 22px;
    }

    .promo-sub-title {
        font-size: 14px;
    }
}
/* 1. Bold + Italic Premium Look */
.font-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
    letter-spacing: 1px;
    color: #fff;
}

/* 2. Script (Handwriting feel) */
.font-script {
    font-family: "Dancing Script", cursive;
    font-size: 20px;
    color: #ffe6f0;
    letter-spacing: 0.5px;
}

/* 3. Elegant Serif */
.font-serif {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    color: #ffffff;
}

/* 4. Clean Sans Modern */
.font-sans-clean {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #f5f5f5;
}

/* 5. Serif Italic Luxury */
.font-serif-italic {
    font-family: "Georgia", serif;
    font-style: italic;
    font-weight: 600;
    color: #fff3cd;
}

/* 6. Impact Style (Strong Bold) */
.font-impact-style {
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-weight: 900;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
}

/* 7. Modern Premium Clean */
.font-modern {
    font-family: "Segoe UI", sans-serif;
    font-weight: 700;
    color: #e0f7fa;
    letter-spacing: 1px;
}