/* =========================================
   1. ФУНДАМЕНТ: ТЕМНЫЙ ФОН БЕЗ ПОЛОМОК КАРКАСА
   ========================================= */
body {
    background-color: #0b0f19 !important;
}

/* Делаем прозрачным только главный холст, сохраняя родной скролл Odoo */
#wrapwrap, main {
    background-color: transparent !important;
}

/* =========================================
   2. МАГИЯ: АНИМИРОВАННЫЙ ДЫМ (RED NEON)
   ========================================= */
body::before,
body::after {
    content: "";
    position: fixed; 
    width: 70vw;
    height: 70vh;
    border-radius: 50%;
    filter: blur(120px); 
    -webkit-filter: blur(120px);
    opacity: 0.5;
    z-index: -1 !important; 
    pointer-events: none; 
    animation: floatSmoke 25s infinite alternate ease-in-out;
}

body::before {
    background: radial-gradient(circle, #8b0000 0%, transparent 70%); /* Глубокий бордовый */
    top: -20%;
    left: -10%;
}

body::after {
    background: radial-gradient(circle, #ff003c 0%, transparent 70%); /* Яркий неоновый красный */
    bottom: -20%;
    right: -10%;
    animation-delay: -12s; 
    animation-duration: 30s;
}

@keyframes floatSmoke {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(15%, 20%) scale(1.2); }
    66% { transform: translate(-10%, 15%) scale(0.9); }
    100% { transform: translate(5%, -10%) scale(1.1); }
}

/* =========================================
   3. ДЕСКТОПНАЯ ШАПКА: GLASS STYLE
   ========================================= */
header#top {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    /* Тень с красным отливом */
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(255, 0, 60, 0.2) !important;
    border-bottom-left-radius: 0.5375rem !important;
    border-bottom-right-radius: 0.5375rem !important;
    position: relative !important; 
    z-index: 1050;
    transition: all 0.3s ease;
}

header#top .navbar, 
header#top .o_main_nav {
    background-color: transparent !important;
}

footer, #bottom {
    position: relative !important;
    bottom: auto !important;
}

/* =========================================
   4. ДЕСКТОПНОЕ МЕНЮ И ИКОНКИ
   ========================================= */
header#top .navbar-nav[role="menu"] .nav-link.active span, 
header#top .navbar-nav[role="menu"] .show > .nav-link span,
header#top #top_menu .nav-link.active span {
    border-bottom: none !important;
}

header#top #top_menu .nav-item,
header#top #top_menu .nav-link {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

header#top #top_menu .nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500 !important;
    font-size: 15px;
    padding: 10px 18px !important;
    position: relative;
    transition: all 0.4s ease;
}

header#top #top_menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b0000, #ff003c);
    border-radius: 2px;
    transition: all 0.4s ease;
}

header#top #top_menu .nav-link:hover {
    color: #fff !important;
    transform: translateY(-2px);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

header#top #top_menu .nav-link:hover::after { width: 70%; }

header#top #top_menu .nav-link.active {
    color: #ff003c !important;
    text-shadow: 0 0 15px rgba(255, 0, 60, 0.6);
}

header#top #top_menu .nav-link.active::after {
    width: 100%;
    box-shadow: 0 0 12px rgba(255, 0, 60, 0.9);
}

/* Иконки */
header#top .o_wsale_my_cart a,
header#top a[data-bs-target="#o_search_modal"],
header#top .s_text_block a[href^="tel:"],
header#top .dropdown-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    transition: all 0.3s ease !important;
}

header#top .o_wsale_my_cart a,
header#top a[data-bs-target="#o_search_modal"],
header#top .s_text_block a[href^="tel:"] {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
}

header#top .dropdown-toggle {
    border-radius: 50px !important;
    padding: 8px 20px !important;
    margin-left: 10px;
}

header#top .o_wsale_my_cart a:hover,
header#top a[data-bs-target="#o_search_modal"]:hover {
    background: rgba(255, 0, 60, 0.15) !important;
    border-color: #ff003c !important;
    color: #ff003c !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 0, 60, 0.3) !important;
}

header#top .my_cart_quantity {
    background: linear-gradient(135deg, #8b0000, #ff003c) !important;
    border: 2px solid #0b0f19 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
}

/* =========================================
   5. ВЫПАДАЮЩЕЕ МЕНЮ (SOLID GLASS STYLE)
   ========================================= */
header#top .dropdown-menu.js_usermenu {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.98) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 0.5375rem !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), inset 0 1px 1px rgba(255, 255, 255, 0.2) !important;
    padding: 8px !important;
    margin-top: 15px !important;
    min-width: 220px !important;
    transition: all 0.3s ease !important;
}

