/* Civil Supplier - Premium Industrial Theme */
:root {
    --bg-black: #0a0a0a;
    --card-gray: #161616;
    --brand-gold: #D4AF37;
    --brand-orange: #FF8C00;
    --brand-yellow: #FFD700;
    --text-muted: #a0a0a0;
}

body {
    background-color: var(--bg-black);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

/* Header & Navigation */
.navbar {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.nav-link {
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover { color: var(--brand-gold) !important; }

/* Responsive Header Padding */
@media (max-width: 575.98px) {
    #mainNav {
        padding: 0.5rem 0 !important;
    }
}

/* Mobile Footer Styling */
.mobile-nav {
    background: #000;
    border-top: 1px solid #333;
    padding: 0.5rem 0;
}

.mobile-nav a {
    color: white !important;
    font-size: 0.75rem;
    padding: 0.25rem;
}

.mobile-nav i {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.mobile-nav a:hover {
    color: var(--brand-gold) !important;
}

.mobile-nav a.active {
    color: var(--brand-gold) !important;
}

/* Custom Searchbar */
.header-search {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
}
.header-search:focus {
    background: #222;
    border-color: var(--brand-orange);
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.2);
    color: white;
}

/* Banner Slider */
.main-slider { height: 480px; border-radius: 24px; overflow: hidden; margin-top: 24px; }
.carousel-item img { height: 480px; object-fit: cover; }
.carousel-caption {
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    width: 100%; left: 0; bottom: 0; padding: 48px 40px; text-align: left;
}

/* Categories */
.cat-container {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 8px 0;
    scrollbar-width: none;
}
.cat-container::-webkit-scrollbar { display: none; }
.cat-card {
    min-width: 100px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s;
}
.cat-card:hover { transform: translateY(-4px); }
.cat-img-wrapper {
    width: 80px; height: 80px;
    border-radius: 20px;
    border: 1.5px solid rgba(212,175,55,0.4);
    overflow: hidden;
    margin: 0 auto 8px;
    transition: border-color 0.2s;
}
.cat-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.cat-card span { color: #ccc; font-size: 0.78rem; font-weight: 500; }
.cat-card:hover .cat-img-wrapper { border-color: var(--brand-gold); }

/* Product Cards */
.product-card {
    background: #111;
    border: 1px solid #1e1e1e;
    border-radius: 18px;
    transition: all 0.25s;
    overflow: hidden;
}
.product-card:hover { border-color: rgba(212,175,55,0.5); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.4); }
.product-img {
    height: 180px;
    object-fit: cover;

    background: #181818;
    width: 100%;
    display: block;
}
.price { color: var(--brand-yellow); font-weight: 800; font-size: 1.15rem; }

/* Offer Banner */
.offer-banner {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 140px;
    display: flex;
    align-items: center;
    padding: 28px 32px;
}
.offer-banner-1 { background: linear-gradient(120deg, #1a1200 0%, #3d2e00 100%); border: 1px solid rgba(212,175,55,0.25); }
.offer-banner-2 { background: linear-gradient(120deg, #0d1f0d 0%, #1a3a1a 100%); border: 1px solid rgba(40,167,69,0.25); }

/* Section label */
.section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-gold);
}

/* Adjustments for Mobile View */
@media (max-width: 768px) {
    .main-slider { height: 220px; margin-top: 12px; }
    .carousel-item img { height: 220px; }
    .display-5 { font-size: 1.6rem; font-weight: 800; }
    body { padding-bottom: 80px; }
    .offer-banner { padding: 20px; min-height: 110px; }
}

/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1541888946425-d81bb19480c5?q=80&w=1400');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    border-bottom: 2px solid var(--brand-gold);
}

.unique-heading {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Gold Divider Style */
.title-divider1 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}
.title-divider1 .squre {
    width: 12px;
    height: 12px;
    background-color: var(--brand-gold);
    transform: rotate(45deg);
}

.section-b-space { padding: 80px 0; }

/* Dark Feature Boxes */
.feature-box {
    background: var(--bg-card);
    border: 1px solid #222;
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    transition: 0.3s;
}
.feature-box:hover {
    border-color: var(--brand-orange);
    transform: translateY(-10px);
}
.feature-box .icon i {
    font-size: 2.5rem;
    color: var(--brand-gold);
    margin-bottom: 20px;
    display: block;
}

/* Stats Widgets */
.widget {
    background: #080808;
    padding: 20px;
    border-radius: 12px;
    border-bottom: 3px solid var(--brand-gold);
}
.widget h6 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brand-yellow) !important;
}
.widget p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.img-box {
    border: 2px solid #222;
    padding: 10px;
    background: #111;
}

/* Contact Page Specific */
.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1400');
    background-size: cover;
    padding: 80px 0;
    border-bottom: 1px solid #333;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid #222;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: 0.3s;
}

