/* ==========================================================================
   Luxury Theme Custom CSS (Bollu.ru Style)
   ========================================================================== */

:root {
    --bollu-black: #111111;
    --bollu-dark: #181818;
    --bollu-card-bg: #1e1e1e;
    --bollu-gold: #BAA170;
    --bollu-gold-hover: #d2bd93;
    --bollu-white: #ffffff;
    --bollu-gray: #8e8e93;
    --bollu-light-gray: #aeaeb2;
    --bollu-border: rgba(255, 255, 255, 0.08);
}

/* Global Dark Theme overrides */
body {
    background-color: var(--bollu-black) !important;
    color: var(--bollu-white) !important;
    font-family: 'Inter', 'Tajawal', sans-serif;
    overflow-x: hidden;
}

body #page {
    background-color: var(--bollu-white) !important;
}

body #content .ast-container {
    display: block !important;
}

.site-content {
    background-color: var(--bollu-white) !important;
    border-top: none !important;
    box-shadow: none !important;
}

body h1, 
body h2, 
body h3, 
body h4, 
body h5, 
body h6 {
    color: var(--bollu-white) !important;
    font-family: 'Outfit', 'Tajawal', sans-serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}

/* Header Overrides */
body .site-header,
body .main-header-bar,
body .main-header-bar-wrap,
body .ast-primary-header-bar,
body .ast-primary-header-bar-wrap,
body .custom-bollu-header,
body #masthead,
body.ast-theme-transparent-header #masthead,
body.ast-theme-transparent-header .site-header,
body.ast-theme-transparent-header .main-header-bar,
body.ast-theme-transparent-header .ast-primary-header-bar,
body.ast-theme-transparent-header .main-header-bar-wrap,
body.ast-theme-transparent-header .ast-primary-header-bar-wrap,
body [class*="ast-"] .site-header,
body [class*="ast-"] #masthead,
body [class*="ast-"] .main-header-bar,
body [class*="ast-"] .main-header-bar-wrap,
body [class*="ast-"] .ast-primary-header-bar,
body [class*="ast-"] .ast-primary-header-bar-wrap {
    background-color: rgba(17, 17, 17, 0.95) !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Prevent any potential gaps or theme default borders on header container */
#masthead,
.site-header,
.custom-bollu-header,
.main-header-bar,
.main-header-bar-wrap,
.ast-main-header-wrap,
.ast-primary-header-bar,
.ast-primary-header-bar-wrap {
    margin-bottom: 0 !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

#content,
.site-content {
    margin-top: 0 !important;
    border-top: none !important;
    box-shadow: none !important;
}

body .main-header-menu a,
body .ast-menu-toggle {
    color: var(--bollu-white) !important;
    font-family: 'Outfit', 'Tajawal', sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

body .main-header-menu a:hover {
    color: var(--bollu-gold) !important;
}

/* Hero Section */
.bollu-hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bollu-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(17, 17, 17, 0.3) 0%, rgba(17, 17, 17, 0.8) 100%);
    z-index: 1;
}

.bollu-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.bollu-hero-tagline {
    font-family: 'Outfit', 'Tajawal', sans-serif;
    color: var(--bollu-gold);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.25em;
    margin-bottom: 20px;
    display: block;
    animation: fadeInUp 1s ease both;
}

.bollu-hero h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 300;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease both 0.2s;
}

.bollu-hero p {
    font-size: 18px;
    color: var(--bollu-light-gray);
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.6;
    animation: fadeInUp 1s ease both 0.4s;
}

.bollu-btn-gold {
    display: inline-block;
    background-color: var(--bollu-gold);
    color: var(--bollu-black) !important;
    padding: 14px 36px;
    font-family: 'Outfit', 'Tajawal', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.15em;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(186, 161, 112, 0.25);
    animation: fadeInUp 1s ease both 0.6s;
}

.bollu-btn-gold:hover {
    background-color: var(--bollu-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(186, 161, 112, 0.4);
}

/* Sections General */
.bollu-section {
    padding: 40px 0 80px 0;
    background-color: var(--bollu-white) !important;
}

.bollu-section.alt-bg {
    background-color: var(--bollu-white) !important;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--bollu-black) !important;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    color: var(--bollu-black) !important;
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background-color: var(--bollu-black) !important;
    margin: 20px auto 0 auto;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card,
.product-category {
    display: block;
    position: relative;
    overflow: hidden;
    background-color: var(--bollu-dark);
    border: 1px solid var(--bollu-border);
    cursor: pointer;
    text-decoration: none !important;
}

.category-card.card-rect {
    grid-column: span 2;
    height: 380px;
}

.category-card.card-square {
    grid-column: span 1;
    aspect-ratio: 1 / 1;
}

@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .category-card.card-rect {
        grid-column: span 2;
        height: 320px;
    }
    .category-card.card-square {
        grid-column: span 1;
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .category-card.card-rect {
        grid-column: span 1;
        height: 250px;
    }
    .category-card.card-square {
        grid-column: span 1;
        aspect-ratio: auto;
        height: 250px;
    }
}

.category-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.9) 0%, rgba(17, 17, 17, 0.2) 60%, rgba(17, 17, 17, 0) 100%);
    z-index: 1;
    transition: opacity 0.5s ease;
}

.category-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 2;
    transition: transform 0.5s ease;
}

.category-card-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--bollu-white);
}

