
    /* ---- GLOBAL & ROOT STYLES ---- */
    :root {
        --primary-color: #2d2753;
        --secondary-color: #e14e82;
        --accent-color: #FFD700;
        --text-dark: #212529;
        --text-light: #f8f9fa;
        --body-bg: #ffffff;
        --section-bg-light: #f9f4ff;
    }

    html, body {
        font-family: 'Poppins', sans-serif;
        background-color: var(--body-bg);
        color: var(--text-dark);
        width: 100%;
        overflow-x: hidden;
    }

    h1, h2, h3, h4, .playfair-font {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
    }

    .section-padding {
        padding: 80px 0;
    }

    .section-title {
        margin-bottom: 60px;
    }

    .section-title h2 {
        font-size: 2.8rem;
        color: var(--primary-color);
    }

    .section-title p {
        max-width: 600px;
        margin: 0 auto;
        color: #6c757d;
    }

    /* ---- 1. HEADER & NAVBAR ---- */
    .navbar {
        background-color: var(--primary-color);
        padding: 1rem 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .navbar .navbar-brand {
        color: var(--text-light);
        font-size: 1.5rem;
    }

    .navbar .nav-link {
        color: rgba(255, 255, 255, 0.8);
        font-weight: 500;
        margin: 0 0.5rem;
        transition: color 0.3s;
    }

    .navbar .nav-link:hover,
    .navbar .nav-link.active {
        color: var(--text-light);
    }

    .btn-custom-outline {
        border: 2px solid var(--accent-color);
        color: var(--accent-color);
        border-radius: 50px;
        padding: 0.5rem 1.5rem;
        font-weight: 600;
        transition: all 0.3s;
    }

    .btn-custom-outline:hover {
        background-color: var(--accent-color);
        color: var(--primary-color);
    }

    /* ---- 2. BANNER SLIDER SECTION ---- */
    #bannerSlider {
        background-color: #2d2753;
		margin-top:80px !important;
    }

    .carousel-item .row {
        min-height: 90vh;
    }

    .banner-image {
        background-size: cover;
        background-position: center;
        min-height: 300px;
    }

    .banner-content {
        background-color: #2d2753;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 3rem;
    }

    .banner-content .content-box {
        max-width: 750px;
        margin-top: 90px;
    }

    .banner-content .special-offer {
        color: #FFD700;
        font-weight: 500;
        letter-spacing: 1px;
        font-size: 2.5rem;
    }

    .banner-content h1 {
        font-family: 'Playfair Display', serif;
        font-size: 3.5rem;
        color: #fff;
    }

    .banner-content p {
        font-size: 1.1rem;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.8);
    }

    .btn-custom-gold {
        background-color: #FFD700;
        color: #800000;
        border-radius: 50px;
        padding: 0.8rem 2.5rem;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s;
        border: none;
    }

    .btn-custom-gold:hover {
        background-color: #fff;
        color: #800000;
        transform: translateY(-3px);
    }

    .carousel-item {
        transition: transform .6s ease-in-out;
    }

    .carousel-item .content-box {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeIn .6s ease-out .5s forwards;
    }

    @keyframes fadeIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Banner Arrow Styles */
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0.7;
        transition: opacity 0.3s, background-color 0.3s;
    }

    .carousel-control-prev {
        left: 30px;
    }

    .carousel-control-next {
        right: 30px;
    }

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        opacity: 1;
        background-color: rgba(255, 255, 255, 0.2);
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        background-image: none;
        font-size: 1.5rem;
        font-weight: bold;
    }

    .carousel-control-prev-icon::before {
        content: '<';
    }

    .carousel-control-next-icon::before {
        content: '>';
    }

   /* ---- 3. FEATURES SECTION ---- */
.features-section {
    background-color: var(--section-bg-light);
}

.feature-box {
    text-align: center;
    padding: 20px;
}

/* New styles for the icon background circle */
.feature-box .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px auto;
    background-color: var(--accent-color); /* Yellow background */
    border-radius: 50%; /* Makes it a circle */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Styles for the icon character itself */
.feature-box .icon i {
    font-size: 2rem;
    color: var(--primary-color); /* Dark purple icon color */
}

