:root {
    --primary-dark: #1a1a3e;
    --primary-purple: #2d1b4e;
    --accent-gold: #d4af37;
    --accent-gold-light: #f4d03f;
    --text-light: #f8f9fa;
    --text-muted: #b8b8d1;
    --card-bg: #ffffff;
    --gradient-spiritual: linear-gradient(135deg, #1a1a3e 0%, #2d1b4e 50%, #1a1a3e 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*body {
    font-family: 'Lato', sans-serif;
    background-color: #f8f6ff;
    color: #333;
    overflow-x: hidden;
}*/
/*
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
}
*/
/* ============================================
           HEADER & NAVIGATION SECTION
        ============================================ */
.navbar {
    background: var(--gradient-spiritual) !important;
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.navbar-brand {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold) !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

    .navbar-brand:hover {
        color: var(--accent-gold-light) !important;
        transform: scale(1.05);
    }

.search-container {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 12px 45px 12px 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    background: rgba(255,255,255,0.1);
    color: var(--text-light);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

    .search-input:focus {
        outline: none;
        background: rgba(255,255,255,0.15);
        border-color: var(--accent-gold);
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    }

    .search-input::placeholder {
        color: var(--text-muted);
    }

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-gold);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--primary-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .search-btn:hover {
        background: var(--accent-gold-light);
        transform: translateY(-50%) scale(1.1);
    }

.nav-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-icon-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .nav-icon-link:hover {
        color: var(--accent-gold);
        transform: translateY(-2px);
    }

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    font-size: 0.7rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* ============================================
           HERO BANNER SECTION
        ============================================ */
.hero-section {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, #1a1a3e 0%, #2d1b4e 50%, #0f0f2d 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    background: linear-gradient(135deg, #fff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: var(--primary-dark);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

    .btn-gold:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
        color: var(--primary-dark);
    }

.zodiac-wheel {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    opacity: 0.1;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from {
        transform: translateY(-50%) rotate(0deg);
    }

    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

/* ============================================
           CATEGORY SECTION
        ============================================ */
.section-padding {
    padding: 30px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

    .section-title h2 {
        font-size: 2.5rem;
        color: var(--primary-purple);
        margin-bottom: 0.5rem;
    }

    .section-title::after {
        content: '';
        display: block;
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
        margin: 1rem auto;
        border-radius: 2px;
    }

.category-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    height: 100%;
}

   .category-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(45, 27, 78, 0.2);
    }

.category-img-wrapper {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(45, 27, 78, 0.7) 100%);
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;

}

/*.category-card:hover .category-overlay {
    opacity: 1;
}*/

.category-title {color: #fff; width: 100%;
    padding: 5px 0px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
}

/* ============================================
           PRODUCT CARDS SECTION
        ============================================ */
.product-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(45, 27, 78, 0.15);
    }

.ast_product_section {
    position: relative;
}

.product-img-wrapper {
    /*  position: relative;*/
    overflow: hidden;
    /*  background: linear-gradient(135deg, #f8f6ff 0%, #fff 100%);*/
}

