:root {
    --maroon: #5d1014;
    --primary: #5d1014;
    --gold: #d4af37;
    --black: #000000;
    --white: #ffffff;
    --cream: #FDF4D9;
    --footer-bg: #5d1014; /* Dark Maroon from your image */
    --gold-text: #C5A059; /* Gold color for titles/buttons */
    --white-text: #ffffff;
}
.btn-outline-primary {
    --bs-btn-color: #5d1014 !important;
    --bs-btn-border-color: #5d1014 !important;
    --bs-btn-hover-color: #fff !important;
    --bs-btn-hover-bg: #5d1014 !important;
    --bs-btn-hover-border-color: #5d1014 !important;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #5d1014 !important;
    --bs-btn-active-border-color: #5d1014 !important;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #5d1014 !important;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #5d1014 !important;
    --bs-gradient: none;
}
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #5d1014;
    --bs-btn-border-color: #5d1014;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #5d1014;
    --bs-btn-hover-border-color: #5d1014;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #5d1014;
    --bs-btn-active-border-color: #5d1014;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #5d1014;
    --bs-btn-disabled-border-color: #5d1014;
}
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}
/* Top Black Bar */
.top-bar {
    background-color: var(--black);
    color: var(--gold);
    padding: 8px 0;
    text-align: center;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}
.top-bar span {
    margin: 0 15px;
    opacity: 0.9;
}
/* Main Header Section */
header {
    background-color: var(--maroon);
    padding: 15px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--gold);
}
.header-left, .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-grow: 1;
    justify-content: center;
}
.logo-img {
    height: 60px;
}
.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
}
.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}
/* Navigation Bar */
.nav-container {
    background-color: var(--maroon);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 10px 0;
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    gap: 35px;
}
nav ul li a {
    text-decoration: none;
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    transition: 0.3s;
}
/* Active/Hover Underline Logic */
nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}
nav ul li a:hover::after, 
nav ul li a.active::after {
    width: 100%;
}
/* Hero Video Section */
.hero-section {
    position: relative;
    height: 70vh; /* Adjust height as needed */
    width: 100%;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        gap: 15px;
    }
    nav ul li a {
        font-size: 12px;
    }
    .brand-name {
        display: none; /* Mobile view typically hides long text */
    }
}
/* Core Navigation Styling */
.nav-container {
    background-color: #531515; /* Exact Maroon from image */
    padding: 10px 0;
}

.navbar-nav .nav-link {
    color: #D4AF37 !important; /* Gold text color */
    font-weight: 500;
    padding: 10px 20px !important;
    position: relative;
    transition: 0.3s ease;
}

/* Hover & Active Underline Effect */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 20px;
    background-color: #D4AF37;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 40px);
}

/* Dropdown Logic */
.dropdown-hover {
    position: relative;
}

.custom-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #531515; /* Match header bg */
    min-width: 180px;
    border-top: 3px solid #D4AF37; /* Gold accent on top */
    padding: 10px 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.custom-dropdown a {
    display: block;
    color: #D4AF37;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 0.95rem;
    transition: background 0.2s;
}

/* Change Background on Hover (Requirement) */
.custom-dropdown a:hover {
    background-color: #3d0f0f; /* Slightly darker maroon on hover */
    color: #ffffff;
}

/* Trigger on Hover */
.dropdown-hover:hover .custom-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
/* Section Title Styling */
.products-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-top: 50px;
}

.products-subtitle {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 50px;
}

/* Product Card Styling */
.product-card {
            margin-bottom: 40px;
            transition: all 0.3s ease;
}

.image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 1.58 / 1; /* Matching the coin card proportions */
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease-in-out;
}

.img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-card:hover .img-main {
    opacity: 0;
}

.product-card:hover .img-hover {
    opacity: 1;
}

/* Controls: Select and Bag Icon */
.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.weight-select {
    flex-grow: 1;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 10px 15px;
    font-size: 0.95rem;
    color: #333;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    appearance: none;
    cursor: pointer;
}