header#top .dropdown-menu.js_usermenu .dropdown-item {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    padding: 10px 15px !important;
    border-radius: 6px !important;
    background: transparent !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    transition: all 0.2s ease !important;
}

header#top .dropdown-menu.js_usermenu .dropdown-item:hover {
    background: rgba(255, 0, 60, 0.2) !important;
    color: #ff003c !important;
    transform: translateX(6px) !important;
}

header#top .dropdown-menu.js_usermenu .dropdown-item i {
    margin-right: 12px !important;
    font-size: 14px !important;
    color: inherit !important;
    width: 20px;
    text-align: center;
}

header#top .dropdown-menu.js_usermenu .dropdown-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin: 6px 8px !important;
}

header#top .dropdown-menu.js_usermenu #o_logout:hover {
    background: rgba(255, 0, 60, 0.15) !important;
    color: #ff003c !important;
}

/* =========================================
   6. МОБИЛЬНОЕ МЕНЮ (ШТОРКА)
   ========================================= */
.offcanvas-backdrop.show {
    opacity: 0.7 !important;
    background-color: #000 !important;
    backdrop-filter: blur(4px);
}

.offcanvas.o_navbar_mobile {
    background-color: rgba(15, 23, 42, 0.98) !important; 
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8) !important;
}

.offcanvas.o_navbar_mobile .btn-close {
    filter: invert(1) brightness(200%) !important;
    opacity: 0.8 !important;
    box-shadow: none !important;
    width: 32px !important;
    height: 32px !important;
    padding: 8px !important;
    margin: 0 !important;
    border: none !important;
    background-color: transparent !important;
    box-sizing: border-box !important;
    transform: none !important; 
    transition: opacity 0.2s ease !important;
}

.offcanvas.o_navbar_mobile .btn-close:hover,
.offcanvas.o_navbar_mobile .btn-close:focus,
.offcanvas.o_navbar_mobile .btn-close:active {
    transform: none !important; 
    opacity: 1 !important; 
    background-color: transparent !important; 
    outline: none !important;
}

.offcanvas.o_navbar_mobile .o_searchbar_form .input-group {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 50px !important;
    padding: 2px;
    margin: 0 15px; 
}

.offcanvas.o_navbar_mobile .search-query {
    background: transparent !important;
    color: #fff !important;
    border: none !important;
    box-shadow: none !important;
}

.offcanvas.o_navbar_mobile .oe_search_button {
    background: linear-gradient(135deg, #8b0000, #ff003c) !important;
    color: #fff !important;
    border-radius: 50px !important;
    margin: 2px;
}

.offcanvas.o_navbar_mobile .navbar-nav .nav-item {
    border-color: rgba(255, 255, 255, 0.05) !important; 
}

.offcanvas.o_navbar_mobile .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    padding: 15px 20px !important;
    display: block;
    transition: all 0.3s ease;
}

.offcanvas.o_navbar_mobile .nav-link.active {
    color: #ff003c !important;
    background: rgba(255, 0, 60, 0.1) !important;
    border-left: 4px solid #ff003c !important;
}

.offcanvas.o_navbar_mobile .nav-link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.offcanvas.o_navbar_mobile .nav-link span {
    border-bottom: none !important;
}

.offcanvas.o_navbar_mobile .dropdown-toggle {
    margin: 15px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 12px !important;
}

.offcanvas.o_navbar_mobile .s_text_block a {
    color: #ff003c !important;
    padding: 10px 20px !important;
}

/* =========================================
   7. АДАПТАЦИЯ ДЛЯ МОБИЛЬНЫХ УСТРОЙСТВ
   ========================================= */
@media (max-width: 991.98px) {
    header#top {
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
        width: 100% !important;
    }

    body::before,
    body::after {
        width: 150vw !important; 
        height: 150vw !important; 
        filter: blur(70px) !important; 
        -webkit-filter: blur(70px) !important;
        opacity: 0.65 !important; 
    }

    body::before {
        top: -10% !important;
        left: -30% !important;
    }
    
    body::after {
        bottom: -10% !important;
        right: -30% !important;
    }
}

/* =========================================
   8. КАТЕГОРИИ ТОВАРОВ (PREMIUM GLASS + GLARE)
   ========================================= */
.o_category_container {
    gap: 24px !important;
}

.s_dynamic_category_item {
    border-radius: 20px !important; 
    border: 1px solid rgba(255, 255, 255, 0.08) !important; 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4) !important;
    background-color: #0b0f19 !important; 
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    overflow: hidden !important;
    position: relative !important; 
}

.s_dynamic_category_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg); 
    z-index: 5 !important; 
    pointer-events: none; 
}

