/* ============================================
   Reza Attire — Minimal White Fashion Theme
   ============================================ */

:root {
    --ra-gold: #B8860B;
    --ra-gold-light: #D4A745;
    --ra-gold-dark: #8B6914;
    --ra-gold-muted: rgba(184, 134, 11, 0.08);
    --ra-black: #1A1A1A;
    --ra-black-soft: #F8F8F6;
    --ra-dark: #F3F3F1;
    --ra-dark-card: #FFFFFF;
    --ra-gray-900: #F5F5F3;
    --ra-gray-800: #E8E8E8;
    --ra-gray-700: #D0D0D0;
    --ra-gray-600: #999999;
    --ra-gray-500: #888888;
    --ra-gray-400: #6B6B6B;
    --ra-gray-300: #4A4A4A;
    --ra-gray-200: #333333;
    --ra-gray-100: #F7F7F5;
    --ra-white: #1A1A1A;
    --ra-bg: #FAFAF8;
    --ra-bg-alt: #F3F3F1;
    --ra-text: #1A1A1A;
    --ra-text-muted: #888888;
    --ra-border: #E0E0E0;
    --ra-border-subtle: #EEEEEE;
    --ra-success: #2E7D32;
    --ra-danger: #C62828;
    --ra-warning: #E65100;
    --ra-info: #1565C0;
    --ra-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    --ra-shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08);
    --ra-radius: 4px;
    --ra-radius-lg: 8px;
    --ra-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --ra-font-display: 'Playfair Display', Georgia, serif;
    --ra-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ra-font-product-name: var(--ra-font-display);
    --ra-font-product-price: var(--ra-font-display);
    --ra-font-product-description: var(--ra-font-body);
    --ra-font-product-category: var(--ra-font-body);
    --ra-font-product-ribbon: var(--ra-font-body);
}

/* ---- Base ---- */
html {
    font-size: 15px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html { font-size: 16px; }
}

body {
    font-family: var(--ra-font-body);
    background-color: var(--ra-bg);
    color: var(--ra-text);
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--ra-font-display);
    color: var(--ra-white);
    font-weight: 600;
}

a {
    color: var(--ra-gold);
    text-decoration: none;
    transition: var(--ra-transition);
}

a:hover {
    color: var(--ra-gold-light);
}

::selection {
    background: var(--ra-gold);
    color: var(--ra-black);
}

img {
    max-width: 100%;
    height: auto;
}

img.ra-hero-bg-img {
    max-width: none;
    height: 100%;
}

/* ---- Focus States ---- */
.btn:focus, .btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.15rem rgba(184, 134, 11, 0.2);
}

/* ---- Accent Button ---- */
.btn-gold {
    background: var(--ra-gold);
    color: #FFFFFF;
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 0.6rem 1.8rem;
    transition: var(--ra-transition);
}

.btn-gold:hover {
    background: var(--ra-gold-dark);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.25);
}

.btn-outline-gold {
    border: 1.5px solid var(--ra-gold);
    color: var(--ra-gold);
    background: transparent;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 0.6rem 1.8rem;
    transition: var(--ra-transition);
}

.btn-outline-gold:hover {
    background: var(--ra-gold);
    color: #FFFFFF;
}

/* ---- Custom Ribbon Button ---- */
.ra-custom-ribbon-btn {
    display: inline-block;
    position: absolute;
    transform: translate(-50%, -50%);
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 20;
}

.ra-custom-ribbon-btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* ---- Navbar ---- */
.ra-navbar {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ra-border);
    padding: 0;
    z-index: 1030;
}

.ra-navbar .navbar-brand {
    padding: 0.5rem 0;
}

.ra-navbar .navbar-brand img {
    height: 50px;
    width: auto;
}

/* ---- Logo Styles - Wide Display ---- */
.ra-header-logo-img {
    height: 55px;
    max-width: 200px;
    width: auto;
    object-fit: contain;
}

.ra-footer-logo-img {
    height: 70px;
    max-width: 250px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .ra-header-logo-img {
        height: 42px;
        max-width: 160px;
    }

    .ra-footer-logo-img {
        height: 55px;
        max-width: 200px;
    }
}

.ra-navbar .nav-link {
    color: #6B6B6B !important;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 1rem 1.1rem !important;
    transition: var(--ra-transition);
    position: relative;
}

.ra-navbar .nav-link:hover,
.ra-navbar .nav-link.active {
    color: #1A1A1A !important;
}

.ra-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--ra-gold);
    transition: var(--ra-transition);
    transform: translateX(-50%);
}

.ra-navbar .nav-link:hover::after,
.ra-navbar .nav-link.active::after {
    width: 60%;
}