.add-to-cart {
    background-color: var(--maroon);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.add-to-cart:hover {
    background-color: #460c0f;
}

/* Product Text Info */
.product-name {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 15px;
    letter-spacing: 0.5px;
}

.product-price {
    font-size: 1rem;
    color: #212529;
    font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .products-title { font-size: 2rem; }
}

/* Top Cards Section */
.category-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    position: relative;
}
.category-card img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}
.card-img-overlay {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}
.exclusive-tag {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ddd;
}
.card-title {
    color: var(--gold);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Bottom Section */
.product-section { background-color: var(--cream); padding: 60px; border-radius: 0 20px 20px 0; }
.btn-maroon {
    background-color: var(--maroon);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
}
.btn-maroon:hover { background-color: #3d0f0f; color: white; }

/* List Section */
.product-list-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product-info h6 { color: #B8860B; margin-bottom: 2px; font-weight: bold; }
.price-range { font-size: 0.9rem; color: #666; }
.cart-icon {
    background-color: var(--maroon);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.circle{
    border-radius: 50%;
}

/* Top Hero Section */
.hero-section2 { background-color: var(--maroon); color: white; min-height: 400px; }
.hero-gold-text { color: #D4AF37; font-weight: bold; }
.hero-img-container { background: #fff; display: flex; align-items: center; justify-content: center; overflow: hidden; }

/* Why Us Section */
.section-title { font-weight: 800; color: #000; margin-bottom: 5px; }
.section-subtitle { color: #666; margin-bottom: 40px; }
.icon-box { text-align: center; padding: 20px; }
.icon-box i { font-size: 3rem; color: #000; margin-bottom: 15px; display: block; }
.icon-box h6 { font-weight: bold; font-size: 1.1rem; }

/* Testimonials */
.testimonial-header { color: var(--gold); font-weight: bold; font-size: 2rem; }
.testimonial-card {
    background-color: whitesmoke;
    border: none;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 0 3px;
}
.testimonial-title { color: var(--gold); font-weight: bold; margin-bottom: 10px; }
.stars { color: var(--gold); margin-bottom: 15px; }
.author { font-weight: bold; font-size: 0.9rem; margin-top: 20px; }

.pagination-nav { font-weight: bold; color: #000; }

.main-footer {
    background-color: var(--footer-bg);
    color: var(--white-text);
    padding: 60px 0 20px 0;
    font-family: Arial, sans-serif;
}

.footer-heading {
    color: var(--gold-text);
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white-text);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.9;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--gold-text);
    opacity: 1;
}

/* Newsletter Input */
.newsletter-input {
    border-radius: 4px;
    border: none;
    padding: 10px;
    width: 100%;
    margin-bottom: 15px;
}

.btn-subscribe {
    background-color: var(--gold-text);
    color: var(--footer-bg);
    border: none;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 4px;
    width: 150px;
}

/* Social Icons */
.social-icons a {
    color: var(--white-text);
    font-size: 1.4rem;
    margin-right: 15px;
    text-decoration: none;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 20px;
}

.payment-icons img {
    height: 25px;
    margin-left: 10px;
    filter: brightness(1);
}

.footer-logo {
    max-width: 80px;
}



/* Bulk Order Page Specific CSS */
.bulk-hero {
    background-color: var(--maroon);
    color: var(--white);
    padding: 60px 0;
}

.bulk-hero-title {
    color: var(--gold);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
}

.bulk-section-header {
    font-size: 2.5rem;
    font-weight: 500;
    margin: 50px 0 40px;
    color: var(--black);
}

/* Slider Customization */
.bulk-slider-container {
    position: relative;
    padding: 0 50px;
}

.bulk-sample-card img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Pagination Numbers Styling */
.swiper-pagination-bullet {
    background: transparent !important;
    opacity: 1 !important;
    color: #ccc;
    font-weight: bold;
    margin: 0 10px !important;
}

.swiper-pagination-bullet-active {
    color: var(--black);
    text-decoration: underline;
}

/* Form Styling */
.bulk-form-container {
    max-width: 900px;
    margin: 0 auto;
}

.bulk-form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--black);
}

.bulk-form-label span { color: #cc0000; }

.bulk-input-field {
    border: 1px solid #e0e0e0;
    padding: 12px;
    border-radius: 4px;
    background-color: var(--white);
}

.bulk-upload-wrapper {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    color: #888;
    width: 130px;
    cursor: pointer;
}

.bulk-btn-submit {
    background-color: var(--maroon);
    color: var(--white);
    padding: 10px 45px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    transition: opacity 0.3s;
}

.bulk-btn-submit:hover { opacity: 0.9; }

/* Note Section */
.bulk-note-box {
    margin-top: 60px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--black);
}

.bulk-note-box h4 { 
    font-weight: 800; 
    margin-bottom: 20px;
}



/* Jewellery Store Tie-ups Specific Styles */
.jewellery-store-tie-ups-hero {
    background-image: url(images/bc/tie-ups.png);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
}

.jewellery-store-tie-ups-hero-title {
    color: var(--gold);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.jewellery-store-tie-ups-hero-text {
    max-width: 500px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.jewellery-store-tie-ups-hero-graphic {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.3; /* Subtle handshake graphic as seen in image */
    max-width: 400px;
}

/* Form Styling */
.jewellery-store-tie-ups-form-section {
    padding: 80px 0;
    background-color: var(--white);
}

.jewellery-store-tie-ups-form-container {
    max-width: 900px;
    margin: 0 auto;
}

.jewellery-store-tie-ups-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--black);
    font-size: 0.95rem;
}

.jewellery-store-tie-ups-label span {
    color: #cc0000;
    margin-left: 3px;
}

.jewellery-store-tie-ups-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: var(--white);
    transition: border-color 0.3s;
}

.jewellery-store-tie-ups-input:focus {
    outline: none;
    border-color: var(--gold);
}

.jewellery-store-tie-ups-btn-container {
    margin-top: 30px;
    text-align: center;
}

.jewellery-store-tie-ups-submit-btn {
    background-color: var(--maroon);
    color: var(--white);
    padding: 12px 50px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.jewellery-store-tie-ups-submit-btn:hover {
    background-color: #3d0a0d;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .jewellery-store-tie-ups-hero-graphic {
        display: none;
    }
    .jewellery-store-tie-ups-hero {
        text-align: center;
        padding: 50px 0;
    }
}


/* About Us Page Custom Prefixed Styles */
.about-hero {
    background-color: var(--maroon);
    color: var(--white);
    padding: 80px 0;
}

.about-hero-title {
    color: var(--gold);
    font-size: 3.5rem;
    font-weight: 700;
}

.about-intro-section {
    padding: 80px 0;
    text-align: center;
}

.about-gold-title {
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 25px;
}

.about-pure-gold-banner {
    background-color: var(--maroon);
    color: var(--white);
    padding: 0;
    overflow: hidden;
}

.about-banner-text {
    padding: 60px;
}

.about-banner-title {
    color: var(--gold);
    font-weight: 700;
}

/* Founder Section */
.about-founder-section {
    padding: 100px 0;
}

.about-founder-img-wrapper {
    position: relative;
    width: 350px;
    height: 350px;
    margin: 0 auto;
}

.about-founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--gold);
    padding: 10px;
}

.about-founder-img-wrapper::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px dashed var(--gold);
    border-radius: 50%;
}

/* Numbers Section */
.about-numbers-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-number-item h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--black);
}

.about-number-label {
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    font-size: 0.8rem;
}

/* Online Store Section */
.about-store-section {
    padding: 80px 0;
}

.about-btn-gold {
    background-color: #D6B575;
    color: var(--white);
    border: none;
    padding: 12px 35px;
    font-weight: bold;
    border-radius: 4px;
}

/* Three Pillars Section */
.about-pillar-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}
.product-link {
    text-decoration: none;
    color: var(--maroon);
    display: block;
}

