﻿: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.75rem;
    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);
}

/* ============================================
           RESPONSIVE DESIGN
        ============================================ */
@media (max-width: 991px) {
    .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;
    }
}

/* 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;
}
@media (max-width: 580px) {
    .category-title {
        font-size: 1.3rem;
        line-height: normal;
    }
}