.category-card-link {
    font-family: 'Outfit', 'Tajawal', sans-serif;
    color: var(--bollu-gold);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.category-card-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.category-card:hover .category-card-image {
    transform: scale(1.06);
}

.category-card:hover::before {
    background: linear-gradient(to top, rgba(17, 17, 17, 0.95) 0%, rgba(17, 17, 17, 0.4) 100%);
}

.category-card:hover .category-card-link {
    color: var(--bollu-white);
}

.category-card:hover .category-card-link::after {
    transform: translateX(5px);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card,
ul.products li.product {
    background-color: var(--bollu-card-bg);
    border: 1px solid var(--bollu-border);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.product-card-image-wrap {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
    background-color: var(--bollu-dark);
}

.product-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-badge-sale {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--bollu-gold);
    color: var(--bollu-black);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 12px;
    letter-spacing: 0.1em;
    z-index: 2;
    border-radius: 2px;
}

.product-card-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-category {
    font-family: 'Outfit', 'Tajawal', sans-serif;
    color: var(--bollu-gold);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
}

.product-card-title {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--bollu-white);
}

.product-card-title a {
    color: var(--bollu-white) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card-title a:hover {
    color: var(--bollu-gold) !important;
}

.product-card-price {
    font-family: 'Outfit', 'Tajawal', sans-serif;
    font-size: 16px;
    margin-top: auto;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-regular {
    color: var(--bollu-gray);
    text-decoration: line-through;
    font-size: 14px;
}

.price-sale {
    color: var(--bollu-white);
    font-weight: 500;
}

.product-card-btn {
    display: block;
    width: 100%;
    text-align: center;
    border: 1px solid var(--bollu-gold);
    color: var(--bollu-gold) !important;
    padding: 12px 0;
    text-transform: uppercase;
    font-family: 'Outfit', 'Tajawal', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.product-card-btn:hover {
    background-color: var(--bollu-gold);
    color: var(--bollu-black) !important;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(186, 161, 112, 0.3);
}

.product-card:hover .product-card-image {
    transform: scale(1.05);
}

/* Split Showcase Section */
.bollu-showcase {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 500px;
}

.showcase-half {
    flex: 1 1 500px;
    height: 550px;
    position: relative;
    overflow: hidden;
}

.showcase-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.showcase-content {
    background-color: var(--bollu-dark);
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    border-left: 1px solid var(--bollu-border);
}

.showcase-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.showcase-content p {
    color: var(--bollu-light-gray);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 35px;
    font-weight: 300;
}

/* Footer Dark Mode Styles */
body .site-footer {
    background-color: var(--bollu-black) !important;
    border-top: 1px solid var(--bollu-border) !important;
    color: var(--bollu-gray) !important;
}

body .site-footer a {
    color: var(--bollu-light-gray) !important;
    transition: color 0.3s ease;
}

body .site-footer a:hover {
    color: var(--bollu-gold) !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .bollu-hero h1 {
        font-size: 2.2rem;
    }
    .showcase-content {
        padding: 40px;
    }
    .showcase-half {
        height: auto;
    }
}

/* ==========================================================================
   Certificate of Origin Banner Styles
   ========================================================================== */

.bollu-top-certificate-banner {
    width: 100%;
    font-family: 'Inter', 'Tajawal', sans-serif;
}

.bollu-top-bar-dark {
    background-color: #0c0c0c;
    color: #e5e5e5;
    padding: 8px 20px;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.bollu-toggle-btn {
    background: none !important;
    border: none !important;
    color: inherit !important;
    font: inherit !important;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    outline: none !important;
    gap: 8px;
    box-shadow: none !important;
    text-shadow: none !important;
}

.bollu-toggle-btn:focus,
.bollu-toggle-btn:active {
    outline: none !important;
    box-shadow: none !important;
    background: none !important;
}

.bollu-toggle-icon {
    font-size: 10px;
    color: var(--bollu-gold);
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: rotate(0deg);
}

.bollu-top-certificate-banner.is-closed .bollu-toggle-icon {
    transform: rotate(-180deg);
}

.bollu-certificate-main {
    background-color: #f7f6f5; /* Elegant warm off-white */
    border-bottom: 1.5px solid #eae8e5;
    padding: 30px 40px;
    color: #2c2c2c;
    direction: rtl; /* Force RTL layout for the entire certificate container */
}

.bollu-cert-container {
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.bollu-cert-logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 1 auto;
    text-align: right;
}

.bollu-cert-shield-gold {
    width: 58px;
    height: 64px;
    border: 2px solid var(--bollu-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px 4px 50% 50% / 4px 4px 40% 40%;
    background-color: transparent;
    flex-shrink: 0;
}

.gold-b {
    color: var(--bollu-gold);
    font-family: 'Outfit', 'Tajawal', sans-serif;
    font-size: 28px;
    font-weight: 300;
}

.bollu-cert-text-block {
    display: flex;
    flex-direction: column;
}

.cert-subtitle {
    font-family: 'Outfit', 'Tajawal', sans-serif;
    font-size: 9px;
    color: #8e8e93;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.cert-title {
    font-family: 'Outfit', 'Tajawal', sans-serif;
    font-size: 21px;
    font-weight: 500;
    color: #1c1c1e !important;
    margin: 4px 0 2px 0 !important;
    letter-spacing: -0.01em;
}

.cert-tagline {
    font-family: 'Outfit', 'Tajawal', sans-serif;
    font-size: 9px;
    color: var(--bollu-gold);
    letter-spacing: 0.25em;
    font-weight: 700;
}

/* Features Columns Alignment */
.bollu-cert-features-section {
    display: flex;
    gap: 40px;
    flex: 1 1 auto;
    justify-content: flex-start; /* Aligns to the right side because of RTL */
}

.cert-feature-col {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    max-width: 280px;
    text-align: right;
}

.cert-feature-icon-wrap {
    width: 24px;
    height: 24px;
    border: 1px solid var(--bollu-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
    background-color: rgba(186, 161, 112, 0.05);
}

.gold-check {
    color: var(--bollu-gold);
    font-size: 11px;
    font-weight: bold;
}

.cert-feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cert-feature-text h4 {
    font-family: 'Outfit', 'Tajawal', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #1c1c1e !important; /* Force readable charcoal black color */
    letter-spacing: 0.08em;
    margin: 0 !important;
    text-transform: uppercase;
}

.cert-feature-text p {
    font-size: 12px;
    line-height: 1.5;
    color: #55555a !important; /* Readable description text */
    margin: 0 !important;
    font-weight: 400;
}

/* Responsive banner overrides */
@media (max-width: 1024px) {
    .bollu-cert-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .bollu-cert-logo-section {
        justify-content: center;
        width: 100%;
    }
    .bollu-cert-features-section {
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        gap: 25px;
    }
    .cert-feature-col {
        max-width: 300px;
    }
}

/* ==========================================================================
   Custom Logo & Branding Styles
   ========================================================================== */

.custom-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
}

.custom-logo {
    max-height: 65px;
    width: auto;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.custom-logo-link:hover .custom-logo {
    transform: scale(1.05) rotate(2deg);
}

.custom-logo-text {
    font-family: 'Outfit', 'Tajawal', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--bollu-black) !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.custom-logo-link:hover .custom-logo-text {
    color: var(--bollu-gold) !important;
}

/* ==========================================================================
   Custom Luxury Header (Bollu.ru Style)
   ========================================================================== */

/* Hide default Astra header containers completely */
.ast-mobile-header-wrap,
.ast-main-header-wrap,
.main-header-bar,
.site-header {
    display: none !important;
}

/* Show our custom header */
.custom-bollu-header {
    display: block !important;
    width: 100%;
    background-color: var(--bollu-black);
    position: sticky;
    top: 0;
    z-index: 999;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* 1. Sub-Header (Top Bar) */
.bollu-sub-header {
    background-color: rgb(1, 30, 70) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 10px 40px;
}

.bollu-sub-header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Sub-Menu on the Left */
.bollu-sub-menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}

.bollu-sub-menu-list li {
    margin: 0;
}

.bollu-sub-menu-list li a {
    color: var(--bollu-light-gray);
    font-family: 'Outfit', 'Tajawal', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bollu-sub-menu-list li a:hover {
    color: var(--bollu-gold);
}

/* Contact Info on the Right */
.bollu-sub-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--bollu-white) !important;
    font-family: 'Outfit', 'Tajawal', sans-serif;
    font-size: 13px;
    letter-spacing: 0.05em;
}

.bollu-sub-contact .contact-link {
    color: var(--bollu-white) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bollu-sub-contact .contact-link:hover {
    color: var(--bollu-gold) !important;
}

.bollu-sub-contact .divider {
    color: var(--bollu-white) !important;
}

/* 2. Main Header Bar */
.bollu-main-header {
    background-color: rgb(1, 45, 106) !important;
    padding: 18px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
}

.bollu-main-header .custom-logo-text {
    color: var(--bollu-white) !important;
}

.bollu-main-header .hamburger-line {
    background-color: var(--bollu-white) !important;
}

.bollu-main-header .bollu-search-trigger {
    color: var(--bollu-white) !important;
}

.bollu-main-header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left side: Hamburger + Logo */
.bollu-header-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Hamburger Button */
.bollu-hamburger-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    outline: none !important;
    box-shadow: none !important;
}

.hamburger-line {
    width: 22px;
    height: 1.5px;
    background-color: var(--bollu-black) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bollu-hamburger-btn:hover .hamburger-line {
    background-color: var(--bollu-gold) !important;
}

.bollu-header-logo {
    display: flex;
    align-items: center;
}

/* Right side: Minimalist Icons */
.bollu-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bollu-search-trigger {
    color: var(--bollu-black) !important;
    transition: color 0.3s ease;
}

.bollu-search-trigger:hover {
    color: var(--bollu-gold) !important;
}

/* 3. Side Panel — Bollu.ru Style */
.side-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.side-panel.is-active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

/* Adjust position when WP Admin Bar is present */
.admin-bar .side-panel {
    top: 32px;
    height: calc(100% - 32px);
}

@media screen and (max-width: 782px) {
    .admin-bar .side-panel {
        top: 46px;
        height: calc(100% - 46px);
    }
}

/* Overlay */
.side-panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* Inner Panel */
.side-panel-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 460px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.side-panel.is-active .side-panel-inner {
    transform: translateX(0);
}

/* Panel Header — close button area */
.side-panel-header {
    flex-shrink: 0;
    padding: 24px 32px 16px;
    direction: ltr !important;
}

.side-panel-header-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* ── Close button inside a circle ── */
.side-panel-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #d0d0d0;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #555;
    transition: border-color 0.3s ease, color 0.3s ease;
    outline: none !important;
    padding: 0;
    line-height: 1;
}

.side-panel-close svg {
    width: 16px;
    height: 16px;
}

.side-panel-close:hover {
    border-color: #999;
    color: #151515;
}

/* Scrollable Content */
.side-panel-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 32px 40px;
    display: flex;
    flex-direction: column;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.08) transparent;
}

.side-panel-content::-webkit-scrollbar {
    width: 3px;
}

.side-panel-content::-webkit-scrollbar-track {
    background: transparent;
}

.side-panel-content::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.08);
    border-radius: 4px;
}

/* Search Bar */
.side-panel-search {
    margin: 8px 0 12px;
}

.side-panel-search-form {
    margin: 0;
    padding: 0;
}

.search-field-group {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 0;
    padding: 10px 14px;
    transition: border-color 0.3s ease;
    background: #fafaf9;
}

.search-field-group:focus-within {
    border-color: var(--bollu-gold, #BAA170);
    background: #fff;
}

.search-icon-side {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    color: #bbb;
}

.search-icon-side svg {
    width: 18px;
    height: 18px;
}

.side-search-input {
    flex: 1;
    border: none !important;
    background: transparent !important;
    font-family: 'Tajawal', 'Inter', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #151515 !important;
    outline: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    direction: rtl;
}

.side-search-input::placeholder {
    color: #bbb;
    font-weight: 300;
}

/* ==== Menu Navigation ==== */
.side-menu-nav {
    margin-bottom: 0;
    flex-grow: 1;
}

/* Reset all menu lists, including fallback wp_page_menu */
.side-menu-nav ul,
.side-menu-nav ul li,
.side-panel-menu-list,
.side-panel-menu-list ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Top-level items */
.side-menu-nav > ul > li,
.side-menu-nav > div > ul > li,
.side-panel-menu-list > li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.side-menu-nav > ul > li:last-child,
.side-menu-nav > div > ul > li:last-child,
.side-panel-menu-list > li:last-child {
    border-bottom: none;
}

/* Top-level links */
.side-menu-nav a,
.side-menu-nav ul li a,
.side-panel-menu-list > li > a {
    display: block !important;
    padding: 18px 0 !important;
    color: #282828 !important;
    font-family: 'Jost', 'Outfit', 'Tajawal', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: 0.01em !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
    line-height: 1.4 !important;
    text-align: left; /* default LTR alignment */
}

/* Align links correctly in RTL context */
body.rtl .side-menu-nav a,
body.rtl .side-menu-nav ul li a,
body.rtl .side-panel-menu-list > li > a {
    text-align: right !important;
}

.side-menu-nav a:hover,
.side-menu-nav ul li a:hover,
.side-panel-menu-list > li > a:hover {
    color: var(--bollu-gold, #BAA170) !important;
}

/* Items with children — layout for toggle */
.side-menu-nav li.menu-item-has-children,
.side-menu-nav li.page_item_has_children,
.side-panel-menu-list > li.menu-item-has-children {
    position: relative;
}

.side-menu-nav li.menu-item-has-children > a,
.side-menu-nav li.page_item_has_children > a,
.side-panel-menu-list > li.menu-item-has-children > a {
    padding-right: 44px;
}

body.rtl .side-menu-nav li.menu-item-has-children > a,
body.rtl .side-menu-nav li.page_item_has_children > a,
body.rtl .side-panel-menu-list > li.menu-item-has-children > a {
    padding-left: 44px;
    padding-right: 0;
}

/* Toggle button (chevron) for submenus */
.side-menu-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    outline: none !important;
    color: #aaa;
    transition: color 0.3s ease;
}

body.rtl .side-menu-toggle {
    left: 0;
    right: auto;
}

.side-menu-toggle::after {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-top: -2px;
}

.side-menu-toggle.is-open::after {
    transform: rotate(-135deg);
    margin-top: 2px;
}

.side-menu-toggle:hover {
    color: #555;
}

/* Sub-menu hidden by default */
.side-menu-nav .sub-menu,
.side-menu-nav .children,
.side-panel-menu-list .sub-menu {
    display: none;
    padding-left: 16px !important;
    padding-bottom: 12px !important;
    margin: 0 !important;
}

body.rtl .side-menu-nav .sub-menu,
body.rtl .side-menu-nav .children,
body.rtl .side-panel-menu-list .sub-menu {
    padding-right: 16px !important;
    padding-left: 0 !important;
}

.side-menu-nav .sub-menu.is-open,
.side-menu-nav .children.is-open,
.side-panel-menu-list .sub-menu.is-open {
    display: block;
}

/* Sub-menu items */
.side-menu-nav .sub-menu > li,
.side-menu-nav .children > li,
.side-panel-menu-list .sub-menu > li {
    border-bottom: none !important;
}

.side-menu-nav .sub-menu > li > a,
.side-menu-nav .children > li > a,
.side-panel-menu-list .sub-menu > li > a {
    display: block !important;
    padding: 9px 0 !important;
    color: #686868 !important;
    font-family: 'Jost', 'Outfit', 'Tajawal', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: 0.01em !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
    line-height: 1.5 !important;
}

.side-menu-nav .sub-menu > li > a:hover,
.side-menu-nav .children > li > a:hover,
.side-panel-menu-list .sub-menu > li > a:hover {
    color: var(--bollu-gold, #BAA170) !important;
}

/* Nested sub-menu items with children */
.side-menu-nav li.menu-item-has-children li.menu-item-has-children,
.side-menu-nav li.page_item_has_children li.page_item_has_children,
.side-panel-menu-list .sub-menu > li.menu-item-has-children {
    position: relative;
}

.side-menu-nav li.menu-item-has-children li.menu-item-has-children > a,
.side-menu-nav li.page_item_has_children li.page_item_has_children > a,
.side-panel-menu-list .sub-menu > li.menu-item-has-children > a {
    padding-right: 34px;
}

body.rtl .side-menu-nav li.menu-item-has-children li.menu-item-has-children > a,
body.rtl .side-menu-nav li.page_item_has_children li.page_item_has_children > a,
body.rtl .side-panel-menu-list .sub-menu > li.menu-item-has-children > a {
    padding-left: 34px;
    padding-right: 0;
}

.side-menu-nav .sub-menu .side-menu-toggle,
.side-menu-nav .children .side-menu-toggle,
.side-panel-menu-list .sub-menu .side-menu-toggle {
    height: 40px;
    width: 34px;
}

/* Deeper nested sub-menus */
.side-menu-nav .sub-menu .sub-menu,
.side-menu-nav .children .children,
.side-panel-menu-list .sub-menu .sub-menu {
    padding-left: 14px !important;
    padding-bottom: 8px !important;
}

body.rtl .side-menu-nav .sub-menu .sub-menu,
body.rtl .side-menu-nav .children .children,
body.rtl .side-panel-menu-list .sub-menu .sub-menu {
    padding-right: 14px !important;
    padding-left: 0 !important;
}

.side-menu-nav .sub-menu .sub-menu > li > a,
.side-menu-nav .children .children > li > a,
.side-panel-menu-list .sub-menu .sub-menu > li > a {
    font-size: 13px !important;
    color: #888 !important;
    padding: 7px 0 !important;
}

.side-panel-menu-list .sub-menu .sub-menu > li > a:hover {
    color: var(--bollu-gold, #BAA170) !important;
}

/* ==== Contact Block at Bottom ==== */
.side-panel-contact {
    margin-top: auto;
    padding-top: 28px;
}

/* Short separator line — not full width */
.side-panel-contact-rule {
    width: 60px;
    height: 1px;
    background: #c8c8c8;
    margin-bottom: 28px;
}

.side-panel-contact-heading {
    font-family: 'Jost', 'Outfit', 'Tajawal', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--bollu-gold, #BAA170);
    margin-bottom: 22px;
}

.side-panel-contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 0;
    color: #444 !important;
    font-family: 'Jost', 'Inter', 'Tajawal', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none !important;
    transition: color 0.3s ease;
    line-height: 1.5;
}

/* Fix phone number reversal in RTL */
a[href^="tel:"]:not(.side-panel-contact-row),
.side-panel-contact-row[href^="tel:"] span:last-child {
    direction: ltr !important;
    display: inline-block !important;
    unicode-bidi: embed !important;
}

a.side-panel-contact-row:hover {
    color: var(--bollu-gold, #BAA170) !important;
}

a.side-panel-contact-row:hover .side-panel-contact-icon {
    border-color: var(--bollu-gold, #BAA170);
    color: var(--bollu-gold, #BAA170);
}

/* ── Circular outlined icons ── */
.side-panel-contact-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bollu-gold, #BAA170);
    transition: border-color 0.3s ease, color 0.3s ease;
}

.side-panel-contact-icon svg {
    width: 16px;
    height: 16px;
}

.side-panel-contact-address {
    margin-top: 2px;
}

.side-panel-contact-city {
    font-family: 'Jost', 'Outfit', 'Tajawal', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--bollu-gold, #BAA170);
    margin-top: 14px;
    padding-left: 50px;
}

/* Lock body scroll when panel is open */
body.side-panel-open {
    overflow: hidden !important;
}

/* Adjust general padding-top for body content since custom header is sticky */
body.home {
    padding-top: 0 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bollu-sub-header {
        display: none !important;
    }
    .bollu-main-header {
        padding: 15px 20px;
    }
    .side-panel-inner {
        max-width: 100%;
    }
    .side-panel-content {
        padding: 0 24px 30px;
    }
    .side-panel-header {
        padding: 20px 24px 14px;
    }
}

/* ==========================================================================
   4. Search Overlay (Bollu.ru Style)
   ========================================================================== */
body.bollu-search-open {
    overflow: hidden !important;
}

.bollu-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bollu-search-overlay.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.bollu-search-top-bar {
    background-color: #ffffff;
    width: 100%;
    padding: 60px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.bollu-search-overlay.is-active .bollu-search-top-bar {
    transform: translateY(0);
}

.bollu-search-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
    display: flex;
    justify-content: center;
}

.bollu-search-form {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 480px;
    border-bottom: 1.5px solid #555555;
    padding-bottom: 8px;
}

.bollu-search-icon {
    color: #999999;
    display: flex;
    align-items: center;
    margin-right: 12px;
}

body.rtl .bollu-search-icon {
    margin-right: 0 !important;
    margin-left: 12px !important;
}

.bollu-search-input {
    border: none !important;
    outline: none !important;
    background: transparent !important;
    width: 100%;
    font-size: 20px;
    font-family: 'Outfit', 'Tajawal', sans-serif;
    color: #111111;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
}

.bollu-search-input::placeholder {
    color: #999999;
    font-weight: 300;
}

.bollu-search-close {
    position: absolute;
    left: 40px; /* Moved close button to the left side */
    right: auto !important;
    top: -20px;
    background-color: #f0f0f0;
    border: none !important;
    border-radius: 50% !important;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #777777;
    transition: background-color 0.2s, color 0.2s;
    padding: 0 !important;
}

.bollu-search-close svg {
    display: block;
}

.bollu-search-close:hover {
    background-color: #e2e2e2;
    color: #111111;
}

/* Adjust position of close button for larger screens */
@media (min-width: 768px) {
    .bollu-search-close {
        left: 60px; /* Moved close button to the left side on larger screens */
        right: auto !important;
        top: -15px;
    }
}

/* ==========================================================================
   5. Custom Footer (Bollu.ru / Luxury Aesthetic)
   ========================================================================== */

/* Dark Mode Footer styles applied globally to all pages */
.site-footer,
.site-footer .site-below-footer-wrap,
.site-footer .site-primary-footer-wrap,
.site-footer .site-above-footer-wrap,
.site-footer .site-footer-inner-wrap-layout-1,
.site-footer [class*="-footer-wrap"],
.site-footer .ast-footer-overlay {
    background-color: var(--bollu-black) !important;
    background: var(--bollu-black) !important;
    border-top: 1px solid var(--bollu-border) !important;
    color: var(--bollu-gray) !important;
    padding: 30px 0 !important;
}

.site-footer a,
.site-footer p,
.site-footer span,
.site-footer div,
.site-footer .ast-footer-copyright,
.site-footer .ast-footer-copyright * {
    color: var(--bollu-gray) !important;
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-size: 13px !important;
    letter-spacing: 0.05em !important;
}

.site-footer a {
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.site-footer a:hover {
    color: var(--bollu-gold) !important;
}

/* Customize Astra scroll to top button to fit the black/gold luxury theme */
#ast-scroll-top {
    background-color: var(--bollu-dark) !important;
    color: var(--bollu-gold) !important;
    border: 1px solid var(--bollu-border) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4) !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
}

#ast-scroll-top:hover {
    background-color: var(--bollu-gold) !important;
    color: var(--bollu-black) !important;
    border-color: var(--bollu-gold) !important;
    transform: translateY(-3px) !important;
}

#ast-scroll-top .ast-icon svg {
    fill: currentColor !important;
}

/* RTL Adjustments for Sub-Header Layout */
.rtl .bollu-sub-header-container {
    flex-direction: row-reverse !important;
}

/* Fix phone number rendering direction in RTL */
.bollu-sub-contact a[href^="tel:"] {
    direction: ltr !important;
    display: inline-block !important;
}

/* ==========================================================================
   6. WooCommerce General & Cart Page Styling
   ========================================================================== */

/* Page Headers for WooCommerce Pages */
.woocommerce-page .entry-title,
.woocommerce-page .page-title,
.woocommerce-cart .entry-title,
.woocommerce-cart .page-title {
    color: var(--bollu-white) !important;
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-size: 2.2rem !important;
    font-weight: 400 !important;
    margin-bottom: 40px !important;
    text-align: center !important;
}

/* Redesign WooCommerce product lists (e.g. "New in store" block) to match Bollu style */
.woocommerce ul.products,
.woocommerce-page ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 30px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 40px auto !important;
}

/* WooCommerce loop product item override */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    background-color: var(--bollu-card-bg) !important;
    border: 1px solid var(--bollu-border) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    padding: 25px !important;
    margin: 0 !important;
    position: relative !important;
    border-radius: 2px !important;
    float: none !important; /* Clear floats */
    width: auto !important; /* Overrides default percentage widths */
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    border-color: rgba(186, 161, 112, 0.3) !important;
}

/* WooCommerce sale badge (remove blue circle, make it gold) */
.woocommerce span.onsale,
.woocommerce-page span.onsale,
.woocommerce ul.products li.product .onsale,
.woocommerce-page ul.products li.product .onsale {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    background-color: var(--bollu-gold) !important;
    color: var(--bollu-black) !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    padding: 5px 12px !important;
    letter-spacing: 0.1em !important;
    border-radius: 2px !important;
    margin: 0 !important;
    min-height: auto !important;
    min-width: auto !important;
    line-height: 1.5 !important;
    z-index: 2 !important;
}

/* Link wrapper & Image */
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
.woocommerce-page ul.products li.product a.woocommerce-LoopProduct-link {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    text-decoration: none !important;
}

.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1/1 !important;
    object-fit: cover !important;
    margin: 0 0 15px 0 !important;
    border-radius: 2px !important;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    background-color: var(--bollu-dark) !important;
}

