/* ---------- Global Variables & Themes ---------- */
:root {
    --brg-bg: #f8f8f8;
    --brg-card-bg: #ffffff;
    --brg-text: #111111;
    --brg-border: #eeeeee;
    --brg-shadow: rgba(0,0,0,0.05);
    --brg-header-bg: #ffffff;
}

[data-theme="dark"] {
    --brg-bg: #121212;
    --brg-card-bg: #1e1e1e;
    --brg-text: #e0e0e0;
    --brg-border: #333333;
    --brg-shadow: rgba(0,0,0,0.4);
    --brg-header-bg: #181818;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--brg-font-main, 'Inter', sans-serif);
    color: var(--brg-text);
    background: var(--brg-bg);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    transition: background 0.3s, color 0.3s;
}

/* Dark Mode Toggle Button */
.dark-mode-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}
.dark-mode-toggle:hover { transform: scale(1.1); }
[data-theme="dark"] .sun { display: block !important; }
[data-theme="dark"] .moon { display: none !important; }
body:not([data-theme="dark"]) .sun { display: none !important; }
body:not([data-theme="dark"]) .moon { display: block !important; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Accessibility & Details ---------- */
:focus-visible {
    outline: 2px solid var(--brg-color-primary, #582fff);
    outline-offset: 2px;
}
input[type="text"], input[type="email"], input[type="password"], input[type="search"], select, textarea {
    font-size: 16px; /* Prevents iOS auto-zoom */
}
@media (max-width: 768px) {
    .brg-btn {
        padding: 16px 32px; /* Larger touch targets */
    }
}

/* ---------- Layout ---------- */
.brg-container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 1280px) {
    .brg-container { padding: 0 40px; }
}

/* ---------- Top Bar ---------- */
.header-top-bar {
    background: var(--brg-color-black, #111);
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.03em;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 8px;
}
.top-bar-text { opacity: 0.9; }
.top-bar-socials {
    display: flex;
    gap: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.top-bar-socials a { color: #fff; transition: opacity 0.2s; }
.top-bar-socials a:hover { opacity: 0.7; }

/* ---------- Header ---------- */
.site-header {
    background: var(--brg-header-bg);
    z-index: 999;
    transition: transform 0.35s ease, box-shadow 0.3s, background 0.3s;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.10); }

.header-main {
    position: relative;
}

.site-branding { flex-shrink: 0; }
.site-title { font-size: 1.8rem; font-weight: 900; letter-spacing: -0.04em; margin: 0; }
.site-title a { color: inherit; text-decoration: none; }

/* Navigation */
.main-navigation { display: flex; align-items: center; }
.main-navigation ul { margin: 0; padding: 0; list-style: none; display: flex; }
.main-navigation a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a {
    color: var(--brg-color-primary, #582fff);
}

/* ---------- Header Cart & Search (Placeholders) ---------- */
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-cart-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--brg-color-primary, #582fff);
    color: #fff !important;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.2s, transform 0.2s;
}
.header-cart-link:hover { opacity: 0.85; transform: translateY(-1px); }

/* ---------- Header Search Button ---------- */
.header-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: none;
    border: none;
    cursor: pointer;
    color: #444;
    transition: background 0.2s, color 0.2s;
}
.header-search-btn:hover {
    background: rgba(88,47,255,0.08);
    color: var(--brg-color-primary, #582fff);
}

/* ---------- Search Overlay ---------- */
.brg-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9998;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.brg-search-overlay.search-open {
    opacity: 1;
    visibility: visible;
}
.brg-search-overlay-inner {
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.brg-search-overlay.search-open .brg-search-overlay-inner {
    transform: translateY(0);
}
.search-overlay-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}
.brg-search-overlay .brg-search-wrap {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
    border-radius: 16px;
}
.brg-search-overlay .brg-search-input {
    color: #fff;
    font-size: 1.3rem;
    padding: 20px 20px;
    background: transparent;
}
.brg-search-overlay .brg-search-input::placeholder { color: rgba(255,255,255,0.4); }
.brg-search-overlay .brg-search-submit {
    background: var(--brg-color-primary, #582fff);
    border-radius: 0 14px 14px 0;
    padding: 20px 28px;
    font-size: 1rem;
}
.search-overlay-close-wrap { text-align: center; margin-top: 24px; }
.search-overlay-close {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.7);
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}
.search-overlay-close:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* ---------- Dropdown & Mega Menu ---------- */
.main-navigation ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    list-style: none;
    z-index: 99;
}
.main-navigation ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.main-navigation ul ul li { margin: 0; }
.main-navigation ul ul a {
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 500;
}

.main-navigation ul li.has-mega-menu { position: static; }
.main-navigation ul li.has-mega-menu > ul {
    width: 100%;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 30px 40px;
}
.main-navigation ul li.has-mega-menu > ul > li {
    margin: 0;
}
.main-navigation ul li.has-mega-menu > ul > li > a {
    font-weight: 700;
    color: var(--brg-color-primary, #582fff);
    font-size: 1.05rem;
    padding: 0 0 12px 0;
    margin-bottom: 12px;
    border-bottom: 1px solid #eee;
    pointer-events: none;
}
.main-navigation ul li.has-mega-menu > ul > li > ul {
    position: static;
    width: auto;
    box-shadow: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: flex;
    flex-direction: column;
}
.main-navigation ul li.has-mega-menu > ul > li > ul > li > a {
    padding: 8px 0;
    font-size: 0.95rem;
    color: #555;
}
.main-navigation ul li.has-mega-menu > ul > li > ul > li > a:hover {
    color: var(--brg-color-primary, #582fff);
    background: none;
}

/* ---------- Hamburger ---------- */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: background 0.2s;
}
.menu-toggle:hover { background: #f0f0f0; }
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile Nav Drawer ---------- */
@media (max-width: 900px) {
    .menu-toggle { display: flex; }

    .main-navigation {
        position: fixed;
        inset: 0 0 0 30%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 30px 40px;
        gap: 8px;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        z-index: 998;
        overflow-y: auto;
    }
    .main-navigation.nav-open { transform: translateX(0); }

    .main-navigation > ul { flex-direction: column; width: 100%; gap: 2px; }
    .main-navigation a { font-size: 1.1rem; padding: 12px 16px; border-radius: 12px; }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 997;
        backdrop-filter: blur(2px);
    }
    .nav-overlay.active { display: block; }
}

/* ---------- Hero Section ---------- */
.brg-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-color: var(--brg-color-primary, #582fff);
    position: relative;
    overflow: hidden;
}
.brg-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.25) 100%);
}
.brg-hero .brg-container { position: relative; z-index: 1; padding-top: 60px; padding-bottom: 60px; }
.brg-hero h1 {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    animation: fadeUp 0.8s ease both;
}
.brg-hero p {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: rgba(255,255,255,0.88);
    max-width: 600px;
    margin: 0 auto 36px;
    animation: fadeUp 0.8s 0.15s ease both;
}
.brg-hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeUp 0.8s 0.3s ease both; }

/* ---------- Buttons ---------- */
.brg-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    cursor: pointer;
    border: none;
}
.brg-btn-primary {
    background: var(--brg-color-primary, #582fff);
    color: #fff;
    box-shadow: 0 4px 20px rgba(88,47,255,0.35);
}
.brg-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.7);
}
.brg-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); opacity: 0.9; }

/* ---------- Section Base ---------- */
.brg-section { padding: 80px 0; }
.brg-section-sm { padding: 50px 0; }
.brg-section-alt { background: var(--brg-card-bg); }

.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 48px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Banner Grid ---------- */
.brg-banners-section { padding: 60px 0; }
.brg-banners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.brg-banner-item { position: relative; overflow: hidden; border-radius: 16px; }
.brg-banner-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.brg-banner-item:hover img { transform: scale(1.06); }

@media (max-width: 768px) { .brg-banners-grid { grid-template-columns: 1fr; gap: 14px; } }
@media (min-width: 480px) and (max-width: 768px) { .brg-banners-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Products Section ---------- */
.brg-products-section { padding: 80px 0; background: #fff; }

/* ---------- Category Showcase ---------- */
.brg-categories-section { padding: 80px 0; }
.brg-categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.brg-category-card {
    background: var(--brg-card-bg);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    padding: 28px 16px;
    box-shadow: 0 2px 16px var(--brg-shadow);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    cursor: pointer;
}
.brg-category-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.10); }
@media (max-width: 900px) { .brg-categories-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .brg-categories-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }

/* ---------- Campaign / Banner Strip ---------- */
.brg-campaign-section {
    padding: 80px 0;
    background: var(--brg-color-primary, #582fff);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.brg-campaign-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    top: -200px; right: -100px;
}
.brg-campaign-section .section-title { color: #fff; }
.brg-campaign-section p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 28px; }
.brg-campaign-section .brg-btn { background:#fff; color:var(--brg-color-primary,#582fff); }
.brg-campaign-section .brg-btn:hover { background: rgba(255,255,255,0.88); }

/* ---------- About Section ---------- */
.brg-about-section { padding: 80px 0; }
.brg-about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: 4/3;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.about-content h2 { margin-bottom: 20px; text-align: left; }
.about-content p { color: #555; line-height: 1.8; margin-bottom: 16px; }
.about-content .brg-btn { margin-top: 12px; }
@media (max-width: 768px) { .brg-about-inner { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Blog Grid ---------- */
.brg-blog-section { padding: 80px 0; background: #fff; }
.brg-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
    background: var(--brg-card-bg);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.10); }
.blog-card-img { overflow: hidden; aspect-ratio: 16/9; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-card-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-card-body h3 a { color: inherit; transition: color 0.2s; }
.blog-card-body h3 a:hover { color: var(--brg-color-primary, #582fff); }
.blog-card-excerpt { font-size: 0.9rem; color: #666; line-height: 1.6; margin-bottom: 16px; }
.blog-card-link { font-size: 0.85rem; font-weight: 700; color: var(--brg-color-primary, #582fff); display: flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.blog-card-link:hover { gap: 8px; }
@media (max-width: 900px) { .brg-blog-grid { grid-template-columns: 1fr 1fr; gap: 20px; } }
@media (max-width: 600px) { .brg-blog-grid { grid-template-columns: 1fr; } }

/* ---------- WooCommerce Product Cards ---------- */
ul.products { margin: 0 !important; }
ul.products li.product {
    transition: transform 0.3s, box-shadow 0.3s !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    background: var(--brg-card-bg) !important;
    border: 1px solid var(--brg-border) !important;
}
ul.products li.product:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.10) !important; }
ul.products li.product img { width: 100% !important; height: auto !important; aspect-ratio: 1; object-fit: cover !important; }
ul.products li.product .woocommerce-loop-product__title { font-size: 1rem !important; font-weight: 700 !important; }
ul.products li.product .price { color: var(--brg-color-primary, #582fff) !important; font-weight: 700 !important; font-size: 1.05rem !important; }
ul.products li.product .button {
    background: var(--brg-color-primary, #582fff) !important;
    color: #fff !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    padding: 10px 20px !important;
    border: none !important;
    transition: opacity 0.2s !important;
}
ul.products li.product .button:hover { opacity: 0.85 !important; }

/* ---------- Single Post ---------- */
.brg-single-hero {
    background: linear-gradient(135deg, var(--brg-color-primary, #582fff) 0%, #2d0fb5 100%);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}
.brg-single-hero h1 { font-size: clamp(1.6rem, 4vw, 3rem); font-weight: 800; margin-bottom: 16px; }
.post-meta { font-size: 0.9rem; opacity: 0.8; display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.brg-content-area { padding: 60px 0; }
.brg-post-body { max-width: 760px; margin: 0 auto; }
.brg-post-body h2 { font-size: 1.7rem; font-weight: 700; margin: 36px 0 16px; }
.brg-post-body h3 { font-size: 1.3rem; font-weight: 700; margin: 28px 0 12px; }
.brg-post-body p { margin-bottom: 20px; color: #444; line-height: 1.85; }
.brg-post-body img { border-radius: 12px; margin: 28px 0; }
.brg-post-body blockquote {
    border-left: 4px solid var(--brg-color-primary, #582fff);
    padding: 16px 24px;
    margin: 28px 0;
    background: rgba(88,47,255,0.05);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #555;
}

/* ---------- Page ---------- */
.brg-page-wrap { padding: 60px 0; background: #fff; }
.brg-page-content { max-width: 900px; margin: 0 auto; }
.brg-page-title { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; margin-bottom: 40px; }

/* ---------- Archive ---------- */
.brg-archive-header { padding: 60px 0 40px; background: linear-gradient(135deg, var(--brg-color-primary,#582fff) 0%, #2d0fb5 100%); color: #fff; text-align: center; }
.brg-archive-header h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; }
.brg-archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 60px 0; }
@media (max-width: 900px) { .brg-archive-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .brg-archive-grid { grid-template-columns: 1fr; } }

/* ---------- 404 ---------- */
.brg-404-wrap { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 0; }
.brg-404-wrap h1 { font-size: clamp(5rem, 15vw, 10rem); font-weight: 900; color: var(--brg-color-primary, #582fff); opacity: 0.15; line-height: 1; }
.brg-404-wrap h2 { font-size: 1.8rem; font-weight: 700; margin-top: -20px; }
.brg-404-wrap p { color: #666; margin: 16px 0 32px; }

/* ---------- Footer ---------- */
.site-footer {
    background: #0f0f0f;
    color: #ccc;
    padding: 60px 0 30px;
    margin-top: 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand .site-title { color: #fff; font-size: 1.4rem; margin-bottom: 12px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: #888; }
.footer-col h4 { color: #fff; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #888; font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-socials { display: flex; gap: 14px; margin-top: 20px; }
.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    transition: background 0.2s;
}
.footer-socials a:hover { background: var(--brg-color-primary, #582fff); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; color: #555; }

@media (max-width: 768px) {
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { justify-content: center; text-align: center; }
}

/* ---------- Utilities ---------- */
.skip-link { position: absolute; top: -40px; left: 0; background: #000; color: #fff; padding: 8px 16px; z-index: 9999; border-radius: 0 0 8px 0; }
.skip-link:focus { top: 0; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; width: 1px; word-wrap: normal; }

/* ---------- Animations ---------- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.brg-animate {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.brg-animate.visible { opacity: 1; transform: translateY(0); }

/* ---------- Pagination ---------- */
.pagination { display: flex; justify-content: center; gap: 8px; padding: 40px 0; flex-wrap: wrap; }
.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e5e5e5;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover { background: var(--brg-color-primary, #582fff); color: #fff; border-color: var(--brg-color-primary, #582fff); }

/* ---------- Search Form ---------- */
.brg-search-form { width: 100%; }
.brg-search-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 50px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.brg-search-wrap:focus-within {
    border-color: var(--brg-color-primary, #582fff);
    box-shadow: 0 0 0 4px rgba(88,47,255,0.1);
}
.brg-search-icon { margin-left: 18px; color: #aaa; flex-shrink: 0; }
.brg-search-input {
    flex: 1;
    border: none;
    padding: 14px 16px;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    background: transparent;
    min-width: 0;
}
.brg-search-submit {
    padding: 14px 24px;
    background: var(--brg-color-primary, #582fff);
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: opacity 0.2s;
    white-space: nowrap;
}
.brg-search-submit:hover { opacity: 0.85; }

/* ---------- Breadcrumb ---------- */
.brg-breadcrumb { background: #fff; border-bottom: 1px solid #f0f0f0; }
.brg-breadcrumb a:hover { text-decoration: underline; }

/* ---------- Sidebar & Widgets ---------- */
.brg-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.brg-widget {
    background: #fff;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.widget-title {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--brg-color-primary, #582fff);
    color: var(--brg-color-black, #111);
}
.brg-widget ul { display: flex; flex-direction: column; gap: 8px; }
.brg-widget ul li a {
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #555;
    transition: background 0.2s, color 0.2s;
}
.brg-widget ul li a:hover { background: rgba(88,47,255,0.06); color: var(--brg-color-primary, #582fff); }

/* Layout with sidebar */
.brg-has-sidebar {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}
@media (max-width: 900px) {
    .brg-has-sidebar { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Comments ---------- */
.brg-comments-area { margin-top: 48px; }
.brg-comment-list { margin-bottom: 40px; }
.brg-comment-form .comment-form-author input,
.brg-comment-form .comment-form-email input,
.brg-comment-form .comment-form-url input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}
.brg-comment-form .comment-form-author input:focus,
.brg-comment-form .comment-form-email input:focus,
.brg-comment-form .comment-form-url input:focus { border-color: var(--brg-color-primary, #582fff); outline: none; }
.brg-comment-form label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 0.9rem; color: #555; }
.brg-comment-form p { margin-bottom: 16px; }

/* ---------- WooCommerce Shop Page ---------- */
.woocommerce-products-header { padding: 60px 0 20px; text-align: center; }
.woocommerce-products-header h1 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 800; }
.woocommerce-result-count,
.woocommerce-ordering { font-size: 0.9rem; color: #666; }
.woocommerce-ordering select {
    padding: 8px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
}

/* WooCommerce notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border-radius: 12px !important;
    padding: 16px 24px !important;
    font-size: 0.95rem !important;
}
.woocommerce-message { border-top-color: var(--brg-color-secondary, #a2c93a) !important; }

/* ---------- Print Styles ---------- */
@media print {
    .site-header, .site-footer, .brg-breadcrumb,
    #brg-scroll-top, .nav-overlay, .menu-toggle { display: none !important; }
    body { font-size: 12pt; color: #000; background: #fff; }
    a { color: #000; text-decoration: underline; }
    .brg-container { max-width: 100%; padding: 0; }
}

/* ---------- Social Icon Platform Colors ---------- */
.footer-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.2s;
}
.footer-social-btn:hover { transform: translateY(-2px); }
.footer-social-facebook:hover  { background: #1877f2; }
.footer-social-instagram:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.footer-social-twitter:hover   { background: #000; }
.footer-social-youtube:hover   { background: #ff0000; }
.footer-social-whatsapp:hover  { background: #25d366; }
.footer-social-tiktok:hover    { background: #010101; }

/* ---------- Landing Page ---------- */
.brg-landing-page .site-main { min-height: 80vh; }
.brg-landing-page .wp-block-cover,
.brg-landing-page .wp-block-group { max-width: 100%; }

/* ---------- WooCommerce Single Product ---------- */
.brg-product-hero { padding: 48px 0 60px; background: #fff; }
.brg-product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
@media (max-width: 900px) { .brg-product-layout { grid-template-columns: 1fr; gap: 32px; } }

.brg-product-gallery img { border-radius: 16px; }

.brg-product-summary .brg-breadcrumb { background: none; border: none; padding: 0 0 12px; }
.product-category-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brg-color-primary, #582fff);
    margin-bottom: 12px;
}
.brg-product-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.brg-product-price { margin: 16px 0; }
.brg-product-price .price {
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: var(--brg-color-primary, #582fff) !important;
}
.brg-product-price .price del { font-size: 1rem !important; opacity: 0.5; margin-right: 8px; }
.brg-product-add-to-cart { margin: 28px 0; }
.brg-product-add-to-cart .single_add_to_cart_button {
    width: 100%;
    padding: 18px 32px !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    background: var(--brg-color-primary, #582fff) !important;
    color: #fff !important;
    border: none !important;
    transition: opacity 0.2s, transform 0.2s !important;
}
.brg-product-add-to-cart .single_add_to_cart_button:hover { opacity: 0.88 !important; transform: translateY(-1px) !important; }
.brg-product-add-to-cart input.qty {
    width: 70px;
    padding: 14px;
    font-size: 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    text-align: center;
    margin-right: 12px;
}
.brg-product-meta { font-size: 0.9rem; color: #888; margin-bottom: 20px; }
.brg-product-meta a { color: var(--brg-color-primary, #582fff); }
.brg-product-share { display: flex; gap: 12px; align-items: center; font-size: 0.85rem; font-weight: 700; }
.brg-product-share span { color: #aaa; }
.brg-product-share a {
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid #e5e5e5;
    font-size: 0.8rem;
    font-weight: 700;
    transition: background 0.2s, border-color 0.2s;
}
.brg-product-share a:hover { background: var(--brg-color-primary, #582fff); color: #fff; border-color: var(--brg-color-primary, #582fff); }

.brg-product-tabs-wrap { background: #f8f8f8; padding: 60px 0; }
.woocommerce-tabs .tabs { display: flex; gap: 0; border-bottom: 2px solid #e5e5e5; margin-bottom: 32px; list-style: none; flex-wrap: wrap; }
.woocommerce-tabs .tabs li a { display: block; padding: 12px 28px; font-weight: 600; font-size: 0.95rem; color: #666; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: color 0.2s, border-color 0.2s; }
.woocommerce-tabs .tabs li.active a { color: var(--brg-color-primary, #582fff); border-bottom-color: var(--brg-color-primary, #582fff); }

/* ---------- Dark Mode ---------- */
@media (prefers-color-scheme: dark) {
    body {
        background: #0f0f0f;
        color: #e0e0e0;
    }
    .site-header { background: #1a1a1a; box-shadow: 0 1px 0 rgba(255,255,255,0.05); }
    .site-title a { color: #fff; }
    .main-navigation a { color: #ccc; }
    .main-navigation a:hover { background: rgba(88,47,255,0.15); color: #a78bff; }
    .blog-card { background: #1a1a1a; }
    .blog-card-body h3 a { color: #e0e0e0; }
    .blog-card-excerpt { color: #999; }
    .brg-widget { background: #1a1a1a; }
    .brg-products-section { background: #111; }
    .brg-page-wrap { background: #111; }
    .brg-product-hero { background: #111; }
    .brg-product-tabs-wrap { background: #1a1a1a; }
    .brg-post-body p { color: #ccc; }
    .brg-post-body blockquote { background: rgba(88,47,255,0.1); }
    ul.products li.product { background: #1a1a1a !important; }
    .brg-search-wrap { background: #1a1a1a; border-color: #333; }
    .brg-search-input { color: #e0e0e0; }
    .header-search-btn { color: #ccc; }
    .main-navigation { background: #1a1a1a; }
    .pagination .page-numbers { background: #1a1a1a; border-color: #333; color: #ccc; }
}

/* ---------- Cookie Consent Banner ---------- */
.brg-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ccc;
    padding: 20px;
    z-index: 9990;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.brg-cookie-banner.show { transform: translateY(0); }
.brg-cookie-inner {
    max-width: 1260px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.brg-cookie-text { font-size: 0.9rem; line-height: 1.6; }
.brg-cookie-text a { color: var(--brg-color-primary, #582fff); text-decoration: underline; }
.brg-cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.brg-cookie-accept {
    padding: 10px 24px;
    background: var(--brg-color-primary, #582fff);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: opacity 0.2s;
}
.brg-cookie-accept:hover { opacity: 0.85; }
.brg-cookie-decline {
    padding: 10px 20px;
    background: transparent;
    color: #888;
    border: 1px solid #333;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.2s;
}
.brg-cookie-decline:hover { color: #ccc; }
@media (max-width: 600px) { .brg-cookie-inner { flex-direction: column; align-items: flex-start; } }

/* ---------- Contact Page ---------- */
.brg-contact-hero {
    background: linear-gradient(135deg, var(--brg-color-primary,#582fff) 0%, #2d0fb5 100%);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}
.brg-contact-title { font-size: clamp(2rem,5vw,3.5rem); font-weight: 800; margin-bottom: 16px; }
.brg-contact-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto; }

.brg-contact-section { padding: 60px 0 80px; }
.brg-contact-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: start;
}
@media (max-width: 900px) { .brg-contact-layout { grid-template-columns: 1fr; } }

.brg-contact-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}
.brg-contact-form-card h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 8px; }
.form-desc { color: #888; font-size: 0.9rem; margin-bottom: 28px; }

.brg-native-contact-form .form-row { display: flex; gap: 16px; }
.brg-native-contact-form .form-row-2 > * { flex: 1; min-width: 0; }
.brg-native-contact-form .form-group { margin-bottom: 20px; }
.brg-native-contact-form label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; color: #555; }
.brg-native-contact-form label span { color: var(--brg-color-primary,#582fff); }
.brg-native-contact-form input,
.brg-native-contact-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    color: #333;
    background: #fafafa;
}
.brg-native-contact-form input:focus,
.brg-native-contact-form textarea:focus {
    border-color: var(--brg-color-primary,#582fff);
    box-shadow: 0 0 0 4px rgba(88,47,255,0.08);
    outline: none;
    background: #fff;
}
.brg-native-contact-form textarea { resize: vertical; }
.brg-contact-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-status { margin-top: 16px; font-size: 0.9rem; font-weight: 600; }
.form-status.success { color: #22c55e; }
.form-status.error   { color: #ef4444; }

.brg-info-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    margin-bottom: 16px;
}
.info-card-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(88,47,255,0.08);
    color: var(--brg-color-primary,#582fff);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.brg-info-card h4 { font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: #aaa; margin-bottom: 4px; }
.brg-info-card a { color: var(--brg-color-primary,#582fff); font-weight: 600; font-size: 0.95rem; }
.brg-info-card p { font-size: 0.9rem; color: #555; line-height: 1.6; }
.contact-socials { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.contact-socials a { font-size: 0.8rem; font-weight: 700; padding: 4px 12px; border: 1px solid #e5e5e5; border-radius: 50px; transition: background 0.2s, color 0.2s; }
.contact-socials a:hover { background: var(--brg-color-primary,#582fff); color: #fff; border-color: transparent; }

@media (max-width: 600px) {
    .brg-native-contact-form .form-row { flex-direction: column; gap: 0; }
    .brg-contact-form-card { padding: 24px; }
}

/* ---------- Countdown ---------- */
.brg-countdown-wrap {
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    margin: 24px 0;
}
.brg-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.cd-block { display: flex; flex-direction: column; align-items: center; min-width: 70px; }
.cd-num {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}
.cd-unit { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; margin-top: 4px; }
.cd-sep { font-size: 2.5rem; font-weight: 900; opacity: 0.4; padding-bottom: 20px; }

/* ---------- AJAX Load More ---------- */
.brg-load-more-wrap { text-align: center; padding: 40px 0 20px; }
.brg-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    background: #fff;
    border: 2px solid var(--brg-color-primary,#582fff);
    color: var(--brg-color-primary,#582fff);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.brg-load-more-btn:hover { background: var(--brg-color-primary,#582fff); color: #fff; transform: translateY(-2px); }
.brg-load-more-btn:disabled { opacity: 0.5; cursor: wait; }

/* ---------- Spinner ---------- */
@keyframes brg-spin { to { transform: rotate(360deg); } }
.brg-spinner {
    width: 36px; height: 36px;
    border: 3px solid rgba(88,47,255,0.2);
    border-top-color: var(--brg-color-primary,#582fff);
    border-radius: 50%;
    animation: brg-spin 0.8s linear infinite;
    margin: 0 auto;
}

/* ---------- Quick View Modal ---------- */
.brg-quick-view-btn {
    flex: 1;
    padding: 10px;
    background: rgba(88,47,255,0.07);
    color: var(--brg-color-primary,#582fff);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.brg-quick-view-btn:hover { background: var(--brg-color-primary,#582fff); color: #fff; }

.brg-wishlist-btn {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    background: #fff;
    color: #888;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
}
.brg-wishlist-btn:hover { border-color: #ff4757; color: #ff4757; }
.brg-wishlist-btn.in-wishlist { background: #ff4757; border-color: #ff4757; color: #fff; }

.brg-product-actions {
    display: flex;
    gap: 8px;
    margin: 8px 10px 10px;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s, transform 0.2s;
}
ul.products li.product:hover .brg-product-actions { opacity: 1; transform: translateY(0); }

.brg-wishlist-grid {
    margin: 40px 0;
}
.brg-wishlist-grid ul.products {
    margin-bottom: 0;
}
.brg-empty-wishlist {
    text-align: center;
    padding: 60px 20px;
    background: #fafafa;
    border: 2px dashed #e5e5e5;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #888;
}

/* ---------- Sticky Add to Cart ---------- */
.brg-sticky-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    z-index: 999;
    padding: 12px 0;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s, visibility 0.3s;
}
.brg-sticky-cart.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.brg-sticky-cart-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.brg-sticky-cart .sc-info {
    display: flex;
    align-items: center;
    gap: 16px;
}
.brg-sticky-cart .sc-img img {
    border-radius: 8px;
    width: 44px;
    height: 44px;
    object-fit: cover;
}
.brg-sticky-cart .sc-title {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    color: #111;
}
.brg-sticky-cart .sc-price {
    font-size: 0.85rem;
    color: var(--brg-color-primary, #582fff);
    font-weight: 800;
}
.brg-sticky-cart .sc-price del {
    color: #999;
    font-weight: 500;
    margin-right: 6px;
}
@media (max-width: 600px) {
    .brg-sticky-cart .sc-info { display: none; }
    .brg-sticky-cart .sc-action button { width: 100%; }
}

.brg-qv-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.brg-qv-modal.qv-open { opacity: 1; visibility: visible; }
.brg-qv-modal-inner {
    background: #fff;
    border-radius: 24px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.brg-qv-modal.qv-open .brg-qv-modal-inner { transform: scale(1); }
.brg-qv-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: background 0.2s;
}
.brg-qv-close:hover { background: #e5e5e5; }
.brg-qv-content { padding: 0; }
.brg-qv-loading { padding: 60px; display: flex; justify-content: center; }

.brg-qv-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.brg-qv-gallery { padding: 32px; background: #f8f8f8; border-radius: 24px 0 0 24px; }
.brg-qv-img { width: 100%; border-radius: 12px; object-fit: cover; }
.brg-qv-details { padding: 40px 36px; }
.brg-qv-cat { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--brg-color-primary,#582fff); }
.brg-qv-title { font-size: 1.5rem; font-weight: 800; margin: 10px 0 14px; line-height: 1.3; }
.brg-qv-price .price { font-size: 1.6rem !important; font-weight: 800 !important; color: var(--brg-color-primary,#582fff) !important; }
.brg-qv-excerpt { font-size: 0.9rem; color: #666; line-height: 1.7; margin: 16px 0 24px; }
.brg-qv-add-to-cart .button { width: 100%; padding: 14px !important; border-radius: 50px !important; background: var(--brg-color-primary,#582fff) !important; color: #fff !important; font-weight: 700 !important; text-align: center; transition: opacity 0.2s !important; }
.brg-qv-add-to-cart .button:hover { opacity: 0.85 !important; }
.brg-qv-view-full { display: block; text-align: center; margin-top: 14px; font-size: 0.85rem; font-weight: 700; color: var(--brg-color-primary,#582fff); }
@media (max-width: 700px) {
    .brg-qv-inner { grid-template-columns: 1fr; }
    .brg-qv-gallery { border-radius: 24px 24px 0 0; }
    .brg-qv-details { padding: 24px; }
}

/* ---------- WooCommerce Cart & Checkout Redesign ---------- */
.woocommerce-cart .woocommerce {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}
.woocommerce-cart-form {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.cart-collaterals {
    background: #fafafa;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
}
.woocommerce-cart table.cart td.actions .coupon .input-text {
    width: 200px;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-right: 10px;
}
.woocommerce-cart table.cart td.actions .button {
    padding: 12px 24px !important;
    border-radius: 8px !important;
}

.woocommerce-checkout .woocommerce {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
}
#customer_details {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
#order_review_heading,
#order_review {
    background: #fafafa;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
}
#order_review_heading { margin-bottom: -15px; border-bottom-left-radius: 0; border-bottom-right-radius: 0; border-bottom: none; }
#order_review { border-top-left-radius: 0; border-top-right-radius: 0; }

.woocommerce-checkout .woocommerce-input-wrapper input,
.woocommerce-checkout .woocommerce-input-wrapper textarea,
.woocommerce-checkout .select2-container--default .select2-selection--single {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.2s;
    background: #fafafa;
}
.woocommerce-checkout .select2-container--default .select2-selection--single { height: auto; }
.woocommerce-checkout .woocommerce-input-wrapper input:focus,
.woocommerce-checkout .woocommerce-input-wrapper textarea:focus {
    border-color: var(--brg-color-primary, #582fff);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(88,47,255,0.08);
}
#place_order {
    width: 100%;
    padding: 18px !important;
    font-size: 1.1rem !important;
    border-radius: 12px !important;
    margin-top: 20px;
}

/* ---------- WooCommerce My Account ---------- */
.woocommerce-account .woocommerce {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 40px;
    margin-bottom: 60px;
}
.woocommerce-MyAccount-navigation {
    background: #fff;
    border-radius: 20px;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.woocommerce-MyAccount-navigation ul li {
    margin: 0;
}
.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 14px 30px;
    font-weight: 600;
    color: #555;
    border-left: 3px solid transparent;
    transition: all 0.2s;
}
.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a {
    color: var(--brg-color-primary, #582fff);
    background: rgba(88,47,255,0.04);
    border-left-color: var(--brg-color-primary, #582fff);
}
.woocommerce-MyAccount-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.woocommerce-MyAccount-content h3 {
    margin-top: 0;
    font-weight: 800;
    margin-bottom: 24px;
}
.woocommerce-MyAccount-content mark {
    background: rgba(88,47,255,0.1);
    color: var(--brg-color-primary, #582fff);
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}
.woocommerce-MyAccount-content .woocommerce-button {
    border-radius: 8px !important;
    padding: 10px 20px !important;
}

@media (max-width: 900px) {
    .woocommerce-cart .woocommerce,
    .woocommerce-checkout .woocommerce,
    .woocommerce-account .woocommerce {
        grid-template-columns: 1fr;
    }
}

/* ---------- Stock Progress Bar ---------- */
.brg-stock-bar-wrap {
    margin: 20px 0;
}
.brg-stock-text {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #444;
}
.brg-stock-text strong {
    color: #e74c3c;
}
.brg-stock-bar {
    width: 100%;
    height: 8px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
}
.brg-stock-bar span {
    display: block;
    height: 100%;
    background: #e74c3c;
    border-radius: 4px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.brg-stock-good .brg-stock-bar span { background: #2ecc71; }
.brg-stock-good .brg-stock-text strong { color: #2ecc71; }

/* ---------- Size Guide ---------- */
.brg-size-guide-wrap {
    margin: 10px 0 20px;
}
.brg-size-guide-btn {
    background: none;
    border: none;
    padding: 0;
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: color 0.2s;
}
.brg-size-guide-btn:hover {
    color: var(--brg-color-primary, #582fff);
}

/* ---------- Trust Badges ---------- */
.brg-trust-badges {
    margin: 30px 0;
    padding: 20px;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
}
.brg-trust-badges .trust-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #666;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.brg-trust-badges .trust-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* ---------- Sales Notification Popup ---------- */
.brg-sales-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 16px;
    width: 320px;
    transform: translateY(150px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.brg-sales-popup.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.brg-sales-popup-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}
.brg-sales-popup-img img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}
.brg-sales-popup-text p {
    margin: 0;
    line-height: 1.4;
}
.brg-sp-name { font-size: 0.85rem; color: #555; }
.brg-sp-action { font-size: 0.9rem; font-weight: 600; color: #222; }
.brg-sp-action a { color: var(--brg-color-primary, #582fff); }
.brg-sp-time { font-size: 0.75rem; color: #999; margin-top: 4px !important; }
.brg-sales-popup-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: #fff; border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; cursor: pointer; color: #666;
}
@media (max-width: 600px) {
    .brg-sales-popup { bottom: 100px; left: 16px; right: 16px; width: auto; }
}

/* ---------- Mobile Swipe Slider (Related Products) ---------- */
@media (max-width: 600px) {
    .related.products ul.products,
    .upsells.products ul.products,
    .cross-sells ul.products,
    .brg-widget-product-list {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 10px;
        scrollbar-width: none; /* Firefox */
    }
    .related.products ul.products::-webkit-scrollbar,
    .upsells.products ul.products::-webkit-scrollbar,
    .cross-sells ul.products::-webkit-scrollbar,
    .brg-widget-product-list::-webkit-scrollbar {
        display: none; /* Safari/Chrome */
    }
    .related.products ul.products li.product,
    .upsells.products ul.products li.product,
    .cross-sells ul.products li.product {
        flex: 0 0 75%;
        scroll-snap-align: start;
        margin: 0;
    }
}

/* ---------- WooCommerce Filters & Widgets ---------- */
.widget_price_filter .ui-slider .ui-slider-range {
    background: var(--brg-color-primary, #582fff);
}
.widget_price_filter .ui-slider .ui-slider-handle {
    background: #fff;
    border: 2px solid var(--brg-color-primary, #582fff);
    width: 16px;
    height: 16px;
    top: -6px;
    border-radius: 50%;
    outline: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.widget_price_filter .price_slider_wrapper .price_slider {
    background: #e5e5e5;
    height: 4px;
    border-radius: 2px;
}
.widget_price_filter .price_slider_amount .button {
    padding: 8px 16px !important;
    font-size: 0.85rem !important;
    border-radius: 8px !important;
}
.woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}
.woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a {
    color: #555;
    font-weight: 500;
}
.woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a:before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
    vertical-align: middle;
    transition: all 0.2s;
}
.woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.chosen a:before {
    background: var(--brg-color-primary, #582fff);
    border-color: var(--brg-color-primary, #582fff);
}
.woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.chosen a {
    color: var(--brg-color-primary, #582fff);
    font-weight: 700;
}
.woocommerce-widget-layered-nav-list .count {
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    color: #666;
}

/* ---------- Mini Cart Drawer ---------- */
.brg-mini-cart {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    justify-content: flex-end;
    visibility: hidden;
    transition: visibility 0.4s;
}
.brg-mini-cart.cart-open {
    visibility: visible;
}
.brg-mini-cart-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.4s;
    cursor: pointer;
}
.brg-mini-cart.cart-open .brg-mini-cart-overlay {
    opacity: 1;
}
.brg-mini-cart-drawer {
    position: relative;
    width: 400px;
    max-width: 100%;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
}
.brg-mini-cart.cart-open .brg-mini-cart-drawer {
    transform: translateX(0);
}
.brg-mini-cart-header {
    padding: 24px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brg-mini-cart-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
}
.brg-mini-cart-close {
    background: #f5f5f5;
    border: none;
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 0.2s;
}
.brg-mini-cart-close:hover { background: #e5e5e5; }

.brg-mini-cart-content {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}
.brg-mini-cart-content .widget_shopping_cart_content {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.brg-mini-cart-content ul.cart_list {
    flex: 1;
    margin: 0; padding: 0; list-style: none;
}
.brg-mini-cart-content ul.cart_list li {
    display: flex; gap: 16px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #f0f0f0;
}
.brg-mini-cart-content ul.cart_list li img {
    width: 70px; height: 70px; border-radius: 8px; object-fit: cover;
}
.brg-mini-cart-content .woocommerce-mini-cart__total {
    border-top: 2px solid #eee;
    padding-top: 20px;
    font-size: 1.1rem; font-weight: 700;
}
.brg-mini-cart-content .woocommerce-mini-cart__buttons {
    display: flex; flex-direction: column; gap: 10px; margin-top: 20px;
}
.brg-mini-cart-content .woocommerce-mini-cart__buttons .button {
    width: 100%; text-align: center; border-radius: 8px !important; padding: 14px !important;
}
.brg-mini-cart-content .woocommerce-mini-cart__buttons .checkout {
    background: var(--brg-color-primary, #582fff) !important; color: #fff !important;
}

/* Free Shipping Bar */
.brg-free-shipping-bar {
    background: #f8f8f8;
    padding: 16px;
    border-radius: 12px;
    margin: 16px 0;
    text-align: center;
}
.brg-fs-message {
    font-size: 0.85rem;
    font-weight: 700;
    color: #444;
    margin: 0 0 10px 0;
}
.brg-fs-message span.woocommerce-Price-amount {
    color: var(--brg-color-primary, #582fff);
}
.brg-fs-progress {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
}
.brg-fs-progress span {
    display: block;
    height: 100%;
    background: var(--brg-color-primary, #582fff);
    border-radius: 3px;
    transition: width 0.4s ease;
}

/* ---------- Sales Notification Popup ---------- */

/* Live Search Results */
.brg-live-search-results {
    list-style: none; padding: 0; margin: 20px 0 0;
    text-align: left;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}
.brg-live-search-results li {
    margin: 0;
    border-bottom: 1px solid #f5f5f5;
}
.brg-live-search-results li a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    transition: background 0.2s;
}
.brg-live-search-results li a:hover {
    background: #fafafa;
}
.brg-live-search-results .ls-img img {
    width: 44px; height: 44px; border-radius: 6px; object-fit: cover;
}
.brg-live-search-results .ls-info {
    display: flex; flex-direction: column; gap: 4px;
}
.brg-live-search-results .ls-title {
    font-size: 0.95rem; font-weight: 600; color: #222;
}
.brg-live-search-results .ls-price {
    font-size: 0.85rem; font-weight: 700; color: var(--brg-color-primary, #582fff);
}
.brg-ls-view-all {
    display: block; padding: 12px; text-align: center;
    background: #fafafa; color: var(--brg-color-primary, #582fff);
    font-weight: 700; font-size: 0.9rem;
}
.brg-ls-no-results {
    margin-top: 20px; padding: 20px; text-align: center; color: #888;
}

/* ---------- Login / Register Modal ---------- */
.brg-login-content .u-columns {
    display: flex; flex-direction: column; gap: 30px;
}
.brg-login-content .u-column1,
.brg-login-content .u-column2 {
    width: 100%;
}
.brg-login-content form {
    border: none; padding: 0; margin: 0; border-radius: 0;
}
.brg-login-content .woocommerce-form-login p.form-row,
.brg-login-content .woocommerce-form-register p.form-row {
    margin-bottom: 16px;
}
.brg-login-content input.input-text {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    background: #fafafa;
    transition: all 0.2s;
}
.brg-login-content input.input-text:focus {
    border-color: var(--brg-color-primary, #582fff);
    background: #fff; outline: none;
    box-shadow: 0 0 0 4px rgba(88,47,255,0.08);
}
.brg-login-content button.button {
    width: 100%; padding: 16px !important; border-radius: 12px !important; font-size: 1.05rem !important; margin-top: 10px;
}

/* ---------- Frequently Bought Together ---------- */
.brg-bought-together {
    margin: 30px 0;
    padding: 20px;
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
}
.brg-bt-title {
    font-size: 1rem;
    font-weight: 800;
    margin-top: 0; margin-bottom: 16px;
}
.brg-bt-items {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.brg-bt-item {
    position: relative;
    display: flex; align-items: center;
}
.brg-bt-img img {
    width: 60px; height: 60px; border-radius: 8px; object-fit: cover; border: 1px solid #eee;
}
.brg-bt-plus {
    margin-left: 16px; font-size: 1.2rem; font-weight: 700; color: #ccc;
}
.brg-bt-action {
    margin-left: auto;
    text-align: right;
}
.brg-bt-total {
    font-size: 0.9rem; color: #666; margin-bottom: 8px;
}
.brg-bt-total strong {
    font-size: 1.1rem; color: var(--brg-color-primary, #582fff);
}
.brg-bt-add-btn {
    padding: 8px 16px !important; border-radius: 8px !important; font-size: 0.85rem !important;
}
@media (max-width: 600px) {
    .brg-bt-action { margin-left: 0; width: 100%; text-align: left; margin-top: 16px; }
}

/* ---------- Recently Viewed ---------- */
.brg-recently-viewed-wrap {
    margin: 40px 0;
}

/* ---------- Variation Swatches ---------- */
.brg-swatches-wrap {
    display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px;
}
.brg-swatch {
    padding: 8px 16px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s;
    user-select: none;
    -webkit-user-select: none;
}
.brg-swatch:hover {
    border-color: #ccc;
}
.brg-swatch.selected {
    border-color: var(--brg-color-primary, #582fff);
    color: var(--brg-color-primary, #582fff);
    background: rgba(88,47,255,0.05);
}

/* ---------- Add to Cart Success Animation ---------- */
.brg-success-btn {
    background: #2ecc71 !important; /* Green */
    color: #fff !important;
}
.brg-check-anim {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: brg-draw-check 0.4s ease forwards;
    vertical-align: middle;
}
@keyframes brg-draw-check {
    to { stroke-dashoffset: 0; }
}

/* ---------- Contact Page ---------- */
.brg-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: -60px; /* Overlap with hero */
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
}
.brg-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.info-card {
    background: var(--brg-card-bg);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--brg-shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid var(--brg-border);
}
.info-icon {
    width: 54px;
    height: 54px;
    background: rgba(88,47,255,0.1);
    color: var(--brg-color-primary, #582fff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.info-text h3 { font-size: 1.1rem; font-weight: 700; margin: 0 0 4px; }
.info-text p { margin: 0; color: #666; font-size: 0.95rem; }

.brg-form-card {
    background: var(--brg-card-bg);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px var(--brg-shadow);
    border: 1px solid var(--brg-border);
}
.brg-form-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 30px; }
.brg-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.brg-contact-form .form-group { margin-bottom: 20px; }
.brg-contact-form label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 0.9rem; }
.brg-contact-form input, .brg-contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--brg-border);
    border-radius: 12px;
    background: var(--brg-bg);
    color: var(--brg-text);
    transition: border-color 0.3s;
}
.brg-contact-form input:focus, .brg-contact-form textarea:focus {
    border-color: var(--brg-color-primary, #582fff);
    outline: none;
}

.brg-map-section { padding-bottom: 80px; }
.brg-map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--brg-border);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-weight: 600;
}

@media (max-width: 900px) {
    .brg-contact-wrapper { grid-template-columns: 1fr; margin-top: 20px; }
    .brg-contact-form .form-row { grid-template-columns: 1fr; }
    .brg-form-card { padding: 30px; }
}

/* ---------- Skeleton Screens ---------- */
.brg-skeleton {
    background: linear-gradient(90deg, var(--brg-border) 25%, var(--brg-bg) 50%, var(--brg-border) 75%);
    background-size: 200% 100%;
    animation: brg-skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

@keyframes brg-skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.ls-skeleton-item {
    display: flex;
    gap: 16px;
    padding: 12px 20px;
}
.ls-skeleton-img { width: 44px; height: 44px; }
.ls-skeleton-text { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.ls-skeleton-line { height: 12px; width: 80%; }
.ls-skeleton-line-sm { height: 10px; width: 40%; }

/* ---------- Mobile Floating Cart ---------- */
.brg-mobile-floating-cart {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--brg-card-bg);
    padding: 12px 20px;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid var(--brg-border);
}
.brg-mobile-floating-cart.visible { transform: translateY(0); }
.brg-mfc-info { display: flex; align-items: center; gap: 12px; max-width: 60%; }
.brg-mfc-img img { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; }
.brg-mfc-text { display: flex; flex-direction: column; overflow: hidden; }
.brg-mfc-title { font-size: 0.85rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brg-mfc-price { font-size: 0.8rem; color: var(--brg-color-primary, #582fff); font-weight: 700; }
.brg-mfc-btn { padding: 10px 20px !important; font-size: 0.85rem !important; border-radius: 10px !important; }

@media (min-width: 769px) { .brg-mobile-floating-cart { display: none; } }

/* ---------- Product Video Support ---------- */
.brg-product-video-wrap {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}
.brg-product-video-wrap iframe, .brg-product-video-wrap video {
    width: 100%; height: 100%; border: none;
}

/* ---------- Micro-Interactions & Refinements ---------- */
.brg-btn-primary {
    position: relative;
    overflow: hidden;
}
.brg-btn-primary::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}
.brg-btn-primary:hover::after { opacity: 1; }

.brg-load-more {
    box-shadow: 0 4px 15px rgba(88,47,255,0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.brg-load-more:hover {
    box-shadow: 0 8px 25px rgba(88,47,255,0.4);
    transform: translateY(-3px) scale(1.02);
}

.brg-mobile-floating-cart.visible .brg-mfc-btn {
    animation: brg-pulse 2s infinite;
}

@keyframes brg-pulse {
    0% { box-shadow: 0 0 0 0 rgba(88,47,255,0.4); }
    70% { box-shadow: 0 0 0 10px rgba(88,47,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(88,47,255,0); }
}

/* Product Card Refinement */
ul.products li.product:hover {
    border-color: var(--brg-color-primary, #582fff) !important;
    box-shadow: 0 20px 40px var(--brg-shadow) !important;
}

/* ---------- v6: Sale Badge ---------- */
.onsale {
    background: #e74c3c !important;
    color: #fff !important;
    font-weight: 800 !important;
    font-size: 0.8rem !important;
    border-radius: 8px !important;
    padding: 6px 12px !important;
    top: 15px !important; left: 15px !important;
    box-shadow: 0 4px 10px rgba(231,76,60,0.3);
}

/* ---------- v6: Checkout Progress ---------- */
.brg-checkout-progress {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    position: relative;
}
.brg-checkout-progress::before {
    content: '';
    position: absolute;
    top: 16px; left: 50%;
    width: 200px; height: 2px;
    background: #eee;
    transform: translateX(-50%);
    z-index: 1;
}
.brg-checkout-progress .step {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    position: relative; z-index: 2;
}
.brg-checkout-progress .step-num {
    width: 32px; height: 32px;
    background: #fff;
    border: 2px solid #eee;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.85rem; color: #aaa;
    transition: all 0.3s;
}
.brg-checkout-progress .step.active .step-num {
    background: var(--brg-color-primary, #582fff);
    border-color: var(--brg-color-primary, #582fff);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(88,47,255,0.1);
}
.brg-checkout-progress .step-label {
    font-size: 0.85rem; font-weight: 700; color: #aaa;
}
.brg-checkout-progress .step.active .step-label {
    color: var(--brg-color-primary, #582fff);
}

/* ---------- v6: Desktop Sticky Bar ---------- */
.brg-desktop-sticky-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--brg-header-bg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    z-index: 1000;
    padding: 12px 0;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
}
@media (min-width: 769px) { .brg-desktop-sticky-bar { display: block; } }
.brg-desktop-sticky-bar.visible { transform: translateY(0); }
.brg-dsb-inner { display: flex; align-items: center; justify-content: space-between; }
.brg-dsb-info { display: flex; align-items: center; gap: 15px; }
.brg-dsb-img img { width: 50px; height: 50px; border-radius: 8px; object-fit: cover; }
.brg-dsb-title { font-weight: 800; font-size: 1.1rem; }
.brg-dsb-price { color: var(--brg-color-primary, #582fff); font-weight: 700; margin-left: 10px; }

/* ---------- v6: Social Share ---------- */
.brg-social-share {
    display: flex; align-items: center; gap: 12px; margin: 20px 0;
}
.share-title { font-size: 0.9rem; font-weight: 700; color: #888; }
.brg-social-share a {
    width: 32px; height: 32px;
    background: var(--brg-bg);
    border: 1px solid var(--brg-border);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--brg-text);
    transition: all 0.3s;
}
.brg-social-share a:hover {
    background: var(--brg-color-primary, #582fff);
    color: #fff;
    border-color: var(--brg-color-primary, #582fff);
    transform: translateY(-2px);
}

/* ---------- v6: Estimated Delivery ---------- */
.brg-est-delivery {
    display: flex; align-items: center; gap: 10px;
    background: rgba(46,204,113,0.05);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px dashed #2ecc71;
    margin-bottom: 20px;
    font-size: 0.9rem;
}
.brg-est-delivery svg { color: #2ecc71; }

/* ---------- v7: Buy Now Button ---------- */
.brg-buy-now {
    margin-left: 10px;
    padding: 12px 30px !important;
    font-weight: 700 !important;
}

/* ---------- v7: Newsletter Modal ---------- */
@media (max-width: 768px) {
    .newsletter-img { display: none; }
    .newsletter-content { grid-template-columns: 1fr !important; }
    .newsletter-form-area { padding: 30px !important; }
}
.newsletter-content {
    box-shadow: 0 30px 100px rgba(0,0,0,0.3) !important;
}

/* ---------- v8: Countdown Timer ---------- */
.brg-countdown-wrap {
    background: #fff5f5;
    border: 1px solid #feb2b2;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
}
.countdown-label { font-size: 0.8rem; font-weight: 800; color: #c53030; margin-bottom: 8px; text-transform: uppercase; }
.brg-countdown { display: flex; justify-content: center; gap: 10px; }
.cd-item { display: flex; flex-direction: column; background: #fff; padding: 5px 10px; border-radius: 8px; min-width: 50px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.cd-item span { font-size: 1.2rem; font-weight: 900; color: #c53030; line-height: 1; }
.cd-item small { font-size: 0.6rem; color: #999; text-transform: uppercase; margin-top: 2px; }

/* Dark Mode Fixes for CD */
[data-theme="dark"] .brg-countdown-wrap { background: #2d1a1a; border-color: #5a2a2a; }
[data-theme="dark"] .cd-item { background: #1a1a1a; color: #fff; }


/* ---------- v8: Countdown Timer ---------- */
.brg-countdown-wrap {
    background: #fff5f5;
    border: 1px solid #feb2b2;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
}
.countdown-label { font-size: 0.8rem; font-weight: 800; color: #c53030; margin-bottom: 8px; text-transform: uppercase; }
.brg-countdown { display: flex; justify-content: center; gap: 10px; }
.cd-item { display: flex; flex-direction: column; background: #fff; padding: 5px 10px; border-radius: 8px; min-width: 50px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.cd-item span { font-size: 1.2rem; font-weight: 900; color: #c53030; line-height: 1; }
.cd-item small { font-size: 0.6rem; color: #999; text-transform: uppercase; margin-top: 2px; }

/* Dark Mode Fixes for CD */
[data-theme="dark"] .brg-countdown-wrap { background: #2d1a1a; border-color: #5a2a2a; }
[data-theme="dark"] .cd-item { background: #1a1a1a; color: #fff; }


/* ---------- v7: Premium Product Reviews ---------- */
#reviews h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 30px; }
ol.commentlist { list-style: none; padding: 0; }
ol.commentlist li.review {
    background: var(--brg-card-bg);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--brg-border);
    margin-bottom: 20px;
    box-shadow: 0 5px 15px var(--brg-shadow);
}
ol.commentlist li .avatar {
    border-radius: 12px;
    width: 60px; height: 60px;
}
.comment-text { margin-left: 80px; }
.comment-text .star-rating { float: right; color: #f1c40f; }
.comment-text .meta { font-weight: 700; color: var(--brg-text); margin-bottom: 10px; display: block; }
.comment-text .description { line-height: 1.6; color: #555; }

/* Review Form Styling */
#review_form_wrapper {
    background: var(--brg-card-bg);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--brg-border);
}
.comment-form-rating label { display: block; margin-bottom: 10px; font-weight: 700; }
.comment-form input, .comment-form textarea {
    width: 100%; padding: 14px; border: 2px solid var(--brg-border); border-radius: 12px;
}

/* ---------- v7: Gift Wrap UI ---------- */
.brg-gift-wrap-wrap {
    background: rgba(88,47,255,0.05);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px dashed var(--brg-color-primary, #582fff);
    margin: 20px 0;
    display: flex; align-items: center; gap: 12px;
    cursor: pointer;
}
.brg-gift-wrap-wrap input { width: 18px; height: 18px; cursor: pointer; }
.brg-gift-wrap-label { font-weight: 700; font-size: 0.9rem; cursor: pointer; }
.brg-gift-wrap-price { color: var(--brg-color-primary, #582fff); font-size: 0.85rem; margin-left: auto; }

/* ---------- v8: Mobile Sticky Footer Bar ---------- */
.brg-mobile-footer-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--brg-card-bg);
    height: 70px;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 10px 0;
    border-top: 1px solid var(--brg-border);
}
@media (max-width: 768px) {
    .brg-mobile-footer-bar { display: flex; justify-content: space-around; align-items: center; }
    body { padding-bottom: 70px; } /* Prevent footer overlap */
}
.mfb-item {
    display: flex; flex-direction: column; align-items: center;
    color: #666; text-decoration: none; font-size: 0.7rem; font-weight: 700;
    position: relative;
}
.mfb-item svg { margin-bottom: 4px; transition: 0.3s; }
.mfb-item:hover { color: var(--brg-color-primary, #582fff); }
.mfb-item:hover svg { transform: translateY(-3px); }
.mfb-item .cart-count {
    position: absolute; top: -5px; right: 2px;
    background: var(--brg-color-primary, #582fff);
    color: #fff; font-size: 0.6rem;
    width: 16px; height: 16px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* ---------- v8: Smart Related Products UI ---------- */
.related.products h2 { font-size: 1.5rem; font-weight: 800; margin: 60px 0 30px; }
.related.products ul.products { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); 
    gap: 30px; 
}
.related.products .product {
    background: var(--brg-card-bg);
    border-radius: 20px;
    padding: 15px;
    transition: 0.4s;
    border: 1px solid var(--brg-border);
}
.related.products .product:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--brg-shadow);
}

/* ---------- v9: Social Proof Notification ---------- */
.brg-social-proof {
    position: fixed;
    bottom: 20px; left: 20px;
    background: var(--brg-card-bg);
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex; align-items: center; gap: 15px;
    max-width: 320px;
    z-index: 10000;
    transform: translateX(-120%);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border: 1px solid var(--brg-border);
}
.brg-social-proof.visible { transform: translateX(0); }
.sp-img { width: 50px; height: 50px; border-radius: 10px; object-fit: cover; }
.sp-content { flex: 1; }
.sp-text { font-size: 0.8rem; line-height: 1.4; color: var(--brg-text); }
.sp-text strong { color: var(--brg-color-primary, #582fff); }
.sp-time { font-size: 0.65rem; color: #999; margin-top: 4px; display: block; }
.sp-close { font-size: 1.2rem; cursor: pointer; opacity: 0.5; line-height: 1; }
.sp-close:hover { opacity: 1; }

/* ---------- v9: Advanced AJAX Sidebar Filters ---------- */
.brg-filter-sidebar {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 350px;
    background: var(--brg-card-bg);
    z-index: 2000;
    padding: 40px;
    box-shadow: -20px 0 50px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}
.brg-filter-sidebar.visible { transform: translateX(0); }
.filter-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.filter-header h3 { font-size: 1.5rem; font-weight: 800; margin: 0; }
.filter-close { font-size: 1.5rem; cursor: pointer; }

.filter-group { margin-bottom: 35px; }
.filter-title { font-size: 0.9rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; display: block; color: var(--brg-color-primary, #582fff); }
.filter-list { list-style: none; padding: 0; }
.filter-item { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; cursor: pointer; }
.filter-item input { width: 18px; height: 18px; border-radius: 4px; border: 2px solid var(--brg-border); }
.filter-item label { font-size: 0.95rem; cursor: pointer; }
.filter-count { font-size: 0.75rem; color: #999; margin-left: auto; }

/* Price Slider Mockup */
.price-slider-mock {
    height: 6px; background: var(--brg-border); border-radius: 3px; position: relative; margin: 30px 0 20px;
}
.price-slider-handle {
    width: 18px; height: 18px; background: var(--brg-color-primary, #582fff);
    border-radius: 50%; position: absolute; top: 50%; transform: translateY(-50%); cursor: pointer;
}

@media (max-width: 480px) {
    .brg-filter-sidebar { width: 100%; }
}

/* ---------- v9: Product Swatches UI ---------- */
.variations td.value { display: block; }
.variations select { display: none !important; } /* Hide default select */

.brg-swatches { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.brg-swatch {
    width: 35px; height: 35px; border-radius: 50%; border: 2px solid var(--brg-border);
    cursor: pointer; transition: 0.3s; position: relative;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.brg-swatch:hover { border-color: var(--brg-color-primary, #582fff); }
.brg-swatch.active { border-color: var(--brg-color-primary, #582fff); box-shadow: 0 0 0 2px var(--brg-color-primary, #582fff); }
.brg-swatch.active::after {
    content: '✓'; color: #fff; font-size: 0.8rem; font-weight: 900;
    text-shadow: 0 0 3px rgba(0,0,0,0.5);
}

.brg-swatch-btn {
    width: auto; min-width: 45px; height: 35px; border-radius: 8px; border: 2px solid var(--brg-border);
    padding: 0 10px; font-size: 0.8rem; font-weight: 700;
}
.brg-swatch-btn.active { background: var(--brg-color-primary, #582fff); color: #fff; border-color: var(--brg-color-primary, #582fff); }
.brg-swatch-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- v9: Accessibility & Focus States ---------- */
:focus-visible {
    outline: 3px solid var(--brg-color-primary, #582fff);
    outline-offset: 4px;
}
.screen-reader-text {
    border: 0; clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%); height: 1px; margin: -1px;
    overflow: hidden; padding: 0; position: absolute;
    width: 1px; word-wrap: normal !important;
}
.brg-btn:focus { box-shadow: 0 0 0 4px rgba(88,47,255,0.2); }
input:focus, textarea:focus, select:focus {
    border-color: var(--brg-color-primary, #582fff) !important;
    box-shadow: 0 0 0 3px rgba(88,47,255,0.1) !important;
}

/* Ensure adequate contrast for text */
.sp-text, .filter-item label, .sc-title { color: var(--brg-text); }
[data-theme="dark"] .sp-text, [data-theme="dark"] .filter-item label { color: #eee; }

/* ---------- v9: Multi-Step Checkout UI ---------- */
.brg-multi-step-checkout .col2-set { display: none; } /* Hide default side-by-side */
.brg-multi-step-checkout .brg-checkout-step-content {
    background: var(--brg-card-bg);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--brg-border);
    margin-bottom: 30px;
}
.brg-checkout-nav {
    display: flex; gap: 20px; margin-bottom: 40px; justify-content: center;
}
.brg-checkout-nav-item {
    font-size: 0.9rem; font-weight: 800; color: #ccc;
    padding-bottom: 10px; border-bottom: 3px solid transparent;
    cursor: pointer; transition: 0.3s;
}
.brg-checkout-nav-item.active {
    color: var(--brg-color-primary, #582fff);
    border-bottom-color: var(--brg-color-primary, #582fff);
}
.brg-checkout-footer {
    display: flex; justify-content: space-between; align-items: center; margin-top: 40px;
}
.brg-checkout-prev { color: #666; font-weight: 700; cursor: pointer; }
.brg-checkout-next {
    background: var(--brg-color-primary, #582fff);
    color: #fff; padding: 15px 40px; border-radius: 12px; font-weight: 700; cursor: pointer;
}

/* ---------- v10: Advanced My Account UI ---------- */
.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 250px; float: left;
    background: var(--brg-card-bg);
    border-radius: 20px; padding: 30px;
    border: 1px solid var(--brg-border);
}
.woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; margin: 0; }
.woocommerce-MyAccount-navigation li { margin-bottom: 10px; }
.woocommerce-MyAccount-navigation li a {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 20px; border-radius: 10px;
    color: #666; font-weight: 700; text-decoration: none;
    transition: 0.3s;
}
.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li a:hover {
    background: var(--brg-color-primary, #582fff); color: #fff;
}

.woocommerce-MyAccount-content {
    margin-left: 280px;
    background: var(--brg-card-bg);
    padding: 40px; border-radius: 24px;
    border: 1px solid var(--brg-border);
}
.woocommerce-MyAccount-content h3 { margin-top: 0; font-weight: 800; }

/* ---------- v10: Advanced Search with Thumbnails ---------- */
.brg-search-results {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.search-result-item {
    display: flex; align-items: center; gap: 15px;
    background: var(--brg-card-bg);
    padding: 15px; border-radius: 16px;
    border: 1px solid var(--brg-border);
    transition: 0.3s; cursor: pointer;
}
.search-result-item:hover { border-color: var(--brg-color-primary, #582fff); transform: scale(1.02); }
.sr-img { width: 60px; height: 60px; border-radius: 10px; object-fit: cover; }
.sr-info { flex: 1; }
.sr-title { font-size: 0.95rem; font-weight: 700; display: block; margin-bottom: 4px; }
.sr-price { font-size: 0.85rem; color: var(--brg-color-primary, #582fff); font-weight: 800; }

/* ---------- v10: Product Comparison UI ---------- */
.brg-compare-bar {
    position: fixed;
    bottom: 20px; left: 50%;
    transform: translateX(-50%) translateY(150%);
    background: var(--brg-card-bg);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    z-index: 10001;
    display: flex; align-items: center; gap: 20px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--brg-border);
}
.brg-compare-bar.visible { transform: translateX(-50%) translateY(0); }
.compare-items { display: flex; gap: 10px; }
.compare-item { width: 45px; height: 45px; border-radius: 50%; overflow: hidden; border: 2px solid var(--brg-color-primary, #582fff); position: relative; }
.compare-item img { width: 100%; height: 100%; object-fit: cover; }
.compare-item .remove-compare {
    position: absolute; top: -5px; right: -5px; background: red; color: #fff;
    width: 15px; height: 15px; border-radius: 50%; font-size: 10px;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.compare-btn {
    background: var(--brg-color-primary, #582fff);
    color: #fff; padding: 10px 25px; border-radius: 30px;
    font-size: 0.85rem; font-weight: 800; text-decoration: none;
}

@media (max-width: 768px) {
    .brg-compare-bar { width: 90%; padding: 10px 20px; }
}

/* ---------- v10: Store Locator UI ---------- */
.store-item { transition: 0.3s; }
.store-item:hover { transform: scale(1.02); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.store-item.active { box-shadow: 0 10px 30px rgba(88,47,255,0.1); }

@media (max-width: 991px) {
    .brg-store-layout { grid-template-columns: 1fr !important; }
    .store-sidebar { border-right: none !important; border-bottom: 1px solid var(--brg-border); }
}

/* ---------- v11: Visual Mega Menu ---------- */
.main-navigation ul li.brg-mega-menu { position: static; }
.main-navigation ul li.brg-mega-menu .sub-menu {
    left: 0; right: 0; width: 100%;
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 30px;
    padding: 40px !important;
    background: var(--brg-card-bg);
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
    border-top: 1px solid var(--brg-border);
}
.mega-menu-col h4 { font-size: 0.9rem; font-weight: 800; text-transform: uppercase; margin-bottom: 20px; color: var(--brg-color-primary, #582fff); }
.mega-menu-col ul { display: block !important; box-shadow: none !important; position: static !important; padding: 0 !important; }
.mega-menu-col ul li { margin-bottom: 8px; }

.mega-promo-card {
    background: var(--brg-bg);
    border-radius: 20px;
    padding: 25px;
    display: flex; flex-direction: column; gap: 15px;
    border: 1px solid var(--brg-border);
}
.mega-promo-img { width: 100%; height: 120px; border-radius: 12px; object-fit: cover; }
.mega-promo-title { font-weight: 800; font-size: 1.1rem; }
.mega-promo-btn { font-size: 0.8rem; font-weight: 700; color: var(--brg-color-primary, #582fff); text-decoration: none; }

/* ---------- v11: Instagram Shoppable Feed ---------- */
.brg-insta-feed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 40px 0;
}
.insta-item {
    aspect-ratio: 1; position: relative; overflow: hidden; border-radius: 16px; cursor: pointer;
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.insta-overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,0.4);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.3s; color: #fff;
}
.insta-item:hover img { transform: scale(1.1); }
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-tag {
    position: absolute; bottom: 15px; left: 15px;
    background: #fff; color: #000; padding: 5px 10px;
    border-radius: 5px; font-size: 0.7rem; font-weight: 800;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ---------- v11: Membership/Subscription UI ---------- */
.brg-membership-card {
    background: var(--brg-card-bg);
    border: 2px solid var(--brg-border);
    border-radius: 30px; padding: 40px;
    text-align: center; transition: 0.3s;
}
.brg-membership-card.featured { border-color: var(--brg-color-primary, #582fff); transform: scale(1.05); }
.membership-price { font-size: 2.5rem; font-weight: 900; margin: 20px 0; display: block; }
.membership-price span { font-size: 1rem; color: #999; }
.membership-features { list-style: none; padding: 0; margin: 30px 0; }
.membership-features li { margin-bottom: 12px; font-weight: 600; color: #666; }

/* ---------- v11: Pre-order System UI ---------- */
.brg-preorder-badge {
    position: absolute; top: 15px; left: 15px;
    background: #f39c12; color: #fff;
    padding: 5px 12px; border-radius: 50px;
    font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
    z-index: 10;
}
.brg-btn-preorder {
    background: #f39c12 !important; border-color: #f39c12 !important;
}
.brg-preorder-note {
    font-size: 0.8rem; color: #f39c12; font-weight: 700; margin-top: 10px; display: block;
}

/* ---------- v11: Advanced Typography Helpers ---------- */
.brg-font-display { font-family: 'Outfit', sans-serif; letter-spacing: -0.02em; }
.brg-font-mono { font-family: 'Space Mono', monospace; font-size: 0.85em; }
.text-gradient { background: var(--brg-gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* ---------- v13: Product View Counter ---------- */
.brg-view-counter {
    display: flex; align-items: center; gap: 10px;
    background: rgba(231,76,60,0.05);
    padding: 12px 15px; border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(231,76,60,0.1);
}
.view-counter-dot {
    width: 8px; height: 8px; background: #e74c3c; border-radius: 50%;
    animation: brg-blink 1.5s infinite;
}
@keyframes brg-blink { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }
.brg-view-counter span { font-size: 0.85rem; font-weight: 700; color: #e74c3c; }

/* ---------- v13: Dynamic Pricing Badges ---------- */
.brg-badge-flash {
    background: var(--brg-gradient-primary);
    color: #fff; font-size: 0.7rem; font-weight: 800;
    padding: 4px 10px; border-radius: 50px;
    text-transform: uppercase; letter-spacing: 1px;
}
.brg-badge-bogo {
    background: #2ecc71;
    color: #fff; font-size: 0.7rem; font-weight: 800;
    padding: 4px 10px; border-radius: 50px;
}

/* ---------- v13: Abandoned Cart Recovery ---------- */
.brg-cart-recovery {
    position: fixed; bottom: 30px; left: 30px;
    width: 320px; background: var(--brg-card-bg);
    padding: 25px; border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    z-index: 10003; border: 1px solid var(--brg-border);
    display: none;
}
.recovery-header { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.recovery-header h4 { margin: 0; font-size: 1rem; font-weight: 800; }
.recovery-body p { font-size: 0.8rem; color: #666; margin-bottom: 20px; }
.recovery-footer { display: flex; gap: 10px; }

/* ---------- v14: Multi-Currency UI ---------- */
.brg-currency-toggle {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.05);
    padding: 6px 12px; border-radius: 50px;
    font-size: 0.75rem; font-weight: 800; cursor: pointer;
    border: 1px solid var(--brg-border);
}
.brg-currency-toggle:hover { border-color: var(--brg-color-primary, #582fff); }

/* ---------- v14: Advanced Footer Layout ---------- */
.brg-footer-top {
    padding: 100px 0 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    border-bottom: 1px solid var(--brg-border);
}
.footer-col h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: 25px; }
.footer-col p { color: #666; font-size: 0.9rem; line-height: 1.7; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: #666; text-decoration: none; transition: 0.3s; }
.footer-col ul li a:hover { color: var(--brg-color-primary, #582fff); padding-left: 5px; }

.footer-payments { display: flex; gap: 10px; margin-top: 30px; }
.payment-icon { opacity: 0.5; transition: 0.3s; width: 40px; }
.payment-icon:hover { opacity: 1; transform: translateY(-3px); }

@media (max-width: 991px) {
    .brg-footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
    .brg-footer-top { grid-template-columns: 1fr; }
}

/* ---------- v15: Accessibility Toolbar ---------- */
.brg-acc-toolbar {
    position: fixed; top: 50%; left: 10px; transform: translateY(-50%);
    background: var(--brg-card-bg);
    border: 1px solid var(--brg-border);
    padding: 10px; border-radius: 50px;
    display: flex; flex-direction: column; gap: 15px;
    z-index: 10004; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.acc-tool { width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; cursor: pointer; border-radius: 50%; transition: 0.3s; }
.acc-tool:hover { background: var(--brg-color-primary, #582fff); color: #fff; }

/* ---------- v15: AI Recommendation UI ---------- */
.brg-ai-recommendations { margin: 80px 0; }
.ai-badge {
    background: linear-gradient(90deg, #ff00cc, #3333ff);
    color: #fff; padding: 4px 12px; border-radius: 50px;
    font-size: 0.7rem; font-weight: 800; display: inline-flex; align-items: center; gap: 5px;
    margin-bottom: 15px;
}
.brg-ai-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 30px; }

/* ---------- v15: Voice Search UI ---------- */
.search-field-wrap { position: relative; width: 100%; }
.brg-voice-search {
    position: absolute; right: 15px; top: 50%;
    transform: translateY(-50%);
    color: #999; cursor: pointer; transition: 0.3s;
    display: flex; align-items: center; justify-content: center;
}
.brg-voice-search:hover { color: var(--brg-color-primary, #582fff); transform: translateY(-50%) scale(1.2); }
.brg-voice-search.active { color: #e74c3c; animation: brg-pulse-voice 1s infinite; }
@keyframes brg-pulse-voice { 0% { transform: translateY(-50%) scale(1); } 50% { transform: translateY(-50%) scale(1.3); } 100% { transform: translateY(-50%) scale(1); } }

/* ---------- v15: Dynamic Thank You Page ---------- */
.brg-thank-you {
    text-align: center; padding: 100px 0;
}
.ty-icon {
    width: 100px; height: 100px; background: #2ecc71; color: #fff;
    border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 30px; box-shadow: 0 20px 40px rgba(46,204,113,0.2);
}
.ty-order-box {
    background: var(--brg-card-bg); padding: 40px; border-radius: 30px;
    border: 1px solid var(--brg-border); max-width: 500px; margin: 40px auto;
}

/* ---------- v16: Smart Login/Register UI ---------- */
.brg-auth-modal {
    position: fixed; inset: 0; background: rgba(0,0,0,0.8);
    display: flex; align-items: center; justify-content: center;
    z-index: 10005; visibility: hidden; opacity: 0; transition: 0.4s;
    backdrop-filter: blur(10px);
}
.brg-auth-modal.active { visibility: visible; opacity: 1; }
.auth-box {
    width: 450px; background: var(--brg-card-bg);
    padding: 50px; border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.3);
    position: relative;
}
.auth-tabs { display: flex; gap: 30px; margin-bottom: 40px; border-bottom: 1px solid var(--brg-border); }
.auth-tab { padding-bottom: 15px; font-weight: 800; cursor: pointer; color: #999; }
.auth-tab.active { color: var(--brg-color-primary, #582fff); border-bottom: 2px solid var(--brg-color-primary, #582fff); }

/* ---------- v16: Dynamic Low Stock Alert ---------- */
.brg-low-stock {
    display: flex; align-items: center; gap: 10px;
    color: #e67e22; font-weight: 800; font-size: 0.85rem;
    margin-bottom: 20px;
}
.stock-pulse {
    width: 100%; height: 10px; background: #e67e22; border-radius: 50%;
    animation: brg-blink 1.2s infinite;
}

/* ---------- v16: Brand Showcase Slider ---------- */
.brg-brand-slider {
    padding: 60px 0;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 40px;
    opacity: 0.6; grayscale: 100%;
}
.brand-item { width: 120px; transition: 0.3s; cursor: pointer; }
.brand-item:hover { opacity: 1; grayscale: 0%; transform: scale(1.1); }
.brand-item img { width: 100%; height: auto; filter: grayscale(100%); transition: 0.3s; }
.brand-item:hover img { filter: grayscale(0%); }

/* ---------- v16: Search Autocomplete Categories ---------- */
.sr-category {
    font-size: 0.7rem; color: #999; text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 2px; display: block;
}

/* ---------- v17: Dynamic Hot Deals Ticker ---------- */
.brg-ticker-bar {
    background: #000; color: #fff; padding: 10px 0;
    overflow: hidden; white-space: nowrap;
    font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px;
}
.brg-ticker-content {
    display: inline-block; padding-left: 100%;
    animation: brg-ticker 20s linear infinite;
}
@keyframes brg-ticker {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}
.ticker-item { display: inline-block; padding-right: 50px; }
.ticker-item span { color: var(--brg-color-primary, #582fff); margin-right: 10px; }

/* ---------- v17: Smart Wishlist Share UI ---------- */
.brg-wishlist-share {
    margin-top: 20px; display: flex; align-items: center; gap: 15px;
    background: var(--brg-bg); padding: 15px; border-radius: 12px;
    border: 1px dashed var(--brg-border);
}
.wishlist-link { flex: 1; font-size: 0.8rem; color: #666; overflow: hidden; text-overflow: ellipsis; }
.copy-link-btn {
    background: var(--brg-color-primary, #582fff); color: #fff;
    padding: 8px 15px; border-radius: 8px; font-size: 0.75rem; font-weight: 700;
    cursor: pointer;
}

/* ---------- v17: Product Video Showcase UI ---------- */
.brg-video-trigger {
    position: absolute; bottom: 20px; right: 20px;
    background: #fff; color: #000; width: 50px; height: 50px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); cursor: pointer; z-index: 5;
    transition: 0.3s;
}
.brg-video-trigger:hover { transform: scale(1.1); background: var(--brg-color-primary); color: #fff; }

/* ---------- v17: Interactive Size Guide UI ---------- */
.brg-size-guide-btn {
    font-size: 0.8rem; font-weight: 800; color: #999;
    text-decoration: underline; cursor: pointer; margin-bottom: 15px; display: inline-block;
}
.brg-size-guide-btn:hover { color: var(--brg-color-primary); }

.brg-modal {
    position: fixed; inset: 0; background: rgba(0,0,0,0.8);
    z-index: 10006; display: none; align-items: center; justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.brg-modal-content {
    background: var(--brg-card-bg); padding: 50px; border-radius: 40px;
    max-width: 600px; width: 90%; position: relative;
}

/* ---------- v18: Smart Product Finder UI ---------- */
.brg-finder-trigger {
    background: var(--brg-color-primary); color: #fff; padding: 15px 25px;
    border-radius: 50px; font-weight: 800; cursor: pointer; display: inline-flex;
    align-items: center; gap: 10px; margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(88,47,255,0.2); transition: 0.3s;
}
.brg-finder-trigger:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(88,47,255,0.3); }

.finder-step { display: none; }
.finder-step.active { display: block; }
.finder-options { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 25px; }
.finder-opt {
    padding: 20px; border: 2px solid var(--brg-border); border-radius: 20px;
    cursor: pointer; text-align: center; transition: 0.3s;
}
.finder-opt:hover { border-color: var(--brg-color-primary); background: rgba(88,47,255,0.05); }

/* ---------- v18: Dynamic Floating Promotions ---------- */
.brg-floating-promo {
    position: fixed; bottom: 30px; left: 30px; z-index: 10007;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 25px; border-radius: 30px; width: 300px;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transform: translateX(-120%); transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.brg-floating-promo.show { transform: translateX(0); }
.promo-badge {
    background: #ff3b30; color: #fff; font-size: 0.65rem; font-weight: 900;
    padding: 4px 10px; border-radius: 20px; text-transform: uppercase;
}

















@media (max-width: 768px) {
    .woocommerce-MyAccount-navigation { width: 100%; float: none; margin-bottom: 30px; }
    .woocommerce-MyAccount-content { margin-left: 0; }
    .brg-social-proof { bottom: 90px; left: 10px; right: 10px; max-width: none; }
}









/* ---------- v19: Multi-Language Geo-Detection UI ---------- */
.brg-geo-bar {
    background: var(--brg-color-primary); color: #fff; padding: 12px;
    text-align: center; font-size: 0.85rem; font-weight: 700;
    display: none; position: relative; z-index: 10008;
}
.brg-geo-bar.show { display: block; animation: slideDown 0.5s ease; }
.geo-btn {
    background: #fff; color: var(--brg-color-primary);
    padding: 4px 12px; border-radius: 20px; margin-left: 10px;
    cursor: pointer; font-size: 0.75rem;
}

/* ---------- v19: Smart Inventory Prediction ---------- */
.brg-inventory-prediction {
    background: rgba(255,149,0,0.1); color: #ff9500;
    padding: 12px 20px; border-radius: 12px; font-size: 0.85rem;
    font-weight: 800; margin-bottom: 20px; display: inline-flex; align-items: center; gap: 8px;
}
.prediction-pulse {
    width: 8px; height: 8px; background: #ff9500; border-radius: 50%;
    animation: brg-pulse 1.5s infinite;
}

/* ---------- v19: Premium 404 Page ---------- */
.error404 .site-main {
    min-height: 70vh; display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 100px 20px;
}
.error-404-content h1 { font-size: 8rem; font-weight: 900; margin: 0; line-height: 1; letter-spacing: -5px; color: var(--brg-color-primary); opacity: 0.2; }
.error-404-content h2 { font-size: 2.5rem; font-weight: 900; margin: -40px 0 20px; }
.error-404-content p { color: #666; max-width: 500px; margin: 0 auto 40px; font-size: 1.1rem; }


/* ---------- v21: Spin-to-Win Gamification ---------- */
.brg-wheel-modal {
    position: fixed; inset: 0; background: rgba(0,0,0,0.9);
    z-index: 20000; display: none; align-items: center; justify-content: center;
    backdrop-filter: blur(20px);
}
.brg-wheel-wrap {
    width: 400px; height: 400px; position: relative; border-radius: 50%;
    border: 10px solid #fff; box-shadow: 0 0 50px rgba(88,47,255,0.5);
    background: conic-gradient(from 0deg, #582fff 0deg 45deg, #2ecc71 45deg 90deg, #ff9500 90deg 135deg, #e74c3c 135deg 180deg, #582fff 180deg 225deg, #2ecc71 225deg 270deg, #ff9500 270deg 315deg, #e74c3c 315deg 360deg);
    transition: transform 4s cubic-bezier(0.1, 0.7, 0.1, 1);
}
.wheel-pointer {
    position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
    width: 0; height: 0; border-left: 20px solid transparent; border-right: 20px solid transparent;
    border-top: 40px solid #fff; z-index: 2;
}

/* ---------- v21: Dynamic Buy Together UI ---------- */
.brg-buy-together {
    margin-top: 30px; padding: 25px; background: rgba(0,0,0,0.02); border-radius: 20px;
    border: 1px dashed var(--brg-border);
}
.bt-items { display: flex; align-items: center; gap: 15px; margin: 20px 0; }
.bt-plus { font-size: 1.5rem; font-weight: 300; color: #999; }
.bt-total { font-weight: 900; color: var(--brg-color-primary); font-size: 1.2rem; }

/* ---------- v21: Floating WhatsApp Chat ---------- */
.brg-whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; z-index: 10009;
    width: 60px; height: 60px; background: #25d366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 30px rgba(37,211,102,0.3); cursor: pointer;
    transition: 0.3s;
}
.brg-whatsapp-float:hover { transform: scale(1.1); }


/* ---------- v22: Video Testimonials UI ---------- */
.brg-video-testimonials {
    margin-top: 60px; padding: 40px 0; border-top: 1px solid var(--brg-border);
}
.vt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 15px; }
.vt-card {
    aspect-ratio: 9/16; background: #000; border-radius: 15px; overflow: hidden;
    position: relative; cursor: pointer; transition: 0.3s;
}
.vt-card:hover { transform: translateY(-5px); }
.vt-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.3); color: #fff; }

/* ---------- v22: Google Reviews Badge ---------- */
.brg-google-badge {
    position: fixed; right: -150px; top: 50%; transform: translateY(-50%);
    background: #fff; padding: 15px; border-radius: 15px 0 0 15px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 10px;
    z-index: 10008; transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.brg-google-badge.show { right: 0; }
.gb-stars { color: #f1c40f; font-weight: 800; }

/* ---------- v22: Trust Badges ---------- */
.footer-trust-badges {
    display: flex; gap: 20px; filter: grayscale(1); opacity: 0.5; transition: 0.3s;
}
.footer-trust-badges:hover { filter: grayscale(0); opacity: 1; }


/* ---------- v23: Visual Swatches UI ---------- */
.brg-swatches { display: flex; gap: 10px; margin-bottom: 25px; }
.swatch-item {
    width: 35px; height: 35px; border-radius: 50%; border: 2px solid var(--brg-border);
    cursor: pointer; transition: 0.2s; position: relative;
}
.swatch-item.active { border-color: var(--brg-color-primary); box-shadow: 0 0 0 2px var(--brg-color-primary); }
.swatch-item.size { border-radius: 8px; width: 45px; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 800; }

/* ---------- v23: Sold in 24h Label ---------- */
.brg-sold-label {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(231,76,60,0.08); color: #e74c3c;
    padding: 6px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 800;
    margin-bottom: 15px;
}
.sold-fire { animation: brg-pulse 1.2s infinite; }

/* ---------- v23: Stock Progress Bar ---------- */
.brg-stock-progress { margin: 20px 0; }
.stock-bar-bg { height: 6px; background: #eee; border-radius: 3px; overflow: hidden; margin-top: 8px; }
.stock-bar-fill { height: 100%; background: linear-gradient(90deg, #e74c3c, #ff9500); width: 25%; }


/* ---------- v24: Mobile App-Like Enhancements ---------- */
.brg-pwa-prompt {
    position: fixed; bottom: 100px; left: 20px; right: 20px;
    background: #fff; padding: 20px; border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2); z-index: 10011;
    display: none; align-items: center; gap: 15px;
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.brg-pwa-prompt.show { display: flex; }
.pwa-icon { width: 50px; height: 50px; border-radius: 12px; background: var(--brg-color-primary); }

.brg-pull-refresh {
    position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
    width: 30px; height: 30px; border: 3px solid rgba(88,47,255,0.2);
    border-top-color: var(--brg-color-primary); border-radius: 50%;
    animation: brg-spin 0.8s linear infinite; display: none;
}

@media (max-width: 768px) {
    .brg-mobile-footer-bar {
        background: rgba(255,255,255,0.85); backdrop-filter: blur(20px);
        padding: 10px 0 25px; border-top: 1px solid rgba(0,0,0,0.05);
    }
    .mfb-item svg { width: 22px; height: 22px; }
    .mfb-item span { font-size: 0.65rem; font-weight: 700; margin-top: 4px; }
}


/* ---------- v25: Custom Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 10px; transition: 0.3s; }
::-webkit-scrollbar-thumb:hover { background: var(--brg-color-primary); }

/* ---------- v25: Add to Cart Success Anim ---------- */
.brg-cart-success {
    position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0);
    width: 100px; height: 100px; background: #2ecc71; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; z-index: 20002; transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 50px rgba(46,204,113,0.3);
}
.brg-cart-success.show { transform: translate(-50%, -50%) scale(1); }

/* ---------- v25: Reading Time UI ---------- */
.brg-reading-time {
    font-size: 0.7rem; font-weight: 800; color: #999;
    display: flex; align-items: center; gap: 5px; margin-bottom: 10px;
}