.product-img {margin-bottom: 0px !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.ast_product_info {background: #fff !important;
}


.product-card:hover .product-img {
    transform: scale(1.08);
}

.badge-discount {
    color: #fff;
    position: absolute;
    top: 20px;
    left: 10px;
    background: #ff0000;
    border-radius: 100px;
    text-align: center;
    padding: 1px 10px;
    font-weight: 600;
    font-size: 13px;
}

.badge-new {
    position: absolute;
    top: 13px;
    right: 50px;
    background: #27ae60;
    color: white;
    padding: 2px 6px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    font-family: arial;
    text-transform: lowercase;
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 3;
}

    .wishlist-btn:hover {
        background: #e74c3c;
        color: white;
        transform: scale(1.1);
    }

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-name {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-rating {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-size: 18px;
    gap: .7rem;
}

.product_description .product_rating span i {
    color: #facc15 !important;
    font-size: 18px !important;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    justify-content: center;
}

.price-current {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.price-original {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.btn-add-cart {
    width: 100%;
    background: var(--primary-purple);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .btn-add-cart:hover {
        background: var(--accent-gold);
        color: var(--primary-dark);
    }

/* ============================================
           ZODIAC SPECIAL SECTION
        ============================================ */
.zodiac-section {
    background: linear-gradient(135deg, #f8f6ff 0%, #fff 100%);
}

.zodiac-card {
    background: white;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

    .zodiac-card:hover {
        transform: scale(1.15) rotate(5deg);
        border-color: var(--accent-gold);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    }

.zodiac-icon {
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 5px;
}

.zodiac-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-purple);
    font-family: 'Cinzel', serif;
}

/* ============================================
           WHY CHOOSE US SECTION
        ============================================ */
.feature-box {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

    .feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(45, 27, 78, 0.1);
        border-color: var(--accent-gold);
    }

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: var(--primary-dark);
}

.feature-title {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.feature-text {
    color: #666;
    font-size: 0.95rem;
}

/* ============================================
           FOOTER SECTION
        ============================================ */
.footer {
    background: var(--gradient-spiritual);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-title {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 0.8rem;
    }

    .footer-links a {
        color: var(--text-muted);
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

    .social-icon:hover {
        background: var(--accent-gold);
        color: var(--primary-dark);
        transform: translateY(-3px);
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
}

.Wishlist_Section {display: grid; align-items: center;  gap: .5rem; grid-template-columns: repeat(2, 1fr); }
.delete {position:absolute; top: 10px; right: 10px;}
.mobileFilterBtn {
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    background: #fdf2e8;
    color: #fff;
    text-align: center;
    padding: 12px;
    z-index: 9997;
}

@media (max-width: 1299px) {
    .Wishlist_Section {
        display: grid;
        align-items: center;
        gap: .3rem;
        grid-template-columns: repeat(1, 1fr);
        padding: 10px;
        margin-top: 10px;
    }
   
}


    @media (max-width: 991px) {

        .shop_list-22 {
            position: fixed;
            top: 0;
            right: -100%;
            width: 320px;
            height: 100vh;
            background: #fff;
            z-index: 9999;
            overflow-y: auto;
            transition: .3s;
            border-left: 3px solid rgba(212, 175, 55, .5);
        }

        .mobileFilterBtn {
            display: block;
            background: #f96c15;
            margin-top: 0px;
            margin-bottom: 6px;
            font-size: 16px;
            padding: 3px 15px;
            font-weight: 600;
            border-radius: 5px;
            z-index: 0;
        }

        .hero-title {
            font-size: 2.5rem;
        }

        .search-container {
            max-width: 100%;
            margin: 1rem 0;
        }

        .zodiac-wheel {
            display: none;
        }
    }

    @media (max-width: 768px) {

        .hero-title {
            font-size: 2rem;
        }

        .hero-subtitle {
            font-size: 1rem;
        }

        .section-title h2 {
            font-size: 1.8rem;
        }

        .nav-icons {
            gap: 1rem;
        }

        .nav-icon-link span {
            display: none;
        }
        .addToWishlist2 {
            position: absolute;
            top: 39px;
            right: 5px;
        }


    }

    /* Smooth scroll */
    html {
        scroll-behavior: smooth;
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    ::-webkit-scrollbar-thumb {
        background: var(--primary-purple);
        border-radius: 5px;
    }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent-gold);
        }


    a {
        text-decoration: none !important;
    }
#productList .col-12.col-sm-6.col-md-6.col-lg-6.col-xl-4.col-xxl-3.mt-0.mt-lg-4 {
    padding: 0px 5px;
}
#productList .ast_product_section .ast_product_info {
    padding: 8px 5px !important;
}


    @media (max-width: 580px) {
        .wish-2 img {
            aspect-ratio: 4 / 2;
        }
        .shop_list-22 {
            width: 290px;
        }



        .w222 .product-details {
            text-align: center;
        }


        .category-title {
            font-size: 1.3rem;
            line-height: normal;
        }

        /* ============================================
           ENHANCED PRODUCT VISUALS
        ============================================ */
        .product-img {
            /* background-color: #fffdf5;*/ /* Warm Vedic paper tone fallback */
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .ast_product_image.ast_product_image_02 {
            display: flex;
            gap: 5px;
            padding: 5px !important;
            margin-bottom: 0px;
            background: #fff !important;
            border-radius: 15px;
            border: 1px solid rgba(212, 175, 55, .2) !important;
            box-shadow: 0 4px 15px rgba(0, 0, 0, .03);
            transition: all .3s ease;
            animation: fadeInRight .4s ease forwards;
            position: relative;
            overflow: hidden;
        }

        .addToWishlist {
            position: absolute;
            top: 4px;
            right: 3px;
        }

        .btn-wishlist1 i {
            border: 1px solid #780d04;
            width: 25px;
            height: 25px;
            padding-top: 6px;
            font-size: 11px;
        }

        .addToWishlist2 {
            position: absolute;
            top: 30px;
            right: 5px;
        }


        /* Luxury Vedic Placeholder Styling */
        img[src*="placeholder-vedic.png"] {
            padding: 15px;
            opacity: 0.85;
            filter: sepia(0.1) brightness(1.02);
            background: radial-gradient(circle, #fffdf5 0%, #fdf5e6 100%);
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .ast_product_image {
            background: #fffdf5;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 150px;
        }
    }


    @media only screen and (max-width:580px) {
        .ast_product_section .ast_product_image {
            background: transparent;
        }

        .ast_product_section .ast_product_info {
            justify-content: normal !important;
            padding: 4px 6px !important;
        }

        .redesign-v4 .btn-outline-maroon {
            padding: 2px 15px;
            font-size: 13px;
        }

        .redesign-v4 .btn-maroon {
            padding: 8px 15px;
            font-size: 13px;
            margin-bottom: 0px;
            line-height: 1px;
        }

        .pr-card-aa-cert-badge {
            color: #fff;
            position: absolute;
            top: 2px;
            left: 1px;
            background: #ff0000;
            border-radius: 100px;
            text-align: center;
            padding: 1px 5px;
            font-weight: 600;
            font-size: 11px;
        }
        .product_description .product_rating span i {
            color: #facc15 !important;
            font-size: 10px !important;
        }

        .product_rating span {
            font-size: 9px !important;
        }

        .ast_product_section .ast_product_info .btn-primary {
            padding: 6px 15px !important;
            margin: auto;
            width: auto !important;
            font-size: 13px;
        }

        .ast_product_section .ast_product_info .price2 .price-current {
            font-size: 16px;
        }

        .ast_product_section .ast_product_info .price2 {
            gap: 2px !important;
        }

        .product_description .product_rating {
            margin-bottom: 0 !important;
        }

        .ast_product_section .ast_product_info .price2 {
            justify-content: left;
            margin-top: 0px !important;
        }

        .ast_product_info {
            background: transparent !important;
        }



        .ast_product_section {
            display: flex !important;
            flex-direction: row !important;
            align-items: anchor-center;
            gap: 0px;
            padding: 5px;
        }

            .ast_product_section .ast_product_image img.product-img {
                width: 100%;
                height: 100%;
                object-fit: contain;
                object-position: center;
                transition: transform .6s cubic-bezier(0.165, 0.84, 0.44, 1);
                transform: none;
                display: block;
            }


        .ast_product_image {
            width: 40% !important;
            max-width: 40% !important;
            flex: 0 0 40% !important;
            position: relative;
        }

        .ast_product_section {
            height: auto !important;
        }

        .ast_product_section {
            border-radius: 5px !important;
        }

            .ast_product_section .ast_product_info .ast_shop_title a {
                line-height: normal;
            }

            .ast_product_section .ast_product_info .ast_shop_title {
                font-size: 15px !important;
                line-height: normal;
                margin-bottom: 0;
            }

        /* Right Side Content */
        .ast_product_info {
            width: 60% !important;
            max-width: 60% !important;
            flex: 0 0 60% !important;
            text-align: left !important;
            padding: 0 !important;
        }



        /*    .ast_shop_title {
        font-size: 14px !important;
        line-height: 20px !important;
        margin-bottom: 0px !important;
    }*/

        .product_description {
            margin: 0 !important;
            display: block !important;
        }

        .ast_product_info .ast_info_bottom {
            padding-top: 0px;
        }

        .ast_product_section {
            border: 1px solid #bea331 !important;
            margin: 5px 0 !important;
        }

            .ast_product_section .ast_product_info .pr-card-aa-authenticity {
                font-size: 13px !important;
                text-transform: capitalize;
                letter-spacing: normal;
                color: #d4af37 !important;
                font-weight: normal;
                margin-bottom: 15px;
                opacity: 9;
                text-align: left;
                line-height: 19px;
            }

            .ast_product_section:hover .ast_product_image a img {
                object-fit: contain;
            }
    }