/* Custom resets to match Lovable Minimal / Premium UI Architecture */
*{
    font-family: 'Inter', sans-serif;
}
*:focus{
    box-shadow: none !important;
}
.container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1440px !important; /* Matches the original Lovable UI layout width */
    }
body {
    color: #111827;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden !important;
}

/* Border color optimization */
.border-top, .border-bottom, .border-start, .border-end {
    border-color: #f3f4f6 !important; /* Shadcn/Tailwind default border format */
}

/* 1. TOP BAR */
.top-bar {
    font-size: 12px;
    background-color: #0b0b0b;
}
.top-bar-left span, .top-bar-right a, .top-bar-right span {
    font-weight: 400;
    color: #e5e5e5 !important;
    text-decoration: none;
    transition: color 0.15s ease;
}
.top-bar-right a:hover {
    color: #b5b8be !important;
}
.divider {
    color: #e5e7eb;
}

/* 2. MAIN HEADER */
.logo-box {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    font-size: 18px;
    background-color: #111827 !important;
}
.brand-name {
    font-size: 18px;
    letter-spacing: -0.02em;
    color: #111827;
}
.brand-subtitle {
    font-size: 9px;
    letter-spacing: 0.05em;
    color: #6b7280 !important;
}

/* Search Box Styling */
.custom-search-input {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 13px;
    padding: 8px 12px 8px 36px;
    color: #111827;
    transition: all 0.15s ease;
}
.custom-search-input:focus {
    background-color: #ffffff;
    border-color: #9ca3af;
    box-shadow: none;
}
/* COMBINED SEARCH BAR LAYOUT */
.custom-search-group {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50px !important;
    padding: 3px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.custom-search-group:focus-within {
    border-color: #dfa84a;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* LEFT CATEGORY SELECTION BUTTON */
.category-dropdown-btn {
    background: transparent !important;
    border: none !important;
    color: #475569 !important;
    font-size: 13px;
    font-weight: 600;
    padding: 0 16px 0 20px !important;
    border-right: 1px solid #e2e8f0 !important;
    border-radius: 0 !important;
    white-space: nowrap;
}

.category-dropdown-btn:focus {
    box-shadow: none !important;
}

.category-custom-menu {
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 12px !important;
    padding: 6px !important;
    margin-top: 8px !important;
}

.category-custom-menu .dropdown-item {
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 6px;
    color: #334155;
}

.category-custom-menu .dropdown-item.active, 
.category-custom-menu .dropdown-item:hover {
    background-color: rgba(223, 168, 74, 0.1) !important;
    color: #dfa84a !important;
}

/* INPUT TEXT BOX CONTROL */
.custom-search-input {
    background: transparent !important;
    border: none !important;
    font-size: 13.5px;
    color: #0f172a;
    padding-left: 16px !important;
    height: 40px;
}

.custom-search-input:focus {
    box-shadow: none !important;
    outline: none !important;
}

/* RIGHT ALIGNED INTERACTIVE SEARCH ICON */
.search-action-trigger {
    background: transparent !important;
    border: none !important;
    color: #64748b !important;
    padding: 0 18px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.search-action-trigger:hover {
    color: #dfa84a !important;
}

/* LIVE PRODUCTS SUGGESTIONS PANEL */
.search-suggestions-panel {
    position: absolute;
    top: 105%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    overflow: hidden;
}

.panel-header {
    background-color: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
}

.panel-header span {
    font-size: 11px;
    letter-spacing: 0.05em;
}

.clear-search-link {
    cursor: pointer;
    color: #94a3b8;
    transition: color 0.15s ease;
}

.clear-search-link:hover {
    color: #64748b;
}

/* SUGGESTION PRODUCT LIST ROW ITEMS */
.suggestion-product-item {
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.15s ease;
}

.suggestion-product-item:last-child {
    border-bottom: none;
}

.suggestion-product-item:hover {
    background-color: #fdfaf4;
}

.suggestion-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.suggestion-item-img {
    width: 36px;
    height: 36px;
    background-color: #f1f5f9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #94a3b8;
    font-weight: bold;
}

.suggestion-item-title {
    font-size: 13.5px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.suggestion-item-cat {
    font-size: 11px;
    color: #94a3b8;
    margin: 0;
}

.suggestion-item-price {
    font-size: 13px;
    font-weight: 700;
    color: #dfa84a;
}
.start-3 {
    left: 14px !important;
}
/* Offcanvas Structure Padding & Overrides */
#mobileMenu .offcanvas-body {
    display: flex;
    flex-direction: column;
}

.structural-menu-list .list-group-item {
    border-bottom: 1px solid #f1f5f9;
}

/* Collapsible Dropdown Arrow Rotation Animation */
.collapsible-menu-trigger .toggle-arrow-icon {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 0.85rem;
    color: #64748b;
}

.collapsible-menu-trigger[aria-expanded="true"] {
    background-color: #f8fafc;
    color: #dfa84a;
}

.collapsible-menu-trigger[aria-expanded="true"] .toggle-arrow-icon {
    transform: rotate(180deg);
    color: #dfa84a;
}

/* Nested Collapsible Sub-items Styling */
.offcanvas-sub-collapse-panel {
    border-bottom: 1px solid #f1f5f9;
}

.py-2-5 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.small-text {
    font-size: 13.5px;
    color: #475569 !important;
    border-left: 2px solid transparent;
}

.small-text:hover {
    color: #dfa84a !important;
    border-left-color: #dfa84a;
    background-color: transparent !important;
}

/* Action Badges Icons */
.action-icon {
    color: #111827;
    text-decoration: none;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 6px;
    transition: background-color 0.15s ease;
}
.action-icon:hover {
    background-color: #f3f4f6;
    color: #111827;
}
.action-icon .badge {
    top: 2px !important;
    left: 22px !important;
    font-size: 9px;
    font-weight: 600;
    padding: 3px 6px;
    background-color: #111827 !important;
}

/* 3. NAVIGATION BAR */
.nav-link {
    font-size: 13.5px;
    font-weight: 500;
    color: #4b5563 !important;
    position: relative;
    transition: color 0.15s ease;
}
.nav-link:hover {
    color: #111827 !important;
}
.nav-link.active {
    color: #111827 !important;
    font-weight: 600;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background-color: #111827;
}
.no-chevron::after {
    display: none !important;
}

/* Promo Badge */
.promo-badge {
    color: #111827;
    background-color: #f3f4f6;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 500;
}

/* MEGA MENU CONFIG */
.has-mega-menu {
    position: static !important;
}
.has-mega-menu:hover .mega-menu {
    display: block;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-radius: 0;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.mega-card {
    height: 140px;
    background-color: #f3f4f6;
}
.mega-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.mega-card:hover img {
    transform: scale(1.03);
}
.mega-card-content {
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
}
.mega-card-content p {
    font-size: 14px;
}
.mega-card-content small {
    font-size: 11px;
}
/* HERO LAYOUT CONTAINER */
.hero-section {
    display: flex;
    align-items: center;
    background-color: #111827; /* Fallback solid slate dark */
}

/* Dimmer Mask for High-Contrast Typography */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.85) 0%, rgba(17, 24, 39, 0.4) 60%, rgba(17, 24, 39, 0.2) 100%);
    z-index: 1;
}

/* Crossfade Slide Adjustments */
.carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: 1.2s; /* Seamless blending transition */
    transition-property: opacity;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* TYPOGRAPHY ELEMENTS */
.hero-heading {
    font-size: clamp(2rem, 4.5vw, 3.75rem); /* Handles fluid font sizes for layout grids */
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.accent-text {
    color: #e5e7eb; /* Soft contrast grayish text matching original UI components */
    font-weight: 400;
}

.hero-lead {
    font-size: clamp(1rem, 1.25vw, 1.15rem);
    line-height: 1.6;
    color: #d1d5db;
}

.max-w-xl {
    max-width: 540px;
}

/* BADGES & ACTION CONTROLS */
.season-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 11px;
}

.backdrop-blur {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
}

.custom-btn {
    font-size: 14px;
    padding: 12px 26px !important;
    border-radius: 6px !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-light:hover {
    background-color: #f3f4f6 !important;
    transform: translateY(-1px);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-1px);
}

/* BUSINESS METRICS STRIP */
.border-white-10 {
    border-color: rgba(255, 255, 255, 0.12) !important;
}

.stat-number {
    font-size: 24px;
    letter-spacing: -0.02em;
}

/* INFINITE LOOP MARQUEE TICKER TAPE */
.ticker-banner {
    background-color: #ffffff;
}

.ticker-track {
    font-size: 12px;
    font-weight: 500;
    color: #111827;
    letter-spacing: 0.03em;
    animation: marquee-scroll 25s linear infinite;
    width: max-content;
}

.whitespace-nowrap {
    white-space: nowrap;
}

@keyframes marquee-scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* Responsive Gaps Override */
@media (max-width: 991.98px) {
    
    .hero-overlay {
        background: rgba(17, 24, 39, 0.75); /* Higher dark overlay layer on small displays */
    }
}
/* SECTION HEADER TYPOGRAPHY */
.small-text {
    font-size: 11px;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    letter-spacing: -0.025em;
    color: #111827;
}

.section-lead {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.5;
}

/* CATEGORY CARD STRUCTURE */
.dept-card {
    height: 380px; /* Lovable fixed-height design architecture */
    background-color: #f3f4f6;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.img-wrapper {
    position: relative;
    overflow: hidden;
}

.dept-card img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* GRADIENT MASK OVERLAY */
.dept-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 40%,
        rgba(0, 0, 0, 0.4) 70%,
        rgba(0, 0, 0, 0.8) 100%
    );
    transition: opacity 0.4s ease;
}