.woocommerce ul.products li.product:hover img,
.woocommerce-page ul.products li.product:hover img {
    transform: scale(1.05) !important;
}

/* Product Titles */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-size: 18px !important;
    color: var(--bollu-white) !important;
    margin: 10px 0 !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
}

/* Prices */
.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-size: 16px !important;
    color: var(--bollu-white) !important;
    margin-bottom: 20px !important;
    margin-top: auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.woocommerce ul.products li.product .price del,
.woocommerce-page ul.products li.product .price del,
.woocommerce ul.products li.product .price del *,
.woocommerce-page ul.products li.product .price del * {
    color: var(--bollu-gray) !important;
    text-decoration: line-through !important;
    font-size: 14px !important;
}

.woocommerce ul.products li.product .price ins,
.woocommerce-page ul.products li.product .price ins,
.woocommerce ul.products li.product .price ins *,
.woocommerce-page ul.products li.product .price ins * {
    color: var(--bollu-white) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
}

/* Add to cart / select options button override */
.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce-page ul.products li.product .add_to_cart_button {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    border: 1px solid var(--bollu-gold) !important;
    background-color: transparent !important;
    color: var(--bollu-gold) !important;
    padding: 12px 0 !important;
    text-transform: uppercase !important;
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 0.15em !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border-radius: 2px !important;
    margin-top: auto !important;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce-page ul.products li.product .button:hover {
    background-color: var(--bollu-gold) !important;
    color: var(--bollu-black) !important;
    border-color: var(--bollu-gold) !important;
}

/* Empty Cart Page Styling */
.woocommerce-cart .cart-empty,
.woocommerce-cart .wc-empty-cart-message,
.woocommerce-cart .woocommerce-info {
    color: var(--bollu-light-gray) !important;
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-size: 18px !important;
    text-align: center !important;
    background: transparent !important;
    border: none !important;
    padding: 20px 0 !important;
}

.woocommerce-cart .woocommerce-info::before {
    display: none !important; /* Hide default Astra alert icon */
}

/* Force empty cart sad face icon / images to be light/gold in dark mode */
.woocommerce-cart img[src*="empty"],
.woocommerce-cart svg,
.woocommerce-cart .wc-block-cart__empty-cart__image,
.woocommerce-cart .wc-empty-cart-message svg,
.woocommerce-cart .wc-block-components-notice-banner__content svg {
    filter: brightness(0) invert(1) !important; /* Converts black/dark icon to white */
    margin: 0 auto 30px auto !important;
    display: block !important;
}

/* Return to shop button stylings (luxury gold button) */
.woocommerce-cart .return-to-shop,
.woocommerce-cart .return-to-shop a.button {
    text-align: center !important;
    margin-top: 20px !important;
}

.woocommerce-cart .return-to-shop a.button,
.woocommerce-cart a.wc-backward,
.woocommerce-cart .button.wc-backward {
    display: inline-block !important;
    background-color: var(--bollu-gold) !important;
    color: var(--bollu-black) !important;
    padding: 14px 36px !important;
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    letter-spacing: 0.15em !important;
    border-radius: 2px !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(186, 161, 112, 0.25) !important;
    border: none !important;
}

.woocommerce-cart .return-to-shop a.button:hover,
.woocommerce-cart a.wc-backward:hover,
.woocommerce-cart .button.wc-backward:hover {
    background-color: var(--bollu-gold-hover) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(186, 161, 112, 0.4) !important;
}

/* WooCommerce Cart Table & Checkout Elements (when items are added) */
/* WooCommerce Cart & Checkout Pages - High visibility black & gold styling for white backgrounds */
.woocommerce-cart .site-content,
.woocommerce-checkout .site-content,
.woocommerce-cart .site-content p,
.woocommerce-checkout .site-content p,
.woocommerce-cart .site-content span:not(.amount):not(.price):not(.wc-block-components-product-badge),
.woocommerce-checkout .site-content span:not(.amount):not(.price),
.woocommerce-cart .site-content div:not(.quantity):not(.wc-block-components-product-badge),
.woocommerce-checkout .site-content div,
.woocommerce-cart .site-content td,
.woocommerce-checkout .site-content td,
.woocommerce-cart .site-content th,
.woocommerce-checkout .site-content th,
.woocommerce-cart .site-content h1,
.woocommerce-checkout .site-content h1,
.woocommerce-cart .site-content h2,
.woocommerce-checkout .site-content h2,
.woocommerce-cart .site-content h3,
.woocommerce-checkout .site-content h3,
.woocommerce-cart .site-content label,
.woocommerce-checkout .site-content label,
.woocommerce-cart .site-content strong,
.woocommerce-checkout .site-content strong,
.woocommerce-cart .site-content b,
.woocommerce-checkout .site-content b,
.woocommerce-cart .site-content li,
.woocommerce-checkout .site-content li,
.woocommerce-cart .site-content legend,
.woocommerce-checkout .site-content legend {
    color: var(--bollu-black) !important;
    font-family: 'Inter', 'Tajawal', sans-serif !important;
}

/* Ensure headings on Cart & Checkout use Outfit/Tajawal */
.woocommerce-cart .site-content h1,
.woocommerce-checkout .site-content h1,
.woocommerce-cart .site-content h2,
.woocommerce-checkout .site-content h2,
.woocommerce-cart .site-content h3,
.woocommerce-checkout .site-content h3 {
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-weight: 500 !important;
}

/* Prices and amounts on Cart & Checkout pages */
.woocommerce-cart .site-content .amount,
.woocommerce-checkout .site-content .amount,
.woocommerce-cart .site-content .price,
.woocommerce-checkout .site-content .price,
.woocommerce-cart .site-content .amount *,
.woocommerce-checkout .site-content .amount *,
.woocommerce-cart .site-content .price *,
.woocommerce-checkout .site-content .price * {
    color: var(--bollu-gold) !important;
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-weight: 500 !important;
}

/* Form inputs and select boxes on Cart, Checkout & My Account pages - Scoped to classic wrappers to avoid breaking Gutenberg blocks */
.woocommerce-cart .site-content .form-row input[type="text"],
.woocommerce-checkout .site-content .form-row input[type="text"],
.woocommerce-account .site-content .form-row input[type="text"],
.woocommerce-cart .site-content .form-row input[type="email"],
.woocommerce-checkout .site-content .form-row input[type="email"],
.woocommerce-account .site-content .form-row input[type="email"],
.woocommerce-cart .site-content .form-row input[type="tel"],
.woocommerce-checkout .site-content .form-row input[type="tel"],
.woocommerce-account .site-content .form-row input[type="tel"],
.woocommerce-cart .site-content .form-row select,
.woocommerce-checkout .site-content .form-row select,
.woocommerce-account .site-content .form-row select,
.woocommerce-cart .site-content .form-row textarea,
.woocommerce-checkout .site-content .form-row textarea,
.woocommerce-account .site-content .form-row textarea,
.woocommerce-cart .site-content .select2-container--default .select2-selection--single,
.woocommerce-checkout .site-content .select2-container--default .select2-selection--single,
.woocommerce-account .site-content .select2-container--default .select2-selection--single {
    background-color: #ffffff !important;
    border: 1px solid #cccccc !important;
    color: var(--bollu-black) !important;
    border-radius: 2px !important;
    padding: 10px 15px !important;
    font-family: 'Inter', 'Tajawal', sans-serif !important;
}

.woocommerce-cart .site-content .form-row input:focus,
.woocommerce-checkout .site-content .form-row input:focus,
.woocommerce-account .site-content .form-row input:focus,
.woocommerce-cart .site-content .form-row select:focus,
.woocommerce-checkout .site-content .form-row select:focus,
.woocommerce-account .site-content .form-row select:focus,
.woocommerce-cart .site-content .form-row textarea:focus,
.woocommerce-checkout .site-content .form-row textarea:focus,
.woocommerce-account .site-content .form-row textarea:focus {
    border-color: var(--bollu-gold) !important;
    outline: none !important;
}

/* WooCommerce Gutenberg Blocks Checkout & Cart inputs styling - Color/Border only, no padding overrides */
.wc-block-components-text-input input,
.wc-block-components-combobox input,
.wc-block-components-textarea textarea,
.wc-block-components-select select,
.wc-block-components-checkout-step input,
.wc-block-components-checkout-step select,
.wc-block-components-checkout-step textarea {
    background-color: #ffffff !important;
    border: 1px solid #cccccc !important;
    color: var(--bollu-black) !important;
    border-radius: 2px !important;
    font-family: 'Inter', 'Tajawal', sans-serif !important;
    transition: border-color 0.3s ease !important;
}

.wc-block-components-text-input input:focus,
.wc-block-components-combobox input:focus,
.wc-block-components-textarea textarea:focus,
.wc-block-components-select select:focus {
    border-color: var(--bollu-gold) !important;
    box-shadow: 0 0 0 1px var(--bollu-gold) !important;
    outline: none !important;
}

/* Ensure WooCommerce Block floating labels are clearly readable and styled nicely */
.wc-block-components-text-input label,
.wc-block-components-combobox label,
.wc-block-components-textarea label {
    color: #777777 !important;
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
}

/* Ensure consistent vertical spacing between WooCommerce Block form fields on Checkout/Cart */
.wc-block-components-text-input,
.wc-block-components-combobox,
.wc-block-components-textarea,
.wc-block-components-select,
.wc-block-components-address-form .wc-block-components-text-input,
.wc-block-components-address-form .wc-block-components-combobox {
    margin-bottom: 20px !important;
}

/* Classic Cart Table styling */
.woocommerce-cart table.shop_table {
    background-color: #ffffff !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 2px !important;
}

.woocommerce-cart table.shop_table th {
    background-color: #f9f9f9 !important;
    color: var(--bollu-black) !important;
    border-bottom: 1px solid #e5e5e5 !important;
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    letter-spacing: 0.05em !important;
    padding: 15px !important;
}

.woocommerce-cart table.shop_table td {
    border-bottom: 1px solid #e5e5e5 !important;
    color: #444444 !important;
    padding: 15px !important;
}

.woocommerce-cart table.shop_table td a {
    color: var(--bollu-black) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
}
.woocommerce-cart table.shop_table td a:hover {
    color: var(--bollu-gold) !important;
}

.woocommerce-cart table.shop_table tr:last-child td {
    border-bottom: none !important;
}

/* Coupon/Update Actions inputs & buttons */
.woocommerce-cart .actions input.input-text {
    background-color: #ffffff !important;
    border: 1px solid #cccccc !important;
    color: var(--bollu-black) !important;
    padding: 10px 15px !important;
    border-radius: 2px !important;
}

.woocommerce-cart .actions .button {
    background-color: transparent !important;
    color: var(--bollu-black) !important;
    border: 1px solid var(--bollu-black) !important;
    text-transform: uppercase !important;
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    padding: 10px 20px !important;
    font-size: 11px !important;
    letter-spacing: 0.1em !important;
    transition: all 0.3s ease !important;
}

.woocommerce-cart .actions .button:hover {
    background-color: var(--bollu-black) !important;
    color: var(--bollu-white) !important;
}

/* Cart Totals / Sidebar blocks styling */
.woocommerce-cart .cart-collaterals,
.woocommerce-cart .wc-block-components-sidebar,
.woocommerce-cart .wc-block-cart__totals,
.woocommerce-checkout .wc-block-components-sidebar {
    background-color: #fcfcfc !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 2px !important;
    padding: 30px !important;
    margin-top: 40px !important;
}

.woocommerce-cart .cart-collaterals h2 {
    color: var(--bollu-black) !important;
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-size: 20px !important;
    border-bottom: 1px solid #e5e5e5 !important;
    padding-bottom: 15px !important;
    margin-bottom: 20px !important;
}

.woocommerce-cart .cart-collaterals .shop_table td,
.woocommerce-cart .cart-collaterals .shop_table th {
    background: transparent !important;
    border-bottom: 1px solid #e5e5e5 !important;
}

/* Checkout & Place Order Buttons (Luxury Solid Gold) */
.woocommerce-cart .checkout-button,
.woocommerce-cart .wc-block-cart__submit-button,
.woocommerce-cart .wc-block-components-checkout-button,
.woocommerce-checkout #place_order,
.woocommerce-checkout .wc-block-components-checkout-button,
.woocommerce-checkout .wc-block-components-checkout-button button,
.woocommerce-page .button.checkout,
.woocommerce-page a.checkout-button,
.woocommerce-page .wc-block-cart__submit,
.woocommerce-page .wp-block-button__link {
    background-color: var(--bollu-gold) !important;
    background: var(--bollu-gold) !important;
    color: var(--bollu-black) !important;
    border: none !important;
    padding: 15px 30px !important;
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    letter-spacing: 0.15em !important;
    border-radius: 2px !important;
    box-shadow: 0 4px 15px rgba(186, 161, 112, 0.25) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    cursor: pointer !important;
    display: inline-block !important;
    text-align: center !important;
    text-decoration: none !important;
    width: 100% !important;
}

.woocommerce-cart .checkout-button:hover,
.woocommerce-cart .wc-block-cart__submit-button:hover,
.woocommerce-cart .wc-block-components-checkout-button:hover,
.woocommerce-checkout #place_order:hover,
.woocommerce-checkout .wc-block-components-checkout-button:hover,
.woocommerce-checkout .wc-block-components-checkout-button button:hover,
.woocommerce-page .button.checkout:hover,
.woocommerce-page a.checkout-button:hover,
.woocommerce-page .wc-block-cart__submit:hover,
.woocommerce-page .wp-block-button__link:hover {
    background-color: var(--bollu-gold-hover) !important;
    background: var(--bollu-gold-hover) !important;
    color: var(--bollu-black) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(186, 161, 112, 0.4) !important;
}

/* WooCommerce Gutenberg Blocks Cart Overrides (Luxury Light) */
.wc-block-cart,
.wc-block-cart-items,
.wc-block-cart-items__row,
.wc-block-components-totals-wrapper,
.wc-block-components-totals-item,
.wc-block-components-totals-item__value {
    background-color: #ffffff !important;
    color: var(--bollu-black) !important;
    border-color: #e5e5e5 !important;
}

.wc-block-cart-items__header,
.wc-block-components-totals-item__title,
.wc-block-cart__totals-title,
.wc-block-cart-items__header-title {
    color: var(--bollu-black) !important;
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-weight: 500 !important;
    font-size: 14px !important;
}

.wc-block-components-product-name,
.wc-block-components-product-name a,
.wc-block-cart-items__row .wc-block-components-product-name,
.wc-block-cart-items__row .wc-block-components-product-name a {
    color: var(--bollu-black) !important;
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-weight: 500 !important;
    text-decoration: none !important;
}
.wc-block-components-product-name a:hover {
    color: var(--bollu-gold) !important;
}

/* WooCommerce Order Received / Thank You page styling overrides */
body.woocommerce-order-received .site-content a:not(.button),
body.woocommerce-checkout .site-content .woocommerce-order-details a:not(.button),
body.woocommerce-checkout .site-content .woocommerce-thankyou-order-details a:not(.button) {
    color: var(--bollu-gold) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: color 0.3s ease !important;
}

body.woocommerce-order-received .site-content a:not(.button):hover,
body.woocommerce-checkout .site-content .woocommerce-order-details a:not(.button):hover,
body.woocommerce-checkout .site-content .woocommerce-thankyou-order-details a:not(.button):hover {
    color: var(--bollu-gold-hover) !important;
}

/* Specifically for table and order details product links, keep them black (gold on hover) to match the cart design */
body.woocommerce-order-received #content table td a,
body.woocommerce-checkout #content table td a,
body.woocommerce-order-received #primary table td a,
body.woocommerce-checkout #primary table td a,
body.woocommerce-order-received .site-content table td a,
body.woocommerce-checkout .site-content table td a,
body.woocommerce-order-received .site-content .woocommerce-table td a,
body.woocommerce-checkout .site-content .woocommerce-table td a,
body.woocommerce-checkout .site-content .woocommerce-order-details td a,
body.woocommerce-checkout .site-content .woocommerce-table--order-details td a,
#content .woocommerce-order-details td a,
#content .woocommerce-table--order-details td a,
.woocommerce-order-details td a,
.woocommerce-table--order-details td a {
    color: var(--bollu-black) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: color 0.3s ease !important;
}

body.woocommerce-order-received #content table td a:hover,
body.woocommerce-checkout #content table td a:hover,
body.woocommerce-order-received #primary table td a:hover,
body.woocommerce-checkout #primary table td a:hover,
body.woocommerce-order-received .site-content table td a:hover,
body.woocommerce-checkout .site-content table td a:hover,
body.woocommerce-order-received .site-content .woocommerce-table td a:hover,
body.woocommerce-checkout .site-content .woocommerce-table td a:hover,
body.woocommerce-checkout .site-content .woocommerce-order-details td a:hover,
body.woocommerce-checkout .site-content .woocommerce-table--order-details td a:hover,
#content .woocommerce-order-details td a:hover,
#content .woocommerce-table--order-details td a:hover,
.woocommerce-order-details td a:hover,
.woocommerce-table--order-details td a:hover {
    color: var(--bollu-gold) !important;
}

/* ==========================================================================
   7. WooCommerce Gutenberg Blocks Styling Overrides (Luxury Bollu Style)
   ========================================================================== */

/* Product Grid Item Wrapper */
.wc-block-grid__product,
.wc-block-product-template li.product,
.wc-block-layout li.wc-block-grid__product,
.wp-block-post-template li.product {
    background-color: var(--bollu-card-bg) !important;
    border: 1px solid var(--bollu-border) !important;
    padding: 25px !important;
    border-radius: 2px !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    position: relative !important;
}

.wc-block-grid__product:hover,
.wc-block-product-template li.product:hover,
.wp-block-post-template li.product:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    border-color: rgba(186, 161, 112, 0.3) !important;
}