.product-link:hover .image-wrapper {
    opacity: 0.9;
    transform: scale(1.02);
    transition: all 0.3s ease;
    
}

.product-link:hover .product-name {
    color: var(--maroon); /* Change to your theme color */
}
a.product-link.text-decoration-none {
    color: var(--maroon);
}

/* Product Details */
/* Product Details Custom Styles */
.product-details-main-section {
    padding: 60px 0;
    background-color: var(--white);
}

.product-details-image-card {
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 20px;
    background: var(--white);
}

.product-details-thumb {
    width: auto;
    height: 80px;
    border: 2px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    margin-right: 10px;
}

.product-details-thumb.active {
    border-color: var(--maroon);
}

.product-details-title {
    color: var(--gold-text);
    font-weight: 700;
    font-size: 2rem;
    text-transform: uppercase;
}

.product-details-price {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 15px 0;
}

.product-details-weight-label {
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.product-details-variation-btn {
    border: 1px solid #ddd;
    background: var(--white);
    padding: 8px 15px;
    border-radius: 5px;
    margin: 5px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.product-details-variation-btn:hover, 
.product-details-variation-btn.active {
    border-color: var(--gold-text);
    background-color: var(--cream);
}

.product-details-qty-input {
    width: 60px;
    height: 45px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.product-details-add-to-cart {
    background-color: var(--maroon);
    color: var(--white);
    border: none;
    padding: 10px 100px;
    font-weight: 700;
    border-radius: 5px;
    width: 100%;
}

.product-details-feature-icon {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-details-feature-icon img {
    width: 45px;
    margin-bottom: 10px;
}

.product-details-review-btn {
    background-color: var(--gold-text);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
}
.product-details-image-card.text-center.mb-3 img {
    width: 100%;
}


/* Login Page Custom Prefixed Styles */
.login-main-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 15px;
    background-color: var(--white);
}

.login-form-wrapper {
    width: 100%;
    max-width: 500px;
}

.login-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--black);
}

.login-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--black);
    font-size: 0.95rem;
}

