﻿/* =======================================
   0. ICONS
======================================= */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

/* =======================================
   1. ROOT VARIABLES (THEME TOKENS)
======================================= */

:root {
    /* Fonts */
    /*--font-body-family: "Lora", serif;*/
    --font-body-family: "Nunito Sans", serif;
    /*--font-heading-family: "Oswald", serif;*/
    --font-heading-family: "Nunito Sans", serif;
    /*"Playfair Display", serif;*/
    --font-label-family: "Oswald", sans-serif;
    --font-body-weight: 400;
    --font-body-weight-bold: 500;
    --font-heading-weight: 400;
    --font-heading-scale: 1.4;
    --font-body-scale: 1.1;
    --font-letter-spacing: 0.05rem;
    /* Colors */
    --color-bg-main: #4A2280;
    --color-bg-section-light: #fffcf0;
    --color-bg-section-soft: #f2edf9;
    --color-bg-footer: #000000;
    --color-bg-footer-inner: #171717;
    --color-primary: #2d1735; /* Deep purple */
    --color-primary-soft: #4a2256;
    --color-gold: #fcec93;
    --color-gold-deep: #b47233;
    --color-text-main: #6A0DAD;
    --color-text-main-light: #8E44C1;
    --color-text-soft: #2e1836;
    --color-muted: #797979;
    --color-border-soft: #ddd;
    --color-success: #2e7d32;
    /* Layout */
    --page-width: 160rem;
    --page-width-margin: 0rem;
    --container-max-width: 1200px;
    /* Cards & surfaces */
    --card-radius: 15px;
    --surface-radius: 10px;
    --badge-radius: 4rem;
    /* Shadows */
    --shadow-soft: 0 6px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 10px 30px rgba(0,0,0,0.15);
    /* Grid spacing */
    --spacing-sections-desktop: 45px;
    --spacing-sections-mobile: 25px;
    --grid-desktop-vertical-spacing: 8px;
    --grid-desktop-horizontal-spacing: 4px;
    /* Form elements */
    --inputs-radius: 6px;
    --inputs-border-width: 1px;
    --inputs-border-opacity: 0.55;
    /* Misc */
    --variant-pills-radius: 40px;
}

.sec-pad {
    padding: 3rem;
}
/* =======================================
   2. BASE RESET & TYPOGRAPHY
======================================= */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body-family);
    font-weight: var(--font-body-weight);
    font-size: calc(var(--font-body-scale) * 1rem);
    line-height: 1.55;
    color: var(--color-text-main);
    background-color: #ffffff;
    overflow-x: hidden;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* Headings */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading-family);
    font-weight: var(--font-heading-weight);
    color: var(--color-text-main);
    margin: 0;
    padding: 0;
}

.h2, h2 {
    font-size: calc(var(--font-heading-scale) * 2.4rem);
}

.h3, h3 {
    font-size: calc(var(--font-heading-scale) * 2.0rem);
}

.h4, h4 {
    font-size: calc(var(--font-heading-scale) * 1.6rem);
}

.h5, h5 {
    font-size: calc(var(--font-heading-scale) * 1.4rem);
}

.h6, h6 {
    font-size: calc(var(--font-heading-scale) * 1.0rem);
}

p {
    font-family: var(--font-body-family);
    font-size: calc(var(--font-body-scale) * 1.2rem);
    font-weight: var(--font-body-weight-bold);
    line-height: 1.65;
}

/* Utility text */
.about-menu img {
    height: 100px;
    width: auto;
}

.small-text {
    font-size: 0.85rem;
    color: #6b6b6b;
}

/* Containers & gaps */

.container-fluid {
    width: 93% !important;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .container {
        max-width: var(--container-max-width);
    }
}

.gaping {
    padding-top: 45px;
    padding-bottom: 0;
}

/* =======================================
   3. TOP BAR & MARQUEE
======================================= */

.header-colm-1 {
    width: 100%;
    padding: 10px;
    background-color: #fbeb91;
}

.marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 6px 0;
}

    .marquee .scroll {
        display: flex;
        width: 100%;
        animation: marqueeMove 15s linear infinite;
    }

    .marquee:hover .scroll {
        animation-play-state: paused;
    }

    .marquee .scroll div {
        white-space: nowrap;
    }

    .marquee h3.category {
        margin: 0;
        padding: 0 2rem;
        font-family: var(--font-body-family);
        color: var(--color-primary);
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

@keyframes marqueeMove {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

/* =======================================
   4. NAVBAR & HEADER ACTIONS
======================================= */

/* ====================================
   HEADER & NAV BASE
==================================== */
.sd-header {
    background: #ffffff;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 8999;
}

.sd-nav {
    text-align: left;
    gap: 30px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-header {
    width: 100%;
    padding: 0;
    margin: 0;
    display: block;
}

.sd-logo img {
    width: 59%;
    float: left;
}

.sd-logo img {
    height: 126px;
    width: auto;
    margin-bottom: 10px;
}

.search-input {
    width: 350px;
    padding: 12px 10px;
    font-size: 16px;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    transition: all 0.3s ease;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    border-Bottom: 2px solid #000;
}

    .search-input:focus {
        border-color: #4285f4;
        box-shadow: none;
    }

.search-button {
    position: absolute;
    right: 0;
    background-color: #0000;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 0;
    cursor: pointer;
    font-size: 16px;
    outline: none;
}

    .search-button:hover {
        background-color: #0000;
    }

.search-icon {
    width: 60px;
    position: absolute;
    right: 0;
    font-size: 18px;
    color: #757575;
    pointer-events: none;
}

/* Icons */
.sd-icons {
    float: left;
    text-align: right;
    display: flex;
    align-items: center;
    gap: 22px;
}

.sd-icon-link {
    font-size: 23px;
    color: #2d1735;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

    .sd-icon-link:hover {
        color: #b68f3b;
    }
/* Icon + Text Column Layout */
.sd-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    position: relative; /* ← important for dropdown */
}

.sd-icon-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    color: #2d1735;
    transition: color 0.3s ease;
}

.sd-icon-item:hover .sd-icon-link,
.sd-icon-item:hover .sd-icon-label {
    color: #b68f3b;
}

.sd-icon-item.dropdown .dropdown-menu {
    margin-top: 8px;
}
/* Cart Badge */
.sd-badge-cart {
    background: #2d1735;
    color: #fff;
    font-size: 11px;
    font-weight: var(--font-heading-weight);
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -8px;
    right: -8px;
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
}


.sd-menu a svg:Hover {
    color: #b68f3b !important;
}







/* Menus */
.sd-menu {
    justify-content: space-evenly;
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 15px;
}

    .sd-menu a {
        font-size: 16px;
        font-weight: var(--font-heading-weight);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #2d1735;
        text-decoration: none;
        transition: color 0.3s ease;
        position: relative;
    }

        .sd-menu a:hover {
            color: #b68f3b;
        }
/* ====================================
   DROPDOWN – FINAL FIXED VERSION (NO FLICKER, NO FLYING)
==================================== */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle::after {
    display: none !important;
}

/* Main dropdown – perfectly centered under its trigger */
.dropdown > .dropdown-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.95);
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(45,23,53,0.18);
    min-width: 240px;
    padding: 16px 0;
    z-index: 1000;
    margin: 0;
}

.dropdown:hover > .dropdown-menu,
.dropdown .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
}

/* Dropdown Items – golden dot, no layout shift */
.dropdown-item {
    display: block;
    padding: 12px 32px;
    font-size: 15px;
    color: #2d1735;
    text-decoration: none;
    position: relative;
    transition: all 0.35s ease;
}

    .dropdown-item::before {
        content: '';
        position: absolute;
        left: 20px;
        top: 50%;
        width: 6px;
        height: 6px;
        background: #b68f3b;
        border-radius: 50%;
        opacity: 0;
        transform: translateY(-50%) scale(0);
        transition: all 0.35s ease;
    }

    .dropdown-item:hover {
        background: #faf5ff;
        color: #b68f3b;
    }

        .dropdown-item:hover::before {
            opacity: 1;
            transform: translateY(-50%) scale(1);
        }

/* Nested submenu (dropend) – opens to the right */
.dropend {
    position: relative;
}

    .dropend > .dropdown-menu {
        top: 0;
        right: 100%;
        margin-left: 12px;
        margin-top: -8px;
        transform: translateY(-50%) translateX(10px) scale(0.95);
    }

    .dropend:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(-50%) translateX(0) scale(1);
    }

/* Profile dropdown (user icon) – right aligned */
.sd-profile .dropdown-menu {
    left: auto !important;
    right: 0;
    transform: translateX(0) translateY(10px) scale(0.95) !important;
}

.sd-profile:hover .dropdown-menu {
    transform: translateX(0) translateY(0) scale(1) !important;
}

/* Special "View All" */
.text-primary.fw-600 {
    color: #b68f3b !important;
    font-weight: var(--font-heading-weight);
}

/* ====================================
   RESPONSIVE – Clean mobile experience
==================================== */
@media (max-width: 992px) {
    .sd-menu {
        display: none; /* hidden on mobile/tablet */
    }

    .sd-logo img {
        height: 55px;
    }
}