/* Image styling inside blocks */
.wc-block-grid__product-image,
.wc-block-grid__product-image a,
.wc-block-grid__product-image img,
.wc-block-components-product-image,
.wc-block-components-product-image img,
.wp-block-woocommerce-product-image {
    border-radius: 2px !important;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    background-color: var(--bollu-dark) !important;
    overflow: hidden !important;
}

.wc-block-grid__product:hover .wc-block-grid__product-image img,
.wc-block-product-template li.product:hover img,
.wp-block-post-template li.product:hover img {
    transform: scale(1.05) !important;
}

/* Product Titles (force white/gold and Outfit font) */
.wc-block-grid__product-title,
.wc-block-components-product-title,
.wc-block-components-product-name,
.wc-block-grid__product-title a,
.wc-block-components-product-title a,
.wc-block-components-product-name a,
.wp-block-woocommerce-product-title,
.wp-block-woocommerce-product-title a {
    color: var(--bollu-white) !important;
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    transition: color 0.3s ease !important;
}

.wc-block-grid__product-title a:hover,
.wc-block-components-product-title a:hover,
.wc-block-components-product-name a:hover,
.wp-block-woocommerce-product-title a:hover {
    color: var(--bollu-gold) !important;
}

/* Product Prices */
.wc-block-grid__product-price,
.wc-block-components-product-price,
.wc-block-components-product-price *,
.wp-block-woocommerce-product-price,
.wp-block-woocommerce-product-price * {
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-size: 16px !important;
    color: var(--bollu-white) !important;
    margin-bottom: 20px !important;
    margin-top: auto !important;
}

