/* Shopora Brand Stylesheet - Premium Shopify Dawn & Prestige Theme Aesthetic */
@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --rs-primary: #000000;
    --rs-primary-hover: #1c1c1c;
    --rs-secondary: #000000;
    --rs-secondary-hover: #1c1c1c;
    --rs-text: #121212;
    --rs-bg: #ffffff;
    --rs-border: #e5e5e5;
    --rs-gray-light: #f5f5f5;
    --rs-gray-medium: #707070;
    --rs-shadow: none; /* Shopify uses clean flat layout */
    --rs-shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.05);
    --rs-radius: 0px; /* Sharp modern Shopify corners */
    --rs-font-headings: 'Playfair Display', serif;
    --rs-font-body: 'Assistant', sans-serif;
}

body {
    font-family: var(--rs-font-body);
    color: var(--rs-text);
    background-color: var(--rs-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.02em;
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--rs-font-headings);
    font-weight: 600;
    color: var(--rs-primary);
    letter-spacing: -0.01em;
}

p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #404040;
}

/* Custom Buttons (Shopify-style flat button) */
.btn-rs-primary {
    background-color: var(--rs-primary);
    color: #ffffff;
    border: 1px solid var(--rs-primary);
    border-radius: var(--rs-radius);
    padding: 14px 30px;
    font-family: var(--rs-font-body);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-rs-primary:hover, .btn-rs-primary:focus {
    background-color: transparent;
    color: var(--rs-primary);
    border-color: var(--rs-primary);
}

.btn-rs-secondary {
    background-color: transparent;
    color: var(--rs-primary);
    border: 1px solid var(--rs-primary);
    border-radius: var(--rs-radius);
    padding: 14px 30px;
    font-family: var(--rs-font-body);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-rs-secondary:hover, .btn-rs-secondary:focus {
    background-color: var(--rs-primary);
    color: #ffffff;
}

.btn-rs-outline {
    background-color: transparent;
    color: var(--rs-primary);
    border: 1px solid var(--rs-border);
    border-radius: var(--rs-radius);
    padding: 12px 26px;
    font-family: var(--rs-font-body);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.btn-rs-outline:hover {
    border-color: var(--rs-primary);
    background-color: var(--rs-primary);
    color: #ffffff;
}

/* Shopify Card Styling (Flat, clean, no shadow, image-focused) */
.rs-card {
    background-color: #ffffff;
    border: none; /* No border for modern flat collections */
    border-radius: var(--rs-radius);
    box-shadow: none;
    transition: all 0.3s ease;
    padding-bottom: 15px;
}
.rs-card:hover {
    box-shadow: none;
}

/* Image Containers */
.rs-img-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: var(--rs-gray-light);
    border: 1px solid #f0f0f0;
}
.rs-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.rs-card:hover .rs-img-wrapper img {
    transform: scale(1.03);
}

/* Badges */
.rs-badge-discount {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--rs-primary);
    color: #ffffff;
    font-family: var(--rs-font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 0px;
    z-index: 2;
}

.rs-badge-new {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ffffff;
    color: var(--rs-primary);
    border: 1px solid var(--rs-primary);
    font-family: var(--rs-font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 0px;
    z-index: 2;
}

/* Sticky Header styling (Minimalist Shopify layout) */
.rs-navbar {
    background-color: #ffffff;
    border-bottom: 1px solid var(--rs-border);
    transition: all 0.3s ease;
    z-index: 1030;
    box-shadow: none !important;
}
.rs-navbar .nav-link {
    color: var(--rs-text);
    font-family: var(--rs-font-body);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
}
.rs-navbar .nav-link:hover, .rs-navbar .nav-link.active {
    color: var(--rs-primary);
    text-decoration: none !important;
}

/* Search bar styling */
.rs-search-input {
    border: 1px solid var(--rs-border);
    background-color: #ffffff;
    border-radius: 0px !important;
    padding-left: 15px;
    font-size: 0.85rem;
    height: 44px;
    transition: all 0.3s ease;
}
.rs-search-input:focus {
    box-shadow: none;
    border-color: var(--rs-primary);
}
.rs-search-btn {
    border-radius: 0px !important;
    background-color: var(--rs-primary);
    border: 1px solid var(--rs-primary);
    color: #ffffff;
    width: 50px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.rs-search-btn:hover {
    background-color: #111111;
}
.rs-search-category {
    border: 1px solid var(--rs-border);
    border-right: none;
    background-color: #ffffff;
    color: var(--rs-text);
    font-family: var(--rs-font-body);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0 15px;
    height: 44px;
    outline: none;
    border-radius: 0px !important;
}

/* Badge Icon */
.rs-icon-badge-btn {
    position: relative;
    background: none;
    border: none;
    padding: 8px;
    color: var(--rs-text);
    transition: all 0.2s ease;
}
.rs-icon-badge-btn:hover {
    color: var(--rs-primary);
}
.rs-icon-badge {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: var(--rs-primary);
    color: #ffffff;
    font-family: var(--rs-font-body);
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Top Announcement bar */
.rs-announcement-bar {
    background-color: var(--rs-primary);
    color: #ffffff;
    font-family: var(--rs-font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 8px 0;
    text-transform: uppercase;
    text-align: center;
}

/* Hero Carousel styling */
.rs-hero-carousel .carousel-item {
    height: 70vh;
    min-height: 500px;
    background-color: var(--rs-gray-light);
}
.rs-hero-content {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border: 1px solid var(--rs-border);
}
.rs-hero-tag {
    color: var(--rs-primary);
    font-family: var(--rs-font-body);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 10px;
}
.rs-hero-title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: var(--rs-font-headings);
}
@media (max-width: 768px) {
    .rs-hero-title {
        font-size: 2.2rem;
    }
    .rs-hero-content {
        padding: 20px;
        margin: 15px;
    }
    .rs-hero-carousel .carousel-item {
        height: 55vh;
        min-height: 380px;
    }
}

/* Feature grid items */
.rs-feature-box {
    padding: 25px;
    border-radius: var(--rs-radius);
    background-color: var(--rs-bg);
    border: 1px solid var(--rs-border);
    transition: all 0.3s ease;
}
.rs-feature-box:hover {
    border-color: var(--rs-primary);
}
.rs-feature-icon {
    font-size: 1.8rem;
    color: var(--rs-primary);
    margin-bottom: 15px;
}

/* Category cards */
.rs-cat-card {
    position: relative;
    border-radius: var(--rs-radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid var(--rs-border);
}
.rs-cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    transition: background 0.3s ease;
}
.rs-cat-card:hover::before {
    background: rgba(0, 0, 0, 0.4);
}
.rs-cat-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.rs-cat-title {
    position: relative;
    z-index: 2;
    font-family: var(--rs-font-headings);
    font-weight: 600;
    font-size: 1.3rem;
    margin: 0;
    background-color: #ffffff;
    color: #000000 !important;
    padding: 8px 18px;
}

/* Star rating custom */
.rs-stars {
    color: #000000;
    font-size: 0.8rem;
}

/* Newsletter section */
.rs-newsletter {
    background-color: #ffffff;
    border-radius: var(--rs-radius);
    padding: 60px 0px;
    border-top: 1px solid var(--rs-border);
    border-bottom: 1px solid var(--rs-border);
}

/* Footer Section */
.rs-footer {
    background-color: #ffffff;
    border-top: 1px solid var(--rs-border);
    padding-top: 80px;
    padding-bottom: 30px;
    font-size: 0.9rem;
}
.rs-footer h5 {
    font-family: var(--rs-font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
}
.rs-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.rs-footer-links li {
    margin-bottom: 10px;
}
.rs-footer-links a {
    color: var(--rs-gray-medium);
    text-decoration: none;
    transition: all 0.2s ease;
}
.rs-footer-links a:hover {
    color: var(--rs-primary);
    text-decoration: underline;
}
.rs-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 0px;
    background-color: #ffffff;
    border: 1px solid var(--rs-border);
    color: var(--rs-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.rs-social-links a:hover {
    background-color: var(--rs-primary);
    color: #ffffff;
    border-color: var(--rs-primary);
}

/* Left sidebar filters */
.filter-title {
    font-family: var(--rs-font-body);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--rs-border);
    padding-bottom: 8px;
}
.filter-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}
.filter-list li {
    margin-bottom: 10px;
}
.filter-link {
    color: var(--rs-text);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}
.filter-link:hover, .filter-link.active {
    color: var(--rs-primary);
    text-decoration: underline;
}

/* Product details styling */
.rs-product-gallery {
    border: 1px solid var(--rs-border);
    border-radius: var(--rs-radius);
    overflow: hidden;
    background-color: var(--rs-gray-light);
    aspect-ratio: 1 / 1;
}
.rs-product-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rs-thumb-container {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.rs-thumb {
    width: 80px;
    height: 80px;
    border: 1px solid var(--rs-border);
    border-radius: 0px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}
.rs-thumb:hover, .rs-thumb.active {
    border-color: var(--rs-primary);
}
.rs-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Color Circle selectors */
.color-options {
    display: flex;
    gap: 10px;
}
.color-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid var(--rs-border);
    transition: all 0.2s ease;
}
.color-circle:hover, .color-circle.active {
    border-color: var(--rs-primary);
    box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px var(--rs-primary);
}

/* Tabs styling */
.nav-tabs-rs {
    border-bottom: 1px solid var(--rs-border);
    gap: 30px;
}
.nav-tabs-rs .nav-link {
    border: none;
    color: var(--rs-gray-medium);
    font-family: var(--rs-font-body);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 12px 0;
    position: relative;
    background: none;
}
.nav-tabs-rs .nav-link.active {
    color: var(--rs-primary);
    border: none;
}
.nav-tabs-rs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--rs-primary);
}

/* Quantity selector */
.rs-qty-selector {
    display: inline-flex;
    border: 1px solid var(--rs-border);
    border-radius: var(--rs-radius);
    overflow: hidden;
}
.rs-qty-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: none;
    font-size: 1rem;
    color: var(--rs-text);
    transition: background-color 0.2s ease;
}
.rs-qty-btn:hover {
    background-color: var(--rs-gray-light);
}
.rs-qty-input {
    width: 50px;
    height: 40px;
    border: none;
    border-left: 1px solid var(--rs-border);
    border-right: 1px solid var(--rs-border);
    text-align: center;
    font-weight: 600;
    outline: none;
}

/* Progress Timeline (Order Tracking) */
.rs-timeline {
    position: relative;
    padding-left: 30px;
    list-style: none;
}
.rs-timeline::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 5px;
    bottom: 5px;
    width: 1px;
    background-color: var(--rs-border);
}
.rs-timeline-item {
    position: relative;
    margin-bottom: 30px;
}
.rs-timeline-item::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--rs-border);
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 2px var(--rs-border);
    transition: all 0.3s ease;
}
.rs-timeline-item.active::before {
    background-color: var(--rs-primary);
    box-shadow: 0 0 0 2px var(--rs-primary);
}
.rs-timeline-item.completed::before {
    background-color: #000000;
}
.rs-timeline-title {
    font-family: var(--rs-font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.rs-timeline-date {
    font-size: 0.8rem;
    color: var(--rs-gray-medium);
}

/* Toast container override */
.rs-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1060;
    min-width: 320px;
}

/* breadcrumb override */
.breadcrumb-item a {
    color: var(--rs-gray-medium);
    text-decoration: none;
    font-size: 0.85rem;
}
.breadcrumb-item a:hover {
    color: var(--rs-primary);
}
.breadcrumb-item.active {
    color: var(--rs-text);
    font-weight: 500;
    font-size: 0.85rem;
}

/* Mobile App-like Bottom Navigation Bar */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #ffffff;
    border-top: 1px solid var(--rs-border);
    z-index: 1040;
}