@media (max-width: 576px) {
    .sd-nav {
        gap: 12px;
    }

    .sd-logo img {
        height: 48px;
    }

    .sd-icons {
        gap: 14px;
    }

    .sd-icon-link {
        font-size: 21px;
    }
}

/* =======================================
   5. HERO / BANNER
======================================= */

.hero-area {
    position: relative;
    width: 100%;
    padding-top: 25px;
    margin-bottom: 57px;
    background-color: var(--color-bg-main);
    overflow: hidden;
}

.main-banner-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}


@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .main-banner-wrapper {
        overflow: hidden;
    }
}

.banner-style-one .slide {
    width: 100%;
    min-height: 600px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    position: relative;
}


    .banner-style-one .slide::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(0,0,0,0));
        z-index: 1;
        backdrop-filter: blur(1.5px);
    }

.banner-style-one .container,
.banner-style-one .row,
.banner-style-one .col-lg-12 {
    position: relative;
    z-index: 2;
}


.banner-style-two .slide {
    width: 100%;
    min-height: 400px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    position: relative;
}


    .banner-style-two .slide::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0));
        z-index: 1;
        backdrop-filter: blur(1.5px);
    }

.banner-style-two .container,
.banner-style-two .row,
.banner-style-two .col-lg-12 {
    position: relative;
    z-index: 2;
}

.banner-style-two .tag-line {
    color: #fff;
}

.banner-style-two .banner-title {
    color: #fff;
}

.banner-style-two p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 25px;
}

.banner-style-two .banner-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s ease;
}

    .banner-style-two .banner-btn:hover {
        background: rgba(255,255,255,0.15);
    }

/* Text */
.text-area.slider-col-text-one {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 450px;
}

.text-area h2 {
    font-size: 55px;
    letter-spacing: 2px;
}

.text-area h3 {
    font-size: 35px;
}

.text-area p {
    font-size: 20px;
    font-weight: var(--font-body-weight);
}

/* CTA */
.banner-style-one .tag-line {
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: var(--font-body-weight);
    color: #fff;
    margin-bottom: 10px;
}

.banner-style-one .banner-title {
    font-size: 55px;
    font-family: "Oswald", Sans-serif;
    font-weight: var(--font-heading-weight);
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 0px;
}

.banner-style-one p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 25px;
}

.banner-style-one .banner-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s ease;
}

    .banner-style-one .banner-btn:hover {
        background: rgba(255,255,255,0.15);
    }

/* Carousel controllers */

.main-banner-wrapper .carousel-btn-block {
    position: absolute;
    bottom: 85px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    width: 100%;
    max-width: 1170px;
    text-align: right;
}

    .main-banner-wrapper .carousel-btn-block .carousel-btn {
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        transition: all 0.4s ease;
        font-size: 14px;
        color: #fff;
        width: 63px;
        height: 63px;
        border: 2px solid #fff;
        text-align: center;
        border-radius: 50%;
    }

        .main-banner-wrapper .carousel-btn-block .carousel-btn i {
            line-height: 59px;
            -webkit-text-fill-color: transparent;
            -webkit-text-stroke-width: 2px;
            -webkit-text-stroke-color: #fff;
        }

        .main-banner-wrapper .carousel-btn-block .carousel-btn.left-btn {
            margin-right: 10px;
        }

            .main-banner-wrapper .carousel-btn-block .carousel-btn.left-btn i {
                transform: rotate(180deg);
            }

/* Owl dots (optional hidden) */

.banner-style-one .owl-nav {
    display: none;
}

.banner-style-one .owl-dots {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
}

/* =======================================
   6. SACRED DIVINE SECTION
======================================= */

.sacred-divine {
    width: 100%;
    padding-bottom: 75px;
    background-color: #fff;
}

.sacred-text-col p {
    font-weight: var(--font-body-weight);
    color: var(--color-text-main);
}

.sacred-text-col h3 {
    font-family: var(--font-heading-family);
    font-weight: var(--font-heading-weight);
    color: var(--color-text-main);
}

.sacred-text-col h6 {
    font-family: var(--font-heading-family);
    width: 60%;
    margin-top: 20px;
    text-align: left;
    font-size: 21px;
    font-weight: var(--font-heading-weight);
    color: #000;
}

.sacred-text-col a {
    display: block;
    width: 210px;
    margin-top: 40px;
    text-align: center;
    font-size: 20px;
    font-weight: var(--font-heading-weight);
    color: var(--color-text-main);
    line-height: 67px;
    border: 2px solid var(--color-text-main);
    text-decoration: none;
    box-shadow: var(--shadow-soft);
}

    .sacred-text-col a:hover {
        background-color: #450381;
        color: #fff;
    }

.sacred-images {
    width: 100%;
    margin-top: 50px;
}

    .sacred-images img {
        width: 100%;
    }

/* =======================================
   7. CATEGORIES & PRODUCT CARDS
======================================= */
.categories-colm-2 {
    background-color: #fff;
    padding: 75px 0 50px;
}

.categories-colm-heading p {
    font-size: 18px;
    font-weight: var(--font-body-weight);
    color: var(--color-text-soft);
    letter-spacing: 1px;
}

.categories-colm-heading h4 {
    color: var(--color-text-main);
    margin-bottom: 60px;
    padding-top: 15px;
    font-weight: var(--font-heading-weight);
}

/* Sub categories cards */

.sub-categories-colm {
    width: 100%;
    padding: 15px;
    margin-top: 25px;
    background-color: #fffcf0;
    border-radius: 10px;
}

    .sub-categories-colm img {
        width: 100%;
        border-radius: 25px;
    }

    .sub-categories-colm p {
        text-align: left;
        font-size: 14px;
        line-height: 25px;
        margin: 0 !important;
        font-weight: bold;
        color: #000;
        padding-top: 12px;
    }

    .sub-categories-colm small {
        font-size: 10.5px;
        font-weight: var(--font-body-weight);
        color: #000;
    }

/* Product price row */

.price-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price {
    color: var(--color-text-soft);
    font-weight: 400;
    font-size: 1rem !important;
    line-height: 1;
}

.bottom-text p.price {
    color: var(--color-text-soft);
    font-weight: 400;
    font-size: 1rem !important;
    line-height: 1;
}

.discount {
    color: var(--color-success);
    font-weight: 700;
    font-size: 1rem;
    margin-right: 6px;
}

/* Add-to-cart button styling */
.add-cart {
    width: 350px;
    position: absolute;
    top: 0%;
    z-index: 999;
    right: 0
}

.qty-box {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    width: 150px;
    float: left;
    height: 50px;
    border: 2px solid #ddd;
    border-radius: 40px;
    justify-content: pace-between;
    padding: 0 15px;
    font-size: 20px;
}