.wc-block-grid__product-price del,
.wc-block-components-product-price del,
.wc-block-grid__product-price del *,
.wc-block-components-product-price del *,
.wp-block-woocommerce-product-price del,
.wp-block-woocommerce-product-price del * {
    color: var(--bollu-gray) !important;
    text-decoration: line-through !important;
    font-size: 14px !important;
}

.wc-block-grid__product-price ins,
.wc-block-components-product-price ins,
.wc-block-grid__product-price ins *,
.wc-block-components-product-price ins *,
.wp-block-woocommerce-product-price ins,
.wp-block-woocommerce-product-price ins * {
    color: var(--bollu-white) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
}

/* Product Add to Cart Buttons inside Gutenberg blocks */
.wc-block-grid__product-add-to-cart,
.wc-block-components-product-button,
.wc-block-grid__product-add-to-cart a,
.wc-block-components-product-button a,
.wc-block-components-product-button button,
.wc-block-components-product-button__button,
.wc-block-components-button,
.wp-block-button__link,
.wp-block-woocommerce-product-button a {
    background-color: transparent !important;
    background: transparent !important;
    border: 1px solid var(--bollu-gold) !important;
    color: var(--bollu-gold) !important;
    padding: 12px 24px !important;
    text-transform: uppercase !important;
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 0.15em !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border-radius: 2px !important;
    display: block !important;
    text-align: center !important;
    margin-top: auto !important;
    box-shadow: none !important;
}