.login-label span {
    color: #cc0000;
    margin-left: 3px;
}

.login-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: var(--white);
    margin-bottom: 25px;
    transition: border-color 0.3s;
}

.login-input:focus {
    outline: none;
    border-color: var(--gold);
}

.login-options-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.login-link-gold {
    color: var(--gold-text);
    text-decoration: none;
    font-weight: 500;
}

.login-link-gold:hover {
    text-decoration: underline;
    color: var(--gold);
}

.login-submit-btn {
    width: 100%;
    background-color: var(--maroon);
    color: var(--white);
    padding: 14px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.login-submit-btn:hover {
    opacity: 0.9;
}

.login-footer-text {
    text-align: center;
    margin-top: 30px;
    color: var(--black);
    font-size: 0.95rem;
}

/* Sign Up Page Custom Prefixed Styles */
.signup-main-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 15px;
    background-color: var(--white);
}

.signup-form-wrapper {
    width: 100%;
    max-width: 600px; /* Slightly wider for the two-column name row */
}

.signup-page-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--black);
}

.signup-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--black);
    font-size: 0.95rem;
}

.signup-label span {
    color: var(--gold-text); /* Matching the asterisk color to your theme */
    margin-left: 3px;
}

.signup-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: var(--white);
    margin-bottom: 25px;
    transition: border-color 0.3s;
}

.signup-input:focus {
    outline: none;
    border-color: var(--gold);
}

.signup-options-row {
    text-align: right;
    margin-bottom: 25px;
}