/* HOVER EFFECT INTERACTIONS */
.dept-card:hover img {
    transform: scale(1.04); /* Sharp premium subtle zoom */
}

.dept-name {
    font-size: 16px;
    letter-spacing: -0.01em;
}

.dept-link {
    opacity: 0.85;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.dept-card:hover .dept-link {
    opacity: 1;
    color: #ffffff !important;
}

.dept-card:hover .dept-link i {
    transform: translateX(4px); /* Moves arrow slightly right on hover */
    transition: transform 0.2s ease;
}

/* UTILITIES */
.object-fit-cover {
    object-fit: cover;
}

.fs-7 {
    font-size: 12px;
}
/* CUSTOM SLIDER NAVIGATION BUTTONS */
.btn-nav-custom {
    width: 46px;
    height: 46px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.6;
}

.btn-nav-custom:hover {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 1);
    opacity: 1;
}

/* Arrow color changes to dark grey on light hover background */
.btn-nav-custom:hover .carousel-control-prev-icon,
.btn-nav-custom:hover .carousel-control-next-icon {
    filter: invert(1) sepia(0) saturate(0) hue-rotate(0deg) brightness(0.2);
}

/* Arrow size scale correction */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: filter 0.2s ease;
}

/* Aligning indicators smoothly with left text structure */
@media (min-width: 992px) {
    .carousel-indicators {
        left: calc((100vw - 100%) / 2) !important;
    }
}
/* 1. Pure container layer ko clicks pass-through mode par daal dein */
.hero-section .container-fluid {
    pointer-events: none !important;
}

/* 2. Container ke andar jo buttons, links aur stats hain un par clicks wapas active karein */
.hero-section .animate-content,
.hero-section .custom-btn,
.hero-section .stats-container {
    pointer-events: auto !important;
}

/* 3. Dots (Indicators) aur Arrows ko sabse upar layer par push karein aur click active karein */
.hero-section .carousel-indicators,
.hero-section .carousel-indicators button,
.hero-section .btn-nav-custom {
    pointer-events: auto !important;
    z-index: 5 !important;
}
/* FIXED VIEWPORT FOR THE HERO WRAPPER */

/* SMOOTH TRANSITION FOR LAYER CONTENT */
.slide-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s ease;
}

/* TRIGGER ANIMATION WHEN BOOTSTRAP ADDS ACTIVE CLASS */
.carousel-item.active .slide-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ALIGN INDICATORS Z-INDEX FOR DIRECT TOUCH GRAB */
.carousel-indicators {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.carousel-indicators button {
    opacity: 0.4;
    transition: opacity 0.3s ease, width 0.3s ease;
}

.carousel-indicators button.active {
    opacity: 1;
    width: 45px !important; /* Elegant expanded line for current item */
}
/* DESIGN SYSTEM RULES FROM IMAGE REFERENCE */
.trade-promo-section {
    
}

/* CARD HEIGHT & CORNER RADIUS BINDING */
.trade-promo-card {
    min-height: 380px; 
    border-radius: 20px !important; /* Matches the highly rounded soft borders */
    background-color: #1a1a1a;
}

.max-w-content {
    max-width: 480px; /* Restricts text wrapping exactly like reference image */
}

/* DARK BALANCED CONTINUOUS OVERLAY */
.trade-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark smooth tint over image to guarantee high readability contrast */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 100%);
}

/* TYPOGRAPHY METRICS MATCHING */
.trade-top-tag {
    color: #d97706; /* Golden Amber tone */
    font-size: 12px;
    letter-spacing: 0.12em;
}

.trade-main-title {
    font-size: calc(1.8rem + 0.6vw);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.trade-lead-text {
    font-size: 1.05rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.75) !important;
}

/* ACTION LINK */
.trade-action-anchor {
    color: #d97706 !important;
    font-size: 1.05rem;
    transition: color 0.2s ease;
}

.trade-action-anchor span {
    display: inline-block;
    transition: transform 0.2s ease;
}

/* SUBTLE RESPONSIVE INTERACTION */
.trade-promo-card:hover .trade-action-anchor span {
    transform: translateX(4px);
}

.trade-card-bg img {
    transition: transform 0.6s ease;
}

.trade-promo-card:hover .trade-card-bg img {
    transform: scale(1.02);
}

