.advancedsearch-filters{
    display: none;
    
}
.resize-image-product {
    font-size: 12px;
    color: #000;
    margin-top: 8px;
}
.z-search.container.show-menu .search-text {
    cursor: pointer;
}
.z-search.container.show-menu.open {
  height: 100%;
}
.group_list_info_table_row_buttons {
    position: relative;
    z-index: 10;
}

.group-pagination {
    position: relative;
    z-index: 10;
}

/* Zapewnij że linki nie nachodzą na przyciski */
a.group-row-link {
    position: relative;
    z-index: 1;
}

.header-top.open {
  position: relative;
}
.advanced-search-headings {
    display: flex;
    gap: 16px;
    margin-top: 66px;
    overflow: auto;
}
.search-heading {
    width: 105px;
    padding-bottom: 12.5px;
    border-bottom: 1px solid #707070;
    height: 62px;
    display: block !important;
}
.search-heading h4 {
    color: #000;
    font-size: 12px;
    letter-spacing: -0.36px;
    line-height: 20px;
    text-align: left;
    font-family: "Reply", sans-serif;
    font-weight: 500;
}
.advancedsearch-filters input[type="radio"]:checked{
    border-color: #C4C4C4;
}
.menu-radio-group label.radio-label {
    display: flex !important;
    padding: 0px !important;
    font-weight: 500 !important;
    border: 0px !important;
    background: transparent !important;
}
.menu-radio-group {
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-radio-group label.radio-label {
    text-align: left !important;
    display: flex;
    align-items: flex-start;
    justify-content: start;
    flex-wrap: nowrap;
    font-size: 12.5px;
    margin: 0px;
}
.advancedsearch-filters input[type="radio"]:checked::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.advancedsearch-filters input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 16px;
    height: 16px;
    min-width: 16px;
    border: 1px solid #C4C4C4;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    margin-top: 2px;
}

label.value-radio-label {
    text-align: left !important;
    display: flex;
    align-items: flex-start;
    justify-content: start;
    gap: 8px;
    flex-wrap: nowrap;
    font-size: 12.5px;
    margin: 0px;
    margin-bottom: 10px;
}
.text-input-wrapper {
    text-align: left !important;
    display: flex;
    align-items: flex-start;
    justify-content: start;
    gap: 8px;
    flex-wrap: nowrap;
    font-size: 12.5px;
    margin: 0px;
    margin-bottom: 10px;
}
.text-input-wrapper input.text-input {
    border: 2px solid #C4C4C4;
    border-radius: 20px;
    width: 75px;
    padding: 0px 8px;
    font-size: 12.5px;
}
.text-input-wrapper label.text-label {
    font-size: 12.5px;
}
/* Dodaj te style do pliku w_advancedsearch.css */

/* Loader spinner */
.spinner {
    width: 88px;
    height: 88px;
    display: grid;
    border-radius: 50%;
    -webkit-mask: radial-gradient(farthest-side, #0000 40%, #000000 41%);
    background: 
        linear-gradient(0deg, rgba(0,0,0,0.5) 50%, rgba(0,0,0,1) 0) center/7px 100%,
        linear-gradient(90deg, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.75) 0) center/100% 7px;
    background-repeat: no-repeat;
    animation: spinner-d3o0rx 1.8s infinite steps(12);
}

.spinner::before,
.spinner::after {
    content: "";
    grid-area: 1/1;
    background: inherit;
    opacity: 0.915;
    transform: rotate(30deg);
}

.spinner::after {
    opacity: 0.83;
    transform: rotate(60deg);
}

@keyframes spinner-d3o0rx {
    100% {
        transform: rotate(1turn);
    }
}

.spinner-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    z-index: 3;
}

.wishlist-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.wishlist-loader p {
    margin-top: 20px;
    font-size: 16px;
    color: #333;
    text-align: center;
}

/* Kontener dla search-results z loaderem */
.search-results {
    position: relative;
    min-height: 200px;
}

.search-results.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Style dla wyników wyszukiwania */
.search-result-content {
    margin-top: 20px;
    animation: fadeIn 0.3s ease-in;
        z-index: 999;
    position: relative;
    background-color: #fff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-result-content .products {
    display: flex;
    flex-wrap: wrap;
}

.search-result-content .products > div {
    padding: 10px;
}

.search-summary {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 20px;
}

.no-results {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 5px;
}

/* Dodatkowe style dla lepszego wyglądu */
.search-results {
    position: relative;
    min-height: 100px;
}

.search-results.loading {
    pointer-events: none;
}

/* ========== KOMPLETNY CSS DLA SZCZEGÓŁÓW PRODUKTU - FINALNA WERSJA ========== */

/* Reset dla kontenera głównego */
.search-results {
    overflow: visible !important;
    position: relative;
}

/* Kontener produktów - używamy flex z wrap */
.search-results .products {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-left: -15px;
    margin-right: -15px;
    position: relative;
}

/* Pojedynczy produkt */
.search-results .products > div {
    padding-left: 0px;
    padding-right: 0px;
}