.mobile-bottom-nav .nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--rs-gray-medium);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.mobile-bottom-nav .nav-item.active,
.mobile-bottom-nav .nav-item:hover {
    color: var(--rs-primary);
}

.mobile-bottom-nav .nav-badge {
    position: absolute;
    top: 4px;
    right: 24%;
    background-color: var(--rs-primary);
    color: #ffffff;
    font-family: var(--rs-font-body);
    font-size: 0.6rem;
    font-weight: 600;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Adjust body padding for mobile bottom nav */
@media (max-width: 767.98px) {
    body {
        padding-bottom: 65px;
    }
}

/* Custom Premium scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #ffffff;
}
::-webkit-scrollbar-thumb {
    background: #e5e5e5;
}
::-webkit-scrollbar-thumb:hover {
    background: #888888;
}

/* Floating animation */
.animate-float {
    /* Subtle hover slide instead of floating animations to match Shopify professional style */
}

/* Infinite marquee scroll */
@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    position: relative;
    padding: 10px 0;
}
.marquee-content {
    display: inline-flex;
    animation: marquee 35s linear infinite;
    gap: 40px;
}
.marquee-item {
    font-family: var(--rs-font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #000000;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Glassmorphism custom card (Clean flat style) */
.rs-glass-card {
    background: #ffffff;
    border: 1px solid var(--rs-border);
    transition: all 0.3s ease;
}
.rs-glass-card:hover {
    border-color: var(--rs-primary);
}

/* Enhanced Product card hover effect */
.rs-card {
    border: none;
    background: #ffffff;
}
.rs-card .p-3 {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

/* Instagram Grid Box */
.insta-grid-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}
.insta-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}
.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}
.insta-grid-item:hover img {
    transform: scale(1.02);
}
.insta-grid-item:hover .insta-overlay {
    opacity: 1;
}