.qty-left {
    width: 18%;
    position: absolute;
    top: 0;
    left: 5px;
    z-index: 99;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

.qty-right {
    width: 18%;
    position: absolute;
    top: 0;
    right: 5px;
    z-index: 99;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

.qty-box span {
    text-align: center;
    align-items: center;
    position: absolute;
    width: 75%;
    margin: 0 auto;
    padding: 0;
}

.button-list {
    display: inline-flex;
    align-items: center;
    padding: 1px 5px;
    border-radius: 10px;
    background-color: var(--color-text-soft);
    justify-content: flex-end;
}

    .button-list a,
    .button-list button {
        text-align: center;
        font-size: 13px;
        font-weight: 500;
        color: #fff;
        border: none;
        background: transparent;
    }

/* Product list card */

.product-card {
    border: none !important;
    transition: 0.3s;
    margin-bottom: 15px;
}

    .product-card a img {
        width: 100%;
        box-sizing: border-box;
        height: 220px;
        object-fit: cover;
    }

/* Simple product meta under image */

a .card-price h6 {
    font-size: 13px;
    margin-top: 10px;
    font-weight: 400;
    color: #777 !important;
}

a .rupee-in {
    font-size: 14px;
    margin-top: 10px;
    font-weight: 500;
    color: #333;
}

/* Generic "view details" link */

.products__datils {
    width: 100%;
    margin-top: 35px;
    text-align: center;
    background-color: #fff;
}

    .products__datils a {
        font-family: var(--font-body-family);
        font-size: calc(var(--font-body-scale) * 1.2rem);
        font-weight: 500;
        color: #000;
        text-decoration: none;
        border-bottom: 1px solid #000;
    }

/* Owl cards in category slider */

.card {
    width: auto;
    position: relative;
    z-index: 1;
    border: none;
    border-radius: var(--card-radius);
    overflow: hidden;
    margin: 0 8px;
}

    .card img {
        width: 100%;
        height: 278px;
        object-fit: cover;
    }

.card-body {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    text-align: center;
}

    .card-body h5.card-title {
        font-family: var(--font-heading-family);
        letter-spacing: var(--font-letter-spacing);
        width: 100%;
    }

        .card-body h5.card-title a {
            display: block;
            font-size: 16px;
            font-weight: 500;
            color: #000;
            background-color: #fff;
            text-decoration: none;
            border-radius: 10px;
            padding: 13px 5px;
        }

/* Owl nav (global) */

.owl-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    pointer-events: none;
}

    .owl-nav button {
        pointer-events: auto;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #fff;
        border: 2px solid #111;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        z-index: 20;
        box-shadow: var(--shadow-soft);
        cursor: pointer;
    }

        .owl-nav button:hover {
            background: #111;
            color: #fff;
            border-color: #111;
        }

    .owl-nav .owl-prev {
        left: -25px;
    }

    .owl-nav .owl-next {
        right: -25px;
    }

/* Dots */

.owl-dots {
    text-align: center;
    margin-top: 0;
}

.owl-dot span {
    display: none !important;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #d7d7d7;
    margin: 6px;
    transition: all 0.22s ease;
}

.owl-dot.active span {
    background: #666;
    transform: scale(1.15);
}

.owl-stage {
    transform: translate3d(x, 0px, 0px) !important;
}


/* =======================================
   8. SERVICES / SESSIONS / SUPER CATEGORIES
======================================= */

.services {
    width: 100%;
    background-color: var(--color-bg-section-light);
    padding: 12px 0 50px;
}

.sacred__services {
    width: 100%;
    padding-bottom: 35px;
}

    .sacred__services h2 {
        color: var(--color-text-main);
        font-weight: var(--font-heading-weight);
        margin-bottom: 20px;
        padding-top: 15px;
    }

    .sacred__services h3 {
        color: var(--color-text-main);
        font-weight: var(--font-heading-weight);
        margin-bottom: 6px;
        padding-top: 15px;
    }

    .sacred__services p {
        color: var(--color-text-soft);
        line-height: 30px;
        font-weight: var(--font-body-weight);
    }

/* Individual sessions */

.session {
    width: 95%;
    margin: 0 auto;
    padding-bottom: 0.5rem;
    text-align: left;
    color: var(--color-text-soft);
}

    .session img {
        width: 100%;
    }

    .session h4 {
        font-weight: var(--font-heading-weight);
        font-family: var(--font-heading-family);
        font-size: calc(var(--font-heading-scale) * 1.2rem);
        letter-spacing: var(--font-letter-spacing);
        margin-top: 15px;
    }

    .session small {
        font-size: 16px;
        margin-bottom: 12px;
        font-weight: var(--font-body-weight);
        line-height: 21px;
    }

    .session a {
        display: block;
        width: 34%;
        font-size: 14px;
        margin-top: 20px;
        font-weight: var(--font-body-weight);
        padding: 10px 0;
        background-color: var(--color-gold);
        text-decoration: none;
        color: #000;
        border-radius: 10px;
        text-align: center;
    }

/* Super categories */

.super-categories {
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: #fff;
    text-align: center;
}

    .super-categories h2 {
        color: var(--color-text-soft);
        font-size: 48px;
        font-weight: var(--font-heading-weight);
        margin-bottom: 20px;
        padding-top: 15px;
    }

    .super-categories h3 {
        color: var(--color-text-soft);
        font-size: calc(var(--font-heading-scale) * 2.2rem);
        font-weight: var(--font-heading-weight);
        margin-bottom: 20px;
        padding-top: 15px;
    }

    .super-categories p {
        color: var(--color-text-soft);
        font-size: 18px;
        line-height: 30px;
        font-weight: var(--font-body-weight);
    }

/* =======================================
   9. COURSES CAROUSEL
======================================= */

.slider-wrap {
    position: relative;
    padding: 0;
    max-width: var(--container-max-width);
    margin: 10px auto;
}

.course-card {
    width: 100%;
    height: 225px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    transition: box-shadow .25s ease, transform .25s ease;
}

    .course-card:hover {
        box-shadow: var(--shadow-medium);
        transform: translateY(-4px);
    }

.course-img {
    flex: 0 0 47%;
    min-width: 47%;
}

    .course-img img {
        width: 100%;
        padding: 15px;
        object-fit: cover;
    }

.course-body {
    padding: 18px 15px 15px 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .course-body h5 {
        font-weight: var(--font-heading-weight);
        font-size: 23px;
    }

    .course-body p {
        margin: 4px 0;
        color: #000;
        font-size: 14px;
        display: flex;
    }

        .course-body p strong {
            margin-right: 4px;
        }

.badge-mode {
    display: inline-flex;
    align-items: center;
    background: #fff8d6;
    color: #222;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: .75rem;
    margin-left: 8px;
}

    .badge-mode bold {
        font-weight: var(--font-body-weight);
        margin-right: 4px;
    }

.btn-enroll,
.enqsubmitbutton {
    background: #fff08a;
    border: 1px solid #000;
    border-radius: 6px;
    padding: 3px 12px;
    font-weight: var(--font-heading-weight);
    font-size: 13px;
    align-self: flex-start;
    cursor: pointer;
}

/* Filter panel */

.filter-block {
    margin-bottom: 25px;
}

.menu-name {
    font-size: 1rem;
    font-weight: var(--font-heading-weight);
    margin-bottom: 10px;
}

.filter-title {
    font-size: 0.7rem;
    font-weight: var(--font-heading-weight);
    color: var(--color-primary);
    margin-bottom: 10px;
}

.filter-block .filter-options a {
    display: flex;
    font-size: 12px;
    font-weight: var(--font-body-weight);
    color: #7a7a7a;
}

.filter-block .filter-options li a p {
    display: flex;
    font-size: 12px;
    font-weight: var(--font-body-weight);
}

.filter-block .filter-options a p span {
    display: flex;
    font-size: 12px;
}

/* Checkboxes */

.form-check {
    display: flex;
    margin-left: 5px;
    column-gap: 1rem;
}

.form-check-input {
    width: 18px;
    height: 18px;
    border: 1px solid purple;
    margin-right: 2px;
}

    .form-check-input:checked {
        border-radius: 5%;
        color: mediumpurple;
    }

/* Price fields */

.price-box input,
.field__input {
    border-radius: 0;
    border: 1px solid var(--color-primary);
    padding: 6px 8px;
    font-size: 14px;
    color: #000;
}

span.field-currency {
    margin: 0 10px 0 8px;
    font-size: 16px;
    height: 44px;
    line-height: 44px;
}

.field__input:focus,
input.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    /*box-shadow: 0 0 0 0.15rem rgba(45, 23, 53, 0.25);*/
}

/* Sort bar */

.sort-bar {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin: 10px 15px 20px;
    height: 54px;
}

    .sort-bar label {
        line-height: 35px;
        margin-right: 10px;
        font-size: 14px;
    }

    .sort-bar p {
        margin: 0 6px 0 8px;
        line-height: 41px;
        font-size: 14px;
    }

    .sort-bar .form-select {
        outline: none;
        border: none !important;
        box-shadow: none !important;
        font-size: 14px;
        cursor: pointer;
    }

/* Layout grid */

.item-filter {
    width: 100%;
    display: flex;
}

.main-filter {
    width: 23.3333%;
    margin-right: 10px;
}

.sub_fliter {
    width: 100%;
    text-align: center;
}

/* No gutters helper */

.gaping__item {
    --bs-gutter-x: 0 !important;
    --bs-gutter-y: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* =======================================
   11. ENQUIRY BUTTON (LEFT FIXED)
======================================= */

.leftenqbtn {
    position: fixed;
    right: 0;
    top: 40%;
    background: #0f0602;
    color: #fff;
    border: 0;
    padding: 20px 10px;
    font-weight: 500;
    z-index: 9;
    writing-mode: vertical-rl;
    letter-spacing: 3px;
    transform: translateY(0) rotate(180deg);
}

.leftenqbtn,
.btn-brown,
.btn-purple,
.btn-readmore,
.title-section a {
    text-decoration: none;
}

/* =======================================
   12. FOOTER
======================================= */

/* ==================== Sacred Divine MODERN FOOTER ==================== */
.vk-footer {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #16213e 100%);
    color: #e0e0e0;
    padding: 30px 5% 20px;
    position: relative;
    overflow: hidden;
}

    .vk-footer::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.06) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
        pointer-events: none;
    }

.vk-footer__main {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* Brand */
.vk-footer__logo {
    /*font-size: 32px;
    font-weight: 700;
    color: #fff;*/
    margin: 0 0 16px;
    height: 100px;
    width: auto;
    /*letter-spacing: -0.5px;*/
}

.vk-footer__tagline {
    display: none;
    font-size: 11px;
    color: #ffd700;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 6px;
}

.vk-footer__desc {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 15px;
}

/* Social Icons */
.vk-footer__social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 12px;
    transition: all 0.3s ease;
}

    .vk-footer__social a:hover {
        background: #e3a32a;
        color: #0f0f23;
        transform: translateY(-4px);
    }

/* Titles & Links */
.vk-footer__title {
    color: #ffd700;
    font-size: 17px;
    font-weight: var(--font-heading-weight);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0 0 24px;
}

.vk-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .vk-footer__links li {
        margin-bottom: 14px;
    }

    .vk-footer__links a {
        color: #b8b8b8;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        font-size: 15px;
    }

        .vk-footer__links a:hover {
            color: #ffd700;
            padding-left: 8px;
        }

/* Contact */
.vk-footer__contact p {
    margin: 12px 0;
    color: #b8b8b8;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

    .vk-footer__contact p a {
        display: flex;
        column-gap: 10px;
    }

.vk-footer__chat-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 22px;
    background: rgb(30, 33, 64);
    color: #ab8b59;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

    .vk-footer__chat-btn:hover {
        background: #ffd700;
        color: #0f0f23;
    }

/* Newsletter */
.vk-footer__newsletter-text {
    color: #b0b0b0;
    margin-bottom: 20px;
}

.vk-footer__newsletter input {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
}

    .vk-footer__newsletter input::placeholder {
        color: #888;
    }

.vk-footer__checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #aaa;
    margin: 12px 0;
    cursor: pointer;
}