.wc-block-grid__product-add-to-cart a:hover,
.wc-block-components-product-button a:hover,
.wc-block-components-product-button button:hover,
.wc-block-components-product-button__button:hover,
.wc-block-components-button:hover,
.wp-block-button__link:hover,
.wp-block-woocommerce-product-button a:hover {
    background-color: var(--bollu-gold) !important;
    background: var(--bollu-gold) !important;
    color: var(--bollu-black) !important;
    border-color: var(--bollu-gold) !important;
}

/* Circle Sale Badge for Gutenberg and Classic Loops */
.wc-block-grid__product-onsale,
.wc-block-components-sale-badge,
.woocommerce span.onsale,
.woocommerce-page span.onsale,
.woocommerce ul.products li.product .onsale,
.woocommerce-page ul.products li.product .onsale,
.wp-block-woocommerce-product-image .onsale {
    background-color: var(--bollu-gold) !important;
    color: var(--bollu-black) !important;
    border-radius: 50% !important;
    width: 44px !important;
    height: 44px !important;
    line-height: 44px !important;
    padding: 0 !important;
    text-align: center !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
    margin: 0 !important;
    min-height: auto !important;
    min-width: auto !important;
    z-index: 9 !important;
}

/* Align Gutenberg blocks grid items correctly */
.wc-block-grid__products {
    margin: 40px auto !important;
    padding: 0 !important;
    gap: 30px !important;
}

/* ==========================================================================
   8. WooCommerce Single Product Page Styling (Luxury Bollu Style)
   ========================================================================== */

/* Product title */
.single-product div.product .product_title {
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    color: var(--bollu-black) !important; /* Fixed: changed from white to black */
    font-size: 2.5rem !important;
    font-weight: 400 !important;
    margin-bottom: 20px !important;
    line-height: 1.2 !important;
}

/* Product price container */
.single-product div.product p.price,
.single-product div.product .price {
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-size: 24px !important;
    font-weight: 500 !important; /* Fixed: set explicit sharp weight */
    color: var(--bollu-gold) !important;
    margin-bottom: 30px !important;
    display: inline-flex !important; /* Prevent block full-width expansion */
    align-items: center !important;
    gap: 6px !important; /* Keeps currency symbol and number close together */
    direction: ltr !important; /* Force left-to-right to display currency symbol correctly */
}

/* Force color and size on nested WooCommerce price elements (like bdi, amount, currencySymbol) without flex layout */
.single-product div.product p.price *,
.single-product div.product .price * {
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-size: 24px !important;
    font-weight: 500 !important; /* Fixed: set explicit sharp weight */
    color: var(--bollu-gold) !important;
    display: inline !important; /* Force inline display to keep currency symbol adjacent to number */
}

.single-product div.product p.price del,
.single-product div.product p.price del *,
.single-product div.product .price del,
.single-product div.product .price del * {
    color: var(--bollu-gray) !important;
    text-decoration: line-through !important;
    font-size: 18px !important;
    font-weight: 400 !important; /* Sharp normal weight */
}

.single-product div.product p.price ins,
.single-product div.product p.price ins *,
.single-product div.product .price ins,
.single-product div.product .price ins * {
    color: var(--bollu-gold) !important;
    text-decoration: none !important;
    font-weight: 500 !important; /* Sharp medium weight */
}

/* Product summary texts (description, attributes, labels) - Fixed white-on-white text issues */
.single-product div.product .woocommerce-product-details__short-description,
.single-product div.product .woocommerce-product-details__short-description p,
.single-product div.product .summary p,
.single-product div.product .summary span:not(.price):not(.amount),
.single-product div.product .summary div,
.single-product div.product .summary label,
.single-product div.product .summary th,
.single-product div.product .summary td,
.single-product div.product .summary dt,
.single-product div.product .summary dd,
.single-product div.product .summary li {
    color: var(--bollu-black) !important;
    font-family: 'Inter', 'Tajawal', sans-serif !important;
}

.single-product div.product .woocommerce-product-details__short-description,
.single-product div.product .woocommerce-product-details__short-description p,
.single-product div.product .summary p {
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: #444444 !important; /* Elegant charcoal color for short descriptions */
}

/* Ensure stock status is clean and readable */
.single-product div.product .summary .stock.in-stock {
    color: #2e7d32 !important; /* Elegant dark green for in stock */
    font-weight: 500 !important;
    font-size: 13px !important;
}
.single-product div.product .summary .stock.out-of-stock {
    color: #c62828 !important; /* Elegant dark red for out of stock */
    font-weight: 500 !important;
    font-size: 13px !important;
}

/* WooCommerce Quantity container layout - Styles entire box to merge input and plus/minus buttons */
.woocommerce .quantity,
.woocommerce-page .quantity {
    display: inline-flex !important;
    align-items: center !important;
    background-color: var(--bollu-dark) !important; /* Black background for the entire quantity block */
    border: 1px solid var(--bollu-border) !important;
    border-radius: 2px !important;
    height: 48px !important;
    overflow: hidden !important;
    margin-left: 10px !important; /* Spacing for LTR */
    margin-right: 10px !important; /* Spacing for RTL */
    padding: 0 !important;
}

/* Quantity input inside the container */
.woocommerce .quantity input.qty,
.woocommerce-page .quantity input.qty {
    background-color: transparent !important;
    border: none !important;
    color: var(--bollu-white) !important;
    height: 100% !important;
    width: 40px !important;
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    padding: 0 !important;
    text-align: center !important;
    margin: 0 !important;
    -moz-appearance: textfield !important; /* Hide default spinner in Firefox */
}

/* Hide default browser spinner arrows inside quantity inputs (Chrome, Safari, Edge, Opera) */
.woocommerce .quantity input.qty::-webkit-outer-spin-button,
.woocommerce .quantity input.qty::-webkit-inner-spin-button,
.woocommerce-page .quantity input.qty::-webkit-outer-spin-button,
.woocommerce-page .quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

/* Quantity plus/minus buttons (Astra/WooCommerce custom quantity hooks) */
.woocommerce .quantity .minus,
.woocommerce .quantity .plus,
.woocommerce-page .quantity .minus,
.woocommerce-page .quantity .plus,
.woocommerce .quantity input[type="button"].minus,
.woocommerce .quantity input[type="button"].plus,
.woocommerce-page .quantity input[type="button"].minus,
.woocommerce-page .quantity input[type="button"].plus,
.woocommerce .quantity button.minus,
.woocommerce .quantity button.plus,
.woocommerce-page .quantity button.minus,
.woocommerce-page .quantity button.plus {
    background-color: transparent !important;
    border: none !important;
    color: var(--bollu-white) !important;
    width: 35px !important;
    height: 100% !important;
    font-size: 18px !important;
    line-height: 48px !important;
    font-weight: 400 !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease, color 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    text-decoration: none !important;
}

.woocommerce .quantity .minus:hover,
.woocommerce .quantity .plus:hover,
.woocommerce-page .quantity .minus:hover,
.woocommerce-page .quantity .plus:hover,
.woocommerce .quantity input[type="button"].minus:hover,
.woocommerce .quantity input[type="button"].plus:hover,
.woocommerce-page .quantity input[type="button"].minus:hover,
.woocommerce-page .quantity input[type="button"].plus:hover,
.woocommerce .quantity button.minus:hover,
.woocommerce .quantity button.plus:hover,
.woocommerce-page .quantity button.minus:hover,
.woocommerce-page .quantity button.plus:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: var(--bollu-gold) !important;
}