/* Produkt - stan normalny */
.search-results .product-miniature-search {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.search-results .product-miniature-search a {
    pointer-events: none;
}

/* Produkt wyszarzony */
.search-results .product-miniature-search.dimmed {
    opacity: 0.5;
    filter: grayscale(100%);
}

.search-results .product-miniature-search.dimmed img {
    filter: grayscale(100%);
    opacity: 0.6;
}

/* Produkt rozwinięty (wybrany) - normalne kolory */
.search-results .product-miniature-search.expanded {
    opacity: 1 !important;
    filter: none !important;
}

.search-results .product-miniature-search.expanded img {
    filter: none !important;
    opacity: 1 !important;
}

/* ========== WRAPPER DLA SZCZEGÓŁÓW - ZAJMUJE CAŁĄ SZEROKOŚĆ RZĘDU ========== */
.details-wrapper {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    order: 999 !important;
}

/* ========== KONTENER NA SZCZEGÓŁY - 100% SZEROKOŚCI ========== */



/* Dla kontenerów z container-fluid */
.container-fluid .product-details-expanded {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* ========== LOADER ========== */
.loading-details {
    padding: 60px;
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-loader {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.spinner-container {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 88px;
    height: 88px;
    display: grid;
    border-radius: 50%;
    -webkit-mask: radial-gradient(farthest-side, #0000 40%, #000000 41%);
    mask: radial-gradient(farthest-side, #0000 40%, #000000 41%);
    background: 
        linear-gradient(0deg, rgba(0,0,0,0.5) 50%, rgba(0,0,0,1) 0) center/7px 100%,
        linear-gradient(90deg, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.75) 0) center/100% 7px;
    background-repeat: no-repeat;
    animation: spinner-d3o0rx 1.8s infinite steps(12);
}

.spinner::before,
.spinner::after {
    content: "";
    grid-area: 1/1;
    background: inherit;
    opacity: 0.915;
    transform: rotate(30deg);
}

.spinner::after {
    opacity: 0.83;
    transform: rotate(60deg);
}

@keyframes spinner-d3o0rx {
    100% {
        transform: rotate(1turn);
    }
}

/* ========== ZAWARTOŚĆ SZCZEGÓŁÓW ========== */
.product-details-content {
    max-width: 1428px;
    margin: 0 auto;
    position: relative;
}

.product-details-content > h2 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #007bff;
    color: #212529;
    font-weight: 600;
}

/* Info o liczbie wariantów */
.details-info {
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.details-info p {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
}

.details-info .badge {
    background: #007bff;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    margin-left: 5px;
}

/* ========== GRUPY PRODUKTÓW ========== */
.product-group {
    margin-bottom: 30px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.product-group-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-group-header:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b4199 100%);
}

.product-group-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.product-group-header .group-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-group-header .variant-count {
    background: rgba(255,255,255,0.2);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
}

.product-group-header .toggle-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.product-group.collapsed .toggle-icon {
    transform: rotate(180deg);
}

.product-group-content {
    padding: 20px;
    background: white;
    transition: all 0.3s ease;
}

.product-group.collapsed .product-group-content {
    display: none;
}

/* ========== TABELA SZCZEGÓŁÓW ========== */
.details-table-wrapper {
    overflow-x: auto;
    margin: 0;
    border: none;
    padding: 0;
}

.details-table {
    width: 100%;
    font-size: 12px;
    margin: 0;
    border: none;
    border-collapse: collapse;
}

.details-table thead {
    background: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
}

.details-table th {
    padding: 12px 8px;
    text-align: left;
    font-weight: 600;
    color: #495057;
    white-space: nowrap;
    border: none;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: top;
}

.details-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.details-table tbody tr:hover {
    background-color: #f0f8ff;
}

.details-table tbody tr:nth-child(even) {
    background-color: rgba(0,0,0,0.02);
}

.details-table td {
    padding: 12px 8px;
    color: #212529;
    border: none;
    vertical-align: top;
    font-size: 12px;
}

/* Kolumna numeracji */
.details-table td.row-number {
    font-weight: 600;
    color: #6c757d;
    width: 40px;
    text-align: center;
}

/* Kolumna kod katalogowy */
.details-table td.full-cat-no {
    font-weight: 600;
    color: #007bff;
    white-space: nowrap;
}

.details-table td.full-cat-no:hover {
    color: #0056b3;
    text-decoration: underline;
    cursor: pointer;
}

/* Kolumna nazwa produktu */
.details-table td.product-name {
    max-width: 250px;
    white-space: normal;
    line-height: 1.4;
}

/* Kolumna moc */
.details-table td.power {
    white-space: nowrap;
    font-weight: 500;
}

/* Kolumny techniczne */
.details-table td.control,
.details-table td.color,
.details-table td.cri,
.details-table td.cct,
.details-table td.ugr,
.details-table td.ip {
    text-align: center;
    white-space: nowrap;
}

/* Kolumna cena */
.details-table td.price {
    font-weight: 600;
    color: #28a745;
    white-space: nowrap;
}
i.material-icons.clear{
    cursor: pointer;
}

.details-table td.price strong {
    display: inline-block;
    padding: 2px 8px;
    background: #e8f5e9;
    border-radius: 3px;
    font-size: 12px;
}

/* Kolumna akcji */
.details-table td.actions-column {
    text-align: right;
    white-space: nowrap;
    width: 100px;
}

.details-table td.actions-column .btn {
    padding: 4px 8px;
    margin: 0 2px;
    color: #6c757d;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.details-table td.actions-column .btn:hover {
    background: #f8f9fa;
    border-radius: 4px;
}

.details-table td.actions-column .material-icons {
    font-size: 18px;
    vertical-align: middle;
}

.btn-favorite:hover i {
    color: #e91e63;
    transform: scale(1.2);
}

.btn-cart:hover i {
    color: #4caf50;
    transform: scale(1.2);
}

.btn-cart.added i {
    color: #4caf50;
}

.btn-favorite.added i {
    color: #e91e63;
}

/* ========== PAGINACJA ========== */
.group-pagination {
    text-align: left;
}

.load-more-group, .hide-group {
    background: transparent;
    color: #000; 
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    text-decoration: underline;
}

/* ========== ALERTY ========== */
.product-details-expanded .alert {
    margin: 20px;
    padding: 15px;
    border-radius: 4px;
}

.product-details-expanded .alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.product-details-expanded .alert-info {
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
}

/* ========== ANIMACJE ========== */
@keyframes slideDown {
    from {
        max-height: 0;
        opacity: 0;
    }
    to {
        max-height: 5000px;
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-details-expanded.show {
    animation: slideDown 0.4s ease forwards;
}

/* ========== RESPONSYWNOŚĆ ========== */


@media (max-width: 992px) {
    .product-details-content {
        padding: 0px;
    }
    
    .details-table {
        font-size: 11px;
    }
    
    .details-table td,
    .details-table th {
        padding: 10px 6px;
    }
    
    /* Ukryj niektóre kolumny na tabletach */
    .details-table th:nth-child(5),
    .details-table td:nth-child(5),
    .details-table th:nth-child(6),
    .details-table td:nth-child(6),
    .details-table th:nth-child(9),
    .details-table td:nth-child(9) {
        display: none;
    }
}

@media (max-width: 768px) {
    .product-group-header h3 {
        font-size: 14px;
    }
    
    .details-table th:nth-child(7),
    .details-table td:nth-child(7),
    .details-table th:nth-child(8),
    .details-table td:nth-child(8) {
        display: none;
    }
    
    .details-table td.product-name {
        max-width: 150px;
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .product-details-expanded {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .product-details-content {
        padding: 0px;
    }
    
    .product-details-content > h2 {
        font-size: 16px;
    }
    
    .details-table {
        font-size: 10px;
    }
    
    .details-table td,
    .details-table th {
        padding: 8px 4px;
    }
    
    .close-details-btn {
        top: 10px;
        right: 10px;
        font-size: 20px;
    }
}

/* ========== ZAPEWNIENIE PEŁNEJ SZEROKOŚCI ========== */
#wrapper,
#content-wrapper,
#main,
.container,
.container-fluid,
.page-content,
.page-width {
    overflow-x: visible !important;
}

/* Z-index dla pewności */
.product-details-expanded {
    position: relative;
    z-index: 100;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Upewnij się że wrapper ma odpowiedni order */
.search-results .products > .details-wrapper {
    order: calc(var(--product-row) * 1000 + 999);
}

/* SZCZEGÓŁY PRODUKTU */
.group_list {
    display: flex;
    gap: 16px;
    width: 100%;
}

.group_list_image img {
    width: 100%;
}
.group_list_info {
    display: flex;
    flex-wrap: wrap;
}
.group_list_info_container {
    width: 100%;
    display: flex;
    height: 38px;
}
.group_list_info_container_name {
    display: flex;
    gap: 36px;
    align-items: center;
}
.group_list_info_container_name h3 {
    font-size: 16px;
    color: #000;
    margin: 0px;
}
.group_list_info_container_name p {
    font-size: 10px;
    color: #000;
    margin-bottom: 0px;
}
.group_list_info_table {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    align-items: flex-start;
    align-content: flex-start;
}
@media (min-width: 300px) {
    .group_list_info_table {
        height: auto;
    }
    .group_list_info_container {
        height: 0px;
    }
}
@media (max-width: 300px) {
    .group_list_info_table {
        height: auto;
    }
    .group_list_info_container {
        height: 0px;
    }
}
@media (min-width: 301px) {
    .group_list_info_table {
        height: auto;
    }
    .group_list_info_container {
        height: 0px;
    }
}
@media (min-width: 600px) {
    .group_list_info_table {
        height: auto;
    }
    .group_list_info_container {
        height: 0px;
    }
}
@media (min-width: 771px) {
    .group_list_info_table {
        height: auto;
    }
    .group_list_info_container {
        height: 0px;
    }
}
@media (min-width: 992px) {
    .group_list_info_table {
        height: auto;
    }
    .group_list_info_container {
        height: 38px;
    }
}
@media (min-width: 1500px) {
    .group_list_info_table {
        height: 125px;
    }
    .group_list_info_container {
        height: 38px;
    }
}
.group_list_info_table_row_value img {
    width: 12px;
}
.group_list_info_more {
    width: 100%;
}

.group_list_info_table_row_buttons {
    display: flex;
    align-items: center;
}
.group_list_info_table_row_buttons_item {
    display: flex;
    flex-wrap: nowrap;
    cursor: pointer;
}
.group_list_info_table_row_buttons_item span {
    font-size: 12px;
    color: #000;
}
.group_list_info_table_row_buttons_item img {
    width: 12px;
}

.group_list_info_table_row_buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.group_list_info_table_row_buttons_item.wishlistt {
    width: 105px;
}
.group_list_info_table_row_buttons_item.cartt {
    width: 105px;
}
a.wishlist-button-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: -0.48px !important;
    color: #000 !important;
    background-color: #f4d1c3 !important;
    border-radius: 20px !important;
    text-transform: lowercase !important;
    gap: 10px;
}
a.cart-button-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: -0.48px !important;
    color: #000 !important;
    background-color: #9FC5F0 !important;
    border-radius: 20px !important;
    text-transform: lowercase !important;
    gap: 10px;
}

.product-details-content {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    width: 100%;
}
button.load-more-group {
    margin-top: 40px;
}

/* prosty efekt pulsowania */
@keyframes pulse {
  0%   { background-color: #f8d7da; }
  50%  { background-color: #f1b0b7; }
  100% { background-color: #f8d7da; }
}

.input-error {
  animation: pulse 0.6s ease;
  border: 1px solid #dc3545; /* czerwona ramka */
  border-radius: 4px;
}
.search-buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
    margin-top: 76px;
}
.search-button-container {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    cursor: pointer;
}
a.search-button {
    display: flex;
    width: 226px;
    justify-content: space-between;
    padding: 10.5px 24px;
    background-color: #DFE6C0;
    border-radius: 20px;
    align-items: center;
}
a.search-button span {
    font-size: 16px;
    font-weight: bold;
}
a.search-button img {
    width: 17px;
    height: 17px;
}
.clear-button-container {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    cursor: pointer;
}
a.clear-button {
    display: flex;
    width: 226px;
    justify-content: space-between;
    padding: 10.5px 24px;
    background-color: #F3F3F3;
    border-radius: 20px;
    align-items: center;
}
a.clear-button span{
    font-size: 16px;
    font-weight: bold;
}
a.clear-button img{
    width: 17px;
    height: 17px;
}
@media (min-width: 300px) {
    .group_list_info_table_row_data {
            gap: 4px;
        }
        .product-details-expanded{
            left: 0px;
        }
.group_list_info_table_row_data_value {
            font-size: 8px;
            color: #000;
            letter-spacing: -0.36px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.power {
            min-width: 32px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.control {
            min-width: 36px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.color {
            min-width: 52px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cri {
            min-width: 32px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cct1 {
            min-width: 36px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.angle {
            min-width: 52px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.lumens {
            min-width: 32px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.ugr {
            min-width: 36px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.tightness {
            min-width: 52px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.price {
            min-width: 47px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cat_no {
            min-width: 140px;
            text-align: left;
            display: none;
        }
        .search-results .products .product:nth-child(n) .product-details-expanded {
        left: 0;
    }
}
@media (min-width: 350px) {
.group_list_info_table_row_data {
            gap: 2px;
        }
        .product-details-expanded{
            left: -144px;
        }
        a.group-row-link {
            width: 70%;
        }
        .group_list_info_table_row_buttons {
            width: 30%;
        }
.group_list_info_table_row_data_value {
            font-size: 8px;
            color: #000;
            letter-spacing: -0.36px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.power {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.control {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.color {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cri {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cct1 {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.angle {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.lumens {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.ugr {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.tightness {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.price {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cat_no {
            min-width: 140px;
            text-align: left;
            display: none;
        }
       .search-results .products .product:nth-child(n) .product-details-expanded {
        left: 0;
    }
}
@media (min-width: 400px) {
.group_list_info_table_row_data {
            gap: 2px;
        }
        a.group-row-link {
            width: 70%;
        }
        .group_list_info_table_row_buttons {
            width: 30%;
        }
.group_list_info_table_row_data_value {
            font-size: 8px;
            color: #000;
            letter-spacing: -0.36px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.power {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.control {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.color {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cri {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cct1 {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.angle {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.lumens {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.ugr {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.tightness {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.price {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cat_no {
            min-width: 140px;
            text-align: left;
            display: none;
        }
        .search-results .products .product:nth-child(n) .product-details-expanded {
        left: 0;
    }
}
@media (min-width: 450px) {
.group_list_info_table_row_data {
            gap: 2px;
        }
        a.group-row-link {
            width: 70%;
        }
        .group_list_info_table_row_buttons {
            width: 30%;
        }
.group_list_info_table_row_data_value {
            font-size: 8px;
            color: #000;
            letter-spacing: -0.36px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.power {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.control {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.color {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cri {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cct1 {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.angle {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.lumens {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.ugr {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.tightness {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.price {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cat_no {
            min-width: 140px;
            text-align: left;
            display: none;
        }
        .search-results .products .product:nth-child(n) .product-details-expanded {
        left: 0;
    }
}
@media (min-width: 500px) {
.group_list_info_table_row_data {
            gap: 2px;
        }
        a.group-row-link {
            width: 70%;
        }
        .group_list_info_table_row_buttons {
            width: 30%;
        }
.group_list_info_table_row_data_value {
            font-size: 8px;
            color: #000;
            letter-spacing: -0.36px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.power {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.control {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.color {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cri {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cct1 {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.angle {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.lumens {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.ugr {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.tightness {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.price {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cat_no {
            min-width: 140px;
            text-align: left;
            display: none;
        }
        .search-results .products .product:nth-child(n) .product-details-expanded {
        left: 0;
    }
}
@media (min-width: 550px) {
.group_list_info_table_row_data {
            gap: 2px;
        }
        a.group-row-link {
            width: 70%;
        }
        .group_list_info_table_row_buttons {
            width: 30%;
        }
.group_list_info_table_row_data_value {
            font-size: 8px;
            color: #000;
            letter-spacing: -0.36px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.power {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.control {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.color {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cri {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cct1 {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.angle {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.lumens {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.ugr {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.tightness {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.price {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cat_no {
            min-width: 140px;
            text-align: left;
            display: none;
        }
        .search-results .products .product:nth-child(n) .product-details-expanded {
        left: 0;
    }
}
@media (min-width: 600px) {
.group_list_info_table_row_data {
            gap: 2px;
        }
        a.group-row-link {
            width: 70%;
        }
        .group_list_info_table_row_buttons {
            width: 30%;
        }
.group_list_info_table_row_data_value {
            font-size: 8px;
            color: #000;
            letter-spacing: -0.36px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.power {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.control {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.color {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cri {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cct1 {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.angle {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.lumens {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.ugr {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.tightness {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.price {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cat_no {
            min-width: 140px;
            text-align: left;
            display: none;
        }
        /* Kolumna 1 - bez przesunięcia */
            .search-results .products .product:nth-child(2n+1) .product-details-expanded {
                left: 0;
            }
            
            /* Kolumna 2 - przesuń o szerokość 1 produktu w lewo */
            .search-results .products .product:nth-child(2n+2) .product-details-expanded {
                left: -100%;
            }
}
@media (min-width: 767px) {
.group_list_info_table_row_data {
            gap: 2px;
        }
        a.group-row-link {
            width: 80%;
        }
        .group_list_info_table_row_buttons {
            width: 20%;
        }
.group_list_info_table_row_data_value {
            font-size: 8px;
            color: #000;
            letter-spacing: -0.36px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.power {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.control {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.color {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cri {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cct1 {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.angle {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.lumens {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.ugr {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.tightness {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.price {
            min-width: 19%;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cat_no {
            min-width: 140px;
            text-align: left;
            display: none;
        }
        /* Kolumna 1 - bez przesunięcia */
            .search-results .products .product:nth-child(2n+1) .product-details-expanded {
                left: 0;
            }
            
            /* Kolumna 2 - przesuń o szerokość 1 produktu w lewo */
            .search-results .products .product:nth-child(2n+2) .product-details-expanded {
                left: -100%;
            }
}
@media (max-width: 600px) {
 .product-details-expanded {
            width: 100% !important;
        }
}

@media (max-width: 991px) {
        .advanced-search-headings .mobile-toggle {
            float: right;
            cursor: pointer;
        }
        
        .advanced-search-headings .collapse-icons {
            display: inline-block;
        }
        
        .advanced-search-headings .collapse-icons .icon-expand,
        .advanced-search-headings .collapse-icons .icon-collapse {
            width: 20px;
            height: 20px;
            transition: opacity 0.3s ease;
        }
        
        .advanced-search-headings .collapse-icons .icon-collapse {
            display: none;
        }
        
        .advanced-search-headings .mobile-collapsible.collapsed .collapse-icons .icon-expand {
            display: none;
        }
        
        .advanced-search-headings .mobile-collapsible.collapsed .collapse-icons .icon-collapse {
            display: inline;
        }
        
        .advanced-search-headings .mobile-collapsible-content {
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        
        .advanced-search-headings .mobile-collapsible-content.collapsed {
            max-height: 0;
        }
        
        .advanced-search-headings .mobile-collapsible-content:not(.collapsed) {
            max-height: 1000px; /* Adjust based on your content */
        }
        
        .advanced-search-headings .search-heading h4 {
            margin: 0;
            padding: 10px 0;
            cursor: pointer;
        }
        .advanced-search-headings{
            width: 100%;
            flex-wrap: wrap;
        }
        .search-heading{
            width: 100%;
            height: auto;
            padding: 0px;
        }
        .search-values-group {
            margin-top: 0px;
        }
        .filter_group{
            width: 100%;
        }
        .menu-radio-group label.radio-label {
            gap: 4px;
        }
        .menu-radio-group{
             gap: 8px;
        }
        .mobile-filters{
            display: block;
            margin-top: 8px;
            justify-content: space-between;
        }
        .mobile-filters-container{
            display: flex;
            margin-top: 8px;
            justify-content: space-between;
        }
        .mobile-filters-text{
            font-size: 16px;
            font-weight: normal;
            color: #000;
        }
        .search-text {
            display: none !important;
        }
        .advanced-search-headings {
            padding: 0px 36px;
        }
        .product-details-expanded {
            display: none;
            width: 200%;
            position: relative;
            padding: 0;
            margin-top: 30px;
            margin-bottom: 30px;
            clear: both;
        }
        .group_list{
            flex-wrap: wrap;
        }
        .group_list_info_table_row{
            gap:0px;
        }
        .wishlist-button-filters span {
            display: none;
        }
        .cart-button-filters span {
            display: none;
        }
        a.wishlist-button-filters {
            display: flex;
            justify-content: space-between;
            align-items: center;
            letter-spacing: -0.48px !important;
            color: #000 !important;
            background-color: #f4d1c3 !important;
            padding: 10.5px 10.5px !important;
            border-radius: 20px !important;
            text-transform: lowercase !important;
            gap: 10px;
        }
        a.cart-button-filters {
            display: flex;
            justify-content: space-between;
            align-items: center;
            letter-spacing: -0.48px !important;
            color: #000 !important;
            background-color: #9FC5F0 !important;
            padding: 10.5px 10.5px !important;
            border-radius: 20px !important;
            text-transform: lowercase !important;
            gap: 10px;
        }
        .group_list_info_table_row_buttons_item.link {
            width: 0px;
        }
        a.linki-to-product {
            background: #d3d3d3;
            padding: 5.5px;
            border-radius: 37px !important;
            display: none;
            align-items: center;
        }
        .group_list_info_table_row_data {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            border-bottom: 1px solid #707070;
            margin-bottom: 2px;
            align-items: center;
            justify-content: start;
        }
        
        .group_list_info_table_row {
            display: flex;
            width: 100%;
            align-items: center;
        }
        .group_list_image {
            width: 118px;
            height: auto;
            min-width: 118px;
        }
        .mobile-container{
            display: block;
        }
        .group_list_info_container_name.mobile-container-name {
            display: flex;
            gap: 36px;
            align-items: center;
            width: 100%;
            flex-wrap: wrap;
            height: 100%;
            align-content: space-between;
        }
        .block-image-name {
            display: flex;
            gap: 8px;
        }
        .desktop-container-name{
            display: none;
        }
    }
    
    
    /* Na desktop ukrywamy toggle */
    @media (min-width: 992px) {
        a.group-row-link {
            width: 75%;
        }
        .group_list_info_table_row_buttons {
            width: 16%;
        }
        .advanced-search-headings .mobile-toggle {
            display: none;
        }
        .advanced-search-headings{
            width: 100%;
            flex-wrap: nowrap;
        }
        .search-heading{
            width: 105px;
            height: 62px;
            padding: 12.5px;
        }
        .search-values-group {
            margin-top: 42px;
        }
        .filter_group{
            width: 105px;
        }
        .menu-radio-group label.radio-label {
            gap: 8px;
        }
        .menu-radio-group{
            gap: 8px;
        }
        .mobile-filters{
            display: none;
        }
        .search-text {
            display: block;
        }
        .advanced-search-headings {
            padding: 0px 0px;
        }
        .product-details-expanded {
            display: none;
            width: 300%;
            position: relative;
            padding: 0;
            margin-top: 30px;
            margin-bottom: 30px;
            clear: both;
        }
        .group_list{
            flex-wrap: wrap;
        }
        .group_list_info_table_row{
            gap:16px;
        }
        .wishlist-button-filters span {
            display: block;
        }
        .cart-button-filters span {
            display: block;
        }
        a.wishlist-button-filters {
            display: flex;
            justify-content: space-between;
            align-items: center;
            letter-spacing: -0.48px !important;
            color: #000 !important;
            background-color: #f4d1c3 !important;
            padding: 1.5px 13.5px !important;
            border-radius: 20px !important;
            text-transform: lowercase !important;
            gap: 10px;
        }
        a.cart-button-filters {
            display: flex;
            justify-content: space-between;
            align-items: center;
            letter-spacing: -0.48px !important;
            color: #000 !important;
            background-color: #9FC5F0 !important;
            padding: 1.5px 13.5px !important;
            border-radius: 20px !important;
            text-transform: lowercase !important;
            gap: 10px;
        }
        .group_list_info_table_row_buttons_item.link {
            width: 20px;
        }
        a.linki-to-product {
            background: #d3d3d3;
            padding: 5.5px;
            border-radius: 37px !important;
            display: flex;
            align-items: center;
        }
        .group_list_info_table_row_data {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            gap: 4px;
            border-bottom: 1px solid #707070;
            margin-bottom: 2px;
            align-items: center;
            justify-content: start;
        }
        .group_list_info_table_row_data_value {
            font-size: 12px;
            color: #000;
            line-height: 22px;
            letter-spacing: -0.36px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.power {
            min-width: 35px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.control {
            min-width: 50px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.color {
            min-width: 92px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cri {
            min-width: 45px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cct1 {
            min-width: 45px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.angle {
            min-width: 70px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.lumens {
            min-width: 50px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.ugr {
            min-width: 52px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.tightness {
            min-width: 25px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.price {
            min-width: 62px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cat_no {
            min-width: 120px;
            text-align: left;
            display: block;
        }
        .group_list_info_table_row {
            display: flex;
            width: 100%;
            align-items: flex-start;
        }
        .group_list_image {
            width: 236px;
            height: auto;
            min-width: 236px;
        }
        .mobile-container{
            display: none;
        }
        .group_list_info_container_name.mobile-container-name {
            display: none;
            gap: 36px;
            align-items: center;
            width: 100%;
            flex-wrap: wrap;
            height: 100%;
            align-content: space-between;
        }
        .block-image-name {
            display: flex;
            gap: 0px;
        }
        .desktop-container-name{
            display: block;
        }
        /* Kolumna 1 - bez przesunięcia */
        .search-results .products .product:nth-child(3n+1) .product-details-expanded {
            left: 0;
        }
        
        /* Kolumna 2 - przesuń o szerokość 1 produktu w lewo */
        .search-results .products .product:nth-child(3n+2) .product-details-expanded {
            left: -100%;
        }
        
        /* Kolumna 3 - przesuń o szerokość 2 produktów w lewo */
        .search-results .products .product:nth-child(3n+3) .product-details-expanded {
            left: -200%;
        }
    }
    @media (min-width: 1200px) {
        a.group-row-link {
            width: 75%;
        }
        .group_list_info_table_row_buttons {
            width: 16%;
        }
        .advanced-search-headings .mobile-toggle {
            display: none;
        }
        .advanced-search-headings{
            width: 100%;
            flex-wrap: nowrap;
        }
        .search-heading{
            width: 105px;
            height: 62px;
            padding: 12.5px;
        }
        .search-values-group {
            margin-top: 42px;
        }
        .filter_group{
            width: 105px;
        }
        .menu-radio-group label.radio-label {
            gap: 8px;
        }
        .menu-radio-group{
            gap: 8px;
        }
        .mobile-filters{
            display: none;
        }
        .search-text {
            display: block;
        }
        .advanced-search-headings {
            padding: 0px 0px;
        }
        .product-details-expanded {
            display: none;
            width: 300%;
            position: relative;
            padding: 0;
            margin-top: 30px;
            margin-bottom: 30px;
            clear: both;
        }
        .group_list{
            flex-wrap: wrap;
        }
        .group_list_info_table_row{
            gap:16px;
        }
        .wishlist-button-filters span {
            display: block;
        }
        .cart-button-filters span {
            display: block;
        }
        a.wishlist-button-filters {
            display: flex;
            justify-content: space-between;
            align-items: center;
            letter-spacing: -0.48px !important;
            color: #000 !important;
            background-color: #f4d1c3 !important;
            padding: 1.5px 13.5px !important;
            border-radius: 20px !important;
            text-transform: lowercase !important;
            gap: 10px;
        }
        a.cart-button-filters {
            display: flex;
            justify-content: space-between;
            align-items: center;
            letter-spacing: -0.48px !important;
            color: #000 !important;
            background-color: #9FC5F0 !important;
            padding: 1.5px 13.5px !important;
            border-radius: 20px !important;
            text-transform: lowercase !important;
            gap: 10px;
        }
        .group_list_info_table_row_buttons_item.link {
            width: 20px;
        }
        a.linki-to-product {
            background: #d3d3d3;
            padding: 5.5px;
            border-radius: 37px !important;
            display: flex;
            align-items: center;
        }
        .group_list_info_table_row_data {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            gap: 4px;
            border-bottom: 1px solid #707070;
            margin-bottom: 2px;
            align-items: center;
            justify-content: start;
        }
        .group_list_info_table_row_data_value {
            font-size: 12px;
            color: #000;
            line-height: 22px;
            letter-spacing: -0.36px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.power {
            min-width: 45px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.control {
            min-width: 60px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.color {
            min-width: 108px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cri {
            min-width: 50px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cct1 {
            min-width: 50px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.angle {
            min-width: 75px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.lumens {
            min-width: 55px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.ugr {
            min-width: 60px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.tightness {
            min-width: 30px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.price {
            min-width: 70px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cat_no {
            min-width: 135px;
            text-align: left;
            display: block;
        }
        .group_list_info_table_row {
            display: flex;
            width: 100%;
            align-items: flex-start;
        }
        .group_list_image {
            width: 236px;
            height: auto;
            min-width: 236px;
        }
        .mobile-container{
            display: none;
        }
        .group_list_info_container_name.mobile-container-name {
            display: none;
            gap: 36px;
            align-items: center;
            width: 100%;
            flex-wrap: wrap;
            height: 100%;
            align-content: space-between;
        }
        .block-image-name {
            display: flex;
            gap: 0px;
        }
        .desktop-container-name{
            display: block;
        }
        /* Kolumna 1 - bez przesunięcia */
            .search-results .products .product:nth-child(3n+1) .product-details-expanded {
                left: 0;
            }
            
            /* Kolumna 2 - przesuń o szerokość 1 produktu w lewo */
            .search-results .products .product:nth-child(3n+2) .product-details-expanded {
                left: -100%;
            }
            
            /* Kolumna 3 - przesuń o szerokość 2 produktów w lewo */
            .search-results .products .product:nth-child(3n+3) .product-details-expanded {
                left: -200%;
            }
    }
    @media (min-width: 1500px) {
        a.group-row-link {
            width: 79%;
        }
        .group_list_info_table_row_buttons {
            width: 16%;
        }
        .advanced-search-headings .mobile-toggle {
            display: none;
        }
        .advanced-search-headings{
            width: 100%;
            flex-wrap: nowrap;
        }
        .search-heading{
            width: 105px;
            height: 62px;
            padding: 12.5px;
        }
        .search-values-group {
            margin-top: 42px;
        }
        .filter_group{
            width: 105px;
        }
        .menu-radio-group label.radio-label {
            gap: 8px;
        }
        .menu-radio-group{
            gap: 8px;
        }
        .mobile-filters{
            display: none;
        }
        .search-text {
            display: block;
        }
        .advanced-search-headings {
            padding: 0px 0px;
        }
        .product-details-expanded {
            display: none;
            width: 400%;
            position: relative;
            padding: 0;
            margin-top: 30px;
            margin-bottom: 30px;
            clear: both;
        }
        .group_list{
            flex-wrap: nowrap;
        }
        .group_list_info_table_row{
            gap:16px;
        }
        .wishlist-button-filters span {
            display: block;
        }
        .cart-button-filters span {
            display: block;
        }
        a.wishlist-button-filters {
            display: flex;
            justify-content: space-between;
            align-items: center;
            letter-spacing: -0.48px !important;
            color: #000 !important;
            background-color: #f4d1c3 !important;
            padding: 1.5px 13.5px !important;
            border-radius: 20px !important;
            text-transform: lowercase !important;
            gap: 10px;
        }
        a.cart-button-filters {
            display: flex;
            justify-content: space-between;
            align-items: center;
            letter-spacing: -0.48px !important;
            color: #000 !important;
            background-color: #9FC5F0 !important;
            padding: 1.5px 13.5px !important;
            border-radius: 20px !important;
            text-transform: lowercase !important;
            gap: 10px;
        }
        .group_list_info_table_row_buttons_item.link {
            width: 20px;
        }
        a.linki-to-product {
            background: #d3d3d3;
            padding: 5.5px;
            border-radius: 37px !important;
            display: flex;
            align-items: center;
        }
        .group_list_info_table_row_data {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            gap: 4px;
            border-bottom: 1px solid #707070;
            margin-bottom: 2px;
            align-items: center;
            justify-content: start;
        }
        .group_list_info_table_row_data_value {
            font-size: 12px;
            color: #000;
            line-height: 22px;
            letter-spacing: -0.36px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.power {
            min-width: 60px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.control {
            min-width: 80px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.color {
            min-width: 145px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cri {
            min-width: 55px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cct1 {
            min-width: 55px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.angle {
            min-width: 75px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.lumens {
            min-width: 60px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.ugr {
            min-width: 60px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.tightness {
            min-width: 30px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.price {
            min-width: 75px;
            text-align: left;
        }
        .group_list_info_table_row_data_value.cat_no {
            min-width: 140px;
            text-align: left;
            display: block;
        }
        .search-results .products .product:nth-child(4n+1) .product-details-expanded {
            left: 0px;
        }

        .search-results .products .product:nth-child(4n+2) .product-details-expanded {
            left: -360px;
        }

        .search-results .products .product:nth-child(4n+3) .product-details-expanded {
            left: -720px;
        }

        .search-results .products .product:nth-child(4n+4) .product-details-expanded {
            left: -1080px;
        }
    }
    
.mobile-filters-icon.open{
    display: none;
}
.mobile-filters-info {
    margin-top: 10px;
    font-size: 13px;
    color: #000;
    display: none;
}
.mobile-filters-button.extend {
    margin-top: 16px;
    text-align: right;
    font-size: 11px;
    text-decoration: underline;
    color: #000;
    font-weight: 500;
    display: none;
}
.mobile-filters-button.hide-button {
    margin-top: 16px;
    text-align: right;
    font-size: 11px;
    text-decoration: underline;
    color: #000;
    font-weight: 500;
    display: none;
}
/* CSS dla dimmable controls - dostosowany do istniejącego stylu */
.search-values-group.mobile-collapsible-content{
    padding-top: 10px;
}
.dimmable-controls {
    margin-top: 42px;
}

.dimmable-group-container {
    margin-bottom: 12px;
    background: transparent;
    position: relative;
}

.dimmable-group-header .dimmable-main-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 10px;
    font-family: "Reply", sans-serif;
}

.dimmable-group-header .dimmable-main-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #C4C4C4;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    margin: 0;
}

.dimmable-group-header .dimmable-main-input:checked {
    border-color: #C4C4C4;
}

.dimmable-group-header .dimmable-main-text {
    text-align: left !important;
    display: flex;
    align-items: flex-start;
    justify-content: start;
    gap: 8px;
    flex-wrap: nowrap;
    font-size: 12.5px;
    margin: 0px;}

.dimmable-items-container {
    background: transparent;
    margin-top: 10px;
    position: absolute;
    z-index: 2;
    top: 15px;
    background-color: #fff;
    border: 2px solid #C4C4C4;
    border-radius: 10px;
}

.dimmable-items-container .dimmable-items-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 0;
    justify-content: left;
    margin: 0px;
}

.dimmable-items-container .dimmable-item-wrapper {
    position: relative;
    width: 100%;
}

.dimmable-items-container .dimmable-hidden-checkbox {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute;
    left: -9999px;
}

.dimmable-items-container .dimmable-item-label {
    display: inline-block;
    padding: 2px 0px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    font-size: 12.5px;
    font-family: "Reply", sans-serif;
    color: #000;
    letter-spacing: -0.36px;
    margin: 0px;
    width: 100%;
    text-align: left;
}

.dimmable-items-container .dimmable-item-label:hover {
    border-color: #707070;
    background-color: #f8f9fa;
    transform: translateY(-1px);
}

/* Styl dla zaznaczonych elementów - szare tło i zaokrąglenie */
.dimmable-items-container .dimmable-hidden-checkbox:checked + .dimmable-item-label {
    background-color: #e0e0e0;
    border-color: #707070;
    color: #000;
    border-radius: 25px;
}

.dimmable-items-container .dimmable-item-text {
    display: block;
    padding: 0px 6px;
}

.dimmable-items-container .dimmable-item-note {
    display: block;
    margin-top: 4px;
    color: #707070;
    font-size: 11px;
    font-style: italic;
    font-weight: normal;
    letter-spacing: -0.3px;
}

/* Dodatkowe efekty dla jQuery */
.dimmable-items-container .dimmable-item-label.hover-effect {
    background-color: #f0f8ff;
    border-color: #707070;
}

.dimmable-items-container .dimmable-item-label.clicked {
    transform: scale(0.95);
}

/* Licznik zaznaczonych elementów */
.dimmable-group-header .selection-counter {
    color: #000;
    font-weight: 500;
    font-size: 11px;
    margin-left: 5px;
}

/* Responsive - dostosowanie do istniejących media queries */
@media (max-width: 991px) {
    .dimmable-controls .mobile-collapsible-content {
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }
    
    .dimmable-controls .mobile-collapsible-content.collapsed {
        max-height: 0;
    }
    
    .dimmable-controls .mobile-collapsible-content:not(.collapsed) {
        max-height: 1000px;
    }
    
    .dimmable-group-header .dimmable-main-text {
        font-size: 12px;
    }
    
    .dimmable-items-container .dimmable-items-wrapper {
        gap: 6px;
    }
    
    .dimmable-items-container .dimmable-item-label {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .dimmable-items-container .dimmable-item-note {
        font-size: 10px;
    }
}
/* CSS dla color controls - dostosowany do istniejącego stylu */
.color-group-container {
    margin-bottom: 12px;
    background: transparent;
    position: relative;
}

.color-group-header {
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
}

.color-group-header .color-main-label {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    cursor: pointer;
    user-select: none;
    gap: 10px;
    font-family: "Reply", sans-serif;
}

.color-group-header .color-main-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #C4C4C4;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    margin: 0;
}

.color-group-header .color-main-input:checked {
    border-color: #C4C4C4;
}

.color-group-header .color-main-input:checked::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.color-group-header .color-main-text {
    color: #000;
    font-size: 12px;
    letter-spacing: -0.36px;
    line-height: 20px;
    font-family: "Reply", sans-serif;
}

.color-group-header .color-expand-icon {
    margin-left: auto;
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #000;
}

.color-items-container {
    background: transparent;
    margin-top: 10px;
    position: absolute;
    z-index: 2;
    top: 15px;
    background-color: #fff;
    border: 2px solid #C4C4C4;
    border-radius: 10px;
}

.color-items-container .color-items-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 0;
    justify-content: left;
    margin: 0px;
}

.color-items-container .color-item-wrapper {
    position: relative;
    width: 100%;
}

.color-items-container .color-hidden-checkbox {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute;
    left: -9999px;
}

.color-items-container .color-item-label {
    display: inline-block;
    padding: 2px 0px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    font-size: 12.5px;
    font-family: "Reply", sans-serif;
    color: #000;
    letter-spacing: -0.36px;
    margin: 0px;
    width: 100%;
    text-align: left;
}

.color-items-container .color-item-label:hover {
    border-color: #707070;
    background-color: #f8f9fa;
    transform: translateY(-1px);
}

/* Styl dla zaznaczonych elementów - szare tło i zaokrąglenie */
.color-items-container .color-hidden-checkbox:checked + .color-item-label {
    background-color: #e0e0e0;
    border-color: #707070;
    color: #000;
    border-radius: 25px;
}

.color-items-container .color-item-text {
    display: block;
    padding: 0px 6px;
}

/* Dodatkowe efekty dla jQuery */
.color-items-container .color-item-label.hover-effect {
    background-color: #f0f8ff;
    border-color: #707070;
}

.color-items-container .color-item-label.clicked {
    transform: scale(0.95);
}

/* Licznik zaznaczonych elementów */
.color-group-header .selection-counter {
    color: #000;
    font-weight: 500;
    font-size: 11px;
    margin-left: 5px;
}

/* Responsive - dostosowanie do istniejących media queries */
@media (max-width: 991px) {
    .color-controls .mobile-collapsible-content {
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }
    
    .color-controls .mobile-collapsible-content.collapsed {
        max-height: 0;
    }
    
    .color-controls .mobile-collapsible-content:not(.collapsed) {
        max-height: 1000px;
    }
    
    .color-group-header .color-main-text {
        font-size: 12px;
    }
    
    .color-items-container .color-items-wrapper {
        gap: 6px;
    }
    
    .color-items-container .color-item-label {
        padding: 6px 12px;
        font-size: 11px;
    }
}
.clear-button {
    width: 100%;
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: start;
    cursor: pointer;
}
.clear-button img {
    width: 16px;
    height: auto;
}
.clear-button span {
    font-size: 12px;
    color: #000;
}
.fancybox-inner {
    width: 100% !important;
}
.filter-disabled {
    opacity: 0.4;
    pointer-events: none;
    position: relative;
}

.filter-disabled::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
}


.value-radio-label.filter-disabled,
.dimmable-item-wrapper.filter-disabled,
.color-item-wrapper.filter-disabled {
    color: #999;
}

.value-radio-label.filter-disabled .value-radio-text,
.dimmable-item-wrapper.filter-disabled .dimmable-item-text,
.color-item-wrapper.filter-disabled .color-item-text {
    text-decoration: line-through;
    opacity: 0.6;
}

/* Animacja przy zmianie dostępności */
.value-radio-label,
.dimmable-item-wrapper,
.color-item-wrapper {
    transition: opacity 0.3s ease, color 0.3s ease;
}
.search-radio{
    display: block !important;
    margin-bottom: 16px;
    width: 100%;
}
div#search_widget{
    width: 100%;  
}

.search-radio input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 16px;
    height: 16px;
    min-width: 16px;
    border: 1px solid #C4C4C4;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    margin-top: 2px;
}
.search-radio input[type="radio"]:checked {
    border-color: #C4C4C4;
}


/** INSPIRACJE **/
.inspiration-results {
    margin-top: 20px;
}

.inspiration-header {
    margin-bottom: 20px;
    text-align: center;
}

.inspiration-header h3 {
    color: #333;
    margin-bottom: 10px;
}

.search-info {
    color: #666;
    font-style: italic;
}

.inspiration-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.inspiration-item {
    padding: 10px;
    margin-bottom: 20px;
}

.inspiration-card {
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.inspiration-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.inspiration-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.inspiration-content {
    padding: 15px 0px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.inspiration-title {
    margin: 0 0 10px 0;
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    line-height: 1.3;
}

.studio-name {
    font-weight: 600;
    color: #007cba;
    margin: 5px 0;
    font-size: 0.9em;
}

.studio-name i {
    margin-right: 5px;
}

.location {
    color: #666;
    font-size: 0.85em;
    margin: 5px 0;
}

.location i {
    margin-right: 5px;
}

.description {
    margin: 10px 0;
    line-height: 1.4;
    color: #555;
    flex: 1;
    font-size: 0.9em;
}

.inspiration-tags {
    margin: 10px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.info-tag {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75em;
    color: #495057;
}

.info-tag.montage {
    background: #e3f2fd;
    color: #1565c0;
    border-color: #bbdefb;
}

.info-tag.color {
    background: #f3e5f5;
    color: #7b1fa2;
    border-color: #e1bee7;
}

.info-tag.function {
    background: #e8f5e8;
    color: #2e7d32;
    border-color: #c8e6c9;
}

.inspiration-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 15px;
}

.inspiration-link {
    display: inline-flex;
    align-items: center;
    background: #fff !important;
    font-size: 16px;
    flex: 1;
    justify-content: center;
    border: 1.5px solid #4d4d4d;
    padding: 10.5px 10.5px 10.5px 10.5px;
    border-radius: 30px;
}

.inspiration-link:hover{
    border: 1.5px solid #4d4d4d !important;
}


.inspiration-link i {
    margin-right: 5px;
}

.studio-link {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #007cba;
    border: 1px solid #007cba;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    transition: all 0.3s ease;
    justify-content: center;
}

.studio-link:hover {
    background: #007cba;
    color: white;
    text-decoration: none;
}

.studio-link i {
    margin-right: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    
    .inspiration-item {
        padding: 5px;
    }
    
    .inspiration-actions {
        flex-direction: column;
    }
}
.inspiration-no-image {
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-image-placeholder {
    text-align: center;
    color: #6c757d;
    padding: 20px;
}

.no-image-placeholder i {
    font-size: 2em;
    display: block;
    margin-bottom: 10px;
    opacity: 0.5;
}

.no-image-placeholder span {
    font-size: 0.9em;
    font-style: italic;
}
.block-results {
    margin-top: 20px;
}

.block-header {
    margin-bottom: 20px;
    text-align: center;
}

.block-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.block-item {
    padding: 10px;
    margin-bottom: 20px;
}

.block-card {
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.block-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.block-no-image {
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.block-no-image .fa-cube {
    color: #6c757d;
}

.block-content {
    padding: 15px 0px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.block-title {
    margin: 0 0 10px 0;
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    line-height: 1.3;
}

.block-text {
    font-style: italic;
    color: #666;
    font-size: 0.9em;
    margin: 10px 0;
}

.block-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 15px;
}

.block-link {
    display: inline-flex;
    align-items: center;
    background: #fff !important;
    font-size: 16px;
    flex: 1;
    justify-content: center;
    border: 1.5px solid #4d4d4d;
    padding: 10.5px 10.5px 10.5px 10.5px;
    border-radius: 30px;
}

.block-link:hover{
    border: 1.5px solid #4d4d4d !important;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #28a745;
    border: 1px solid #28a745;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    transition: all 0.3s ease;
    justify-content: center;
}

.read-more-link:hover {
    background: #28a745;
    color: white;
    text-decoration: none;
}
@media (max-width: 991px) {
    .hide_mobile{
        display: none;
    }
}
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cache-notification {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 10px 15px;
    border-radius: 4px;
    margin: 10px 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cache-notification span {
    flex: 1;
}

.clear-cache-inline,
.clear-cache-btn {
    background: none;
    border: none;
    color: #155724;
    text-decoration: underline;
    cursor: pointer;
    font-size: 12px;
    padding: 0;
    margin-left: 10px;
}

.clear-cache-inline:hover,
.clear-cache-btn:hover {
    color: #0c3d1a;
    text-decoration: none;
}
.lang-en .filter_group:nth-child(1){
    display: none !important;
}
.lang-en .group_list_info_table_row_data_value.price{
    display: none !important;
}
.product-miniature-search .product-title{
    margin-top: 21px !important;
    margin-bottom: 0px !important;
    text-transform: lowercase;
}
.product-miniature-search .thumbnail-container{
    margin-bottom: 0px !important;
}
/** CATEGORY **/
@media only screen and (max-width: 600px) {

    .product-miniature-search .thumbnail-top {
        position: relative;
        overflow: hidden;
        max-height: 100%;
        max-width: 100%;
        min-height: auto;
    }
    .product-miniature-search .product-title {
        margin-top: 8px!important;
        margin-bottom: 0px!important;
        text-transform: lowercase;
    }
    .product-miniature-search .thumbnail-container .product-thumbnail img {
        position: relative;
        display: block;
        max-width: 100%;
        margin: auto;
        object-fit: cover;
        height: auto;
    }
}

@media only screen and (min-width: 600px) {
    .product-miniature-search .thumbnail-top {
        position: relative;
        overflow: hidden;
        max-height: 100%;
        max-width: 100%;
        min-height: 194px;
    }
    .product-miniature-search .thumbnail-container .product-thumbnail img {
        position: relative;
        display: block;
        max-width: 100%;
        margin: auto;
        object-fit: cover;
        height: auto;
    }
}

@media only screen and (min-width: 1200px) {
    .product-miniature-search .thumbnail-top {
        position: relative;
        overflow: hidden;
        max-height: 100%;
        max-width: 312px;
        min-height: 390px;
    }
    .product-miniature-search .thumbnail-container .product-thumbnail img {
        position: relative;
        display: block;
        max-width: 100%;
        margin: auto;
        object-fit: cover;
        height: revert-layer;
    }

}
/** CATEGORY **/
@media only screen and (max-width: 600px) {
    .search-result-content .js-product.product {
        float: left;
        width: 100% !important;
    }
    .search-result-content .group_list {
        width: 100%;
    }
}

@media only screen and (min-width: 600px) {
    .search-result-content .js-product.product {
        float: left;
        width: 48.4% !important;
    }
}

@media only screen and (min-width: 992px) {

    .search-result-content  .js-product.product {
        float: left;
        width: 32.4% !important;
    }
}

@media only screen and (min-width: 1200px) {
    .search-result-content  .js-product.product {
        float: left;
        width: 32.74% !important;
    }
}
@media only screen and (min-width: 1500px) {

    .search-result-content  .js-product.product {
        float: left;
        width: 24.47% !important;
    }
}
.menu-radio-group label.radio-label:nth-child(3) {
    display: none !important;
}
/** SEARCH **/
@media only screen and (max-width: 600px) {
    .search-block {
        padding: 36px 36px 0 36px;
    }
    .search-button-send {
        width: auto;
    }
    .search-container-block button {
        border: 1.5px solid #4d4d4d;
        padding: 10.5px 10.5px 10.5px 10.5px;
        border-radius: 8px;
        font-size: 16px;
        color: #000;
        font-weight: normal;
        background-color: #fff;
        width: auto;
        cursor: pointer;
        position: absolute;
    }
    .search-container-block {
        display: flex;
        align-items: center;
        gap: 25px;
        flex-wrap: nowrap;
    }
    .z-search input.ui-autocomplete-input {
        border: 0px!important;
        width: auto!important;
        padding: 10px;
    }
    ul.searchbar-autocomplete {
        top: 175px!important;
        width: 100% !important;
        left: 0px!important;
    }
    div#megamenu-row-1-1 {
        padding: 0px;
    }
    div#megamenu-row-1-2 {
        padding: 0px;
    }
    .close_menu_container {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: start;
        gap: 16px;
    }
}

@media only screen and (min-width: 600px) {
    .search-block {
        padding: 36px 36px 0 36px;
    }
    .z-search input.ui-autocomplete-input {
        border: 0px!important;
        width: 93%!important;
        padding: 10px;
    }
    ul.searchbar-autocomplete {
        top: 175px!important;
        width: 100% !important;
        left: 0px!important;
    }
    div#megamenu-row-1-1 {
        padding: 0px;
    }
    div#megamenu-row-1-2 {
        padding: 0px;
    }
    .close_menu_container {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: start;
        gap: 16px;
    }
    .z-main-menu.container.show-menu>div>div>div:nth-child(3){
        display: none;
    }
}

@media only screen and (min-width: 768px) {
    .search-block {
        padding: 36px 36px 0px 36px;
    }
    .z-search input.ui-autocomplete-input {
        border: 0px!important;
        width: 93%!important;
        padding: 10px;
    }
    ul.searchbar-autocomplete {
        top: 175px!important;
        width: 430px!important;
        left: 190px!important;
    }
    .close_menu_container {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: end;
        gap: 16px;
    }
    .z-main-menu.container.show-menu>div>div>div:nth-child(3){
        display: block;
    }
}
.carousel .direction .carousel-control i{
    background: none;
}
@media only screen and (min-width: 992px) {
    .search-block {
        padding: 230px 0px 0px 0px;
    }
    .z-search input.ui-autocomplete-input {
        border: 0px!important;
        width: 438px!important;
        padding: 10px;
    }
    ul.searchbar-autocomplete {
        top: 330px!important;
        width: 438px!important;
        left: 250px!important;
        border: 0px!important;
    }
}

@media only screen and (min-width: 1200px) {
    ul.searchbar-autocomplete {
        top: 330px!important;
        width: 438px!important;
        left: 355px!important;
        border: 0px!important;
    }
}
@media only screen and (min-width: 1500px) {
    ul.searchbar-autocomplete {
        top: 330px!important;
        width: 438px!important;
        left: 505px!important;
        border: 0px!important;
    }
}
/** SEARCH **/
@media only screen and (max-width: 991px) {
    .search-block {
        display: flex;
        flex-flow: column-reverse;
        gap: 20px;
    }
}

@media only screen and (min-width: 991px) {
    .search-block {
        display: flex;
        flex-flow: column;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }
}
.fancybox-skin {
    padding: 0px !important;
    height: 100% !important;
    border-radius: 0px !important;
}
.fancybox-outer {
    height: 100%;
}
.fancybox-inner {
    width: 100% !important;
    height: 100% !important;
    background-color: #ECECECF2 !important;
}