.s_dynamic_category_item:hover {
    border-color: rgba(255, 0, 60, 0.5) !important; 
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 0, 60, 0.2) !important;
    transform: translateY(-5px) !important;
}

.s_dynamic_category_item:hover::before {
    animation: glassGlare 0.75s ease-in-out forwards;
}

@keyframes glassGlare {
    0% { left: -150%; }
    100% { left: 200%; }
}

.s_dynamic_category_item .o_category_image {
    transition: transform 0.7s cubic-bezier(0.2, 1, 0.3, 1), filter 0.4s ease !important;
    filter: brightness(0.8); 
}

.s_dynamic_category_item:hover .o_category_image {
    transform: scale(1.08) !important; 
    filter: brightness(0.6); 
}

.s_dynamic_category_item .bg-black-25,
.s_dynamic_category_item .o_category_filter {
    background: transparent !important;
}

.s_dynamic_category_item [name="category_overlay"] {
    background: linear-gradient(to top, rgba(11, 15, 25, 0.98) 0%, rgba(11, 15, 25, 0.8) 50%, rgba(11, 15, 25, 0) 100%) !important;
    z-index: 2 !important;
    padding: 24px !important; 
}

.s_dynamic_category_item h3 {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 1.4rem !important;
    letter-spacing: 0.5px !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9) !important; 
    transition: all 0.4s ease !important;
    transform: translateY(5px); 
    position: relative;
    z-index: 10 !important; 
}

.s_dynamic_category_item:hover h3 {
    color: #ff003c !important; 
    transform: translateY(0); 
}

.s_dynamic_category_arrow {
    position: absolute !important;
    right: 20px !important;
    bottom: 20px !important;
    margin: 0 !important;
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(5px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    color: rgba(255, 255, 255, 0.7) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    z-index: 10 !important; 
}

.s_dynamic_category_item:hover .s_dynamic_category_arrow {
    background: linear-gradient(135deg, #8b0000, #ff003c) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 5px 15px rgba(255, 0, 60, 0.4) !important;
    transform: translateX(5px) !important; 
}

/* =========================================
   9. ФИЛЬТРЫ ТОВАРОВ (SIDEBAR GLASS & RED NEON)
   ========================================= */

/* 1. Общий контейнер (Парящая стеклянная панель) */
.o_wsale_products_grid_before_rail {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-radius: 0.5375rem !important; 
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.1) !important;
    margin-bottom: 20px !important;
    padding: 20px 15px !important;
}

.o_wsale_products_grid_before_rail::-webkit-scrollbar {
    width: 4px !important;
}
.o_wsale_products_grid_before_rail::-webkit-scrollbar-track {
    background: transparent !important;
}
.o_wsale_products_grid_before_rail::-webkit-scrollbar-thumb {
    background: rgba(255, 0, 60, 0.5) !important;
    border-radius: 10px !important;
}
.o_wsale_products_grid_before_rail::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 0, 60, 0.8) !important;
}

/* 2. КНОПКА "ОЧИСТИТЬ ФИЛЬТРЫ" */
.o_wsale_products_grid_before_rail .border-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-top: 10px !important;
    padding-bottom: 15px !important;
}