.ra-nav-icons .nav-link {
    font-size: 1.2rem;
    padding: 1rem 0.7rem !important;
}

.ra-nav-icons .badge {
    background: var(--ra-gold);
    color: #FFFFFF;
    font-size: 0.65rem;
    font-weight: 700;
    position: absolute;
    top: 6px;
    right: 0;
    min-width: 18px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0;
    line-height: 18px;
}

/* ---- Desktop Header Layout ---- */
@media (min-width: 992px) {
    .ra-header-container {
        display: flex !important;
        align-items: center !important;
        padding: 0.5rem 1rem !important;
    }

    /* Logo on the left */
    .ra-header-logo {
        position: static;
        transform: none;
        flex-shrink: 0;
        margin-right: 1rem;
    }

    .ra-header-logo img {
        height: 50px;
    }

    .ra-mobile-toggle,
    .ra-mobile-cart {
        display: none !important;
    }

    /* Desktop container: Navigation (center) + Icons (right) */
    .ra-header-container > .d-none.d-lg-flex {
        display: flex !important;
        flex-grow: 1;
        align-items: center;
    }

    /* Navigation centered */
    .ra-header-container > .d-none.d-lg-flex > .navbar-nav {
        margin: 0 auto;
        flex-direction: row;
    }

    /* Icons on the right */
    .ra-header-container > .d-none.d-lg-flex > .d-flex {
        flex-shrink: 0;
    }

    /* Mobile menu hidden on desktop */
    .navbar-collapse.d-lg-none {
        display: none !important;
    }

    /* Nav link spacing */
    .ra-navbar .nav-link {
        padding: 0.75rem 1rem !important;
    }
}

/* ---- Mobile Header Layout ---- */
@media (max-width: 991.98px) {
    .ra-header-container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0.75rem 1rem !important;
        position: relative;
    }

    .ra-mobile-toggle {
        order: 1;
        display: block !important;
        padding: 0.25rem 0.5rem;
        margin: 0;
        position: static;
    }

    .ra-header-logo {
        order: 2;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        padding: 0;
        margin: 0;
    }

    .ra-header-logo img {
        height: 42px;
        max-height: 42px;
    }

    .ra-mobile-cart {
        order: 3;
        display: block !important;
        padding: 0.25rem 0.5rem;
        margin: 0;
        position: relative;
    }

    .ra-mobile-cart .badge {
        position: absolute;
        top: -4px;
        right: -4px;
        background: var(--ra-danger);
        color: white;
        font-size: 0.65rem;
        font-weight: 600;
        min-width: 18px;
        width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 2px solid white;
        box-shadow: 0 1px 3px rgba(0,0,0,0.2);
        padding: 0;
        line-height: 14px;
    }

    #wishlistBadgeMobile {
        position: absolute;
        top: -8px;
        right: -10px;
        background: var(--ra-gold);
        color: #fff;
        font-size: 0.65rem;
        font-weight: 700;
        min-width: 18px;
        height: 18px;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 2px solid white;
        box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    }

    /* Ensure navbar doesn't interfere with layout */
    .ra-navbar .container {
        max-width: 100%;
    }

    .navbar-collapse {
        order: 4;
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* ---- Hero ---- */
.ra-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--ra-black);
    overflow: hidden;
    touch-action: pan-y;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.ra-hero-slide {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease-out;
    will-change: opacity;
    pointer-events: none;
}

.ra-hero-slide.active {
    pointer-events: auto;
}

.ra-hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    z-index: 0;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.ra-hero-slide:not(.active) {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.ra-hero-slide.active {
    position: relative;
    opacity: 1;
}

.ra-hero-overlay {
    display: none;
}

.ra-hero-content {
    position: absolute;
    z-index: 2;
    max-width: 700px;
    padding: 2rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ra-hero-logo {
    width: 280px;
    max-width: 80%;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.ra-hero h1 {
    font-family: var(--ra-font-display);
    font-size: 2.8rem;
    font-weight: 400;
    color: #FFFFFF;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.ra-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.4s both;
}

@media (max-width: 768px) {
    .ra-hero h1 { font-size: 1.8rem; }
}

/* ---- Section Titles ---- */
.ra-section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.ra-section-title h2 {
    font-family: var(--ra-font-display);
    font-size: 1.8rem;
    font-weight: 500;
    color: #1A1A1A;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.ra-section-title p {
    color: var(--ra-text-muted);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.ra-section-title .ra-divider {
    width: 60px;
    height: 2px;
    background: var(--ra-gold);
    margin: 0.8rem auto 0;
}

/* ---- Product Cards ---- */
.ra-product-card {
    background: var(--ra-dark-card);
    border: 1px solid var(--ra-border-subtle);
    border-radius: var(--ra-radius);
    overflow: hidden;
    transition: var(--ra-transition);
    position: relative;
}

.ra-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ra-shadow-lg);
    border-color: var(--ra-border);
}

.ra-product-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--ra-gray-900);
}