/* Add to cart button */
.single-product div.product button.single_add_to_cart_button,
.single-product div.product button.button.alt,
.single-product div.product .single_add_to_cart_button {
    background-color: var(--bollu-gold) !important;
    background: var(--bollu-gold) !important;
    color: var(--bollu-black) !important;
    border: none !important;
    height: 48px !important;
    padding: 0 40px !important;
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    letter-spacing: 0.15em !important;
    border-radius: 2px !important;
    box-shadow: 0 4px 15px rgba(186, 161, 112, 0.25) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.single-product div.product button.single_add_to_cart_button:hover,
.single-product div.product button.button.alt:hover {
    background-color: var(--bollu-gold-hover) !important;
    background: var(--bollu-gold-hover) !important;
    color: var(--bollu-black) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(186, 161, 112, 0.4) !important;
}

/* Breadcrumbs (Astra breadcrumbs or WooCommerce breadcrumbs) - Fixed: High specificity rules to override theme link color */
body.single-product #content .woocommerce-breadcrumb,
body.single-product #content .woocommerce-breadcrumb a,
body.single-product #content .ast-breadcrumbs,
body.single-product #content .ast-breadcrumbs a,
body.single-product .woocommerce-breadcrumb,
body.single-product .woocommerce-breadcrumb a,
body.single-product .ast-breadcrumbs,
body.single-product .ast-breadcrumbs a {
    color: var(--bollu-gray) !important;
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-size: 12px !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

body.single-product #content .woocommerce-breadcrumb a:hover,
body.single-product #content .ast-breadcrumbs a:hover,
body.single-product .woocommerce-breadcrumb a:hover,
body.single-product .ast-breadcrumbs a:hover {
    color: var(--bollu-gold) !important;
}

/* General summary links (except buttons) - Fixed: force gold luxury color to eliminate default Astra blue links */
body.single-product div.product .summary a:not(.button) {
    color: var(--bollu-gold) !important;
    text-decoration: none !important;
    font-weight: 500 !important; /* Fixed: set explicit sharp weight 500 to avoid synthetic bolding */
    transition: color 0.3s ease !important;
}

body.single-product div.product .summary a:not(.button):hover {
    color: var(--bollu-gold-hover) !important;
}

/* Category links in product summary - Fixed primitive Astra theme blue link design */
body.single-product #content .summary .posted_in,
body.single-product #content .summary .product_meta,
body.single-product #content .summary .ast-product-single-categories,
body.single-product #content .summary .ast-woo-product-category,
body.single-product #content .summary .posted_in span,
body.single-product #content .summary .posted_in strong,
body.single-product #content .summary .ast-woo-product-category,
body.single-product #content .summary .ast-single-product-category {
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    margin-bottom: 15px !important;
    display: block !important;
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    color: var(--bollu-gray) !important;
}

body.single-product #content .summary .posted_in a,
body.single-product #content .summary .product_meta a,
body.single-product #content .summary .ast-product-single-categories a,
body.single-product #content .summary .ast-woo-product-category a,
body.single-product div.product a.ast-woo-product-category,
body.single-product div.product .ast-woo-product-category a,
body.single-product div.product .ast-single-product-category a {
    color: var(--bollu-gold) !important;
    text-decoration: none !important;
    font-weight: 500 !important; /* Fixed: set explicit sharp weight 500 to avoid synthetic bolding */
    transition: color 0.3s ease !important;
}

body.single-product #content .summary .posted_in a:hover,
body.single-product #content .summary .product_meta a:hover,
body.single-product #content .summary .ast-product-single-categories a:hover,
body.single-product #content .summary .ast-woo-product-category a:hover,
body.single-product div.product a.ast-woo-product-category:hover,
body.single-product div.product .ast-woo-product-category a:hover,
body.single-product div.product .ast-single-product-category a:hover {
    color: var(--bollu-gold-hover) !important;
}

/* Product Meta (SKU, Categories, Tags at bottom) */
.single-product div.product .product_meta,
.single-product div.product .product_meta span,
.single-product div.product .product_meta strong {
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    color: var(--bollu-gray) !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.single-product div.product .product_meta a {
    color: var(--bollu-gold) !important; /* Changed from light-gray to gold for luxury feel */
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: color 0.3s ease !important;
}

.single-product div.product .product_meta a:hover {
    color: var(--bollu-gold-hover) !important;
}

/* Image zoom/magnify button */
.single-product .woocommerce-product-gallery__trigger {
    background-color: var(--bollu-dark) !important;
    color: var(--bollu-gold) !important;
    border: 1px solid var(--bollu-border) !important;
    border-radius: 50% !important;
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    top: 20px !important;
    left: 20px !important;
    right: auto !important;
}

.single-product .woocommerce-product-gallery__trigger:hover {
    background-color: var(--bollu-gold) !important;
    color: var(--bollu-black) !important;
}

/* Reviews and Tabs styling - Fixed white-on-white active tab text */
.single-product .woocommerce-tabs {
    border-top: 1px solid #e5e5e5 !important; /* Fixed: changed from dark border to light gray */
    margin-top: 50px !important;
    padding-top: 40px !important;
}

.single-product .woocommerce-tabs ul.tabs {
    display: flex !important;
    list-style: none !important;
    margin: 0 0 30px 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid #e5e5e5 !important; /* Fixed: changed from dark border to light gray */
    gap: 30px !important;
}

.single-product .woocommerce-tabs ul.tabs li {
    background: transparent !important;
    border: none !important;
    padding: 10px 0 !important;
    margin: 0 !important;
    border-bottom: 2px solid transparent !important;
}

.single-product .woocommerce-tabs ul.tabs li a {
    color: #777777 !important; /* Fixed: changed from gray to darker gray for readability */
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    padding: 0 !important;
}

.single-product .woocommerce-tabs ul.tabs li.active {
    border-bottom: 2px solid var(--bollu-gold) !important;
}

.single-product .woocommerce-tabs ul.tabs li.active a {
    color: var(--bollu-black) !important; /* Fixed: changed from white to black */
}

.single-product .woocommerce-tabs ul.tabs li a:hover {
    color: var(--bollu-gold) !important;
}

/* Tabs content - Fixed white-on-white text issues */
.single-product .woocommerce-Tabs-panel {
    color: #444444 !important; /* Fixed: changed from light gray to dark gray for high readability */
    font-family: 'Inter', 'Tajawal', sans-serif !important;
    font-size: 15px !important;
    line-height: 1.8 !important;
}

.single-product .woocommerce-Tabs-panel h2 {
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    color: var(--bollu-black) !important; /* Fixed: changed from white to black */
    font-size: 20px !important;
    margin-bottom: 20px !important;
}

/* Reviews list - Fixed dark bg card on white layout */
.single-product #reviews #comments ol.commentlist li {
    background-color: #fcfcfc !important; /* Fixed: light card background instead of dark gray */
    border: 1px solid #e5e5e5 !important; /* Fixed: light gray border */
    border-radius: 2px !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
}

.single-product #reviews #comments ol.commentlist li .comment-text {
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.single-product #reviews #comments ol.commentlist li .meta {
    color: #666666 !important; /* Fixed: changed from gold to readable dark gray */
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-size: 13px !important;
}

.single-product #reviews #comments ol.commentlist li .meta strong {
    color: var(--bollu-black) !important;
}

.single-product #reviews #comments ol.commentlist li .description {
    color: #444444 !important; /* Fixed: changed from white to dark gray */
    margin-top: 10px !important;
    font-size: 14px !important;
}

/* Stars rating */
.single-product .stars a {
    color: var(--bollu-gold) !important;
}

/* Review comments inputs - Fixed: inputs are readable and look luxury */
.single-product .comment-form input[type="text"],
.single-product .comment-form input[type="email"],
.single-product .comment-form textarea {
    background-color: #ffffff !important; /* Fixed: white background */
    border: 1px solid #cccccc !important; /* Light border */
    color: var(--bollu-black) !important; /* Black text */
    border-radius: 2px !important;
    padding: 10px 15px !important;
    width: 100% !important;
    font-family: 'Inter', 'Tajawal', sans-serif !important;
}

.single-product .comment-form input[type="text"]:focus,
.single-product .comment-form input[type="email"]:focus,
.single-product .comment-form textarea:focus {
    border-color: var(--bollu-gold) !important;
    outline: none !important;
}

.single-product .comment-form input[type="submit"] {
    background-color: var(--bollu-gold) !important;
    color: var(--bollu-black) !important;
    border: none !important;
    padding: 12px 30px !important;
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    border-radius: 2px !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease, transform 0.3s ease !important;
}

.single-product .comment-form input[type="submit"]:hover {
    background-color: var(--bollu-gold-hover) !important;
    transform: translateY(-2px) !important;
}

/* Related Products Heading - Fixed white-on-white headings */
.single-product .related.products h2,
.single-product .up-sells.products h2 {
    color: var(--bollu-black) !important;
    text-align: center !important;
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-size: 22px !important;
    margin-top: 50px !important;
    margin-bottom: 40px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.single-product .related.products h2::after,
.single-product .up-sells.products h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background-color: var(--bollu-gold) !important;
    margin: 15px auto 0 auto;
}

/* WooCommerce General Notices (Luxury Bollu Style) - Fixed: added specific padding for LTR/RTL icon spacing */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-notice {
    background-color: #ffffff !important;
    border: 1px solid #e5e5e5 !important;
    border-top: 3px solid var(--bollu-gold) !important;
    color: var(--bollu-black) !important;
    font-family: 'Inter', 'Tajawal', sans-serif !important;
    font-size: 14px !important;
    padding: 20px 25px 20px 3.5em !important; /* LTR: default spacing on the left for the absolute icon */
    margin-bottom: 30px !important;
    border-radius: 2px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    position: relative !important;
}

/* RTL override: make space on the right for the absolute icon */
body.rtl .woocommerce-message,
body.rtl .woocommerce-info,
body.rtl .woocommerce-error,
body.rtl .woocommerce-notice {
    padding: 20px 3.5em 20px 25px !important;
}

/* Style default WooCommerce / Astra pseudo-element icons to be Gold */
.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before,
.woocommerce-notice::before {
    color: var(--bollu-gold) !important;
}

/* Style default WooCommerce / Astra SVG icons to be Gold */
.woocommerce-message svg,
.woocommerce-info svg,
.woocommerce-error svg,
.woocommerce-notice svg,
.woocommerce-message svg *,
.woocommerce-info svg *,
.woocommerce-error svg *,
.woocommerce-notice svg * {
    fill: var(--bollu-gold) !important;
    stroke: var(--bollu-gold) !important;
}

.woocommerce-error {
    border-top-color: #d9534f !important; /* Red color for error/warning notices */
}

.woocommerce-error::before {
    color: #d9534f !important; /* Keep red color for error icon */
}