.o_wsale_products_grid_before_rail a[title="Очистити фільтри"] {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: none !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.o_wsale_products_grid_before_rail a[title="Очистити фільтри"]:hover {
    background: rgba(255, 0, 60, 0.15) !important; 
    border-color: #ff003c !important;
    color: #ff003c !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 60, 0.3) !important;
}

.o_wsale_products_grid_before_rail a[title="Очистити фільтри"] i {
    color: inherit !important; 
    margin-left: 8px;
    font-size: 14px !important;
}

/* 3. Аккордеон (Раскрывающиеся списки) */
.products_attributes_filters .accordion-item {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.products_attributes_filters .accordion-button {
    color: rgba(255, 255, 255, 0.8) !important;
    background: transparent !important;
    box-shadow: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    transition: color 0.3s ease !important;
}

.products_attributes_filters .accordion-button:not(.collapsed) {
    color: #ff003c !important;
    text-shadow: 0 0 10px rgba(255, 0, 60, 0.3) !important;
}

.products_attributes_filters .accordion-button::after {
    filter: invert(1) opacity(0.6) !important; 
}
.products_attributes_filters .accordion-button:not(.collapsed)::after {
    filter: invert(19%) sepia(97%) saturate(5043%) hue-rotate(346deg) brightness(98%) contrast(107%) !important; /* Красный SVG фильтр */
}

/* 4. Чекбоксы */
.products_attributes_filters .form-check {
    display: flex;
    align-items: center;
    margin-bottom: 8px !important;
}

.products_attributes_filters .form-check-input {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 4px !important;
    width: 18px !important;
    height: 18px !important;
    margin-top: 0 !important;
    cursor: pointer;
    transition: all 0.2s ease !important;
}

.products_attributes_filters .form-check-input:checked {
    background-color: #ff003c !important;
    border-color: #ff003c !important;
    box-shadow: 0 0 12px rgba(255, 0, 60, 0.6) !important;
}

.products_attributes_filters .form-check-label {
    color: rgba(255, 255, 255, 0.6) !important;
    margin-left: 10px !important;
    cursor: pointer;
    transition: all 0.2s ease !important;
}

.products_attributes_filters .form-check-input:checked ~ .form-check-label {
    color: #ffffff !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3) !important;
}

.products_attributes_filters .form-check:hover .form-check-label {
    color: #ffffff !important;
}

/* 5. Выпадающие списки (Select) */
.products_attributes_filters select.form-select {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 10px 15px !important;
    cursor: pointer;
}

.products_attributes_filters select.form-select:focus {
    border-color: #ff003c !important;
    box-shadow: 0 0 0 3px rgba(255, 0, 60, 0.2) !important;
}

.products_attributes_filters select.form-select option {
    background-color: #0b0f19 !important;
    color: #ffffff !important;
}

/* 6. Поле поиска (Капсула) */
.products_attributes_filters .o_wsale_attribute_search_bar {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 50px !important;
    color: #ffffff !important;
    padding: 8px 15px !important;
    transition: all 0.3s ease !important;
}

.products_attributes_filters .o_wsale_attribute_search_bar:focus {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: #ff003c !important;
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.3) !important;
}

.products_attributes_filters .o_wsale_attribute_search_bar::placeholder {
    color: rgba(255, 255, 255, 0.3) !important;
}

/* 7. Квадратные бейджи объемов/цветов */
.products_attributes_filters .css_attribute_image {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    overflow: hidden;
    transition: all 0.3s ease !important;
    background-color: transparent !important;
}

.products_attributes_filters .css_attribute_image:hover {
    border-color: rgba(255, 255, 255, 0.4) !important;
    transform: translateY(-2px);
}

.products_attributes_filters .css_attribute_image:has(input:checked) {
    border: 2px solid #ff003c !important;
    box-shadow: 0 0 12px rgba(255, 0, 60, 0.5) !important;
    transform: scale(1.05);
}

/* 8. Ползунок цены */
#o_wsale_price_range_option_inner .multirange-wrapper {
    margin-top: 15px !important;
}

#o_wsale_price_range_option_inner .multirange-min,
#o_wsale_price_range_option_inner .multirange-max {
    color: #ff003c !important;
    font-weight: 600 !important;
    text-shadow: 0 0 5px rgba(255, 0, 60, 0.4) !important;
}

.multirange-wrapper input[type="range"]::-webkit-slider-thumb {
    background: #ffffff !important;
    border: 2px solid #ff003c !important;
    box-shadow: 0 0 10px #ff003c !important;
    border-radius: 50% !important;
    cursor: grab;
    margin-top: -4px; 
}

.multirange-wrapper input[type="range"]::-webkit-slider-thumb:active {
    cursor: grabbing;
    background: #ff003c !important;
    transform: scale(1.2);
}

/* =========================================
   10. КАРТОЧКИ ТОВАРОВ (PREMIUM GLASS CARDS)
   ========================================= */

/* 1. Главный контейнер карточки (Стеклянная база) */
.oe_product .o_wsale_product_grid_wrapper {
    background: rgba(255, 255, 255, 0.03) !important; 
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    
    border-radius: 0.5375rem !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.1) !important;
    
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    overflow: hidden !important;
    position: relative !important;
    display: flex;
    flex-direction: column;
}

.oe_product .oe_product_cart,
.oe_product .oe_product_image,
.oe_product .o_wsale_product_information {
    background: transparent !important;
    border: none !important;
}

/* 2. Эффект наведения */
.oe_product .o_wsale_product_grid_wrapper:hover {
    border-color: rgba(255, 0, 60, 0.4) !important;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.6), inset 0 1px 2px rgba(255, 255, 255, 0.2), 0 0 20px rgba(255, 0, 60, 0.15) !important;
    transform: translateY(-8px) !important;
}

.oe_product .o_wsale_product_grid_wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    z-index: 5 !important;
    pointer-events: none;
}

.oe_product .o_wsale_product_grid_wrapper:hover::before {
    animation: cardGlare 0.75s ease-in-out forwards;
}

/* 3. Изображение товара */
.oe_product .oe_product_image {
    padding: 15px !important; 
}