/* Custom premium badge gradients */
.bg-gradient-premium {
    background: #000000;
}

.text-gradient-premium {
    color: #000000;
}

/* Styled Breadcrumbs */
.breadcrumb {
    padding: 0px;
    background: transparent;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}
.breadcrumb-item a {
    color: var(--rs-gray-medium) !important;
    text-decoration: none !important;
    font-weight: 400;
    transition: all 0.2s ease;
}
.breadcrumb-item a:hover {
    color: var(--rs-primary) !important;
}
.breadcrumb-item.active {
    color: var(--rs-primary) !important;
    font-weight: 500;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: "/" !important;
    font-family: var(--rs-font-body) !important;
    font-weight: 400 !important;
    color: var(--rs-gray-medium) !important;
}

/* Instagram Hover Gallery */
.gallery-hover-box {
    position: relative;
    overflow: hidden;
}
.gallery-hover-box img {
    transition: transform 0.5s ease;
}
.gallery-hover-box:hover img {
    transform: scale(1.02);
}
.gallery-hover-box:hover .gallery-overlay {
    opacity: 1 !important;
}
.gallery-overlay {
    transition: opacity 0.3s ease;
}

/* Shop Sidebar Filter Enhancement */
.filter-list li label:hover {
    color: var(--rs-primary);
    text-decoration: underline;
}
.form-check-input:checked {
    background-color: var(--rs-primary) !important;
    border-color: var(--rs-primary) !important;
}