.signup-link-gold {
    color: var(--gold-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.signup-link-gold:hover {
    text-decoration: underline;
    color: var(--gold);
}

.signup-submit-btn {
    width: 100%;
    background-color: var(--maroon);
    color: var(--white);
    padding: 14px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.signup-submit-btn:hover {
    opacity: 0.9;
}

.signup-footer-text {
    text-align: center;
    margin-top: 30px;
    color: var(--black);
    font-size: 1rem;
}
.cart-badge {
    font-size: 0.6rem;
    padding: 2px 6px;
    min-width: 18px;
    text-align: center;
}


/* Cart Styles */
.cart-section {
    background-color: var(--cream);
    min-height: 70vh;
}

.cart-title {
    color: var(--maroon);
    font-weight: 700;
    border-bottom: 3px solid var(--gold);
    padding-bottom: 10px;
    display: inline-block;
}

.cart-spinner {
    color: var(--gold);
    width: 3rem;
    height: 3rem;
}

/* Address Button */
.cart-address-btn {
    background-color: var(--white);
    border: 2px solid var(--gold);
    color: var(--maroon);
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    text-align: left;
    transition: all 0.3s;
    margin-bottom: 15px;
}

.cart-address-btn:hover {
    background-color: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

/* Address Modal Styles */
.address-section-title {
    color: var(--maroon);
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--cream);
}

.address-card {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s;
    height: 100%;
}

.address-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.address-card.selected {
    border-color: var(--maroon);
    background-color: rgba(93, 16, 20, 0.05);
}

.address-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.address-radio {
    margin-right: 10px;
    accent-color: var(--maroon);
}

.address-label {
    font-weight: 600;
    color: var(--maroon);
    margin-bottom: 0;
}

.address-card-body {
    font-size: 0.9rem;
}

/* Shipping Info */
.shipping-info {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.address-display {
    background-color: var(--white);
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    border: 1px solid #dee2e6;
}

/* Form Controls */
.form-control:focus, .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

/* Rest of the existing styles remain the same */
.cart-item-card {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 4px solid var(--gold);
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--cream);
}

.cart-item-title {
    color: var(--maroon);
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-variation {
    color: var(--gold-text);
    font-weight: 500;
    margin-bottom: 5px;
}

.cart-item-sku {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.cart-quantity-group {
    width: 120px;
}

.cart-quantity-btn {
    background-color: var(--maroon);
    color: var(--white);
    border: none;
    padding: 5px 12px;
}

.cart-quantity-btn:hover {
    background-color: var(--gold);
}

.cart-quantity-input {
    text-align: center;
    border-color: var(--maroon);
}

.cart-item-price {
    color: var(--maroon);
    font-weight: 700;
}

.cart-remove-btn {
    color: #dc3545;
    background: none;
    border: none;
    font-size: 1.2rem;
}

.cart-remove-btn:hover {
    color: #bb2d3b;
}

.cart-summary-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 2px solid var(--gold);
    position: sticky;
    top: 20px;
}

.cart-summary-title {
    color: var(--maroon);
    border-bottom: 2px solid var(--cream);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.cart-checkout-btn {
    background: linear-gradient(135deg, var(--maroon), #7a1a1f);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s;
}

.cart-checkout-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--gold), #e6c158);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.cart-checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.cart-security-text {
    color: #28a745;
    font-size: 0.9rem;
    text-align: center;
}

.cart-info-card {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid var(--gold);
}

.cart-info-card h5 {
    color: var(--maroon);
    margin-bottom: 15px;
}

.cart-benefits-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.cart-benefits-list li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.cart-benefits-list li:before {
    content: "✓";
    color: var(--gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.cart-empty-icon {
    font-size: 4rem;
    color: var(--gold);
}

.cart-empty-title {
    color: var(--maroon);
    margin-bottom: 10px;
}

.cart-empty-text {
    color: #666;
    margin-bottom: 20px;
}

.cart-shop-btn {
    background-color: var(--maroon);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.cart-shop-btn:hover {
    background-color: var(--gold);
    color: var(--white);
}

.payment-amount-display h3 {
    color: var(--maroon);
    font-weight: 700;
}

.cart-razorpay-btn {
    background-color: #528FF0;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: all 0.3s;
}

.cart-razorpay-btn:hover {
    background-color: #3a7de8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(82, 143, 240, 0.3);
}

@media (max-width: 768px) {
    .cart-item-card .row > div {
        margin-bottom: 10px;
    }
    
    .cart-quantity-group {
        width: 100px;
    }
    
    .address-card {
        margin-bottom: 15px;
    }
}
.w-100.text-align-center {
    text-align: center;
    display: flex;
    justify-content: center;
}