.oe_product .oe_product_image img {
    border-radius: 0.5375rem !important;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1) !important;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3)); 
}

.oe_product .o_wsale_product_grid_wrapper:hover .oe_product_image img {
    transform: scale(1.08) !important; 
}

/* 4. Текстовая информация */
.oe_product .o_wsale_product_information {
    padding: 0 20px 20px 20px !important;
    display: flex !important;
    flex-direction: column !important;
}

.oe_product .o_wsale_products_item_title a {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 1.15rem !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
    display: block;
    margin-bottom: 8px;
}

.oe_product .o_wsale_product_grid_wrapper:hover .o_wsale_products_item_title a {
    color: #ff003c !important; 
}

.oe_product .oe_subdescription {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    margin-bottom: 15px !important;
}

/* 5. Цена товара */
.oe_product .product_price {
    margin-top: auto !important; 
}

.oe_product .product_price .oe_currency_value, 
.oe_product .product_price span {
    color: #ff003c !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    text-shadow: 0 0 15px rgba(255, 0, 60, 0.4) !important; 
}

/* 6. Кнопки действий */
.oe_product .o_wsale_product_btn {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding-top: 15px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important; 
    margin-top: 10px !important;
    background: transparent !important;
}

.oe_product .o_wsale_product_action_row {
    display: flex !important;
    gap: 8px !important;
    flex-grow: 1 !important;
}

.oe_product .btn.o_add_compare .o_label,
.oe_product .btn.o_add_wishlist .o_label {
    display: none !important;
}

.oe_product .o_wsale_product_btn .btn {
    border-radius: 12px !important;
    border: none !important;
    height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
}

.oe_product .o_wsale_product_btn_primary {
    background: linear-gradient(135deg, #8b0000, #ff003c) !important;
    color: #ffffff !important;
    flex-grow: 1 !important; 
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(255, 0, 60, 0.3) !important;
    padding: 0 15px !important;
}

.oe_product .o_wsale_product_btn_primary:hover {
    box-shadow: 0 6px 20px rgba(255, 0, 60, 0.6) !important;
    transform: translateY(-2px) !important;
    filter: brightness(1.1) !important;
}

.oe_product .btn.o_add_compare, 
.oe_product .btn.o_add_wishlist {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    width: 42px !important;
    padding: 0 !important;
}

.oe_product .btn.o_add_compare:hover, 
.oe_product .btn.o_add_wishlist:hover {
    background: rgba(255, 0, 60, 0.15) !important;
    color: #ffffff !important;
    border-color: rgba(255, 0, 60, 0.3) !important;
    transform: translateY(-2px) !important;
}

/* =========================================
   11. СТРАНИЦА ТОВАРА (PRODUCT PAGE GLASS & RED NEON)
   ========================================= */

/* 0. ТОТАЛЬНА ЗАЧИСТКА БІЛИХ ФОНІВ ODOO НА СТОРІНЦІ ТОВАРУ */
.o_wsale_product_page .bg-white,
.o_wsale_product_page .bg-light,
.o_wsale_product_page .text-bg-light,
.o_wsale_product_page #product_detail,
.o_wsale_product_page #product_detail_main,
.o_wsale_product_page #product_details {
    background-color: transparent !important;
    background: transparent !important;
}

/* 1. Хлебные крошки (Навигация сверху) */
.o_wsale_breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.5) !important;
    transition: color 0.3s ease !important;
    text-decoration: none !important;
}
.o_wsale_breadcrumb .breadcrumb-item a:hover {
    color: #ff003c !important;
    text-shadow: 0 0 8px rgba(255, 0, 60, 0.4) !important;
}
.o_wsale_breadcrumb .breadcrumb-item.active span {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* 1.5 Рядок пошуку на сторінці товару (Справа зверху) */
.o_wsale_product_top_bar_desktop .search-query {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 50px 0 0 50px !important;
}
.o_wsale_product_top_bar_desktop .search-query::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}
.o_wsale_product_top_bar_desktop .oe_search_button {
    background-color: rgba(255, 0, 60, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-left: none !important;
    color: #ff003c !important;
    border-radius: 0 50px 50px 0 !important;
    transition: all 0.3s ease;
}
.o_wsale_product_top_bar_desktop .oe_search_button:hover {
    background-color: #ff003c !important;
    color: #fff !important;
}

/* 2. Стеклянные панели (Блок с фото и Блок с описанием) */
#o-carousel-product,
#o_wsale_product_details_content {
    /* Возвращаем идеальную прозрачность как на фильтрах (3-5% белого) */
    background: rgba(255, 255, 255, 0.03) !important; 
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-radius: 0.5375rem !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 1px 2px rgba(255, 255, 255, 0.1) !important;
    padding: 24px !important;
}