.woocommerce-message a.button,
.woocommerce-info a.button,
.woocommerce-error a.button {
    background-color: var(--bollu-black) !important;
    color: var(--bollu-white) !important;
    padding: 8px 20px !important;
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    border-radius: 2px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    float: none !important;
    margin: 0 !important;
}

.woocommerce-message a.button:hover,
.woocommerce-info a.button:hover,
.woocommerce-error a.button:hover {
    background-color: var(--bollu-gold) !important;
    color: var(--bollu-black) !important;
}

/* ==========================================================================
   Custom Luxury Footer (Bollu.ru Style)
   ========================================================================== */
.custom-bollu-footer {
    background-color: #2c2c2c;
    color: var(--bollu-white);
    font-family: 'Inter', 'Tajawal', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    direction: rtl !important;
}

.footer-top-row {
    background-color: rgb(1, 30, 70) !important;
    padding: 80px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer-brand-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
    text-align: right;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links-list li {
    margin: 0;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    font-family: 'Outfit', 'Tajawal', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.footer-links-list a:hover {
    color: var(--bollu-gold) !important;
}

.footer-large-headline {
    font-family: 'Outfit', 'Tajawal', sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: var(--bollu-gold) !important;
    margin: 0;
    letter-spacing: 0.02em;
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    direction: ltr !important;
    text-align: right !important;
}

.footer-contact-link {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    font-family: 'Outfit', 'Tajawal', sans-serif;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: var(--bollu-gold) !important;
}



/* Bottom Row: Copyright & Disclaimers */
.footer-bottom-row {
    background: linear-gradient(180deg, rgb(1, 25, 60) 0%, rgb(0, 12, 32) 100%) !important;
    padding: 50px 40px;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer-copyright-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 600px;
    align-items: flex-start;
    text-align: right;
}

.footer-copyright-text {
    font-family: 'Outfit', 'Tajawal', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4) !important;
    margin: 0 !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-disclaimer-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3) !important;
    margin: 0 !important;
    line-height: 1.6;
}

.footer-privacy-link {
    font-family: 'Outfit', 'Tajawal', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4) !important;
    text-decoration: underline !important;
    transition: color 0.3s ease;
    margin: 0;
    display: inline-block;
}

.footer-privacy-link:hover {
    color: var(--bollu-gold) !important;
}



/* Pre-Footer Contact and Showroom Styles */
.bollu-pre-footer {
    background-color: rgb(1, 45, 106) !important;
    padding: 60px 40px 40px 40px !important;
    font-family: 'Inter', 'Tajawal', sans-serif;
    color: rgba(255, 255, 255, 0.7) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    direction: rtl !important;
}

.pre-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.pre-footer-col {
    flex: 1 1 300px;
    text-align: right !important;
}

.pre-footer-col h3 {
    font-family: 'Outfit', 'Tajawal', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--bollu-white) !important;
    margin-top: 0;
    margin-bottom: 15px;
}

.pre-footer-col p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 10px 0;
}

.pre-footer-col .description {
    color: rgba(255, 255, 255, 0.7) !important;
}

.pre-footer-col a {
    color: var(--bollu-white) !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.pre-footer-col a:hover {
    color: var(--bollu-gold) !important;
}

.pre-footer-col .sep {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.3) !important;
}

.pre-footer-col .hours {
    color: rgba(255, 255, 255, 0.5) !important;
}

.pre-footer-col .contact-info {
    direction: ltr !important;
    text-align: right !important;
}

@media (max-width: 768px) {
    .pre-footer-container {
        flex-direction: column;
        gap: 30px;
    }
}

/* ==========================================================================
   Global Price & Currency Symbol Alignment Unification (RTL Fix)
   ========================================================================== */
.woocommerce-Price-amount,
.woocommerce-Price-amount *,
.amount,
.amount *,
.price,
.price *,
p.price,
p.price *,
bdi,
.woocommerce-Price-currencySymbol {
    direction: ltr !important;
    unicode-bidi: isolate !important;
}

/* ==========================================================================
   WooCommerce My Account Page (Luxury Light Style)
   ========================================================================== */
/* Body / Container text visibility */
body.woocommerce-account .site-content,
body.woocommerce-account .site-content p,
body.woocommerce-account .site-content span,
body.woocommerce-account .site-content div,
body.woocommerce-account .site-content label,
body.woocommerce-account .site-content legend,
body.woocommerce-account .site-content strong,
body.woocommerce-account .site-content b,
body.woocommerce-account .site-content li,
body.woocommerce-account .site-content td,
body.woocommerce-account .site-content th,
body.woocommerce-account .site-content h1,
body.woocommerce-account .site-content h2,
body.woocommerce-account .site-content h3 {
    color: var(--bollu-black) !important;
    font-family: 'Inter', 'Tajawal', sans-serif !important;
}

/* Headings font */
body.woocommerce-account .site-content h1,
body.woocommerce-account .site-content h2,
body.woocommerce-account .site-content h3 {
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-weight: 500 !important;
}

/* Inline links in account content */
body.woocommerce-account .woocommerce-MyAccount-content a:not(.button) {
    color: var(--bollu-gold) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: color 0.3s ease !important;
}

body.woocommerce-account .woocommerce-MyAccount-content a:not(.button):hover {
    color: var(--bollu-gold-hover) !important;
}

/* My Account Navigation Menu (Luxury Sidebar) */
body.woocommerce-account .woocommerce-MyAccount-navigation {
    float: right !important;
    width: 25% !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 2px !important;
    background-color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin: 0 !important;
    border-bottom: 1px solid #e5e5e5 !important;
    padding: 0 !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation li:last-child {
    border-bottom: none !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation a {
    display: block !important;
    padding: 15px 20px !important;
    color: var(--bollu-black) !important;
    text-decoration: none !important;
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    transition: all 0.3s ease !important;
    border-right: 3px solid transparent !important; /* Gold border indicator in RTL */
    border-left: 3px solid transparent !important;
    text-align: right !important; /* Arabic text alignment */
}

/* LTR layout menu link border alignment */
body.woocommerce-account:not(.rtl) .woocommerce-MyAccount-navigation a {
    border-left: 3px solid transparent !important;
    border-right: none !important;
    text-align: left !important;
}

/* Active Navigation Item */
body.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
    background-color: #fbfbfb !important;
    color: var(--bollu-gold) !important;
}

body.woocommerce-account.rtl .woocommerce-MyAccount-navigation li.is-active a {
    border-right: 3px solid var(--bollu-gold) !important;
}

body.woocommerce-account:not(.rtl) .woocommerce-MyAccount-navigation li.is-active a {
    border-left: 3px solid var(--bollu-gold) !important;
}

/* Hover Navigation Item */
body.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
    background-color: #fcfcfc !important;
    color: var(--bollu-gold) !important;
}

/* My Account Content Area */
body.woocommerce-account .woocommerce-MyAccount-content {
    float: left !important;
    width: 70% !important;
    margin: 0 !important;
    padding: 0 0 0 30px !important;
}

body.woocommerce-account.rtl .woocommerce-MyAccount-content {
    float: left !important;
    padding: 0 30px 0 0 !important;
}

/* Responsive adjustments for My Account layout */
@media (max-width: 768px) {
    body.woocommerce-account .woocommerce-MyAccount-navigation {
        width: 100% !important;
        float: none !important;
        margin-bottom: 30px !important;
    }
    body.woocommerce-account .woocommerce-MyAccount-content {
        width: 100% !important;
        float: none !important;
        padding: 0 !important;
    }
}

/* Tables inside My Account content (Orders, Downloads, etc.) */
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table {
    background-color: #ffffff !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 2px !important;
    width: 100% !important;
}

body.woocommerce-account .woocommerce-MyAccount-content table.shop_table th {
    background-color: #f9f9f9 !important;
    color: var(--bollu-black) !important;
    border-bottom: 1px solid #e5e5e5 !important;
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-weight: 500 !important;
    padding: 12px 15px !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    letter-spacing: 0.05em !important;
}

body.woocommerce-account .woocommerce-MyAccount-content table.shop_table td {
    border-bottom: 1px solid #e5e5e5 !important;
    padding: 15px !important;
    color: #444444 !important;
    font-size: 14px !important;
}

body.woocommerce-account .woocommerce-MyAccount-content table.shop_table tr:last-child td {
    border-bottom: none !important;
}

/* Buttons inside My Account content (Edit, View, Save, etc.) */
body.woocommerce-account .woocommerce-MyAccount-content .button,
body.woocommerce-account .woocommerce-MyAccount-content button.button {
    background-color: var(--bollu-gold) !important;
    background: var(--bollu-gold) !important;
    color: var(--bollu-black) !important;
    border: none !important;
    padding: 10px 25px !important;
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    font-size: 11px !important;
    letter-spacing: 0.1em !important;
    border-radius: 2px !important;
    box-shadow: 0 4px 12px rgba(186, 161, 112, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    cursor: pointer !important;
    display: inline-block !important;
    text-decoration: none !important;
    text-align: center !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .button:hover,
body.woocommerce-account .woocommerce-MyAccount-content button.button:hover {
    background-color: var(--bollu-gold-hover) !important;
    background: var(--bollu-gold-hover) !important;
    color: var(--bollu-black) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 15px rgba(186, 161, 112, 0.35) !important;
}

/* Address Box / Card styling */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address {
    background-color: #ffffff !important;
    border: 1px solid #e5e5e5 !important;
    padding: 25px !important;
    border-radius: 2px !important;
    margin-bottom: 20px !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title h3 {
    margin-top: 0 !important;
    font-size: 18px !important;
    border-bottom: 1px solid #e5e5e5 !important;
    padding-bottom: 10px !important;
    margin-bottom: 15px !important;
}

/* Address edit actions */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title .edit {
    float: left !important;
    color: var(--bollu-gold) !important;
    text-decoration: none !important;
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-weight: 500 !important;
    font-size: 13px !important;
}
body.woocommerce-account:not(.rtl) .woocommerce-MyAccount-content .woocommerce-Address-title .edit {
    float: right !important;
}