.vk-footer__newsletter button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ffd700, #ffed99);
    color: #0f0f23;
    border: none;
    border-radius: 8px;
    font-weight: var(--font-heading-weight);
    cursor: pointer;
    transition: transform 0.2s ease;
}

    .vk-footer__newsletter button:hover {
        transform: translateY(-2px);
    }

/* Bottom Bar */
.vk-footer__bottom {
    margin: 0 auto;
    padding-top: 40px;
    text-align: center;
    font-size: 18px;
    color: #777;
}

.vk-footer__legal a {
    color: #ab8b59;
    text-decoration: none;
    margin: 0 12px;
    transition: color 0.3s;
}

    .vk-footer__legal a:hover {
        color: #fff;
    }

.vk-footer__copyright {
    margin-top: 20px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .vk-footer {
        padding: 70px 5% 30px;
    }

    .vk-footer__main {
        gap: 40px;
    }
}
/* =======================================
   13. SPECIAL / DIVINE PAGE STYLES
   (Akashic/Divine layout reused here)
======================================= */

.divine-page {
    background-color: #f7f4fb;
    color: #2a163d;
    font-family: var(--font-body-family);
}

.divine-hero {
    position: relative;
    padding: 30px 0;
    background: radial-gradient(circle at top left, #f7e8ff 0, #5f2a98 45%, #2d103f 100%);
    overflow: hidden;
}

.divine-hero-overlay::before,
.divine-hero-overlay::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    filter: blur(16px);
}

.divine-hero-overlay::before {
    width: 260px;
    height: 260px;
    background: rgba(255, 243, 205, 0.6);
    top: -40px;
    left: -60px;
}

.divine-hero-overlay::after {
    width: 320px;
    height: 320px;
    background: rgba(214, 169, 255, 0.35);
    bottom: -80px;
    right: -40px;
}

.divine-eyebrow {
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #f8e9ff;
}

.divine-hero-text {
    max-width: 620px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: #f5e8ff;
}

.divine-section-light {
    background-color: var(--color-bg-section-soft);
}

.divine-section-title {
    font-size: 1.7rem;
    font-weight: 400;
    color: #4d217c;
}

.divine-section p {
    font-size: 0.98rem;
    color: #4a3a5c;
}

.divine-btn-primary {
    background: linear-gradient(135deg, #a974ff, #6e31b5);
    border: none;
    color: #fff;
    border-radius: 999px;
    font-weight: var(--font-heading-weight);
    box-shadow: 0 10px 24px rgba(60, 10, 110, 0.35);
    transition: all 0.25s ease;
}

    .divine-btn-primary:hover {
        background: linear-gradient(135deg, #b889ff, #7c3dcc);
        box-shadow: 0 14px 30px rgba(60, 10, 110, 0.5);
        color: #fff;
    }

/* =======================================
   14. RESPONSIVE
======================================= */

/* Mobile (up to 480px) */
@media (max-width: 480px) {
    .container-fluid {
        width: 99% !important;
    }

    .navbar ul {
        padding: 0;
    }

    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link.show {
        margin: 0;
    }

    .navbar ul li.nav-item {
        padding: 0;
    }

    .navbar ul li a.nav-link {
        font-size: 19px;
        font-weight: 400;
        text-align: left;
    }

    .shopping-side-area {
        width: 220px;
    }

    .navbar a.navbar-brand img {
        width: 75px;
        height: 75px;
    }

    .marquee h3.category {
        font-size: 14px;
    }

    .sacred-text-col h3 {
        font-size: 33px;
    }

    .sacred-text-col h6 {
        width: 100%;
        margin-top: 10px;
        text-align: justify;
        font-size: 14px;
        font-weight: 400;
    }

    .sacred-text-col a {
        width: 120px;
        margin-top: 18px;
        font-size: 17px;
        line-height: 33px;
        border-radius: 5px;
    }

    .sub-categories-colm {
        padding: 0;
        border-radius: 5px;
    }

        .sub-categories-colm p {
            font-size: 12px;
            line-height: 16px;
            padding: 12px 0 8px 8px;
        }

        .sub-categories-colm small {
            padding-left: 8px;
        }

    .price-row {
        padding-left: 8px;
    }


    .button-list {
        padding: 6px 9px;
    }

    .products__datils {
        margin-top: 12px;
    }

        .products__datils a {
            width: 49%;
            font-size: 19px;
        }

    .services {
        padding: 12px 0 23px;
    }

    .session {
        width: 100%;
    }

        .session a {
            width: 100px;
            font-size: 13px;
            margin-top: 10px;
            margin-bottom: 30px;
            line-height: 38px;
        }

    .course-card {
        display: block;
        height: 380px;
    }

    .course-body {
        padding: 10px;
        text-align: center;
    }

    .course-img {
        flex: 0 0 41%;
        min-width: 41%;
    }

    .course-body h5 {
        font-size: 15px;
    }

    .course-body p,
    .course-body p strong {
        font-size: 11px;
    }

    .badge-mode {
        font-size: 8px;
        padding: 4px;
    }

    .footer {
        padding: 45px 15px 15px;
    }

        .footer h5 {
            font-size: 18px;
            font-weight: 400;
            margin-bottom: 4px;
        }

        .footer a,
        .footer p.font-01 {
            font-size: 15px;
            font-weight: 400;
            margin: 0;
        }

    .footer-bottom p {
        font-size: 13px;
        font-weight: 300;
    }

    .social-icons a {
        margin-bottom: 10px;
    }

    .leftenqbtn {
        padding: 10px 6px !important;
        letter-spacing: 1px !important;
        top: 37% !important;
    }
}

/* Small tablets (481px–767px) */
@media (min-width: 481px) and (max-width: 767px) {

    .container-fluid {
        width: 99% !important;
    }

    .navbar ul {
        padding: 0;
    }

    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link.show {
        margin: 0;
    }

    .navbar ul li.nav-item {
        padding: 0;
    }

    .navbar ul li a.nav-link {
        font-size: 19px;
        font-weight: 400;
        text-align: left;
    }

    .shopping-side-area {
        width: 220px;
    }

    h2 {
        font-size: 28px !important;
    }

    .slide-marquee h3 span {
        width: 100%;
        margin-right: 44px;
    }

    .slide-marquee h3 {
        font-size: 35px;
        line-height: 38px;
    }

    .sacred-text-col p {
        font-size: 18px;
    }

    .sacred-text-col h3 {
        font-size: 38px;
    }

    .sacred-text-col h6 {
        width: 100%;
        text-align: left;
        font-size: 20px;
        font-weight: 400;
    }

    .sacred-text-col a {
        width: 130px;
        margin-top: 20px;
        font-size: 17px;
        line-height: 41px;
        border-radius: 5px;
    }

    .slider-wrap {
        padding: 20px 18px;
    }

    .session {
        width: 100%;
        margin-bottom: 25px;
    }

        .session a {
            width: 26%;
        }

    .second_btn a {
        width: 47% !important;
    }

    .course-img {
        flex: 0 0 39%;
        min-width: 39%;
    }

    .course-body h5 {
        font-size: 17px;
    }

    .course-body p {
        font-size: 13px;
    }
}

/* Tablets (768px–992px) */
@media (min-width: 768px) and (max-width: 992px) {

    .container-fluid {
        width: 99% !important;
    }

    .navbar ul {
        padding: 0;
    }

    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link.show {
        margin: 0;
    }

    .navbar ul li.nav-item {
        padding: 0;
    }

    .navbar ul li a.nav-link {
        font-size: 19px;
        font-weight: 400;
        text-align: left;
    }

    .shopping-side-area {
        width: 220px;
    }

    .sacred-text-col h6 {
        width: 100%;
        margin-top: 5px;
        font-size: 16px;
    }

    .sacred-text-col a {
        width: 161px;
        margin-top: 20px;
        border-radius: 5px;
        font-size: 23px;
        line-height: 47px;
    }

    .categories-colm-2 {
        padding: 35px 0 50px;
    }

    .course-img {
        flex: 0 0 30%;
        min-width: 30%;
    }

    .course-body h5 {
        font-size: 18px;
    }

    .course-body p {
        font-size: 13px;
    }

    .footer {
        padding: 50px 30px;
    }
}

/* Small desktops (993px–1280px) */
@media (min-width: 993px) and (max-width: 1280px) {

    .navbar ul {
        padding-left: 0;
    }

        .navbar ul li.nav-item {
            padding: 0 8px;
            word-spacing: 2px;
            letter-spacing: 1.5px;
        }

    .shopping-side-area {
        width: 28%;
    }

    .sacred-text-col h6 {
        width: 100%;
        font-size: 19px;
    }

    .sacred-text-col a {
        width: 180px;
        line-height: 48px;
    }

    .footer {
        padding: 63px 30px 20px;
    }

        .footer h5 {
            font-size: 21px;
        }

        .footer a {
            font-size: 16px;
        }

    .footer-bottom p {
        font-size: 16px;
    }
}

/* About Section */
.sec-even {
    background: #f6f0ff;
}

.sec-odd {
    background: #ffff;
}

.sd-about-eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #7a4ca1;
    font-weight: var(--font-body-weight);
}

.sd-about-title {
    font-family: var(--font-heading-family);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--color-text-main);
}