.feature-box h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Optional: Hover effect for the circle */
.feature-box:hover .icon {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
    /* ---- 4. ABOUT US SECTION ---- */
    .about-eyebrow {
        color: var(--secondary-color);
        font-weight: bold;
        font-size: 0.9rem;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    #about p.text-secondary {
        text-align: justify;
    }

    .about-features li {
        color: #555;
        margin-bottom: 12px;
        font-size: 1.1rem;
    }

    .about-features i {
        color: var(--primary-color);
        background-color: var(--section-bg-light);
        border-radius: 50%;
        width: 35px;
        height: 35px;
        line-height: 35px;
        text-align: center;
        margin-right: 15px;
    }

    /* ---- 5. COLLECTIONS SECTION ---- */
    .collections-section {
        background-color: var(--section-bg-light);
    }

    .product-card {
        background: var(--body-bg);
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(74, 14, 99, 0.15);
    }

    .product-card img {
        width: 100%;
        height: 280px;
        object-fit: cover;
    }

    .product-card .card-body {
        padding: 25px;
    }

    .product-card .card-title {
        color: var(--text-dark);
        font-weight: 600;
        margin-bottom: 5px;
        font-size: 1rem;
        text-transform: uppercase;
    }
    
    .product-card .product-subtitle {
        color: var(--secondary-color);
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .product-card .price {
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--secondary-color);
    }

    .product-card .btn-outline-primary {
        border-color: var(--primary-color);
        color: var(--primary-color);
        border-radius: 50px;
    }

    .product-card .btn-outline-primary:hover {
        background-color: var(--primary-color);
        color: var(--text-light);
    }
    
    /* Collections Carousel Arrow Styles */
    #collections .container {
        position: relative;
    }

    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        width: 50px;
        height: 50px;
        background: #fff !important;
        border-radius: 50% !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .owl-carousel .owl-nav button.owl-prev {
        left: -25px;
    }

    .owl-carousel .owl-nav button.owl-next {
        right: -25px;
    }

    .owl-carousel .owl-nav button.owl-prev:hover,
    .owl-carousel .owl-nav button.owl-next:hover {
        background: var(--primary-color) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .owl-carousel .owl-nav button.owl-prev i,
    .owl-carousel .owl-nav button.owl-next i {
        color: var(--primary-color);
        font-size: 1.2rem;
        transition: color 0.3s;
    }

    .owl-carousel .owl-nav button.owl-prev:hover i,
    .owl-carousel .owl-nav button.owl-next:hover i {
        color: #fff;
    }

/* ---- 6. TESTIMONIALS SECTION (Final Even Height Fix) ---- */
.testimonials-section {
    background: var(--primary-color);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.testimonials-section .section-title h2 {
    color: var(--text-light);
}

.testimonials-section .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

/* This is the final, combined style for the card */
.testimonial-carousel .testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* This makes the quote paragraph take up all available extra space */
.testimonial-carousel .testimonial-card .quote {
    flex-grow: 1;
    font-style: italic;
    font-size: 1.1rem; /* You can adjust this size if needed */
    
    /* New styles for even content */
    min-height: 150px; /* Set a minimum height for the quote area */
    max-height: 150px; /* Set a maximum height */
    overflow: hidden; /* Hide any content that overflows */
}

/* Styles for the image, name, etc. remain the same */
.testimonial-card img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80px !important;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--accent-color);
    margin-bottom: 20px;
}

.testimonial-card .name {
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 20px;
}

.testimonials-section .big-quote-icon {
    position: absolute;
    top: -20px;
    left: -30px;
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.testimonial-carousel .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.4) !important;
}