.ra-product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ra-product-card:hover .ra-product-img-wrap img {
    transform: scale(1.05);
}

.ra-product-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    padding: 0.8rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    transition: var(--ra-transition);
}

.ra-product-card:hover .ra-product-actions {
    bottom: 0;
}

.ra-product-actions .btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    color: #1A1A1A;
    border: 1px solid rgba(255,255,255,0.5);
    font-size: 1rem;
    padding: 0;
    transition: var(--ra-transition);
}

.ra-product-actions .btn:hover {
    background: var(--ra-gold);
    color: #FFFFFF;
    border-color: var(--ra-gold);
}

.ra-product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
}

.ra-product-badge .badge {
    background: #1A1A1A;
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.6rem;
}

.ra-product-info {
    padding: 1rem 1.1rem 1.2rem;
}

.ra-product-category {
    font-family: var(--ra-font-product-category);
    font-size: 0.72rem;
    color: var(--ra-gray-500);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.ra-product-name {
    font-family: var(--ra-font-product-name);
    font-size: 1rem;
    font-weight: 500;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ra-product-name a {
    color: inherit;
}

.ra-product-name a:hover {
    color: var(--ra-gold);
}

.ra-product-price {
    font-family: var(--ra-font-product-price);
    font-size: 1rem;
    font-weight: 600;
    color: #1A1A1A;
}

.ra-product-price .ra-price-original {
    color: var(--ra-gray-600);
    text-decoration: line-through;
    font-size: 0.85rem;
    font-weight: 400;
    margin-left: 0.4rem;
}

/* ---- Category Cards ---- */
.ra-category-card {
    position: relative;
    border-radius: var(--ra-radius);
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
}

.ra-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ra-category-card:hover img {
    transform: scale(1.08);
}

.ra-category-card .ra-category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0,0,0,0.8));
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.ra-category-card .ra-category-name {
    font-family: var(--ra-font-display);
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* ---- Announcement Bar ---- */
.ra-announce-bar {
    background: #1A1A1A;
    color: #FFFFFF;
}

/* ---- Footer ---- */
.ra-footer {
    background: #1A1A1A;
    border-top: none;
    padding: 3rem 0 0;
    color: #9E9E9E;
}

.ra-footer h5 {
    color: #FFFFFF;
    font-family: var(--ra-font-display);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
}

.ra-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ra-footer ul li {
    margin-bottom: 0.5rem;
}

.ra-footer ul li a {
    color: #9E9E9E;
    font-size: 0.85rem;
    transition: var(--ra-transition);
}

.ra-footer ul li a:hover {
    color: #FFFFFF;
    padding-left: 4px;
}

.ra-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.2rem 0;
    margin-top: 2.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--ra-gray-600);
}

/* ---- Utility Classes ---- */
.text-gold { color: var(--ra-gold) !important; }
.bg-gold { background-color: var(--ra-gold) !important; }
.border-gold { border-color: var(--ra-gold) !important; }
.bg-ra-dark { background-color: var(--ra-bg) !important; }
.bg-ra-card { background-color: var(--ra-dark-card) !important; }
.text-ra-muted { color: var(--ra-text-muted) !important; }

/* ---- Forms Light ---- */
.form-control,
.form-select {
    background-color: #FFFFFF;
    border-color: #E0E0E0;
    color: #1A1A1A;
}

.form-control:focus,
.form-select:focus {
    background-color: #FFFFFF;
    border-color: var(--ra-gold);
    color: #1A1A1A;
    box-shadow: 0 0 0 0.15rem rgba(184, 134, 11, 0.15);
}

.form-control::placeholder {
    color: var(--ra-gray-600);
}

.form-label {
    color: var(--ra-gray-300);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ---- Cards Light Override ---- */
.card {
    background: var(--ra-dark-card);
    border-color: var(--ra-border-subtle);
    color: var(--ra-text);
}

.card-header {
    background: transparent;
    border-bottom-color: var(--ra-border-subtle);
}

/* ---- Animations ---- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease;
}

.animate-fade-in-up {
    animation: fadeInUp 0.5s ease;
}

/* ---- Search Bar ---- */
.ra-search-form {
    position: relative;
}

.ra-search-form .form-control {
    background: #F5F5F3;
    border: 1px solid #E0E0E0;
    border-radius: 30px;
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    font-size: 0.85rem;
    color: #1A1A1A;
    width: 220px;
    transition: var(--ra-transition);
}

.ra-search-form .form-control:focus {
    width: 300px;
    background: #FFFFFF;
    border-color: var(--ra-gold);
}

.ra-search-form .ra-search-icon {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ra-gray-500);
    font-size: 1rem;
}