.sd-about-text {
    font-family: var(--font-body-family);
    font-size: 1.1rem;
    color: #4a3a60;
    /*    line-height: 1.8;*/
}

.sd-about-img-wrap img {
    border-radius: 12px;
}

/* Bullet points */
.sd-about-list {
    list-style: none;
    padding-left: 0;
}

    .sd-about-list li {
        font-size: 1rem;
        color: #2d1735;
        margin-bottom: 10px;
        font-weight: 600;
    }

/* Buttons */
.sd-btn-primary {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--color-text-main-light), var(--color-text-main));
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: var(--font-heading-weight);
    transition: .3s ease;
    font-size: 25px;
}

    .sd-btn-primary:hover {
        background: linear-gradient(135deg, #ba83ff, #7a3dcc);
        color: #fff;
    }

.sd-btn-outline {
    padding: 12px 28px;
    border: 2px solid #7a4ca1;
    border-radius: 50px;
    color: #7a4ca1;
    font-weight: var(--font-heading-weight);
    text-decoration: none;
    transition: .3s ease;
}

    .sd-btn-outline:hover {
        background: #ece0ff;
        color: #371a52;
    }
/* Soft Lavender Section Background */
.sd-category-section {
}

/* Title */
.sd-cat-title {
    font-family: var(--font-heading-family);
    font-weight: 400;
    font-size: 2.8rem;
    color: var(--color-text-main); /* color-text-main Deep Lavender */
}

/* Category Card */
.sd-cat-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 8px 18px rgba(132, 94, 194, 0.15); /* soft purple shadow */
    transition: 0.3s ease;
    cursor: pointer;
    border: 1px solid #eadcff; /* subtle lavender border */
}

    /* Hover Lift */
    .sd-cat-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 14px 28px rgba(132, 94, 194, 0.25);
    }

/* Category Image */
.sd-cat-img {
    width: 100%;
    height: 210px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid #f0e6ff; /* faint purple ring */
}

    .sd-cat-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.35s ease;
    }

/* Hover Zoom */
.sd-cat-card:hover img {
    transform: scale(1.06);
}

/* Category Title */
.sd-cat-card h4 {
    font-family: var(--font-heading-family);
    font-size: 1.2rem;
    font-weight: var(--font-heading-weight);
    color: #4a356a; /* deep lavender */
}


/* Responsive Images */
@media (max-width: 767px) {
    .sd-cat-img {
        height: 170px;
    }

    .sd-cat-title {
        font-size: 2rem;
    }
}

.aura-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    padding: 0px;
    margin: 0 auto;
}

/* Minimal Aura Gradient Card – 2025 Wellness Aesthetic */
.aura-card {
    margin: 20px auto;
    position: relative;
    font-family: 'Inter', system-ui, sans-serif;
}

.aura-card__inner {
    background: #faf9f6;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}

.aura-card:hover .aura-card__inner {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.15);
}

/* Magical Aura Background – changes per product */
.aura-card__aura {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(155, 89, 182, 0.12) 0%, /* Amethyst */
    rgba(255, 182, 193, 0.08) 50%, /* Rose Quartz touch */
    transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.aura-card:hover .aura-card__aura {
    opacity: 1;
}

/* Image */
.aura-card__image {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: #f5f0eb;
}

    .aura-card__image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.6s ease;
    }

.aura-card:hover .aura-card__image img {
    transform: scale(1.06);
}

/* Sold Out Badge – elegant */
.aura-card__sold-out {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(180, 20, 60, 0.9);
    color: white;
    font-size: 11px;
    font-weight: var(--font-heading-weight);
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.aura-card:hover .aura-card__sold-out {
    opacity: 1;
    transform: translateY(0);
}

/* Content */
.aura-card__content {
    padding: 24px 10px;
    text-align: center;
    background: #faf9f6;
}

.aura-card__title {
    font-size: 19px;
    font-weight: var(--font-heading-weight);
    color: #2d1b3d;
    margin: 0 0 6px;
    letter-spacing: -0.3px;
}

.aura-card__subtitle {
    font-size: 13px;
    color: #8a7a9c;
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.aura-card__price {
    font-size: 26px;
    font-weight: var(--font-heading-weight);
    color: #5e3a8a;
    margin: 0 0 18px;
}

/* Button – outline → filled on hover */
.aura-card__btn {
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 2px solid #9b59b6;
    color: #9b59b6;
    border-radius: 30px;
    font-size: 15px;
    font-weight: var(--font-heading-weight);
    cursor: pointer;
    transition: all 0.35s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .aura-card__btn:hover {
        background: #9b59b6;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(155, 89, 182, 0.25);
    }

/* Responsive */
@media (max-width: 480px) {
    .aura-card {
        width: 100%;
        max-width: 340px;
    }
}

/* Same beautiful, simple & attractive CSS – unchanged */
.simple-blog {
    padding: 20px 5% 60px;
    background: #fffaf7;
    font-family: 'Inter',system-ui,sans-serif
}

.simple-blog__container {
    max-width: 1380px;
    margin: 0 auto
}

.simple-blog__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px
}

    .simple-blog__head h2 {
        font-size: 38px;
        font-weight: var(--font-heading-weight);
        color: #2d1b3d;
        margin: 0
    }

.simple-blog__all {
    color: #9b59b6;
    font-weight: var(--font-heading-weight);
    text-decoration: none;
    font-size: 17px
}

.simple-blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(340px,1fr));
    gap: 32px
}

.simple-blog__card {
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: transform .35s,box-shadow .35s
}

    .simple-blog__card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 45px rgba(155,89,182,0.15)
    }

    .simple-blog__card img {
        width: 100%;
        height: 220px;
        object-fit: cover
    }

.simple-blog__text {
    padding: 24px
}

    .simple-blog__text h3 {
        font-size: 20px;
        font-weight: var(--font-heading-weight);
        color: #2d1b3d;
        margin: 0 0 8px;
        line-height: 1.4
    }

.simple-blog__meta {
    font-size: 14px;
    color: #999;
    margin-bottom: 12px
}

.simple-blog__link {
    color: #9b59b6;
    font-weight: var(--font-heading-weight);
    text-decoration: none;
    font-size: 15px
}

    .simple-blog__link:hover {
        text-decoration: underline
    }

@media(max-width:640px) {
    .simple-blog {
        padding: 80px 5%
    }

    .simple-blog__head {
        flex-direction: column;
        gap: 16px;
        text-align: center
    }

        .simple-blog__head h2 {
            font-size: 32px
        }
}

/* Header */
.blog-header {
    padding: 120px 5% 60px;
    text-align: center;
    color: white;
}

    .blog-header h1 {
        max-width: 800px;
        margin: 0 auto 16px;
    }

.blog-meta {
    font-size: 15px;
    opacity: 0.9;
}

    .blog-meta span {
        margin: 0 10px;
    }

/* Article */
.blog-article {
    max-width: 80vw;
    margin: 30px auto;
    padding: 0 2% 20px;
}


.blog-content {
    color: #333;
}

    .blog-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .blog-content h2 {
        font-size: 26px;
        margin: 40px 0 16px;
        color: var(--color-text-main);
    }

    .blog-content img {
        width: 100%;
        border-radius: 12px;
        margin: 30px 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .blog-content blockquote {
        background: #f5e6ff;
        padding: 24px;
        border-left: 4px solid #9b59b6;
        border-radius: 8px;
        font-style: italic;
        margin: 30px 0;
        font-size: 18px;
    }

/* Author Box */
.author-box {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    margin: 50px 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

    .author-box img {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        object-fit: cover;
    }

.author-info h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: #666;
}

/* Related Posts */
.related-posts {
    margin-top: 60px;
}

    .related-posts h3 {
        font-size: 26px;
        margin-bottom: 30px;
        text-align: center;
    }

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 24px;
}

.related-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all .3s;
}

    .related-card:hover {
        transform: translateY(-6px);
    }

    .related-card img {
        width: 100%;
        height: 160px;
        object-fit: cover;
    }

    .related-card h4 {
        padding: 16px 16px 4px;
        font-size: 16px;
    }

    .related-card p {
        padding: 0 16px 16px;
        font-size: 13px;
        color: #999;
    }

/* Footer CTA */
.blog-cta {
    text-align: center;
    padding: 60px 5%;
    background: #f8f0ff;
    margin-top: 80px;
}

    .blog-cta h3 {
        font-size: 28px;
        margin-bottom: 16px;
    }

.btn-primary {
    display: inline-block;
    background: #9b59b6;
    color: white;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: var(--font-heading-weight);
    margin-top: 12px;
}

/* Responsive */
@media (max-width:768px) {
    .blog-header h1 {
        font-size: 36px;
    }

    .blog-header {
        padding: 80px 5% 40px;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }
}

.elegant-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 0px 40px;
    margin: 40px auto;
    max-width: 900px;
    background: #ffffff;
    border-radius: 30px;
}

.stat {
    text-align: center;
    line-height: 1;
}

