/* =====================================================
   GOLDEN SHRINE JEWELS — GOLDEN TOUCH THEME
   Complete luxury gold color system override
   ===================================================== */


/* =====================================================
   1. CSS CUSTOM PROPERTY OVERRIDES (Golden Palette)
   ===================================================== */
:root {
    /* === PRIMARY GOLD COLORS === */
    --primary: #C9963A;
    /* Main gold */
    --primary-hover: #b37e28;
    /* Darker gold on hover */
    --primary-dark: #7A5C1E;
    /* Deep antique gold */
    --primary-light: #F0D080;
    /* Light shimmering gold */
    --primary-warm: #E8B84B;
    /* Warm gold accent */
    --gold-shine: #FFD700;
    /* Pure gold shine */
    --gold-pale: #FFF3CD;
    /* Pale gold background */
    --gold-rich: #8B6914;
    /* Rich dark gold */

    /* === RGBA PRIMARY TRANSPARENCIES === */
    --rgba-primary-1: rgba(201, 150, 58, 0.1);
    --rgba-primary-2: rgba(201, 150, 58, 0.2);
    --rgba-primary-3: rgba(201, 150, 58, 0.3);
    --rgba-primary-4: rgba(201, 150, 58, 0.4);
    --rgba-primary-5: rgba(201, 150, 58, 0.5);
    --rgba-primary-6: rgba(201, 150, 58, 0.6);
    --rgba-primary-7: rgba(201, 150, 58, 0.7);
    --rgba-primary-8: rgba(201, 150, 58, 0.8);
    --rgba-primary-9: rgba(201, 150, 58, 0.9);

    /* === BACKGROUND SYSTEM === */
    --body-bg: #FAF6EE;
    /* Warm ivory body */
    --body-bg-2: #F5EFE0;
    /* Slightly deeper ivory */
    --bg-white: #FFFDF7;
    /* Warm white */
    --bg-white-2: rgba(255, 253, 247, 0.70);
    --bg-light: #F0E8D0;
    /* Light parchment */
    --input-bg: #FBF5E6;
    /* Gold-tinted input bg */
    --card-bg: #FFFDF7;
    /* Card background */

    /* === BORDER & SHADOW === */
    --border-color: #DEC98A;
    /* Gold border */
    --box-shadow: 0px 20px 40px rgba(201, 150, 58, 0.2);
    --box-shadow-gold: 0 4px 24px rgba(201, 150, 58, 0.3);
    --box-shadow-deep: 0 8px 40px rgba(122, 92, 30, 0.25);

    /* === GRADIENT SYSTEM === */
    --bg-gradient: linear-gradient(180deg, #E8B84B 10%, #FAF6EE 29.87%);
    --gold-gradient: linear-gradient(135deg, #C9963A 0%, #F0D080 50%, #C9963A 100%);
    --gold-gradient-v: linear-gradient(180deg, #FFD700 0%, #C9963A 50%, #7A5C1E 100%);
    --header-gradient: linear-gradient(135deg, #1A0E00 0%, #3D2800 40%, #1A0E00 100%);
    --shine-gradient: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.4) 50%, transparent 100%);

    /* === TYPOGRAPHY COLORS === */
    --title: #1A0E00;
    /* Near-black for headings */
    --body-color: #2D2010;
    /* Warm dark brown body text */
    --text-accent: #8B6914;
    /* Gold accent text */
    --text-light: rgba(45, 32, 16, 0.55);
    --theme-text-color: #fff;

    /* === SECONDARY / DARK === */
    --secondary: #1A0E00;
    /* Near-black */
    --secondary-light: #8B7355;
    /* Warm bronze-grey */
    --dark: #1A0E00;
    --light: #F0E8D0;

    /* === FONTS === */

    /* === BORDER RADIUS (keep existing) === */
    --border-radius-xl: 20px;
    --border-radius-md: 15px;
    --border-radius: 12px;
    --border-radius-sm: 10px;
}

/* =====================================================
   2. BOOTSTRAP VARIABLE OVERRIDES
   ===================================================== */
:root,
[data-bs-theme="light"] {
    --bs-primary: #C9963A;
    --bs-primary-rgb: 201, 150, 58;
    --bs-secondary: #1A0E00;
    --bs-secondary-rgb: 26, 14, 0;
    --bs-body-font-family: 'Jost', sans-serif;
    --bs-body-color: #2D2010;
    --bs-body-color-rgb: 45, 32, 16;
    --bs-body-bg: #FAF6EE;
    --bs-body-bg-rgb: 250, 246, 238;
    --bs-heading-color: #1A0E00;
    --bs-link-color: #C9963A;
    --bs-link-color-rgb: 201, 150, 58;
    --bs-link-hover-color: #7A5C1E;
    --bs-link-hover-color-rgb: 122, 92, 30;
    --bs-primary-text-emphasis: #4D3510;
    --bs-primary-bg-subtle: #FBF3DC;
    --bs-primary-border-subtle: #DEC98A;
    --bs-focus-ring-color: rgba(201, 150, 58, 0.25);
    --bs-border-color: #DEC98A;
    --bs-box-shadow: 0px 20px 40px rgba(201, 150, 58, 0.2);
}

/* =====================================================
   3. GLOBAL BASE STYLES
   ===================================================== */
body {
    background-color: var(--body-bg) !important;
    color: var(--body-color) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: var(--title) !important;
    letter-spacing: 0.02em;
}

/* Subtle golden shimmer on page headings */
h1,
.h1,
h2,
.h2 {
    background: linear-gradient(135deg, #1A0E00 30%, #C9963A 60%, #7A5C1E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =====================================================
   4. LINKS & INTERACTIVE ELEMENTS
   ===================================================== */
a {
    color: var(--primary) !important;
    transition: color 0.25s ease;
}

a:hover {
    color: var(--primary-dark) !important;
}

/* =====================================================
   5. BUTTONS
   ===================================================== */
.btn-primary,
.btn.btn-primary {
    background: var(--gold-gradient) !important;
    background-color: var(--primary) !important;
    border-color: var(--primary-dark) !important;
    color: #fff !important;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(201, 150, 58, 0.35);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* .btn-primary:not(.bootstrap-touchspin-down):not(.bootstrap-touchspin-up)::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 60%;
    height: 200%;
    background: rgba(255, 255, 255, 0.25);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
} */

.btn-primary:hover::after {
    left: 120%;
}

.btn-primary:hover,
.btn.btn-primary:hover {
    background: linear-gradient(135deg, #b37e28 0%, #E8B84B 50%, #b37e28 100%) !important;
    border-color: var(--gold-rich) !important;
    box-shadow: 0 6px 25px rgba(201, 150, 58, 0.5) !important;
    transform: translateY(-1px);
}

.btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
    background: transparent !important;
}

.btn-outline-primary:hover {
    background: var(--gold-gradient) !important;
    color: #fff !important;
}

/* =====================================================
   6. HEADER — ALL VARIANTS
   ===================================================== */
.header,
.header-fixed,
.header.style-3,
.header.header-fixed {
    background: linear-gradient(135deg, #1A0E00 0%, #3D2800 40%, #1A0E00 100%) !important;
    border-bottom: 2px solid #C9963A !important;
    box-shadow: 0 2px 20px rgba(201, 150, 58, 0.3) !important;
}

.header::after,
.header-fixed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(135deg, #C9963A 0%, #F0D080 50%, #C9963A 100%);
}

.header .header-content,
.header-fixed .header-content {
    padding: 10px 16px !important;
}

/* Logo text in main header */
.header a.fw-bold,
.header .logo-text {
    color: #FFD700 !important;
    font-size: 1.2rem !important;
    letter-spacing: 0.08em;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
    -webkit-text-fill-color: #FFD700 !important;
    background: none !important;
}

/* All icons inside any header variant */
.header button i,
.header i,
.header-fixed i,
.header-fixed button i,
.header .ri-notification-3-line,
.header-fixed .ri-notification-3-line {
    color: #FFD700 !important;
}

/* HeaderPage title (h5.title inside .mid-content) */
.header-fixed .mid-content h5,
.header-fixed .mid-content .title,
.header.style-3 .mid-content h5,
.header.style-3 .mid-content .title {
    color: #FFD700 !important;
    -webkit-text-fill-color: #FFD700 !important;
    background: none !important;
    font-weight: 600;
    letter-spacing: 0.06em;
}

/* Back button inside HeaderPage */
.header-fixed .back-btn,
.header.style-3 .back-btn,
.header-fixed .dz-icon,
.header.style-3 .dz-icon {
    color: #FFD700 !important;
    background: rgba(201, 150, 58, 0.15) !important;
    border: 1px solid rgba(201, 150, 58, 0.35) !important;
    border-radius: 8px !important;
}

.header-fixed .back-btn i,
.header.style-3 .back-btn i {
    color: #FFD700 !important;
}


/* =====================================================
   7. SIDEBAR / MOBILE MENU
   ===================================================== */
.sidebar {
    background: #1A0E00 !important;
    border-right: 2px solid var(--primary) !important;
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.5) !important;
}

.sidebar .author-box {
    background: linear-gradient(135deg, #2D1C00 0%, #4D3510 100%) !important;
    border-bottom: 1px solid var(--primary) !important;
    padding: 16px !important;
}

.sidebar .author-box .name {
    color: #FFD700 !important;
}

.sidebar .author-box .mail {
    color: rgba(255, 215, 0, 0.6) !important;
}

.sidebar .nav li a,
.sidebar .navbar-nav li a,
.sidebar ul.nav li>a,
.sidebar ul li a {
    color: #F0D080 !important;
    border-bottom: 1px solid rgba(201, 150, 58, 0.2) !important;
    transition: all 0.25s ease !important;
}

.sidebar ul li a:hover,
.sidebar ul li a.active {
    color: #FFD700 !important;
    background: rgba(201, 150, 58, 0.15) !important;
    padding-left: 20px !important;
}

.sidebar ul li a i,
.sidebar ul li a .ri-logout-box-r-line {
    color: var(--primary) !important;
}

.sidebar .sidebar-bottom {
    border-top: 1px solid rgba(201, 150, 58, 0.3) !important;
    color: rgba(240, 208, 128, 0.7) !important;
}

.sidebar .sidebar-bottom b {
    color: #FFD700 !important;
}

.sidebar-bottom span {
    color: rgba(240, 208, 128, 0.5) !important;
}

/* Overlay */
.dark-overlay {
    background: rgba(26, 14, 0, 0.7) !important;
    backdrop-filter: blur(4px);
}

/* =====================================================
   8. BOTTOM NAVIGATION BAR (NavBar) — GOLDEN THEME
   ===================================================== */

/* Golden navbar container */
.golden-navbar {
    background: linear-gradient(180deg, #1A0E00 0%, #0D0700 100%) !important;
    border-top: 2px solid #C9963A !important;
    box-shadow: 0 -4px 20px rgba(201, 150, 58, 0.2) !important;
}

/* All nav links in the bottom bar */
.golden-navbar .nav-item,
.golden-navbar a.nav-item {
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: rgba(240, 208, 128, 0.5) !important;
    transition: color 0.2s ease;
}

/* Active nav link (via React Router active class) */
.golden-navbar a.active,
.golden-navbar .nav-item.active {
    color: #C9963A !important;
}

/* navlabel text styling */
.golden-navbar .navlabel {
    color: inherit !important;
}

/* Active icon bubble */
.golden-navbar a.active .navlabel,
.golden-navbar .nav-item.active .navlabel {
    color: #C9963A !important;
    font-weight: 600;
}

/* Legacy footer-fixed / bottom-nav selectors */
.footer-fixed,
.bottom-nav,
[class*="bottom-bar"],
[class*="tab-bar"] {
    background: linear-gradient(180deg, #1A0E00 0%, #0D0700 100%) !important;
    border-top: 2px solid var(--primary) !important;
    box-shadow: 0 -4px 20px rgba(201, 150, 58, 0.2) !important;
}

.footer-fixed a,
.bottom-nav a,
[class*="bottom-bar"] a {
    color: rgba(240, 208, 128, 0.6) !important;
}

.footer-fixed a.active,
.footer-fixed .active a,
.bottom-nav a.active,
[class*="bottom-bar"] a.active {
    color: #FFD700 !important;
}

/* navlabel general — make sure it inherits and is positioned correctly */
span.navlabel {
    color: inherit !important;
}


/* =====================================================
   9. FOOTER
   ===================================================== */
footer .py-5.footer.bg-dark,
.footer.bg-dark,
.py-5.footer {
    background: linear-gradient(180deg, #1A0E00 0%, #0D0700 100%) !important;
    border-top: 2px solid var(--primary) !important;
}

footer .text-primary,
.footer .text-primary {
    color: #FFD700 !important;
}

footer .footer-copyright,
.footer-copyright {
    background: #0D0700 !important;
    border-top: 1px solid rgba(201, 150, 58, 0.3) !important;
}

footer .footer-copyright .text-black {
    color: rgba(240, 208, 128, 0.7) !important;
}

footer a,
.footer a {
    color: rgba(240, 208, 128, 0.7) !important;
    transition: color 0.2s;
}

footer a:hover,
.footer a:hover {
    color: #FFD700 !important;
}

.cities-footer {
    background: var(--gold-pale) !important;
    border-color: var(--border-color) !important;
}

.cities-footer h6 {
    color: var(--title) !important;
}

/* =====================================================
   10. PRODUCT CARDS
   ===================================================== */
.dz-card,
.product-card,
.item-card,
[class*="dz-card"],
[class*="product-card"] {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--border-radius) !important;
    box-shadow: var(--box-shadow) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    overflow: hidden;
}

.dz-card:hover,
.product-card:hover,
.item-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: var(--box-shadow-gold) !important;
    border-color: var(--primary) !important;
}

/* Price tags */
.price,
.old-price,
.new-price,
[class*="price"] {
    color: var(--primary) !important;
    font-weight: 600 !important;
}

/* =====================================================
   11. FORM INPUTS
   ===================================================== */
.form-control,
.form-select,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
textarea,
select {
    background-color: var(--input-bg) !important;
    border: 1.5px solid var(--border-color) !important;
    color: var(--body-color) !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.form-control:focus,
.form-select:focus,
input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(201, 150, 58, 0.15) !important;
    background-color: #FFFDF7 !important;
    outline: none !important;
}

.form-control::placeholder,
input::placeholder,
textarea::placeholder {
    color: rgba(139, 103, 20, 0.5) !important;
}

/* =====================================================
   12. BADGES & LABELS
   ===================================================== */
.badge,
.badge-primary,
[class*="badge"] {
    background-color: var(--primary) !important;
    color: #fff !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em;
}

.badge-success,
.badge.bg-success {
    background-color: #2D7A3A !important;
}

.badge-danger,
.badge.bg-danger {
    background-color: #8B2020 !important;
}

.badge-warning,
.badge.bg-warning {
    background-color: var(--primary) !important;
    color: #fff !important;
}

/* =====================================================
   13. SWIPER / SLIDERS
   ===================================================== */
.swiper-pagination-bullet-active,
.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--primary) !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    color: var(--primary) !important;
}

/* =====================================================
   14. TABS
   ===================================================== */
.nav-tabs .nav-link,
.nav-pills .nav-link {
    color: var(--primary-dark) !important;
    border-color: transparent !important;
    font-weight: 500;
    transition: all 0.25s ease !important;
}

.nav-tabs .nav-link:hover,
.nav-pills .nav-link:hover {
    color: var(--primary) !important;
    background: var(--rgba-primary-1) !important;
}

.nav-tabs .nav-link.active,
.nav-pills .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: var(--primary) !important;
    border-bottom: 2px solid var(--primary) !important;
    background: var(--rgba-primary-2) !important;
    font-weight: 600;
}

/* =====================================================
   15. CATEGORY / SECTION HEADERS
   ===================================================== */
.section-head,
.section-title,
[class*="section-head"] {
    position: relative;
}

.section-head::after,
.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 8px 0 0;
}

/* Decorative divider */
.dz-separator,
.separator {
    background: var(--gold-gradient) !important;
    height: 2px !important;
}

/* =====================================================
   16. SKELETON LOADERS
   ===================================================== */
.skeleton {
    background: linear-gradient(90deg, #F0E8D0 25%, #E8D8A8 50%, #F0E8D0 75%) !important;
    background-size: 200% 100% !important;
    animation: shimmer 1.5s infinite !important;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* =====================================================
   17. ACCOUNT / PROFILE PAGES
   ===================================================== */
.account-sidebar,
[class*="account-sidebar"],
[class*="profile-sidebar"] {
    background: #1A0E00 !important;
    border-right: 2px solid var(--primary) !important;
}

.account-sidebar a,
.account-sidebar .nav-link {
    color: rgba(240, 208, 128, 0.8) !important;
}

.account-sidebar .nav-link.active,
.account-sidebar a.active {
    color: #FFD700 !important;
    background: rgba(201, 150, 58, 0.2) !important;
    border-left: 3px solid var(--primary) !important;
}

/* Profile avatar ring */
.dz-media img,
.author-box .dz-media img {
    border: 3px solid var(--primary) !important;
    box-shadow: 0 0 15px rgba(201, 150, 58, 0.4) !important;
    background: white;
    border-radius: 100%;
}

/* =====================================================
   18. CART & CHECKOUT
   ===================================================== */
.cart-summary,
[class*="cart-box"],
[class*="order-summary"] {
    background: var(--gold-pale) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--border-radius) !important;
}

.checkout-steps .step.active,
[class*="checkout-step"].active {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

/* =====================================================
   19. TEXT COLOR UTILITIES (OVERRIDE)
   ===================================================== */
.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary-light) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
    background: var(--gold-gradient) !important;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

/* Fix white headings that used gold gradient override */
.text-white h1,
.text-white h2,
.text-white .h1,
.text-white .h2,
h1.text-white,
h2.text-white {
    background: none !important;
    -webkit-text-fill-color: #fff !important;
    color: #fff !important;
}

/* =====================================================
   20. TOAST / NOTIFICATION OVERRIDES
   ===================================================== */
.go2072408551 {
    /* react-hot-toast */
    background: #1A0E00 !important;
    color: #FFD700 !important;
    border: 1px solid var(--primary) !important;
}

/* =====================================================
   21. HEADER PAGE (no-header pages)
   ===================================================== */
.header-page,
[class*="page-header"] {
    background: var(--header-gradient) !important;
    border-bottom: 2px solid var(--primary) !important;
}

.header-page h3,
.header-page h4,
.header-page .h3 {
    color: #FFD700 !important;
    -webkit-text-fill-color: #FFD700 !important;
    background: none !important;
}

/* =====================================================
   22. OTP / Active Orders Banner
   ===================================================== */
.fix-otp {
    background: linear-gradient(135deg, #1A0E00, #3D2800) !important;
    border-color: var(--primary) !important;
}

.fix-otp .otp-box {
    background: #FBF5E6 !important;
    border-color: var(--primary) !important;
    color: var(--body-color) !important;
}

.otp-box .bg-success {
    background: var(--gold-gradient) !important;
    color: #fff !important;
}

/* =====================================================
   23. RATE CALCULATOR
   ===================================================== */
.rate-calculator,
[class*="rate-card"] {
    background: var(--gold-pale) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--border-radius-md) !important;
    box-shadow: var(--box-shadow-gold) !important;
}

/* =====================================================
   24. SPECIAL DECORATIVE ELEMENTS
   ===================================================== */

/* Gold shimmer line separator */
.gold-line {
    height: 2px;
    background: var(--gold-gradient);
    border: none;
    border-radius: 2px;
    margin: 12px 0;
    animation: goldShimmer 3s ease-in-out infinite;
}

@keyframes goldShimmer {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* Gold badge / label utility */
.gold-badge {
    background: var(--gold-gradient);
    color: #1A0E00;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
}

/* Luxury card hover border shine */
.luxury-card {
    position: relative;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: box-shadow 0.4s, border-color 0.4s;
}

.luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.12), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.luxury-card:hover::before {
    left: 140%;
}

.luxury-card:hover {
    box-shadow: 0 8px 35px rgba(201, 150, 58, 0.3);
    border-color: var(--primary);
}

/* =====================================================
   25. REWARDS BOX (Gold Override)
   ===================================================== */
.rewards-box {
    background: var(--gold-gradient) !important;
}

.rewards-box:after {
    background: #b37e28 !important;
    background: linear-gradient(to bottom, #b37e28 20%, #FFD700) !important;
}

/* =====================================================
   26. CATEGORY NAV / LOCATION CARDS
   ===================================================== */
.category-item,
[class*="cat-item"],
.location-card,
[class*="location-card"] {
    border: 1px solid var(--border-color) !important;
    border-radius: var(--border-radius-sm) !important;
    transition: all 0.25s ease !important;
}

.category-item:hover,
.location-card:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 0 12px rgba(201, 150, 58, 0.2) !important;
}

.category-item.active,
.category-item.selected {
    border-color: var(--primary) !important;
    background: var(--rgba-primary-1) !important;
    color: var(--primary) !important;
}

/* =====================================================
   27. SCROLLBAR (webkit)
   ===================================================== */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #F0E8D0;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* =====================================================
   28. SELECTION COLOR
   ===================================================== */
::selection {
    background: rgba(201, 150, 58, 0.3);
    color: #1A0E00;
}

/* =====================================================
   29. LOADING / SPINNER
   ===================================================== */
.spinner-border.text-primary,
.spinner-grow.text-primary {
    color: var(--primary) !important;
}

.spinner-border {
    border-color: var(--primary) !important;
    border-right-color: transparent !important;
}

/* =====================================================
   30. MISC UTILITY OVERRIDES
   ===================================================== */
.bg-body-bg,
.bg-primary-light {
    background-color: var(--body-bg) !important;
}

/* Fix Bootstrap primary overrides */
.text-primary {
    color: var(--primary) !important;
}

.border-primary {
    border-color: var(--primary) !important;
}

.btn-check:checked+.btn-outline-primary,
.btn-check:active+.btn-outline-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
}

/* =====================================================
   RESPONSIVE ADJUSTMENTS
   ===================================================== */
/* =====================================================
   31. PHONE PREFIX "+91" BUTTON OVERRIDE
   The login form mobile prefix button fix
   ===================================================== */
.input-group .input-group-text,
.input-group-prepend .input-group-text,
[class*="phone-prefix"],
[class*="dial-code"],
[class*="country-code"] {
    background: var(--gold-gradient) !important;
    background-color: var(--primary) !important;
    color: #fff !important;
    border-color: var(--primary-dark) !important;
    font-weight: 700 !important;
}

/* Override any teal/cyan that may remain from old theme */
[style*="background-color: teal"],
[style*="background: teal"],
[style*="background:#008080"],
[style*="background-color:#008080"] {
    background-color: var(--primary) !important;
    background: var(--gold-gradient) !important;
}

/* =====================================================
   32. MANIFEST / PWA SPLASH SCREEN
   ===================================================== */

/* =====================================================
   33. ANIMATION: Page fade-in
   ===================================================== */
#root {
    animation: pageLoad 0.4s ease-out;
}

@keyframes pageLoad {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   34. PRODUCT DETAIL PAGE
   ===================================================== */
.product-detail-img,
[class*="product-detail"] img,
[class*="product-img"] {
    border: 2px solid var(--border-color) !important;
    border-radius: var(--border-radius) !important;
}

.product-detail-name,
[class*="product-name"] {
    color: var(--title) !important;
}

/* =====================================================
   35. WISHLIST ICON ANIMATION
   ===================================================== */
[class*="wishlist"] i,
[class*="heart"] i,
.ri-heart-fill {
    color: var(--primary) !important;
    transition: transform 0.2s ease !important;
}

[class*="wishlist"]:hover i,
[class*="heart"]:hover i {
    transform: scale(1.2) !important;
}

.header.style-3 {
    border-radius: 0px;
    padding: 0px !important;
}

.dz-category-items .dz-media {
    border-color: var(--primary) !important;

}

.page-content {
    margin-top: 60px;
}

main.page-content>.bg-white {
    background: transparent !important;
}