/* Жестко убиваем любые скрытые фоны внутри самой карусели Odoo, 
   чтобы они не блокировали вид на наше стекло */
#o-carousel-product .carousel-outer,
#o-carousel-product .carousel-inner,
#o-carousel-product .carousel-item {
    background: transparent !important;
    background-color: transparent !important;
}

/* Изображение товара: убираем лишние фоны и добавляем тень */
.o_product_detail_img_wrapper {
    background: transparent !important;
}
.o_product_detail_img_wrapper img {
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5)) !important;
    background: transparent !important;
}

/* 3. Текстовая часть (Заголовок и Описание) */
#product_details h1 {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 2rem !important;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8) !important;
    margin-bottom: 15px !important;
}

#product_details .oe_structure.text-muted,
#product_details .oe_subdescription {
    color: rgba(255, 255, 255, 0.7) !important; /* Зробили текст світлішим для читабельності */
    font-size: 1rem !important;
    line-height: 1.6 !important;
}

/* 4. Неоновая Цена */
.product_price .oe_price {
    color: #ff003c !important;
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    text-shadow: 0 0 20px rgba(255, 0, 60, 0.5) !important;
    display: inline-block;
}

/* 5. Выбор вариантов (Цвета / Картинки) */
.o_wsale_product_page_variants .css_attribute_image {
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4) !important;
    background-color: #0b0f19 !important;
}

.o_wsale_product_page_variants .css_attribute_image:hover {
    border-color: rgba(255, 0, 60, 0.5) !important;
    transform: translateY(-2px);
}

.o_wsale_product_page_variants .css_attribute_image.active,
.o_wsale_product_page_variants .css_attribute_image:has(input:checked) {
    border-color: #ff003c !important;
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.6) !important;
    transform: scale(1.1);
    z-index: 2;
}

/* 6. Блок "Добавить в корзину" */
.o_wsale_cta_wrapper_boxed {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
}

.o_wsale_cta_wrapper_boxed .border-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* 7. Выбор количества (Стеклянный счетчик) */
.css_quantity {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    overflow: hidden;
}

.css_quantity input.quantity {
    background: transparent !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
}

.css_quantity .btn-link {
    color: rgba(255, 255, 255, 0.6) !important;
    transition: all 0.2s ease !important;
}

.css_quantity .btn-link:hover {
    color: #ff003c !important;
    background: rgba(255, 0, 60, 0.1) !important;
    text-shadow: 0 0 8px rgba(255, 0, 60, 0.5) !important;
}

/* 8. Главная Кнопка: В Корзину (Градиент) */
#add_to_cart {
    background: linear-gradient(135deg, #8b0000, #ff003c) !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px !important;
    padding: 12px 24px !important;
    box-shadow: 0 5px 20px rgba(255, 0, 60, 0.4) !important;
    transition: all 0.3s ease !important;
}

#add_to_cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 60, 0.6) !important;
    filter: brightness(1.1);
}

/* 9. Второстепенные кнопки (Сравнение / Избранное) */
#product_option_block .btn-outline-primary {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

#product_option_block .btn-outline-primary:hover {
    background: rgba(255, 0, 60, 0.15) !important;
    border-color: #ff003c !important;
    color: #ffffff !important;
    box-shadow: 0 5px 15px rgba(255, 0, 60, 0.3) !important;
    transform: translateY(-2px);
}

#product_option_block .btn-outline-primary:hover i.fa-heart-o {
    color: #ff003c !important; 
}

/* 10. Блок Спецификаций (Таблица внизу) */
#product_full_spec {
    background: rgba(15, 23, 42, 0.5) !important; 
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    margin-top: 40px !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

#product_full_spec h3 {
    color: #ffffff !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
}

#product_full_spec .table {
    color: rgba(255, 255, 255, 0.7) !important;
}

#product_full_spec .table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 15px 10px !important;
}

#product_full_spec .table td:first-child {
    color: #ffffff !important;
    font-weight: 500 !important;
}

/* =========================================
   12. ПАНЕЛЬ ПОИСКА И СОРТИРОВКИ (SHOP HEADER)
   ========================================= */

/* 1. Очистка стандартных светлых фонов Odoo */
.products_header .btn-light,
.products_header .bg-light,
.products_header .text-bg-light {
    background-color: transparent !important;
    background: transparent !important;
    color: #ffffff !important;
}

/* 2. Поиск: Капсула (Glassmorphism) */
.products_header .o_wsale_products_searchbar_form .input-group {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 50px !important;
    overflow: hidden;
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

.products_header .o_wsale_products_searchbar_form .input-group:focus-within {
    border-color: #ff003c !important;
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.3) !important;
}