.count {
    display: block;
    font-size: 76px;
    font-weight: 700;
    color: #5e3a8a;
    letter-spacing: -2px;
}

.plus {
    font-size: 70px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 15px;
}

.label {
    display: block;
    margin-top: 0px;
    font-size: 24px;
    color: #4B0082;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}


.divider {
    width: 1px;
    height: 90px;
    background: #e5d9f2;
}

/* Mobile */
@media (max-width: 640px) {
    .elegant-counter {
        flex-direction: column;
        gap: 40px;
        padding: 50px 30px;
    }

    .divider {
        width: 80px;
        height: 1px;
    }

    .count {
        font-size: 62px;
    }
}


.section-title {
    font-family: var(--font-heading-family);
    margin-bottom: 6px;
    -webkit-background-clip: text;
    background-clip: text;
}

.testimonial-carousel .item {
    background: white;
    border-radius: 24px;
    padding: 48px 36px;
    margin: 20px 15px;
    border: 1px solid #f1f1f1;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .testimonial-carousel .item::before {
        content: '“';
        position: absolute;
        top: -20px;
        left: 30px;
        font-size: 140px;
        font-family: 'Playfair Display', serif;
        color: #e0e7ff;
        opacity: 0.4;
        line-height: 1;
    }

    .testimonial-carousel .item:hover {
        transform: translateY(-12px);
        box-shadow: 0 30px 60px rgba(102, 126, 234, 0.15);
        border-color: #c4b5fd;
    }

.client-img {
    width: 88px !important;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 24px;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-size: 1.22rem;
    color: #475569;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.client-name {
    font-weight: 600;
    font-size: 1.35rem;
    color: #1e293b;
    margin: 0 0 6px 0;
}

.client-role {
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
}

/* Owl Carousel Custom */
.owl-dots {
    margin-top: 50px;
}

.owl-dot span {
    background: #e2e8f0 !important;
    width: 13px !important;
    height: 13px !important;
    border-radius: 50%;
    transition: all 0.3s;
}

.owl-dot.active span {
    background: #7c3aed !important;
    transform: scale(1.4);
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white !important;
    width: 60px;
    height: 60px;
    border-radius: 50% !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    color: #64748b !important;
    font-size: 28px !important;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid #2a163d !important;
}

    .owl-nav button:hover {
        background: #7c3aed !important;
        color: white !important;
        transform: translateY(-50%) scale(1.1);
    }

.owl-prev {
    left: -90px;
}

.owl-next {
    right: -90px;
}

@media (max-width: 992px) {
    .owl-prev {
        left: -10px;
    }

    .owl-next {
        right: -10px;
    }

    .section-title {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    .testimonial-carousel .item {
        padding: 40px 28px;
    }
}


.services-cards {
    padding: 0 10px
}

    .services-cards .item {
        padding: 2px
    }
    /* smaller gap on mobile */
    .services-cards .servicecard {
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(0,0,0,.08);
        transition: transform .4s,box-shadow .4s;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

        .services-cards .servicecard:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,.15)
        }

        .services-cards .servicecard img {
            width: 100%;
            height: 220px;
            object-fit: cover
        }

    .services-cards .servicecard-body {
        padding: 24px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        text-align: center
    }

    .services-cards .servicecard h6 {
        margin: 0 0 12px;
        color: #222
    }

    .services-cards .servicecard p {
        font-size: 1rem;
        color: #555;
        margin: 0 0 20px;
        line-height: 1.55;
        flex-grow: 1
    }

    .services-cards .servicecard a {
        padding: 12px 28px;
        background: #6352c5;
        color: #fff;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: .3s;
        align-self: center;
    }

        .services-cards .servicecard a:hover {
            background: #4c3fa3
        }

    /* Owl nav – always visible & beautiful */
    .services-cards .owl-prev, .services-cards .owl-next {
        width: 50px;
        height: 50px;
        background: #6352c5 !important;
        color: #fff !important;
        border-radius: 50%;
        font-size: 26px !important;
        line-height: 50px !important;
        margin: 0 10px;
        opacity: .9
    }

        .services-cards .owl-prev:hover, .services-cards .owl-next:hover {
            opacity: 1;
            transform: scale(1.1)
        }

    .services-cards .owl-dots {
        margin-top: 20px
    }

    .services-cards .owl-dot.active span {
        background: #6352c5 !important
    }


/* HERO */
.contact-hero {
    position: relative;
    height: 40vh;
    min-height: 400px;
    background: linear-gradient(135deg, #2d1735 0%, #4a2256 50%, #6b2f7a 100%);
    background-image: url('https://images.unsplash.com/photo-1506318137071-a8e063b4bec0?w=2000&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
}

    .contact-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(45,23,53,0.88);
    }

    .contact-hero .container {
        position: relative;
        z-index: 2;
    }

    .contact-hero h1 {
        font-size: 4.5rem;
        font-weight: 600;
        letter-spacing: -1.5px;
        margin-bottom: 20px;
        text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    }

    .contact-hero p {
        font-size: 1.5rem;
        opacity: 0.95;
        max-width: 700px;
        margin: 0 auto 40px;
    }

/* MAIN CONTENT */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* LEFT – Contact Info */
.contact-info h3 {
    font-size: 2.4rem;
    color: #2d1735;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

    .contact-info h3::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 80px;
        height: 3px;
        background: #b68f3b;
    }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b68f3b, #d4b066);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    color: white;
    box-shadow: 0 10px 30px rgba(182,143,59,0.3);
}

.contact-item h5 {
    margin: 0 0 8px;
    color: #2d1735;
    font-size: 1.3rem;
}

.contact-item p {
    margin: 0;
    color: #6b5b77;
    line-height: 1.7;
}

/* RIGHT – Contact Form */
.contact-form {
    background: #faf5ff;
    padding: 50px 40px;
    border-radius: 32px;
    box-shadow: 0 20px 70px rgba(45,23,53,0.12);
    border: 1px solid #ece8f4;
}

    .contact-form h3 {
        font-size: 2.2rem;
        color: #2d1735;
        margin-bottom: 32px;
        text-align: center;
    }

.form-group {
    margin-bottom: 24px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #4a3b55;
    font-weight: 500;
}

input, textarea, select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0d8ed;
    border-radius: 16px;
    font-family: var(--font-body-family);
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

    input:focus, textarea:focus, select:focus {
        outline: none;
        border-color: #b68f3b;
        box-shadow: 0 0 0 4px rgba(182,143,59,0.15);
    }

textarea {
    min-height: 140px;
    resize: vertical;
}

.btn-submit {
    background: #b68f3b;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(182,143,59,0.4);
}

    .btn-submit:hover {
        background: #d4b066;
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(182,143,59,0.5);
    }

/* FOOTER MAP (OPTIONAL) */
.contact-map {
    padding: 80px 0;
    text-align: center;
}

    .contact-map iframe {
        width: 100%;
        height: 500px;
        border: none;
        border-radius: 32px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    }

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        height: 70vh;
        padding: 0 20px;
    }

        .contact-hero h1 {
            font-size: 3rem;
        }

    .contact-form {
        padding: 40px 24px;
    }
}

.filter-btn {
    border: 2px solid #888;
    padding: 15px 25px;
    border-radius: 30px;
    background: transparent;
    font-weight: 500;
    cursor: pointer;
}

.sort-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.text-nowrap {
    font-size: 1.1rem;
}

/* Your exact original style on the button (looks identical to select) */
.sort-trigger {
    position: relative;
    flex: 1;
    min-width: 180px;
}

.sort-select {
    min-width: 180px;
    padding: 15px 25px;
    border-radius: 30px;
    border: 2px solid #888;
    backdrop-filter: blur(6px);
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sort-trigger[open] .sort-select {
    border-radius: 20px 20px 1px 1px;
    border-left: 1px solid #888;
    border-right: 1px solid #888;
    border-top: 1px solid #888;
    border-bottom: 0;
}

/* Exact same panel animation as your main dropdown */
.sort-panel {
    /*! max-height: 0; */
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), padding 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease 0.1s;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0px;
    border-radius: 0 0 10px 10px;
    backdrop-filter: blur(10px);
    border-left: 1px solid #888;
    border-right: 1px solid #888;
    border-bottom: 1px solid #888;
    z-index: 10;
}

.sort-trigger[open] .sort-panel {
    max-height: 300px;
    padding: 0;
    opacity: 1;
}