.testimonial-carousel .owl-dots .owl-dot.active span {
    background: var(--accent-color) !important;
}
    /* ---- 7. CONTACT & FOOTER ---- */
    .contact-section {
        background-color: var(--section-bg-light);
    }

    .contact-info-box {
        background: var(--primary-color);
        color: var(--text-light);
        padding: 40px;
        border-radius: 15px;
        height: 100%;
    }

    .contact-info-box h3 {
        color: var(--text-light);
    }

    .contact-info-box p,
    .contact-info-box a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
    }

    .contact-info-box .icon {
        font-size: 1.5rem;
        color: var(--accent-color);
        margin-right: 15px;
    }

    .social-links a {
        color: rgba(255, 255, 255, 0.8);
        font-size: 1.5rem;
        margin-right: 15px;
        transition: all 0.3s;
    }

    .social-links a:hover {
        color: var(--accent-color);
        transform: scale(1.2);
    }

    .form-control {
        border-radius: 50px;
        padding: 12px 20px;
        background: #fff;
        border: 1px solid #ddd;
    }

    .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.25rem rgba(74, 14, 99, 0.25);
    }

    textarea.form-control {
        border-radius: 20px;
    }

    .btn-custom-yellow {
        background-color: #ffd200;
        color: #3a2e5d;
        border-radius: 50px;
        padding: 0.8rem 2.5rem;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s;
        border: none;
    }
    
    .btn-custom-yellow:hover {
        background-color: #3a2e5d;
        color: #fff;
        transform: translateY(-3px);
    }

    .map-link {
        text-decoration: underline !important;
        font-weight: 500;
    }

    .map-link:hover {
        color: var(--accent-color) !important;
    }
    
    footer {
        background: var(--accent-color);
        color: #000;
        padding: 20px 0;
    }
    
    footer .footer-link {
        color: #000;
        text-decoration: none;
        margin-right: 20px;
        transition: color 0.3s;
    }
    
    footer .footer-link:hover {
        color: var(--primary-color);
    }

    /* ---- WIDGETS (Offcanvas, Social, Back-to-Top) ---- */
    .offcanvas {
        background-color: #000;
    }

    .offcanvas-body .navbar-nav .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
        color: rgba(255, 255, 255, 0.7);
    }

    .offcanvas-body .navbar-nav .nav-link:hover {
        color: #fff;
    }

    .offcanvas-body .navbar-nav .nav-link.active {
        color: var(--accent-color);
        font-weight: bold;
    }

    .offcanvas-contact-info {
        margin-top: 40px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .offcanvas-contact-info h5 {
        color: #fff;
    }

    .offcanvas-contact-info p {
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 5px;
    }

    .offcanvas-contact-info a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
    }

    .offcanvas-contact-info a:hover {
        color: var(--accent-color);
    }

    .back-to-top {
        position: fixed;
        bottom: 25px;
        right: 25px;
        width: 50px;
        height: 50px;
        background-color: var(--primary-color);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        text-decoration: none;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s;
    }

    .back-to-top:hover {
        background-color: var(--primary-color);
        color: #fff;
    }

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
    }

    .social-widget-fixed {
        position: fixed;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        z-index: 1000;
        display: flex;
        flex-direction: column;
    }

    .social-widget-fixed .widget-item {
        width: 50px;
        height: 50px;
        margin-bottom: 5px;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        text-decoration: none;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        transition: all 0.3s;
        box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1);
    }

    .social-widget-fixed .phone {
        background-color: #f44336;
    }

    .social-widget-fixed .whatsapp {
        background-color: #25D366;
    }

    .social-widget-fixed .instagram {
        background-color: #C13584;
    }

    .social-widget-fixed .facebook {
        background-color: #1877F2;
    }

    .social-widget-fixed .widget-item:hover {
        width: 60px;
        border-radius: 10px;
    }
    
    .promo-banner-section {
        padding: 0;
        overflow: hidden;
    }

    .promo-banner-section img {
        display: block;
    }

    /* ---- RESPONSIVE STYLES ---- */
    @media (max-width: 991px) {
        .banner-content h1 {
            font-size: 2.8rem;
        }

        .banner-image {
            width: 100%;
            height: 50vh;
            position: relative;
            margin-top: 50px;
        }

        .banner-content {
            min-height: 50vh;
            justify-content: center;
            text-align: center;
            background-color: #3a2e5d;
        }

        .banner-content .special-offer {
            font-size: 1.5rem;
        }

        .banner-content .content-box {
            margin: 0 auto;
        }

        .carousel-item .row {
            min-height: 100vh;
        }

        .carousel-control-prev,
        .carousel-control-next {
            top: 25vh;
        }
    }

    @media (max-width: 768px) {
        .section-title h2 {
            font-size: 2.2rem;
        }
    }
/* ---- BREADCRUMB SECTION FOR STATIC PAGES (with Responsive code) ---- */
.breadcrumb-section {
       background-color: var(--section-bg-light);
    padding-bottom: 95px;
    border-bottom: 1px solid #e0e0e0;
    padding-top: 162px;
}

.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.breadcrumb-item.active {
    color: #6c757d;
    font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--primary-color);
}

/* Responsive code for mobile */
@media (max-width: 767px) {
    .breadcrumb-item {
        font-size: 0.85rem; /* Makes font smaller on mobile */
    }
    .breadcrumb-section {
        padding-top: 110px; /* Reduces padding slightly on mobile */
		 padding-bottom: 30px; /* Reduces padding slightly on mobile */
    }
}

  /* ---- NEW STYLES FOR POLICY PAGE ---- */
        .policy-content {
            background: #fff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        .policy-content h2 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-top: 30px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        .policy-content h2::before {
            content: '◆';
            color: var(--secondary-color);
            font-size: 1rem;
            margin-right: 10px;
        }
        .policy-content p, .policy-content li {
            color: #555;
            line-height: 1.8;
        }
        .policy-content ul {
            list-style: none;
            padding-left: 0;
        }
        .policy-content ul li {
            padding-left: 25px;
            position: relative;
            margin-bottom: 10px;
        }
        .policy-content ul li::before {
            content: '◆';
            position: absolute;
            left: 0;
            top: 5px;
            color: var(--secondary-color);
            font-size: 0.8rem;
        }
        .page-title {
            color: var(--primary-color);
            margin-bottom: 40px;
            text-align: center;
        }