/* ---- Breadcrumb ---- */
.ra-breadcrumb {
    background: transparent;
    padding: 1rem 0;
}

.ra-breadcrumb .breadcrumb-item,
.ra-breadcrumb .breadcrumb-item a {
    color: var(--ra-gray-500);
    font-size: 0.82rem;
}

.ra-breadcrumb .breadcrumb-item.active {
    color: var(--ra-gold);
}

.ra-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: var(--ra-gray-600);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F5F5F3;
}

::-webkit-scrollbar-thumb {
    background: #D0D0D0;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #BDBDBD;
}

/* ---- Responsive ---- */
@media (max-width: 576px) {
    .ra-search-form .form-control,
    .ra-search-form .form-control:focus {
        width: 100%;
    }

    .ra-product-info {
        padding: 0.8rem;
    }

    .ra-product-name {
        font-size: 0.9rem;
    }
}

/* ---- Storefront Product Cards (enhanced) ---- */
.ra-product-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ra-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.ra-product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ra-gray-900);
}

.ra-product-badge {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    background: #1A1A1A;
    color: #FFFFFF;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.ra-product-badge-sale {
    background: var(--ra-danger);
    color: #fff;
}

.ra-product-category {
    font-family: var(--ra-font-product-category);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ra-gray-500);
    margin-bottom: 0.2rem;
    display: block;
}

.ra-custom-ribbon {
    font-family: var(--ra-font-product-ribbon);
    position: absolute;
    top: 10px;
    right: 0;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.65rem;
    border-radius: 6px 0 0 6px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.ra-price-current {
    color: #1A1A1A;
    font-weight: 600;
}

.ra-price-compare {
    color: var(--ra-gray-600);
    text-decoration: line-through;
    font-size: 0.85rem;
    font-weight: 400;
    margin-left: 0.4rem;
}

.ra-product-label {
    display: inline-flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin-top: 0.45rem;
    padding: 0.28rem 0.7rem;
    border-radius: 4px;
    background: var(--ra-product-label-bg, transparent);
    color: var(--ra-product-label-color, var(--ra-gold));
    font-family: var(--ra-font-product-ribbon);
    font-size: 0.76rem;
    font-weight: 700;
    font-style: italic;
    line-height: 1.25;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* ---- Variant Buttons ---- */
.ra-variant-btn {
    cursor: pointer;
    transition: all 0.2s ease;
}

.ra-variant-text {
    background: var(--ra-gray-900);
    border: 2px solid var(--ra-border-subtle);
    color: var(--ra-gray-300);
    font-size: 0.82rem;
    padding: 0.35rem 1rem;
    border-radius: var(--ra-radius);
    font-weight: 500;
}

.ra-variant-text:hover,
.ra-variant-text.ra-variant-active {
    border-color: var(--ra-gold);
    color: var(--ra-gold);
    background: var(--ra-gold-muted);
}

.ra-variant-color:hover,
.ra-variant-color.ra-variant-active {
    border-color: var(--ra-gold) !important;
    box-shadow: 0 0 0 2px var(--ra-gold);
}

.ra-thumb-btn {
    transition: border-color 0.2s ease;
}

.ra-thumb-btn:hover {
    border-color: var(--ra-gold) !important;
}

/* ---- Breadcrumb ---- */
.breadcrumb-item a {
    color: var(--ra-gray-500);
}

.breadcrumb-item a:hover {
    color: var(--ra-gold);
}

.breadcrumb-item.active {
    color: var(--ra-gray-400);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--ra-gray-600);
}

/* ---- Table Dark Override for Light Theme ---- */
.table-dark {
    --bs-table-bg: #FFFFFF;
    --bs-table-color: #1A1A1A;
    --bs-table-border-color: #EEEEEE;
    --bs-table-striped-bg: #FAFAF8;
    --bs-table-hover-bg: #F5F5F3;
    --bs-table-hover-color: #1A1A1A;
}

.table-dark th {
    color: #6B6B6B;
    font-weight: 600;
    background: #FAFAF8;
}

/* ---- Footer Form Overrides ---- */
.ra-footer .form-control {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
    color: #FFFFFF;
}

.ra-footer .form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

.ra-footer .form-control:focus {
    background-color: rgba(255,255,255,0.15);
    border-color: var(--ra-gold);
    color: #FFFFFF;
}