.sort-options {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sort-option {
    border-top: 0.2px dotted grey;
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
    width: 100%;
    padding: 8px 16px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

    .sort-option:hover,
    .sort-option:focus {
        background-color: lightgray;
    }

.product-card {
    background: #fff;
    padding: 0;
    border-radius: 15px;
    position: relative;
    transition: 0.3s;
    text-align: center;
}

.top-icons {
    position: absolute;
    display: flex;
    width: 100%;
    left: 15px;
    top: 15px;
    gap: 55%;
}

    .top-icons span.heart {
        font-size: 21px;
        cursor: pointer;
        color: #550999;
        z-index: 9999;
        margin-top: 10px;
    }

    .top-icons span.eye {
        font-size: 21px;
        cursor: pointer;
        color: #a035ff;
        z-index: 9999;
        Background-color: #0000;
        border-radius: 50%;
        padding: 11px;
        width: 47px;
        height: 47px;
    }

.bottm-text {
    padding: 0 18px 18px 18px;
    text-align: center;
}

.product-title {
    font-size: 15px;
    font-weight: 400;
    margin-top: 10px;
    text-transform: uppercase;
}

.bottm-text p {
    font-size: 14px;
    margin-top: 15px;
}

.product-img-0 {
    width: 100%;
    position: relative;
    z-index: 2;
    top: 0;
    left: 0;
    border: 1px solid #a035ff;
}

.product-img-1 {
    width: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    border: 1px solid #a035ff;
}

.product-card:hover .product-botton .option-btn {
    opacity: 1;
}

.top-icons span.eye:hover {
    color: #fff;
    Background-color: #a035ff;
}

.product-title:hover {
    text-decoration: underline;
}

.product-card:hover .product-img-0 {
    opacity: 0;
    left: 0;
    transition: 1s;
    transform: scale(1.1);
}




.product-botton {
    width: 100%;
    position: absolute;
    bottom: 0%;
    z-index: 999;
}

.btn-1 {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin: 0px 25px 15px;
    border-radius: 35px;
}

    .btn-1 span {
        position: relative;
        display: inline-block;
        font-size: 14px;
        font-weight: bold;
        letter-spacing: 2px;
        text-transform: uppercase;
        top: 0;
        left: 0;
        width: 100%;
        padding: 10px 18px;
        transition: 0.3s;
    }


.btn-2::before {
    position: absolute;
    content: "";
    transition: 0.3s ease-out;
}

.btn-2.soldout span:hover {
    color: #fff;
    background-color: #C41E3A;
    transition: 0.2s 0.1s;
    cursor: not-allowed;
}

.btn-2 span {
    color: #000;
    border: 1px solid rgb(28, 31, 30);
    transition: 0.2s;
}

.btn-2 span {
    color: #fff;
    background-color: #2c3e3a;
    transition: 0.2s 0.1s;
}

.btn-1.hover-slide-up::before {
    bottom: 0;
    left: 0;
    right: 0;
    height: 0%;
    width: 192px;
}

.btn-1.hover-slide-up:hover::before {
    height: 44px;
}

.odo {
    font-size: 76px;
    font-weight: 700;
    color: var(--color-text-main);
    letter-spacing: -2px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.d {
    position: relative;
    width: 1.02ch;
    height: 1.2em;
    overflow: hidden;
    border-radius: 10px;
    margin: 0;
}

.r {
    animation: roll 3.8s cubic-bezier(.25,.1,.25,1) forwards;
    margin-top: 6rem;
}

    .r span {
        height: 1.4em;
        display: flex;
        align-items: center;
        justify-content: center;
    }

@keyframes roll {
    to {
        transform: translateY(-100%)
    }
}

.category-card {
    position: relative;
    height: 520px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
    transition: all 0.4s ease;
    cursor: grab;
}

    .category-card:hover {
        box-shadow: 0 25px 50px rgba(0,0,0,0.28);
    }

.image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: block;
}

.category-card .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .card-img {
    transform: scale(1.1);
}

.category-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 50px 40px 35px;
    color: white;
}

.card-overlay a:hover {
    text-decoration: none;
}

.category-card .card-title {
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.arrow-right {
    font-size: 2rem;
    opacity: 0.7;
    margin-left: 15px;
}
/* Owl Custom Styling */
.owl-prev, .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.5) !important;
    border-radius: 50%;
    color: white !important;
    font-size: 28px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.owl-prev {
    left: -80px;
}

.owl-next {
    right: -80px;
}

    .owl-prev:hover, .owl-next:hover {
        background: rgba(0,0,0,0.8) !important;
        transform: translateY(-50%) scale(1.1);
    }

.owl-dots {
    margin-top: 30px !important;
}

.owl-dot span {
    background: rgba(255,255,255,0.4) !important;
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
}

.owl-dot.active span {
    background: white !important;
}

@media (max-width: 992px) {
    .owl-prev {
        left: 10px;
    }

    .owl-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .category-card {
        height: 420px;
    }

        .category-card .card-title {
            font-size: 1.5rem;
        }

        .category-card .arrow-right {
            font-size: 3rem;
        }
}

.testimonial-card {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    margin: 8px;
    height: 160px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2px;
    margin-right: 16px;
}

.testimonial-text {
    font-size: 16px;
    color: #555;
    font-style: italic;
    line-height: 1.5;
}

    .testimonial-text q:before, .testimonial-text q:after {
        font-weight: 700;
        font-size: 25px;
        padding: 5%;
        margin: 0;
    }


/* Owl Carousel Custom Styling */
#testimonialOwl.owl-dots {
    margin-top: 40px !important;
}

#testimonialOwl.owl-dot span {
    background: #d6d6d6 !important;
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
}

#testimonialOwl.owl-dot.active span {
    background: #2c3e50 !important;
}

#testimonialOwl .owl-nav button {
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.4) !important;
    border-radius: 50% !important;
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
}

#testimonialOwl.owl-prev {
    left: -70px;
}

#testimonialOwl.owl-next {
    right: -70px;
}

.owl-prev span, .owl-next span {
    font-size: 32px;
    color: white;
}

.flying-count {
    position: fixed;
    background-color: #20b2aa;
    color: #fff;
    padding: 6px 10px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    z-index: 9999;
    transition: 1.5s ease-in-out;
    opacity: 1
}

.offcanvas {
    z-index: 9000 !important;
}

#searchCanvas {
    border-radius: 0px 0px 0px 0px;
    margin-top: 8%;
    border: transparent;
    margin-bottom: 0.2%;
}

    #searchCanvas .offcanvas-title {
        color: black;
        margin: 0;
        padding: 0;
    }

    #searchCanvas input {
        padding: 10px 5px;
    }

#filterProductList {
    margin-top: 10px;
    width: 100%;
    max-height: 50vh;
    overflow: auto;
}

    #filterProductList ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    #filterProductList li {
        font-family: var(--font-body-family);
        padding: 12px;
        margin-bottom: 8px;
        background: #ffffff;
        border: 1px solid #e3e3e3;
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        cursor: pointer;
        transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

        #filterProductList li:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

#bookSessionModal {
    z-index: 9991
}

#userFormModal {
    z-index: 9991
}

.custom-acc .accordion-item {
    width: 100%;
    padding: 8px;
    border: none;
    background-color: #f7f9f8;
    border-radius: 12px;
    margin-bottom: 15px;
}

.custom-acc .accordion-button {
    font-size: 17px;
    font-weight: 600;
    background-color: #f7f9f8;
    border-radius: 12px !important;
    box-shadow: none !important;
    padding: 16px 20px;
    color: #37474f;
}

    .custom-acc .accordion-button:not(.collapsed) {
        background: #f7f9f8;
        color: #2f3d44;
    }

.acc-icon {
    margin-right: 12px;
    opacity: 0.8;
}


.custom-acc .accordion-button::after {
    background-image: url("https://img.icons8.com/ios-glyphs/20/plus-math.png");
    transform: none !important;
}

.custom-acc .accordion-button:not(.collapsed)::after {
    background-image: url("https://img.icons8.com/ios-glyphs/20/minus-math.png");
}

.accordion-body {
    padding: 18px 25px;
    font-size: 15px;
    color: #555;
}

.column__content {
    width: 100%;
    padding: 10px;
    margin: 25px 0;
    background-color: #3f4a490a;
    border-radius: 5px;
}

    .column__content img {
        width: 40px;
        box-sizing: border-box;
    }

    .column__content h6 span {
        font-size: 18px;
        font-weight: 600;
        color: #2c3e3a;
        margin: 0 0 0 8px;
        padding-top: 5px;
    }

.btn-11 {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin: 0px 25px 15px;
    border-radius: 35px;
}

    .btn-11 span {
        position: relative;
        display: inline-block;
        font-size: 14px;
        font-weight: bold;
        letter-spacing: 2px;
        text-transform: uppercase;
        top: 5px;
        left: 0;
        width: 350px;
        padding: 0;
        line-height: 65px;
        transition: 0.3s;
        height: 64px;
    }

.btn-12::before {
    position: absolute;
    content: "";
    background-color: #2c3e3a;
    transition: 0.3s ease-out;
}

.btn-12 span {
    color: #000;
    border: 1px solid rgb(28, 31, 30);
    transition: 0.2s;
}

    .btn-12 span:hover {
        color: #fff;
        transition: 0.2s 0.1s;
    }

.btn-11.hover-slide-up::before {
    top: 5px;
    left: 0;
    right: 0;
    height: 0%;
    width: 350px;
}

.btn-11.hover-slide-up:hover::before {
    height: 64px;
    width: 100%;
}

.buy-now-btn {
    width: 100%;
    margin-top: 5px;
    text-align: center;
    align-items: center;
    line-height: 1.6;
    padding: 0;
    Background-color: #0000;
    color: #000;
    border: 1px solid #2c3e3a;
    font-weight: 700;
    font-size: 16px;
    height: 64px;
}

    .buy-now-btn:hover {
        background-color: #2c3e3a;
        color: #fff;
        border: 2px solid #2c3e3a;
    }


.listing-datils img {
    width: 26px;
    height: 26px;
}