.products_header .search-query {
    color: #ffffff !important;
    padding: 10px 20px !important;
    box-shadow: none !important;
    border: none !important;
}

.products_header .search-query::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* Кнопка лупы в поиске */
.products_header .oe_search_button {
    background-color: rgba(255, 0, 60, 0.15) !important;
    color: #ff003c !important;
    border: none !important;
    padding: 0 22px !important;
    border-radius: 0 50px 50px 0 !important;
    transition: all 0.3s ease !important;
}

.products_header .oe_search_button:hover {
    background-color: #ff003c !important;
    color: #ffffff !important;
    box-shadow: -5px 0 15px rgba(255, 0, 60, 0.4) !important;
}

/* 3. Кнопка "Сортувати за" и "Фільтри" (Мобилка) */
.products_header .o_sortby_dropdown .dropdown-toggle,
.products_header > button[title="Фільтри"] {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    padding: 10px 20px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    display: flex;
    align-items: center;
}

.products_header .o_sortby_dropdown .dropdown-toggle:hover,
.products_header > button[title="Фільтри"]:hover {
    background: rgba(255, 0, 60, 0.15) !important;
    border-color: #ff003c !important;
    color: #ff003c !important;
    box-shadow: 0 5px 15px rgba(255, 0, 60, 0.3) !important;
    transform: translateY(-2px);
}

/* 4. Выпадающее меню сортировки (Стеклянная панель) */
.products_header .dropdown-menu {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.98) 100%) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 0.5375rem !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), inset 0 1px 1px rgba(255, 255, 255, 0.2) !important;
    padding: 8px !important;
    margin-top: 10px !important;
    min-width: 250px !important;
}

.products_header .dropdown-item {
    color: rgba(255, 255, 255, 0.8) !important;
    border-radius: 6px !important;
    padding: 10px 15px !important;
    transition: all 0.2s ease !important;
    background: transparent !important;
}

/* Эффект наведения и активный пункт сортировки */
.products_header .dropdown-item:hover,
.products_header .dropdown-item.active {
    background: rgba(255, 0, 60, 0.2) !important;
    color: #ff003c !important;
    transform: translateX(4px);
}

/* Скрываем скучные системные галки Odoo в выпадающем меню */
.products_header .dropdown-item::before,
.products_header .dropdown-item::after {
    display: none !important;
}

/* =========================================
   17. ФОРМА ВХОДУ ТА РЕЄСТРАЦІЇ (LOGIN / SIGNUP)
   ========================================= */

/* 1. Зачистка білих фонів на сторінці логіну Odoo */
body.o_web_client.o_login,
.oe_website_login_container,
.oe_website_login_container .card,
.oe_website_login_container .card-body {
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* 2. Головний контейнер форми (Скло) */
.oe_login_form {
    background: rgba(15, 23, 42, 0.3) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), inset 0 1px 2px rgba(255, 255, 255, 0.1) !important;
    padding: 40px 30px !important;
    margin: 0 auto !important;
    color: #ffffff !important;
    position: relative;
    overflow: hidden;
}

/* Скляний блік по формі */
.oe_login_form::before {
    content: '';
    position: absolute;
    top: 0; left: -150%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: popupGlare 5s ease-in-out infinite alternate;
    pointer-events: none;
}

/* 3. Тексти та Лейбли */
.oe_login_form .form-label {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.5px !important;
}

.oe_login_form .o_caps_lock_warning_text {
    color: #ff003c !important; /* Червоний неон для попередження про Caps Lock */
    text-shadow: 0 0 10px rgba(255, 0, 60, 0.4) !important;
}

/* 4. Поля вводу (Inputs) */
.oe_login_form .form-control {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    padding: 12px 15px !important;
    transition: all 0.3s ease !important;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2) !important;
}

.oe_login_form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.3) !important;
}

/* Неонове світіння при кліку на поле */
.oe_login_form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: #ff003c !important;
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.3), inset 0 2px 4px rgba(0,0,0,0.2) !important;
    outline: none !important;
}

/* 5. Кнопка показу пароля (Око) */
.oe_login_form .input-group .form-control {
    border-radius: 12px 0 0 12px !important;
    border-right: none !important;
}

.oe_login_form .o_show_password {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-left: none !important;
    color: rgba(255, 255, 255, 0.5) !important;
    border-radius: 0 12px 12px 0 !important;
    transition: all 0.3s ease !important;
    padding: 0 15px !important;
}

.oe_login_form .o_show_password:hover {
    color: #ff003c !important;
}