/* Offset footer padding on mobile view to clear mobile-bottom-nav */
@media (max-width: 767.98px) {
    .rs-footer {
        padding-bottom: 90px !important;
    }
}

/* Brand Logo Display Styles */
.brand-logo-item {
    transition: all 0.3s ease;
    opacity: 0.6;
    cursor: pointer;
}
.brand-logo-item:hover {
    opacity: 1 !important;
}

.border-bottom-bold {
    border-bottom: 1.5px solid #000000 !important;
}
.tracking-tight {
    letter-spacing: -0.02em;
}
.tracking-wide {
    letter-spacing: 0.15em;
}
.rs-tab-btn {
    border-radius: 0px !important;
    font-family: var(--rs-font-body);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid var(--rs-border);
}
.rs-tab-btn.btn-rs-primary {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}
.rs-tab-btn:hover:not(.btn-rs-primary) {
    background-color: #000000;
    color: #ffffff !important;
    border-color: #000000;
}

/* Shopify theme list style cards - category image grid */
.rs-cat-card {
    border: none !important;
}

/* Shopify quick add button */
.rs-card button {
    border-radius: 0px !important;
    font-family: var(--rs-font-body);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* Shopify product grid padding adjustment */
.rs-card .p-3.border-top {
    border-top: none !important;
}

/* ═══ BOOTSTRAP MONOCHROME COLOR OVERRIDES ═══ */
.btn-primary {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;
    border-radius: 0px !important;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: #333333 !important;
    border-color: #333333 !important;
    color: #ffffff !important;
}
.btn-outline-primary {
    background-color: transparent !important;
    border-color: #000000 !important;
    color: #000000 !important;
    border-radius: 0px !important;
}
.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;
}
.bg-primary {
    background-color: #000000 !important;
}
.text-primary {
    color: #000000 !important;
}
.border-primary {
    border-color: #000000 !important;
}
.btn-secondary {
    background-color: #f8f9fa !important;
    border-color: #000000 !important;
    color: #000000 !important;
    border-radius: 0px !important;
}
.btn-secondary:hover, .btn-secondary:focus {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;
}
.bg-secondary {
    background-color: #f8f9fa !important;
}
.text-secondary {
    color: #707070 !important;
}
.badge.bg-primary {
    background-color: #000000 !important;
    color: #ffffff !important;
    border-radius: 0px !important;
}
.form-control:focus {
    border-color: #000000 !important;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    color: #000000 !important;
    background-color: #f5f5f5 !important;
    box-shadow: none !important;
}
.accordion-button:focus {
    border-color: #000000 !important;
    box-shadow: none !important;
}

/* ═══ PRODUCT DETAIL ATTRIBUTE SELECTORS ═══ */
.attribute-option {
    cursor: pointer !important;
}
.attribute-option input[type="radio"] {
    cursor: pointer !important;
}
.attribute-option input[type="radio"]:checked + span {
    border-color: #000000 !important;
    background-color: #000000 !important;
    color: #ffffff !important;
}
.attribute-option span {
    cursor: pointer !important;
    border-color: #e5e5e5 !important;
}
.attribute-option:hover span {
    border-color: #000000 !important;
}