.listing-datils h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1e1e1e;
    line-height: 1.2;
}

.brand strong {
    align-items: center;
    gap: 6px;
    color: #3a3e3d;
    font-size: 15px;
    margin-top: 12px;
}

.price-two {
    font-size: 26px;
    font-weight: 600;
    margin-top: 20px;
    padding: 25px 0 25px 0;
}

.main-image-box {
    width: 100%;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid #ddd;
}

.image-box {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid #ddd;
}

.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
    cursor: zoom-in;
}

    .main-img.zoomed {
        transform: scale(2);
        cursor: zoom-out;
    }

.btn-gold:hover {
    background: var(--color-gold-deep);
}

a.icon-x:hover {
    background: #fff;
}

a.icon-whatsapp:hover {
    background: #25D366;
    color: #fff;
}

a.icon-youtube:hover {
    background: #FF0000;
    color: #fff;
}

a.icon-instagram:hover {
    background: #E1306C;
    color: #fff;
}

a.icon-facebook:hover {
    background: #1877F2;
    color: #fff;
}

.cfilter {
    display: flex;
}

@media screen and (min-width:320px) and (max-width:480px) {

    .h2, h2 {
        font-size: 32px;
        text-align: center;
    }

    .search-input {
        width: 76%;
    }

    .sd-logo img {
        height: 65px;
    }

    .banner-style-one .slide {
        min-height: 450px;
    }

    .banner-style-one .banner-title {
        font-size: 35px;
    }

    .sec-pad {
        padding: 0;
    }

    .sd-about-title {
        text-align: center;
    }

    .odo {
        font-size: 60px;
    }

    .sd-about-title {
        margin-top: 20px;
    }

    .sacred__services h3 {
        font-size: 32px;
    }

    .owl-nav .owl-prev {
        left: -13px;
    }

    .owl-nav .owl-next {
        left: -13px;
    }

    .section-header h3 {
        font-size: 32px;
    }

    .sec-even .owl-nav .owl-prev {
        left: -13px;
    }

    .sec-even .owl-nav .owl-next {
        left: -13px;
    }

    .services-cards .owl-prev, .services-cards .owl-next {
        text-align: center;
    }

    .vk-footer__logo {
        text-align: center;
    }

    .vk-footer__links li {
        text-align: left;
    }

    .vk-footer__links {
        text-align: left;
    }

    .vk-footer__col {
        text-align: left;
    }

    .vk-footer__legal a {
        font-size: 16px;
    }

    .vk-footer__copyright {
        font-size: 15px;
    }

    .vk-footer__social a {
        margin-right: 9px;
    }


    .filter-btn {
        display: block;
        width: 100%;
        padding: 10px 15px;
        min-width: 100% !important;
        display: block;
    }

    .sort-select {
        min-width: 100% !important;
        padding: 10px 25px;
        text-align: center;
        margin-top: 25px;
        display: block;
    }






    .divine-page {
        padding: 20px 15px 15px 20px;
    }

    .divine-section h3 {
        font-size: 40px;
        font-weight: 600;
    }

    .divine-timeline::before {
        left: 50%;
    }

    .divine-timeline-item {
        text-align: center;
        padding-left: 0;
    }

        .divine-timeline-item h6 {
            padding: 12px 18px;
        }

    .divine-card {
        padding: 15px 14px;
    }

    .divine-soft-card {
        padding: 11px 12px;
    }

        .divine-soft-card p {
            margin-bottom: 18px;
            padding: 10px 5px;
        }

    h3.session::after {
        top: 100%;
    }

    .divine-session-card {
        padding: 19px 10px;
    }

        .divine-session-card h5 {
            font-size: 35px;
        }

    .divine-btn-outline {
        padding: 8px 0;
    }

    .g-3 {
        --bs-gutter-y: 0px;
        --bs-gutter-x: 0px;
    }

    .bottm-text {
        padding: 0;
    }

    .product-title {
        font-size: 16px;
    }

    .course-card {
        margin-bottom: 20px;
    }

    .badge-mode {
        font-size: 12px;
    }

    .course-body h5 {
        font-size: 17px;
    }

    .small-caps {
        margin: 1.8rem 0 0 0;
    }

    .description {
        font-size: 17px;
        margin-bottom: 0;
        line-height: 21px;
    }

    .footer-note {
        margin-top: 1rem;
    }

    .sec-pad {
        padding: 3rem 0;
    }

    .contact-grid {
        display: flow-root;
    }

    .btn-submit {
        padding: 15px 10px;
    }

    .contact-form {
        padding: 40px 5px;
    }

    .contact-section {
        padding: 100px 0 0 0;
    }

    .cfilter {
        display: block !important;
    }
}






/* Navbar spacing */
.sd-menu .nav-link {
    padding: 10px 15px;
    font-weight: 500;
}

/* Mobile view */
@media (max-width: 991px) {
    .sd-menu {
        background: #fff;
        padding: 10px;
    }

        .sd-menu .navbar-nav {
            text-align: center;
        }

    .sd-icons {
        flex-direction: row;
        justify-content: space-between;
    }

    .sd-logo img {
        max-width: 150px;
    }

    .dropdown-menu {
        text-align: center;
    }
}


@media (max-width: 991px) {
    .sd-menu {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

    .navbar-toggler {
        display: block !important;
        visibility: visible !important;
    }
}

.sd-menu a {
    font-size: 16px;
    font-weight: var(--font-heading-weight);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #2d1735;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    Background-color: #0000;
    border: 1px solid #0000;
    padding: 12px 28px;
    border-radius: 24px;
}

    .sd-menu a:hover {
        overflow: hidden;
        background-color: #FFF;
        border: 1px solid #6a0dad;
        color: #6a0dad;
    }

.testimonial-container {
    background: linear-gradient(135deg, #6B46C1, #9F7AEA);
    border-radius: 24px;
    padding: 35px 50px 30px; /* Extra top/bottom padding to accommodate quotes */
    position: relative;
    color: white;
    text-align: center;
    overflow: visible; /* Ensures quotes aren't clipped */
}

.quote-open {
    font-family: 'Georgia', serif;
    font-size: 6em;
    line-height: 0.8em;
    position: absolute;
    top: 10px; /* Moved inside the container */
    left: 30px;
    opacity: 0.25;
    pointer-events: none;
    margin: 0;
}

.quote-close {
    font-family: 'Georgia', serif;
    font-size: 6em;
    line-height: 0.8em;
    position: absolute;
    bottom: 10px; /* Moved inside the container */
    right: 30px;
    opacity: 0.25;
    pointer-events: none;
    margin: 0;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.5;
    margin: 5px 0 10px;
    position: relative;
    z-index: 1;
}

.testimonial-container .testimonial-text {
    color: white;
}

.author {
    font-size: 19px;
    font-weight: bold;
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 1;
}
.session-prepare {
    padding: 2.5rem 0;
}

.session-steps {
    position: relative;
    max-width: 540px;
    margin: 0 auto;
}

.session-step {
    position: relative;
    padding: 0 2.5rem 3.5rem 0;
    text-align: right;
}

/* Connecting line */
.session-steps::before {
    content: '';
    position: absolute;
    top: 5%;
    right: -5px;
    bottom: 50px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(122, 63, 193, 0.15), rgba(122, 63, 193, 0.4));
    z-index: 0;
}

.session-step:last-child {
    padding-bottom: 0;
}

.step-number {
    position: absolute;
    right: -22px;
    top: 4px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #7a3fc1;
    background: #faf7ff;
    border: 2px solid #7a3fc1;
    border-radius: 50%;
    z-index: 2;
}

.session-step h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #7a3fc1;
    margin-bottom: 0.5rem;
}

.session-step p {
    font-size: 0.8rem;
    color: #5f5f6b;
    line-height: 1.65;
    margin: 0;
}

/* Image */
.session-image-wrapper {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.session-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    aspect-ratio: 4 / 5;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .session-steps {
        max-width: 480px;
    }

        .session-steps::before {
            right: 20px;
        }

    .step-number {
        right: -18px;
    }
}

@media (max-width: 768px) {
    .session-prepare {
        padding: 3.5rem 0;
    }

    .session-step {
        padding: 0 1.5rem 3rem 0;
        text-align: center;
    }

    .step-number {
        position: relative;
        right: auto;
        margin: 0 auto 1rem;
        top: auto;
    }

    .session-steps::before {
        display: none;
    }

    .session-step:last-child {
        padding-bottom: 0;
    }
}
.modern-faq {
    background: linear-gradient(180deg, #f7f4fb, #ffffff);
    padding: 80px 20px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: #2f1747;
    margin-bottom: 40px;
}

.faq-item {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #3b1d5a;
    text-align: left;
    cursor: pointer;
    position: relative;
}

    .faq-question::after {
        content: "+";
        position: absolute;
        right: 24px;
        font-size: 1.5rem;
        transition: transform 0.3s ease;
    }

.faq-item.active .faq-question::after {
    content: "–";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    font-size: 0.98rem;
    color: #555;
    line-height: 1.7;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer ul {
    padding-left: 18px;
    margin-top: 10px;
}

.faq-answer li {
    margin-bottom: 6px;
}

/* Mobile */
@media (max-width: 768px) {
    .faq-title {
        font-size: 2rem;
    }
}