.oe_login_form .input-group:focus-within .o_show_password {
    border-color: #ff003c !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 2px 0 15px -2px rgba(255, 0, 60, 0.3) !important;
}

/* 6. Головна кнопка (Вхід / Login) */
.oe_login_form .btn-primary {
    background: linear-gradient(135deg, #8b0000, #ff003c) !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border-radius: 50px !important;
    padding: 14px !important;
    box-shadow: 0 8px 20px rgba(255, 0, 60, 0.3) !important;
    transition: all 0.3s ease !important;
    margin-top: 10px !important;
}

.oe_login_form .btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 25px rgba(255, 0, 60, 0.6) !important;
    filter: brightness(1.1) !important;
}

/* 7. Текстові посилання (Скинути пароль, Немає запису) */
.oe_login_form .btn-link {
    color: rgba(255, 255, 255, 0.5) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
}

.oe_login_form .btn-link:hover {
    color: #ff003c !important;
    text-shadow: 0 0 10px rgba(255, 0, 60, 0.4) !important;
}

/* 8. Альтернативний вхід (Passkey / OAuth) */
.oe_login_form .o_login_auth em {
    color: rgba(255, 255, 255, 0.3) !important;
    font-style: normal !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-size: 0.8rem !important;
}

.oe_login_form .list-group-item {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

.oe_login_form .list-group-item:hover {
    background: rgba(255, 0, 60, 0.15) !important;
    border-color: #ff003c !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 60, 0.3) !important;
}

/* =========================================
   18. ВСПЛЫВАЮЩИЙ ПОИСК (SEARCH MODAL)
   ========================================= */

/* 1. Делаем фон самого окна кристально прозрачным, 
      чтобы капсула поиска левитировала на затемненном фоне сайта */
#o_search_modal .modal-content,
#o_wsale_search_modal .modal-content {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* 2. Капсула поиска (Glassmorphism + Neon) */
#o_search_modal .input-group,
#o_wsale_search_modal .input-group {
    background: rgba(15, 23, 42, 0.8) !important; /* Глубокое темное стекло */
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 50px !important; /* Идеальная круглая капсула */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 0, 60, 0.2) !important;
    padding: 8px !important; /* Воздух внутри капсулы */
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

/* Эффект, когда пользователь кликает в поле поиска (капсула увеличивается и загорается) */
#o_search_modal .input-group:focus-within,
#o_wsale_search_modal .input-group:focus-within {
    border-color: #ff003c !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 0, 60, 0.5) !important;
    transform: scale(1.02);
}

/* 3. Поле ввода (Очистка от белого цвета) */
#o_search_modal .search-query,
#o_wsale_search_modal .search-query {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 1.3rem !important;
    font-weight: 500 !important;
    padding-left: 25px !important;
    box-shadow: none !important;
}

/* Цвет плейсхолдера ("Пошук...") */
#o_search_modal .search-query::placeholder,
#o_wsale_search_modal .search-query::placeholder {
    color: rgba(255, 255, 255, 0.3) !important;
}

/* 4. Кнопка с лупой (Градиент и Тень) */
#o_search_modal .oe_search_button,
#o_wsale_search_modal .oe_search_button {
    background: linear-gradient(135deg, #8b0000, #ff003c) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 0 35px !important; /* Делаем кнопку шире */
    font-size: 1.3rem !important;
    margin-left: 10px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 15px rgba(255, 0, 60, 0.4) !important;
}

#o_search_modal .oe_search_button:hover,
#o_wsale_search_modal .oe_search_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 60, 0.6) !important;
    filter: brightness(1.2);
}

/* 5. Результаты поиска (Dropdown, который выпадает при вводе) */
#o_search_modal .dropdown-menu,
#o_wsale_search_modal .dropdown-menu {
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8) !important;
    margin-top: 15px !important;
    padding: 10px !important;
}

#o_search_modal .dropdown-item,
#o_wsale_search_modal .dropdown-item {
    color: rgba(255, 255, 255, 0.8) !important;
    border-radius: 12px !important;
    transition: all 0.2s ease !important;
}

#o_search_modal .dropdown-item:hover,
#o_wsale_search_modal .dropdown-item:hover {
    background: rgba(255, 0, 60, 0.15) !important;
    color: #ff003c !important;
}

/* Имя товара в результатах поиска */
#o_search_modal .dropdown-item .text-primary,
#o_wsale_search_modal .dropdown-item .text-primary {
    color: #ffffff !important;
    font-weight: 600 !important;
}
#o_search_modal .dropdown-item:hover .text-primary,
#o_wsale_search_modal .dropdown-item:hover .text-primary {
    color: #ff003c !important;
}