.contact-card:hover {
    border-color: var(--brand-gold);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid var(--brand-gold);
}

.icon-box i {
    font-size: 1.5rem;
    color: var(--brand-yellow);
}

/* Custom Dark Form Fields */
.form-label {
    color: var(--brand-gold) !important;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.form-control-dark {
    background: #161616 !important;
    border: 1px solid #333 !important;
    color: white !important;
    padding: 12px 15px;
    border-radius: 8px;
}

.form-control-dark:focus {
    border-color: var(--brand-orange) !important;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.2) !important;
}

/* Map placeholder */
.map-placeholder {
    width: 100%;
    height: 400px;
    background: #111;
    border-radius: 20px;
    border: 1px solid #222;
    filter: grayscale(1) invert(1) contrast(1.2); /* Makes any map look dark/industrial */
}

/* Login Page Specific Styles */
.login-wrapper {
    min-height: calc(100vh - 100px);
    background: radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
                linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.login-container-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 193, 7, 0.1);
}

.login-left-panel {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.brand-logo-sq {
    width: 80px;
    height: 80px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(255, 193, 7, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-title-gradient {
    background: linear-gradient(135deg, #fff 0%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

.input-custom-group {
    position: relative;
}

.input-custom-group i:not(.bi-eye) {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    z-index: 5;
}

.input-custom-control {
    width: 100%;
    padding: 12px 45px;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px;
    color: #fff !important;
    transition: all 0.3s ease;
}

.input-custom-control:focus {
    border-color: #ffc107 !important;
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: none !important;
}

.password-toggle-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    z-index: 5;
}

.btn-industrial {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border: none;
    color: #000;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-industrial:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
    color: #000;
}

select.input-custom-control {
    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='%23ffffff' 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 1rem center;
    background-size: 16px 12px;
    cursor: pointer;
}

select.input-custom-control option {
    background: #1a1a1a;
    color: #fff;
}

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Mobile Bottom Navigation */
.mobile-nav {
    background: rgba(10,10,10,0.98);
    border-top: 1px solid #222;
    height: 65px;
    z-index: 1000;
}
.mobile-nav i { font-size: 1.4rem; color: #555; }
.mobile-nav .active i { color: var(--brand-gold); }
.mobile-nav span { font-size: 0.65rem; color: #555; }
.mobile-nav .active span { color: var(--brand-gold); }

 .sub-cat-wrapper::-webkit-scrollbar { display: none; }
            .sub-cat-item { min-width: 85px; text-decoration: none; text-align: center; transition: 0.3s; }
            .sub-cat-circle { 
                width: 70px; height: 70px; border-radius: 50%; border: 2px solid #333; 
                margin: 0 auto 8px; overflow: hidden; background: #1a1a1a;
                display: flex; align-items: center; justify-content: center;
            }
            .sub-cat-circle img { width: 100%; height: 100%; object-fit: cover; }
            .sub-cat-item span { color: #fff; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; }
            .sub-cat-item.active .sub-cat-circle { border-color: var(--brand-gold); box-shadow: 0 0 10px var(--brand-gold); }
            .sub-cat-item.active span { color: var(--brand-gold) !important; }
       

/* Wishlist Heart Button */
.wishlist-btn {
    transition: transform 0.2s, opacity 0.2s;
    opacity: 0.85;
}
.wishlist-btn:hover {
    transform: scale(1.15);
    opacity: 1;
}
.wishlist-btn.wishlisted {
    opacity: 1;
}

/* Product card relative positioning for heart overlay */
.product-card { position: relative; }

/* Cart row hover */
.cart-row { transition: background 0.2s; }
.cart-row:hover { background: #161616 !important; }

.nav-link:hover .bi-heart {
    color: var(--brand-yellow) !important;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
}

/* Full Background Banner Styling */
.offer-card-full {
    height: 320px; /* Fixed height for a balanced look */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #333;
    transition: transform 0.4s ease;
}

/* Gradient overlay so text is readable regardless of the image brightness */
.offer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.2) 100%);
    transition: background 0.4s ease;
}

/* Industrial Hover Effect */
.offer-card-full:hover {
    transform: translateY(-5px);
}
.offer-card-full:hover .offer-overlay {
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.3) 100%);
}

/* Typography */
.offer-label {
    background-color: #D4AF37; /* Gold/Warning color */
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
}

.offer-title {
    font-size: 2.2rem;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.offer-desc {
    font-size: 1rem;
    max-width: 80%;
}

/* Black-out look for the font */
.fw-black {
    font-weight: 900;
}

/* Responsive adjust for mobile */
@media (max-width: 768px) {
    .offer-card-full {
        height: 250px;
    }
    .offer-title {
        font-size: 1.6rem;
    }
    .offer-overlay {
        /* On mobile, make the overlay darker for better legibility */
        background: rgba(0,0,0,0.6);
    }
}
/* Typography & Helpers */
.fw-black { font-weight: 900; }
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Sub-category Scroller */
.sub-cat-scroll-container::-webkit-scrollbar { display: none; } /* Hide scrollbar */
.sub-cat-scroll-container { -ms-overflow-style: none; scrollbar-width: none; gap: 1.5rem; }

.sub-cat-node {
    text-decoration: none;
    color: #6c757d;
    min-width: 80px;
    transition: all 0.3s ease;
}

.node-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    background: #111;
    transition: all 0.3s ease;
}

.node-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-cat-node.active .node-circle {
    border-color: #ffc107 !important; /* Warning gold */
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.sub-cat-node.active span {
    color: #ffc107;
    font-weight: bold;
}

/* Product Card Improvements */
.product-card {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #ffc107 !important;
}

/* Object Fit for Bootstrap Ratios */
.object-fit-cover {
    object-fit: cover;
}
/* Industrial Detail Page Styles */
.fw-black { font-weight: 900; }
.ls-1 { letter-spacing: 1px; }

/* Gallery Styling */
.product-gallery-container { top: 90px; }
.main-img-display { height: 400px; }
.main-view-img { max-height: 100%; object-fit: cover; }

.thumb-node {
    width: 75px;
    height: 75px;
    background: #111;
    border: 2px solid #333;
    cursor: pointer;
    transition: 0.3s;
}
.thumb-node.active { border-color: #ffc107; }

/* Badges & Text */
.category-badge {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    padding: 6px 12px;
}

.product-title { font-size: 1.75rem; line-height: 1.2; }

/* Variants */
.btn-variant {
    background: #1a1a1a;
    border: 1px solid #333;
    color: #aaa;
    border-radius: 8px;
    padding: 8px 16px;
    transition: 0.2s;
}
.btn-variant:hover, .btn-variant.active, .btn-variant.variant-active {
    background: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
    color: #ffc107;
}

/* Stepper */
.qty-stepper {
    width: fit-content;
    background: #1a1a1a;
    border: 1px solid #333;
}
.qty-input {
    width: 50px;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    text-align: center;
}
.qty-input::-webkit-inner-spin-button { display: none; }

/* Industrial Card */
.industrial-card {
    background: #111;
    border: 1px solid #222;
}
.product-desc {
    font-size: 0.95rem;
    line-height: 1.7;
}
.tiny-text { font-size: 0.7rem; }

/* Related Products (Match Index/Product Page) */
.wishlist-btn-overlay {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    z-index: 5;
}


/* ============================================================
   Utility Classes — replaces inline styles across user pages
   ============================================================ */

/* Navbar */
.navbar-main { padding: 1.5rem 0; z-index: 7; }

/* Logo images */
.logo-mobile { height: 60px; margin-right: 15px; }
.logo-desktop { height: 50px; margin-right: 15px; }

/* Brand name text */
.brand-name-gold { color: var(--brand-gold); font-size: 1.5rem; }
.brand-name-white { font-size: 1.5rem; }

/* Header user avatar */
.header-avatar {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    font-size: 0.85rem;
}

/* Cart badge tiny */
.badge-xs { font-size: 0.6rem; }
.badge-xxs { font-size: 0.55rem; padding: 0.25em 0.4em; }

/* Dark panel cards */
.bg-dark-panel { background: #111; border: 1px solid #1e1e1e; }
.bg-card-dark   { background: #161616; border: 1px solid #222; }
.bg-dark-well   { background: #1a1a1a; border: 1px solid #2a2a2a; }
.border-light-dark { border: 1px solid #2a2a2a; }

/* Gold accent border-bottom (stat cards) */
.border-bottom-gold { border-bottom: 3px solid var(--brand-gold) !important; }

/* Dashboard welcome banner */
.welcome-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Glow blob decoration */
.glow-blob {
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
    transform: translate(40%, -40%);
    pointer-events: none;
}

/* Dashboard / page avatar (larger) */
.avatar-lg {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    font-size: 1.2rem;
}

/* Stat card icon color */
.icon-gold { color: var(--brand-gold); }

/* Stat label small */
.stat-label { letter-spacing: 1px; font-size: 0.7rem; }

/* Section heading gold */
.section-heading-gold { color: var(--brand-gold); letter-spacing: 1px; }

/* Ghost action buttons */
.btn-ghost-dark {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 12px;
}
.btn-ghost-dark:hover { background: rgba(255, 255, 255, 0.09); }

/* Account info row */
.info-row { background: rgba(255, 255, 255, 0.04); }

/* Info label tiny */
.info-label { font-size: 0.75rem; }

/* Danger ghost button (logout / delete) */
.btn-danger-ghost {
    background: rgba(220, 53, 69, 0.08);
    border: 1px solid rgba(220, 53, 69, 0.2);
    border-radius: 12px;
}
.btn-danger-ghost:hover { background: rgba(220, 53, 69, 0.15); }

/* Gold ghost button (edit / add-new) */
.btn-gold-ghost {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--brand-gold);
    border-radius: 8px;
}
.btn-gold-ghost:hover { background: rgba(212, 175, 55, 0.18); color: var(--brand-gold); }

/* Cart item count badge */
.badge-gold-sm {
    background: rgba(212, 175, 55, 0.15);
    color: var(--brand-gold);
    font-size: 0.75rem;
}

/* Cart / order item thumbnail box */
.thumb-box-md {
    width: 56px; height: 56px;
    background: #181818;
    border: 1px solid #2a2a2a;
}
.thumb-box-sm {
    width: 52px; height: 52px;
    background: #181818;
    border: 1px solid #2a2a2a;
}
.thumb-box-md img,
.thumb-box-sm img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 4px;
}

/* Order summary sticky box */
.sticky-sidebar-box {
    background: #111;
    border: 1px solid #1e1e1e;
    top: 90px;
    z-index: 2;
}

/* Order summary divider */
hr.divider-dark { border-color: #2a2a2a; }

/* Order status / payment badge (base) */
.badge-muted {
    background: rgba(255, 255, 255, 0.06);
    color: #aaa;
    font-size: 0.72rem;
}

/* Variant text tiny */
.text-tiny { font-size: 0.72rem; }
.text-tiny-sm { font-size: 0.75rem; }

/* Address card item */
.addr-card-item {
    background: #111;
    border: 1px solid #1e1e1e;
}
.addr-card-item.default-addr { border-color: rgba(212, 175, 55, 0.5) !important; }

/* Address radio dot */
.addr-dot {
    width: 18px; height: 18px;
    border: 2px solid #555;
    background: transparent;
}

/* Checkout address card */
.addr-card-custom {
    background: #1a1a1a;
    border: 2px solid #2a2a2a;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}

/* Payment option box */
.pay-box-active {
    border: 2px solid var(--brand-gold) !important;
    background: rgba(212, 175, 55, 0.08) !important;
    cursor: pointer;
}
.pay-box-inactive {
    border: 2px solid #333 !important;
    background: rgba(255, 255, 255, 0.03) !important;
    cursor: pointer;
}

/* UPI / dark input */
.input-dark {
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
}
.input-dark:focus {
    background: #222;
    border-color: var(--brand-orange);
    color: #fff;
    box-shadow: none;
}

/* QR image */
.qr-img {
    max-width: 200px; max-height: 200px;
    object-fit: contain;
    border: 1px solid #333;
}

/* UPI word-break */
.word-break-all { word-break: break-all; }

/* Checkout order summary scroll area */
.summary-scroll { max-height: 260px; overflow-y: auto; }

/* Total price gold */
.text-gold { color: var(--brand-gold); }

/* Login alert */
.alert-danger-dark {
    background: rgba(220, 53, 69, 0.1);
    color: #ff6b6b;
    border-radius: 10px;
}

/* Contact / About hero title */
.hero-title-yellow { color: var(--brand-yellow) !important; }

/* Contact map container */
.map-container {
    height: 400px;
    border: 1px solid #222;
}
.map-container iframe {
    border: 0;
    display: block;
    filter: grayscale(0.3);
}

/* About dark section */
.section-dark { background: #050505; }

/* Checkout addr-card (JS-driven selected state) */
.addr-card { cursor: pointer; transition: border-color .2s, background .2s; }
.addr-card.selected { border-color: var(--brand-gold) !important; background: rgba(212,175,55,0.07) !important; }
.addr-radio { display: none; }

/* Cancel button ghost */
.btn-cancel-ghost {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
}

/* Badge gold outline tiny */
.badge-gold-outline-tiny {
    background: rgba(212, 175, 55, 0.15);
    color: var(--brand-gold);
    font-size: 0.65rem;
}

/* Badge gold outline (cart variant) */
.badge-gold-outline {
    background: rgba(212, 175, 55, 0.15);
    color: var(--brand-gold);
    font-size: 0.75rem;
}

/* Cart image box */
.img-box-md {
    width: 72px; height: 72px;
    background: #181818;
    border: 1px solid #2a2a2a;
}

/* Wishlist remove button overlay */
.btn-wishlist-remove {
    top: 10px; right: 10px; z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    width: 36px; height: 36px;
    padding: 0; line-height: 1;
}

/* OTP card */
.otp-card {
    background: #1a1a2e;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Search page product image container */
.search-img-container {
    height: 100%;
    background: #1a1a1a;
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;

}
.search-product-img { height: 100%; object-fit: cover; }

/* Search empty state icon */
.search-empty-icon { font-size: 5rem; }

/* Cart item image */
.cart-item-img { max-width: 100%; max-height: 100%; object-fit: contain; padding: 6px; }

/* Orders subtle borders */
.border-bottom-subtle-dark { border-bottom: 1px solid #1e1e1e; }
.border-top-subtle-dark    { border-top: 1px solid #1e1e1e; }

/* Orders address max-width */
.addr-max-width { max-width: 60%; }

/* Gold alert (UPI not configured) */
.alert-gold-ghost {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Address radio dot inner */
.addr-dot-inner {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #000;
}

/* Dark pagination (orders page) */
.pagination-dark .page-link {
    background: #1a1a1a;
    border-color: #2a2a2a;
    color: #aaa;
    min-width: 38px;
    text-align: center;
    transition: background .15s, color .15s;
}
.pagination-dark .page-link:hover {
    background: #2a2a2a;
    color: #fff;
    border-color: #333;
}
.pagination-dark .page-item.active .page-link {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    color: #000;
    font-weight: 700;
}
.pagination-dark .page-item.disabled .page-link {
    background: #111;
    border-color: #1e1e1e;
    color: #444;
}