/* RESPONSIVE HEIGHT TUNING */
@media (max-width: 768px) {
    .trade-promo-card {
        min-height: 320px;
    }
    .trade-main-title {
        font-size: 1.8rem;
    }
}
.best-sellers-section {
    
}
.text-amber { color: #d97706; }
.bg-amber { background-color: #f59e0b; }
.gold-tag { font-size: 11px; letter-spacing: 0.12em; }
.section-main-title { font-size: 2rem; letter-spacing: -0.02em; }
.small-lead { font-size: 0.9rem; }
.view-all-link { font-size: 0.95rem; }

/* HOVER IMAGE SWITCH SYSTEM */
.product-img-canvas { height: 240px; background-color: #f8fafc; }
.brand-img-primary { position: relative; z-index: 1; opacity: 1; transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.brand-img-secondary { z-index: 0; opacity: 0; transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1); }

.b2b-product-card:hover .brand-img-primary { opacity: 0; }
.b2b-product-card:hover .brand-img-secondary { opacity: 1; z-index: 2; }
.badge-stack-left, .badge-stack-right { z-index: 3; }
.micro-badge { font-size: 10px !important; font-weight: 600; }

/* LAYOUT DETAILS */
.b2b-product-card { background: #fff; border-color: #eaeaea !important; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.b2b-product-card:hover { box-shadow: 0 12px 30px rgba(0,0,0,0.06); border-color: #cbd5e1 !important; }
.product-brand, .product-sku { font-size: 11px; }
.product-title { font-size: 1.1rem; line-height: 1.3; }
.product-short-desc { font-size: 0.85rem; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* SELECTION MATRIX TIERS */
.tier-box {
    background: #fdfdfd;
    border: 1.5px solid #eaeaea !important; 
    min-height: 98px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.tier-name { font-size: 9px; display: flex; align-items: center; gap: 4px; }
.tier-dot { width: 4px; height: 4px; border-radius: 50%; background: transparent; display: inline-block; }
.tier-price { font-size: 0.95rem; font-weight: 800; color: #1e293b; }
.tier-unit { font-size: 8px; }

/* ACTIVE TIERS BEHAVIOR */
.tier-box.active-tier { background-color: #ffffff !important; box-shadow: 0 4px 12px rgba(0,0,0,0.04); }
.tier-retail.active-tier { border-color: #1d4ed8 !important; }
.tier-retail.active-tier .tier-dot { background-color: #1d4ed8; }
.tier-wholesale.active-tier { border-color: #047857 !important; }
.tier-wholesale.active-tier .tier-dot { background-color: #047857; }
.tier-bulk.active-tier { border-color: #b45309 !important; }
.tier-bulk.active-tier .tier-dot { background-color: #b45309; }

/* CTAs BUTTONS */
.btn-amber { background-color: #f59e0b; border: none; }
.btn-amber:hover { background-color: #d97706; }
.fs-7 { font-size: 0.85rem !important; }
/* SECTION GENERIC */
.pricing-features-section {
    background-color: #f8fafc; /* Very light neutral aesthetic background */
}
.max-w-content {
    max-width: 580px;
}
.gold-subtitle {
    color: #c2936c;
    font-size: 11px;
    letter-spacing: 0.15em;
}
.features-main-heading {
    font-size: 2.35rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}
.features-sub-lead {
    font-size: 0.92rem;
    color: #64748b !important;
    line-height: 1.5;
}

/* CARDS COMMON STRUCT */
.feature-tier-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    min-height: 310px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-tier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.05);
}

.icon-wrap {
    width: 42px;
    height: 42px;
}
.tier-card-title {
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}
.emoji-icon {
    font-size: 1.15rem;
}
.tier-card-price {
    font-size: 2.4rem;
    font-weight: 850;
    letter-spacing: -0.02em;
}
.tier-card-meta {
    font-size: 10px !important;
    font-weight: 500;
}
.tier-card-footer {
    border-top: 1px solid #f1f5f9 !important;
}
.footer-action-text {
    font-size: 11px;
    color: #475569 !important;
}
.footer-arrow-gold {
    color: #d97706;
    font-weight: bold;
    font-size: 0.95rem;
}

/* SPECIFIC BRAND COLORS & GRADIENT GLOWS */
.bg-blue-primary   { background-color: #1d4ed8; }
.bg-green-primary  { background-color: #047857; }
.bg-orange-primary { background-color: #ea580c; }

/* Subtle Linear Blends matching your original UI screenshot edge glows */
.tier-glow-blue {
    background: linear-gradient(135deg, #ffffff 65%, #eff6ff 100%);
    border-color: #dbeafe !important;
}
.tier-glow-green {
    background: linear-gradient(135deg, #ffffff 65%, #ecfdf5 100%);
    border-color: #d1fae5 !important;
}
.tier-glow-orange {
    background: linear-gradient(135deg, #ffffff 65%, #fff7ed 100%);
    border-color: #ffedd5 !important;
}

/* RESPONSIVE HEADINGS */
@media (max-width: 576px) {
    .features-main-heading {
        font-size: 1.85rem;
    }
}

/* BRANDS SECTION TYPOGRAPHY & LAYOUT */

.brands-subtitle {
    color: #94a3b8; /* Exact muted gray for the upper small text */
    font-size: 11px;
    letter-spacing: 0.22em; /* Wide tracking from the image */
    font-weight: 600;
}

/* LOGO CARDS ACCURATE SHAPE */
.brand-logo-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0; /* Soft border color */
    width: 124px;   /* Squarish base dimensions matching the image */
    height: 96px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.01);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Subtle premium interactive response */
.brand-logo-card:hover {
    border-color: #cbd5e1;
    background-color: #f8fafc;
}

/* TEXT INSIDE CARDS */
.brand-name-text {
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    color: #334155; /* Dark slate gray matching your image font shade */
}

.line-height-tight {
    line-height: 1.15;
}

/* RESPONSIVE TWEAKS */
@media (max-width: 576px) {
    .brand-logo-card {
        width: 45%; /* Mobile screens par 2 columns automatic adjust honge */
        height: 86px;
    }
    .brands-subtitle {
        font-size: 10px;
        letter-spacing: 0.18em;
    }
}
/* CONTAINER BASE SYSTEM */


/* MASTER WRAPPER BOX WITH GRADIENT LUMINANCE */
.b2b-main-wrapper {
    background-color: #0b0c0d; 
    /* Dual radial lighting effect mimicking corners flow */
    background-image: 
        radial-gradient(circle at top left, rgba(217, 119, 6, 0.12) 0%, transparent 40%),
        radial-gradient(circle at bottom right, rgba(234, 179, 8, 0.08) 0%, transparent 45%);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.z-1 {
    z-1: 1;
}

/* BADGE PILL DESIGN */
.b2b-badge {
    background-color: rgba(217, 119, 6, 0.15) !important;
    color: #eab308 !important;
    font-size: 11px !important;
    letter-spacing: 0.02em;
    border: 1px solid rgba(234, 179, 8, 0.2);
}

/* TYPOGRAPHY SETTINGS */
.b2b-main-heading {
    font-size: 2.85rem;
    letter-spacing: -0.03em;
    line-height: 1.15;
}
.text-accent-gold {
    color: #dfa84a; /* Exact premium gold hue matching image */
}
.b2b-lead-text {
    font-size: 0.98rem;
    line-height: 1.6;
    max-width: 480px;
}
.text-light-muted {
    color: #94a3b8 !important;
}

/* INTERACTIVE ACTION BUTTONS */
.py-25 {
    padding-top: 0.65rem !important;
    padding-bottom: 0.65rem !important;
}
.btn-gold-filled {
    background-color: #dfa84a !important;
    color: #0b0c0d !important;
    border: 1px solid #dfa84a !important;
    font-size: 13px;
    transition: background-color 0.2s ease;
}
.btn-gold-filled:hover {
    background-color: #cb9337 !important;
}
.btn-outline-white {
    background-color: transparent !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    font-size: 13px;
    transition: all 0.2s ease;
}
.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

/* RIGHT SECTION 2x2 MINI GRID CARDS */
.b2b-feature-mini-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: border-color 0.25s ease, background-color 0.25s ease;
}
.b2b-feature-mini-card:hover {
    border-color: rgba(234, 179, 8, 0.25);
    background-color: rgba(255, 255, 255, 0.05);
}

.mini-card-title {
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}
.mini-card-desc {
    font-size: 11px;
    color: #64748b !important;
}

/* SCALABILITY FOR PHONE VIEWS */
@media (max-width: 768px) {
    .b2b-main-heading {
        font-size: 2.1rem;
    }
    .b2b-main-wrapper {
        border-radius: 24px !important;
    }
    .top-info{
        flex-direction: column;
        row-gap: 12px;
    }
}
/* CONTAINER & BACKGROUND */
.enterprise-features-section {
  
    background-color: #f8fafc !important; /* Exact light gray background layout */
}

.max-w-headings {
    max-width: 540px;
}

/* TYPOGRAPHY STRUCTURE */
.gold-subtitle {
    color: #c2936c;
    font-size: 11px;
    letter-spacing: 0.16em;
}

.section-main-heading {
    font-size: 2.5rem;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.section-sub-lead {
    font-size: 0.94rem;
    color: #475569 !important;
}

/* ENTERPRISE CARDS STRUCT */
.enterprise-card {
    background: #ffffff !important;
    border: 1px solid rgba(226, 232, 240, 0.7);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.enterprise-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(148, 163, 184, 0.08);
}

/* ICON BADGES SPECIFIC STYLE */
.feature-icon-badge {
    background-color: #fdf8f2; /* Super light beige tint */
    width: 38px;
    height: 38px;
    border: 1px solid rgba(194, 147, 108, 0.1);
}

.feature-card-title {
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

.feature-card-desc {
    font-size: 12px;
    line-height: 1.5;
    color: #64748b !important;
}

/* RESPONSIVE HEADINGS */
@media (max-width: 576px) {
    .section-main-heading {
        font-size: 1.95rem;
    }
}

/* SECTION STYLING */
.testimonials-section {
    background-color: #ffffff;
}

/* CARDS STYLING */
.testimonial-card {
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    background: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.testimonial-text {
    font-size: 0.98rem;
    line-height: 1.6;
    color: #334155 !important;
}

/* AVATAR STYLING */
.avatar {
    width: 40px;
    height: 40px;
    background-color: #eab308 !important; /* Gold tone */
    font-size: 14px;
}

/* STARS & ICONS */
.stars {
    letter-spacing: 2px;
}

/* RESPONSIVE TWEAKS */
@media (max-width: 576px) {
    .section-main-heading {
        font-size: 1.8rem;
    }
}
/* SECTION GENERIC */
.journal-section {
   
}

/* CARDS CORE DESIGN */
.journal-card {
    border: 1px solid rgba(226, 232, 240, 0.7);
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
    transition: box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ASPECT RATIO & IMAGE CONTAINER */
.card-img-container {
    position: relative;
    width: 100%;
    /* Standard modern aspect ratio for article teasers */
    aspect-ratio: 16 / 10; 
}

.card-main-img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* TYPOGRAPHY STRUCTURE */
.journal-tag {
    color: #c2936c; /* Soft brand gold */
    font-size: 10px;
    letter-spacing: 0.12em;
}

.journal-card-title {
    font-size: 1.25rem;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: #0f172a !important; /* Rich deep dark slate */
}

/* INTERACTIVE READ ARTICLE ACTIONS */
.read-link-wrapper {
    color: #64748b;
    font-size: 12px;
    transition: color 0.2s ease;
}

.arrow-icon {
    transition: transform 0.2s ease;
}

/* HOVER INTERACTIONS STATE EFFECT */
.card-wrapper-link:hover .journal-card {
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.card-wrapper-link:hover .card-main-img {
    transform: scale(1.04); /* Premium smooth visual zoom */
}

.card-wrapper-link:hover .read-link-wrapper {
    color: #0f172a;
}

.card-wrapper-link:hover .arrow-icon {
    transform: translateX(3px); /* Interactive directional shift */
}
/* GENERAL CORE LAYOUT */
.newsletter-cta-section {
    
}

/* CONTAINER INTEGRATION & SOFT GOLD RADIANCE */
.newsletter-wrapper {
    /* Subtle premium gradient moving smoothly across the surface */
    background: linear-gradient(135deg, #fdf8f2 0%, #fffcf7 100%);
    border: 1px solid rgba(194, 147, 108, 0.08);
}

/* TYPOGRAPHY SHADES */
.gold-tag {
    color: #c2936c;
    font-size: 11px;
    letter-spacing: 0.16em;
}

.newsletter-heading {
    font-size: 2.3rem;
    letter-spacing: -0.03em;
    color: #0f172a !important; /* Deep contrast slate dark */
}

.newsletter-desc {
    font-size: 0.98rem;
    line-height: 1.5;
    color: #475569 !important;
    max-width: 460px;
}

/* INPUT COMPONENT SETUP */
.max-w-input {
    max-width: 420px;
}

.newsletter-input {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    font-size: 14px;
    color: #0f172a;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.01);
    transition: all 0.2s ease;
}

.newsletter-input:focus {
    border-color: #c2936c !important;
    box-shadow: 0 0 0 3px rgba(194, 147, 108, 0.15) !important;
    outline: none;
}

.newsletter-input::placeholder {
    color: #94a3b8;
}

/* GOLD SIGNUP INTERACTION BUTTON */
.btn-gold-action {
    background-color: #dca134 !important; /* Exact warm gold color */
    color: #ffffff !important;
    border: 1px solid #dca134 !important;
    font-size: 14px;
    min-width: 135px;
    box-shadow: 0 4px 12px rgba(220, 161, 52, 0.15);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-gold-action:hover {
    background-color: #c68e28 !important;
    border-color: #c68e28 !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(220, 161, 52, 0.25);
}

/* BREAKPOINT CONFIGURATIONS */
@media (max-width: 991px) {
    .max-w-input {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .newsletter-heading {
        font-size: 1.85rem;
    }
    .newsletter-wrapper {
        border-radius: 24px !important;
    }
}
/* FOOTER CORE WRAPPER */
.royal-classic-footer {
    background-color: #0d0d0d;
    color: #ffffff;
    
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
    border-top: 1px solid #1a1a1a;
}

.royal-classic-footer .footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 1. TOP FEATURES BAR */
.footer-features-bar {
    border-bottom: 1px solid #1a1a1a;
    padding: 24px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-icon-box {
    background-color: rgba(223, 168, 74, 0.08);
    border: 1px solid rgba(223, 168, 74, 0.15);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: #dfa84a;
}

.feature-content h4 {
    margin: 0 0 2px 0;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.feature-content p {
    margin: 0;
    font-size: 12px;
    color: #8c8c8c;
}

/* 2. MAIN FOOTER CONTENT */
.footer-main-content {
    padding: 64px 0;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 2.2fr repeat(4, 1fr);
    gap: 40px;
}

/* Brand Area Styling */
.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-badge {
    background-color: #dfa84a;
    color: #0d0d0d;
    font-weight: 800;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.footer-brand-name {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.brand-description {
    color: #a6a6a6;
    line-height: 1.6;
    margin: 0 0 24px 0;
    max-width: 340px;
    font-size: 13.5px;
}

/* Newsletter Input Group Alignment Fix */
.footer-subscribe-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.input-inline-group {
    display: flex;
    background-color: #141414;
    border: 1px solid #262626;
    border-radius: 6px;
    padding: 4px;
    max-width: 360px;
    height: 44px;
    box-sizing: border-box;
}

.input-inline-group input {
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    padding: 0 12px;
    flex-grow: 1;
    font-size: 13.5px;
}

.input-inline-group input::placeholder {
    color: #555555;
}

.btn-subscribe {
    background-color: #dfa84a;
    color: #0d0d0d;
    border: none;
    outline: none;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s ease;
}

.btn-subscribe:hover {
    background-color: #cb9337;
}

.subscribe-note {
    font-size: 12px;
    color: #666666;
    margin: 8px 0 24px 0;
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 8px;
}

.footer-socials a {
    width: 32px;
    height: 32px;
    background-color: #141414;
    border: 1px solid #262626;
    color: #a6a6a6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.2s ease;
}

.footer-socials a:hover {
    background-color: #dfa84a;
    color: #0d0d0d;
    border-color: #dfa84a;
}

/* Vertical Link Columns Typography */
.links-column h3 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #8c8c8c;
    margin: 0 0 20px 0;
}

.links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-column ul li {
    margin-bottom: 12px;
}

.links-column ul li a {
    color: #fff !important;
    text-decoration: none;
    font-size: 13.5px;
    transition: color 0.2s ease;
}

.links-column ul li a:hover {
    color: #dfa84a;
}

/* 3. BOTTOM BAR AND PAYMENT LISTS */
.footer-bottom-bar {
    border-top: 1px solid #1a1a1a;
    padding: 24px 0;
    background-color: #080808;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright-text {
    margin: 0;
    font-size: 13px;
    color: #666666;
}

.payment-gateways {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.payment-gateways span {
    font-size: 11px;
    font-weight: 600;
    color: #8c8c8c;
    background-color: #141414;
    border: 1px solid #262626;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.02em;
}

/* RESPONSIVE CSS BREKPOINTS */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    .footer-brand-column {
        grid-column: span 2;
        margin-bottom: 16px;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
    .footer-brand-column {
        grid-column: span 1;
    }
    .bottom-flex {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* PRODUCT GALLERY LAYOUT MANAGEMENT */
.thumb-box {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    background-color: #f8fafc;
}

.thumb-box img {
    aspect-ratio: 1/1;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.thumb-box:hover, .thumb-box.active-thumb {
    border-color: #dfa84a !important;
    box-shadow: 0 0 0 2px rgba(223, 168, 74, 0.15);
}

/* QUANTITY CONTROLLER STYLES */
.quantity-selector {
    max-width: 120px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0 !important;
}

.primary-buy-btn:hover {
    background-color: #dfa84a !important;
    border-color: #dfa84a !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(223, 168, 74, 0.25);
}

/* BRAND HOMEPAGE CARD STYLES ENHANCEMENTS REUSED */
.product-card-hover {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06) !important;
}

.btn-wishlist {
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.25s ease;
}

.product-card-hover:hover .btn-wishlist {
    opacity: 1;
    transform: translateY(0);
}

.hover-gold:hover {
    color: #dfa84a !important;
}
/* RESPONSIVE DUAL MODE GALLERY SLIDER */
.product-gallery-layout {
    width: 100%;
}

.main-hero-image-box {
    width: 100%;
}

/* DESKTOP LAYOUT CONFIGURATION (>992px) */
@media (min-width: 992px) {
    .thumbnail-slider-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 30px 0; /* Space for top/bottom navigation buttons */
        width: 90px;
        flex-shrink: 0;
    }

    .thumb-images-track {
        display: flex;
        flex-direction: column;
        gap: 12px;
        max-height: 440px; /* Lock height to perfectly fit 4 thumbs at once */
        overflow-y: scroll;
        scroll-behavior: smooth;
        scrollbar-width: none; /* Hide standard Firefox scrollbar */
    }

    /* Hide standard Chrome scrollbar */
    .thumb-images-track::-webkit-scrollbar {
        display: none;
    }

    .thumb-box {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }

    /* Navigation Arrows Design */
    .thumb-nav-btn {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        background: #fff;
        border: 1px solid #e2e8f0;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        z-index: 5;
        cursor: pointer;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        transition: all 0.2s ease;
    }

    .thumb-nav-btn:hover {
        background: #dfa84a;
        color: #fff;
        border-color: #dfa84a;
    }

    .nav-up { top: 0; }
    .nav-down { bottom: 0; }
}

/* MOBILE & TABLET LAYOUT CONFIGURATION (<991px) */
@media (max-width: 991px) {
    .thumbnail-slider-container {
        width: 100%;
        margin-top: 12px;
    }

    .thumb-images-track {
        display: flex;
        flex-direction: row;
        gap: 10px;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding-bottom: 5px;
        scrollbar-width: none;
    }

    .thumb-images-track::-webkit-scrollbar {
        display: none;
    }

    .thumb-box {
        width: 75px;
        height: 75px;
        flex-shrink: 0;
    }
}

/* Core Utility styles */
.thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}
.thumb-box.active-thumb {
    border-color: #dfa84a !important;
    box-shadow: 0 0 0 2px rgba(223, 168, 74, 0.25);
}
/* EXTENDED MULTI-TIER PRICING ENGINE VISUALS */
.tier-card {
    background-color: #fff;
    border: 1px solid #e2e8f0 !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Selected active tier style dynamically synchronized with user mock layout */
.tier-card.active-tier {
    border-color: #3b82f6 !important;
    background-color: #eff6ff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08);
}

/* Specific border matching colors for specialized tiers on selected focus */
.col-4:nth-child(2) .tier-card.active-tier {
    border-color: #10b981 !important;
    background-color: #ecfdf5;
}

.col-4:nth-child(3) .tier-card.active-tier {
    border-color: #ea580c !important;
    background-color: #fff7ed;
}

.custom-gold-btn:hover {
    background-color: #c99337 !important;
    transform: translateY(-1px);
}

.inquiry-action-btn:hover {
    background-color: #f8fafc;
    border-color: #94a3b8 !important;
}

.whatsapp-live-btn:hover {
    background-color: #c8e6c9 !important;
}
/* EXECUTIVE PRODUCT INFO TABS STYLING */
.custom-product-nav-tabs {
    border-bottom: 1px solid #e2e8f0 !important;
}

.custom-product-nav-tabs .nav-item {
    margin-bottom: -1px;
}

.custom-product-nav-tabs .nav-link {
    border: none !important;
    background: transparent !important;
    color: #64748b !important;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 24px !important;
    position: relative;
    transition: color 0.2s ease;
}

.custom-product-nav-tabs .nav-link:hover {
    color: #1e293b !important;
}

/* Exact matching active baseline indicator string */
.custom-product-nav-tabs .nav-link.active {
    color: #1e293b !important;
    font-weight: 600;
}

.custom-product-nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #dfa84a; /* Brand Theme Gold */
}

/* Smooth content transitions */
.tab-content .tab-pane {
    transition: opacity 0.15s linear;
}
/* Hide HTML5 Number Input Spinners */
.no-spinners::-webkit-outer-spin-button,
.no-spinners::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.no-spinners {
    -moz-appearance: textfield; /* For Firefox */
}
/* DESKTOP HOVER ENGINE FOR MAIN & NESTED DROPDOWNS */
@media (min-width: 992px) {
    /* Main Dropdown Open on Hover */
    .nav-item.dropdown:hover > .dropdown-menu {
        display: block !important;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
    }

    /* Submenu (Nested) Open on Hover */
    .dropdown-submenu:hover > .submenu {
        display: block !important;
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    /* Base Submenu Position & Transitions */
    .dropdown-submenu > .submenu {
        display: block;
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: 0;
        left: 100%;
        margin-left: 2px;
        min-width: 210px;
        transition: all 0.2s ease-in-out;
        transform: translateX(10px);
    }
}
#categoriesDropdown::after {
    display: none; /* Remove default caret for cleaner design */
}
/* CHEVRON ICON TAP & ROTATION ANIMATION */
.collapse-chevron-btn {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Touch Active State for Mobile Feedback */
.collapse-chevron-btn:active {
    background-color: #e2e8f0;
}

/* Rotate Chevron Icon to Face UP when menu is Open */
.collapse-chevron-btn[aria-expanded="true"] {
    transform: rotate(180deg);
    color: #dfa84a !important; /* Accent Gold */
}

/* Subtle background styling for nested container */
.offcanvas-sub-collapse-panel {
    background-color: #f8fafc;
}
.product-info-block .star-rating, .product-info-block .rating-value, .product-info-block .rating-count{
    display: none !important;
}
/* EXECUTIVE SHOP MARKETPLACE STYLES */




/* Custom Checkbox Styling */
/* Custom Checkbox Styling */
.shoplayout .custom-check .form-check-input {
    border-radius: 4px;
    border-color: #cbd5e1;
    cursor: pointer;
}

.shoplayout .custom-check .form-check-input:checked {
    background-color: #dfa84a;
    border-color: #dfa84a;
}

/* Custom Range Slider */
.shoplayout .form-range::-webkit-slider-thumb {
    background: #dfa84a;
}

/* Product Card Effects */
.shoplayout .product-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.shoplayout .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08) !important;
}

/* Clamp Long Text */
.shoplayout .line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Buttons Hover */
.shoplayout .custom-gold-btn:hover {
    background-color: #c99337 !important;
}

/* Pagination Links */
.shoplayout .page-item-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #64748b;
    font-weight: 600;
    font-size: 13px;
    background-color: #fff;
    border: 1px solid #e2e8f0;
}

.shoplayout .page-item-link.active, 
.shoplayout .page-item-link:hover {
    background-color: #dfa84a;
    color: #000;
    border-color: #dfa84a;
}

/* Offcanvas Overlay Backdrop */
.custom-filter-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1049;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.custom-filter-backdrop.show {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================
   SECTION STICKY & OFFCANVAS ENGINE (< 992px)
   ========================================================== */
@media (max-width: 991.98px) {

    /* Make products parent column relative for section sticky boundary */
    .shoplayout .col-12.col-lg-9 {
        position: relative !important;
    }

    /* Section-Bound Sticky Button Styling (Top-Left) */
    .shoplayout .mobile-filter-sticky-btn {
        position: sticky !important;
        top: 90px !important;
        left: 0 !important;
        z-index: 10 !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
        padding: 9px 18px !important;
        background-color: #1e293b !important;
        color: #fff !important;
        border: none !important;
        border-radius: 50px !important;
        font-weight: 600 !important;
        font-size: 13px !important;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15) !important;
        margin-bottom: 15px !important;
        cursor: pointer !important;
        transition: transform 0.2s ease, background-color 0.2s ease;
    }

    .shoplayout .mobile-filter-sticky-btn:active {
        transform: scale(0.95);
        background-color: #dfa84a !important;
        color: #000 !important;
    }

    /* Convert Desktop Sidebar Card to Sliding Offcanvas */
    .shoplayout .col-12.col-lg-3 .card.border-0.shadow-sm.rounded-4 {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 320px !important;
        max-width: 85vw !important;
        height: 100vh !important;
        z-index: 1050 !important;
        background-color: #fff !important;
        border-radius: 0 20px 20px 0 !important;
        /* box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15) !important; */
        overflow-y: auto !important;
        transform: translateX(-100%) !important;
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
        margin: 0 !important;
    }

    /* Active Offcanvas State */
    .shoplayout .col-12.col-lg-3 .card.border-0.shadow-sm.rounded-4.offcanvas-active {
        transform: translateX(0) !important;
    }

    /* Dynamic Close Button Styling Inside Offcanvas Header */
    .shoplayout .offcanvas-dynamic-close {
        background: #f1f5f9;
        border: none;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: #475569;
        cursor: pointer;
    }
}
@media screen and (min-width: 992px) {
    .shoplayout .offcanvas-dynamic-close {
        display: none !important;
    }
    .shoplayout .mobile-filter-sticky-btn {
        display: none !important;
    }
}

/* ==========================================================
   BRANDS PAGE STYLES (Prefix: rc-brands-)
   ========================================================== */

.rc-brands-wrapper {
    background-color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Header Typography */
.rc-brands-subtitle {
    color: #dfa84a; /* Accent Gold */
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.rc-brands-title {
    font-size: 2.25rem;
    letter-spacing: -0.5px;
}

.rc-brands-description {
    font-size: 0.95rem;
}

/* Brand Card Container */
.rc-brands-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    height: 100px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.rc-brands-name {
    font-size: 1.1rem;
    letter-spacing: -0.2px;
}

/* Hover & Active Micro-interactions */
.rc-brands-card:hover {
    border-color: #dfa84a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.rc-brands-card:hover .rc-brands-name {
    color: #dfa84a !important;
}

.rc-brands-card:active {
    transform: translateY(0);
}
/* ==========================================================
   ABOUT PAGE STYLES (Prefix: rc-about-)
   ========================================================== */

.rc-about-wrapper {
    background-color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Global Subtitle & Gold Accents */
.rc-about-gold-subtitle {
    color: #dfa84a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.rc-about-text-gold {
    color: #dfa84a;
}

.rc-about-text-muted {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Hero Section */
.rc-about-hero {
    min-height: 380px;
    background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), 
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1600&q=80') center center / cover no-repeat;
    padding: 60px 0;
}

.rc-about-hero-title {
    font-size: 2.75rem;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

/* Story Section */
.rc-about-story-img {
    border-radius: 20px;
    width: 100%;
    height: 380px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.rc-about-section-title {
    font-size: 2rem;
    letter-spacing: -0.5px;
}

/* Stats Cards Section */
.rc-about-stats-section {
    background-color: #f8fafc;
}

.rc-about-stat-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rc-about-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.rc-about-stat-icon {
    font-size: 1.5rem;
    color: #dfa84a;
}

.rc-about-stat-number {
    font-size: 2rem;
    letter-spacing: -0.5px;
}

.rc-about-stat-label {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Responsive Overrides */
@media (max-width: 767.98px) {
    .rc-about-hero {
        min-height: 300px;
    }
    .rc-about-hero-title {
        font-size: 1.9rem;
    }
    .rc-about-section-title {
        font-size: 1.5rem;
    }
    .rc-about-story-img {
        height: 260px;
    }
}
/* ==========================================================
   CONTACT PAGE STYLES (Prefix: rc-contact-)
   ========================================================== */

.rc-contact-wrapper {
    background-color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Header Typography */
.rc-contact-subtitle {
    color: #dfa84a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.rc-contact-title {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
}

.rc-contact-description {
    font-size: 0.95rem;
}

/* Info Cards (Left Column) */
.rc-contact-info-card {
    background-color: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.rc-contact-info-card:hover {
    border-color: #e2e8f0;
    transform: translateY(-2px);
}

.rc-contact-icon-box {
    width: 44px;
    height: 44px;
    background-color: #fef8ec;
    color: #dfa84a;
    border-radius: 12px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.rc-contact-card-label {
    color: #94a3b8;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.rc-contact-card-value {
    font-size: 0.95rem;
}

/* Form Container (Right Column) */
.rc-contact-form-card {
    background-color: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.rc-contact-form-title {
    font-size: 1.5rem;
    letter-spacing: -0.3px;
}

.rc-contact-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
}

/* Inputs & Textarea */
.rc-contact-input {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.95rem;
    color: #1e293b;
    box-shadow: none !important;
    transition: border-color 0.2s ease;
}

.rc-contact-input:focus {
    border-color: #dfa84a;
    background-color: #fff;
}

.rc-contact-textarea {
    resize: vertical;
}

/* Submit Button */
.rc-contact-submit-btn {
    background-color: #dfa84a;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 0.95rem;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.rc-contact-submit-btn:hover {
    background-color: #c99337;
    color: #ffffff;
}

.rc-contact-submit-btn:active {
    transform: scale(0.98);
}

/* Mobile Responsive */
@media (max-width: 767.98px) {
    .rc-contact-title {
        font-size: 1.85rem;
    }
}
/* ==========================================================
   SIGN UP PAGE STYLES (Prefix: rc-signup-)
   ========================================================== */

/* Dark Gradient Background */
.rc-signup-body {
    background: #090a0f;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(223, 168, 74, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(30, 41, 59, 0.3) 0%, transparent 50%);
    color: #f8fafc;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Logo Badge */
.rc-signup-logo-icon {
    width: 32px;
    height: 32px;
    background-color: #dfa84a;
    color: #000;
    border-radius: 8px;
}

/* Hero Content */
.rc-signup-badge {
    background-color: rgba(223, 168, 74, 0.1);
    border: 1px solid rgba(223, 168, 74, 0.3);
    color: #dfa84a;
    font-size: 12px;
}

.rc-signup-hero-title {
    font-size: 2.75rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.rc-signup-text-gold {
    color: #dfa84a;
}

/* Form Card Styling */
.rc-signup-card {
    background: rgba(18, 22, 31, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    max-width: 480px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.rc-signup-label {
    font-size: 0.8rem;
    color: #cbd5e1;
    margin-bottom: 6px;
}

/* Input Fields with Prefix Icons */
.rc-signup-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.rc-signup-input-icon {
    position: absolute;
    left: 14px;
    color: #64748b;
    font-size: 1rem;
    pointer-events: none;
    z-index: 5;
}

.rc-signup-input {
    background-color: rgba(30, 41, 59, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    padding: 10px 14px 10px 40px !important;
    border-radius: 12px !important;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.rc-signup-input::placeholder {
    color: #475569 !important;
}

.rc-signup-input:focus {
    border-color: #dfa84a !important;
    box-shadow: 0 0 0 3px rgba(223, 168, 74, 0.2) !important;
}

/* Password Eye Toggle Icon */
.rc-signup-password-toggle {
    position: absolute;
    right: 12px;
    background: transparent;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 4px;
    z-index: 5;
    transition: color 0.2s ease;
}

.rc-signup-password-toggle:hover {
    color: #dfa84a;
}

/* Checkbox Customization */
.rc-signup-check .form-check-input {
    background-color: rgba(30, 41, 59, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.rc-signup-check .form-check-input:checked {
    background-color: #dfa84a;
    border-color: #dfa84a;
}

/* Buttons */
.rc-signup-submit-btn {
    background-color: #dfa84a;
    color: #000000;
    border: none;
    border-radius: 50px;
    padding: 12px;
    font-size: 0.95rem;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.rc-signup-submit-btn:hover {
    background-color: #c99337;
    color: #000000;
}

.rc-signup-social-btn {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px;
    transition: background-color 0.2s ease;
}

.rc-signup-social-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.rc-signup-gold-link {
    color: #dfa84a;
}

.rc-signup-gold-link:hover {
    color: #c99337;
}

.extra-small {
    font-size: 0.75rem;
}

/* Responsive Scaling */
@media (max-width: 991.98px) {
    .rc-signup-card {
        max-width: 100%;
    }
    .rc-signup-hero-title {
        font-size: 2rem;
    }
}
/* ==========================================================
   LOGIN PAGE STYLES (Prefix: rc-login-)
   ========================================================== */

/* Dark Gradient Background */
.rc-login-body {
    background: #090a0f;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(223, 168, 74, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(30, 41, 59, 0.3) 0%, transparent 50%);
    color: #f8fafc;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Hero Content */
.rc-login-badge {
    background-color: rgba(223, 168, 74, 0.1);
    border: 1px solid rgba(223, 168, 74, 0.3);
    color: #dfa84a;
    font-size: 12px;
}

.rc-login-hero-title {
    font-size: 2.75rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.rc-login-text-gold {
    color: #dfa84a;
}

/* Form Card Styling */
.rc-login-card {
    background: rgba(18, 22, 31, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    max-width: 480px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.rc-login-label {
    font-size: 0.8rem;
    color: #cbd5e1;
}

/* Input Fields with Prefix Icons */
.rc-login-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.rc-login-input-icon {
    position: absolute;
    left: 14px;
    color: #64748b;
    font-size: 1rem;
    pointer-events: none;
    z-index: 5;
}

.rc-login-input {
    background-color: rgba(30, 41, 59, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    padding: 10px 14px 10px 40px !important;
    border-radius: 12px !important;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.rc-login-input::placeholder {
    color: #475569 !important;
}

.rc-login-input:focus {
    border-color: #dfa84a !important;
    box-shadow: 0 0 0 3px rgba(223, 168, 74, 0.2) !important;
}

/* Password Eye Toggle Icon */
.rc-login-password-toggle {
    position: absolute;
    right: 12px;
    background: transparent;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 4px;
    z-index: 5;
    transition: color 0.2s ease;
}

.rc-login-password-toggle:hover {
    color: #dfa84a;
}

/* Checkbox Customization */
.rc-login-check .form-check-input {
    background-color: rgba(30, 41, 59, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.rc-login-check .form-check-input:checked {
    background-color: #dfa84a;
    border-color: #dfa84a;
}

/* Buttons */
.rc-login-submit-btn {
    background-color: #dfa84a;
    color: #000000;
    border: none;
    border-radius: 50px;
    padding: 12px;
    font-size: 0.95rem;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.rc-login-submit-btn:hover {
    background-color: #c99337;
    color: #000000;
}

.rc-login-social-btn {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px;
    transition: background-color 0.2s ease;
}

.rc-login-social-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.rc-login-gold-link {
    color: #dfa84a;
}

.rc-login-gold-link:hover {
    color: #c99337;
}

.extra-small {
    font-size: 0.75rem;
}

/* Responsive Scaling */
@media (max-width: 991.98px) {
    .rc-login-card {
        max-width: 100%;
    }
    .rc-login-hero-title {
        font-size: 2rem;
    }
}

/* ==========================================================
   CART / BAG PAGE STYLES (Prefix: rc-cart-)
   ========================================================== */

.rc-cart-body {
    background-color: #fafafa;
    color: #1e293b;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.max-w-1200 {
    max-width: 1140px;
}

.extra-small {
    font-size: 0.75rem;
}

.min-w-80 {
    min-width: 80px;
}

/* Shipping Banner */
.rc-cart-shipping-banner {
    background-color: #fffdf5;
    border: 1px solid rgba(223, 168, 74, 0.2);
}

.rc-cart-progress-bar {
    height: 6px;
    background-color: #f1f5f9;
}

/* Item Card */
.rc-cart-item-card {
    border-color: #e2e8f0 !important;
    transition: box-shadow 0.2s ease;
}

.rc-cart-img {
    aspect-ratio: 1;
    width: 100%;
    max-width: 90px;
    background-color: #f8fafc;
}

/* Tier Badges */
.rc-cart-badge {
    background-color: #f1f5f9;
    color: #64748b;
    font-weight: 500;
    font-size: 0.7rem;
    padding: 5px 10px;
    border-radius: 20px;
}

.rc-cart-badge.active {
    background-color: #f8fafc;
    color: #0f172a;
    border: 1px solid #cbd5e1;
    font-weight: 700;
}

/* Quantity Picker */
.rc-cart-qty-picker {
    background-color: #f8fafc;
    border-color: #cbd5e1 !important;
}

.rc-qty-btn {
    width: 22px;
    height: 22px;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rc-qty-btn:hover {
    color: #0f172a;
}

/* Remove Cross Button */
.rc-cart-remove-btn {
    font-size: 0.85rem;
    cursor: pointer;
    transition: color 0.15s ease;
}

.rc-cart-remove-btn:hover {
    color: #ef4444 !important;
}

/* Coupon Box */
.rc-cart-coupon-input {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    font-size: 0.85rem;
}

.rc-cart-apply-btn {
    background-color: #f1f5f9;
    color: #0f172a;
    font-size: 0.85rem;
}

.rc-cart-apply-btn:hover {
    background-color: #e2e8f0;
}

/* Summary Card */
.rc-cart-summary-card {
    border-color: #e2e8f0 !important;
}

.rc-cart-checkout-btn {
    background-color: #dfa84a;
    color: #000000;
    border: none;
    font-size: 0.95rem;
    transition: background-color 0.2s ease;
}

.rc-cart-checkout-btn:hover {
    background-color: #c99337;
    color: #000000;
}

.rc-cart-info-card {
    background-color: #f8fafc;
    border-color: #e2e8f0 !important;
}
/* ==========================================================
   CHECKOUT PAGE STYLES (Prefix: rc-checkout-)
   ========================================================== */

.rc-checkout-body {
    background-color: #fafafa;
    color: #1e293b;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.max-w-1200 {
    max-width: 1140px;
}

.extra-small {
    font-size: 0.75rem;
}

.cursor-pointer {
    cursor: pointer;
}

/* Card Wrappers */
.rc-checkout-card {
    border-color: #e2e8f0 !important;
}

.rc-checkout-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
}

/* Form Inputs */
.rc-checkout-input {
    background-color: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.rc-checkout-input:focus {
    border-color: #dfa84a;
    box-shadow: 0 0 0 3px rgba(223, 168, 74, 0.2);
    background-color: #ffffff;
}

/* Payment Selection Radio Cards */
.rc-checkout-pay-option {
    border-color: #e2e8f0 !important;
    background-color: #f8fafc;
    transition: all 0.2s ease;
}

.rc-checkout-pay-option.active {
    border-color: #dfa84a !important;
    background-color: #fffdf5;
}

.rc-checkout-pay-option .form-check-input:checked {
    background-color: #dfa84a;
    border-color: #dfa84a;
}

/* Mini Product Images in Summary */
.rc-checkout-mini-img {
    width: 48px;
    height: 48px;
    background-color: #f1f5f9;
}

.rc-checkout-items-list {
    max-height: 220px;
    overflow-y: auto;
}

/* Primary Button */
.rc-checkout-btn {
    background-color: #dfa84a;
    color: #000000;
    border: none;
    font-size: 1rem;
    transition: background-color 0.2s ease;
}

.rc-checkout-btn:hover {
    background-color: #c99337;
    color: #000000;
}

/* ==========================================================
   CUSTOMER DASHBOARD STYLES (Prefix: rc-dash-)
   ========================================================== */

.rc-dash-body {
    background-color: #fafafa;
    color: #1e293b;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.max-w-1400 {
    max-width: 1360px;
}

.max-w-600 {
    max-width: 600px;
}

.extra-small {
    font-size: 0.75rem;
}

/* Sidebar Styling */
.rc-dash-sidebar {
    border-color: #e2e8f0 !important;
}

.rc-dash-nav-header {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 0.5px;
    display: block;
    padding: 6px 12px;
}

.rc-dash-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.15s ease;
}

.rc-dash-nav-item:hover {
    background-color: #f1f5f9;
    color: #0f172a;
}

.rc-dash-nav-item.active {
    background-color: #fffdf5;
    color: #b45309;
    font-weight: 600;
}

/* Welcome Card */
.rc-dash-welcome-card {
    background: linear-gradient(135deg, #111111 0%, #1e1b18 100%);
    border: 1px solid #2e2820;
}

.rc-dash-welcome-tag {
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.rc-dash-btn-primary {
    background-color: #dfa84a;
    color: #000000;
    border: none;
}

.rc-dash-btn-primary:hover {
    background-color: #c99337;
    color: #000000;
}

.rc-dash-btn-outline {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.rc-dash-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* Stat Cards */
.rc-dash-stat-card {
    border-color: #e2e8f0 !important;
}

.rc-dash-stat-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #94a3b8;
}

.rc-dash-stat-trend {
    font-size: 0.72rem;
}

.rc-dash-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.bg-orange-subtle {
    background-color: #fff7ed;
}

.text-orange {
    color: #ea580c;
}

/* Orders List */
.rc-dash-order-item {
    border-color: #f1f5f9 !important;
    background-color: #ffffff;
}

.rc-dash-order-icon {
    width: 36px;
    height: 36px;
    background-color: #f8fafc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

/* Order Badges */
.rc-dash-badge-delivered {
    background-color: #dcfce7;
    color: #15803d;
}

.rc-dash-badge-transit {
    background-color: #dbeafe;
    color: #1d4ed8;
}

.rc-dash-badge-processing {
    background-color: #ffedd5;
    color: #c2410c;
}

/* Product Card */
.rc-dash-p-img {
    height: 110px;
    background-color: #f8fafc;
}

.rc-dash-product-card {
    border-color: #f1f5f9 !important;
}

/* Activity Icons */
.rc-dash-act-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

/* Referral Card */
.rc-dash-referral-card {
    background-color: #fffdf5;
    border-color: rgba(223, 168, 74, 0.25) !important;
}

.footer-logo-row .logo-img {
    filter: invert(1) brightness(10);
}
/* ==========================================================
   CART DRAWER STYLES - WHITE THEME (Prefix: rc-drawer-)
   ========================================================== */

/* Main Drawer Container */
.rc-drawer-container {
    background-color: #ffffff !important;
    color: #1e293b;
    width: 400px !important;
}

@media (max-width: 576px) {
    .rc-drawer-container {
        width: 100% !important;
    }
}

.max-w-180 {
    max-width: 180px;
}

.extra-small {
    font-size: 0.75rem;
}

/* Header Badge */
.rc-drawer-badge {
    background-color: #111111;
    color: #ffffff;
    font-size: 0.75rem;
    padding: 0.35em 0.65em;
}

/* Shipping Progress Bar Section */
.rc-drawer-shipping-bar {
    background-color: #f8fafc;
}

.rc-drawer-progress {
    background-color: #e2e8f0;
    border-radius: 10px;
}

.rc-drawer-progress-bar {
    background-color: #dfa84a;
}

/* Drawer Cart Item */
.rc-drawer-item {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    transition: all 0.2s ease-in-out;
}

.rc-drawer-item:hover {
    border-color: #dfa84a !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.rc-drawer-item-img {
    width: 70px;
    height: 70px;
    background-color: #f1f5f9;
}

/* Quantity Control Buttons */
.rc-drawer-qty-group {
    background-color: #f8fafc;
}

.rc-qty-btn {
    border: none;
    background: transparent;
    font-size: 0.85rem;
    color: #64748b;
}

.rc-qty-btn:hover {
    color: #0f172a !important;
}

/* Remove Item Button */
.rc-drawer-remove-btn {
    font-size: 0.85rem;
    color: #94a3b8 !important;
    text-decoration: none;
    transition: color 0.15s ease;
}

.rc-drawer-remove-btn:hover {
    color: #ef4444 !important;
}

/* Footer Section */
.rc-drawer-footer {
    background-color: #f8fafc !important;
}

/* Buttons */
.rc-drawer-btn-primary {
    background-color: #111111;
    color: #ffffff;
    border: 1px solid #111111;
    transition: all 0.2s ease;
}

.rc-drawer-btn-primary:hover {
    background-color: #dfa84a;
    color: #000000;
    border-color: #dfa84a;
}

.rc-drawer-btn-outline {
    background-color: #ffffff;
    color: #0f172a;
    border: 1px solid #cbd5e1;
    transition: all 0.2s ease;
}

.rc-drawer-btn-outline:hover {
    background-color: #f1f5f9;
    color: #0f172a;
    border-color: #94a3b8;
}