.producer-page {
    display: flex;
    width: min(1400px, 95vw);
    height: 150px;
    margin: 50px auto;
    justify-content: center;
}


.right-column {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #03294c 0%, #1a1a2e 50%, #2d0a0a 100%);
    position: relative;
    overflow: hidden;
}

.right-column::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(225, 0, 29, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.right-column p {
    position: relative;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: white;
    font-family: Poppins, sans-serif;
    z-index: 1;
    text-align: center;
    padding: 0;
    background: none;
    width: auto;
    text-transform: uppercase;
}

.right-column p::before,
.right-column p::after {
    display: none;
}


.producer-banner {
    width: 100%;
    background-color: transparent; 
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}



.banner-content {
    text-align: center;
    z-index: 2;
}


.banner-subtitle {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 4px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}



.banner-title {
    font-size: 92px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
   background: linear-gradient(
        90deg,
        #03294c 0%,
        #e1001d 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;

    font-kerning: none;
    font-feature-settings: "kern" 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
     background-size: 100% 100%;
    background-position: center;
     will-change: transform;
    transform: translateZ(0);
 text-rendering: optimizeLegibility;
     text-rendering: geometricPrecision;

}



/* Sekcja produktów - poprawiony kontener */

.producer-content-section {
    margin-bottom: 40px;
    max-width: 1400px;
    width: min(1400px, 95vw);
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}






.producer-content-section h2 {
    font-size: 1.5rem;
    color: #333333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #333;
}



@media (min-width: 1200px) and (max-width: 1399px) {
    .producer-page {
        width: 100vw;
    }
    
    .producer-banner {
        border-radius: 20px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
   

    
    .banner-title {
        font-size: 2.4rem;
    }
    
    .banner-subtitle {
        font-size: 42px;
    }
    
    .producer-banner {
        border-radius: 18px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
   
    
    .banner-title {
        font-size: 4rem;
    }
    
    .banner-subtitle {
        font-size: 38px;
    }
    
    .producer-banner {
        border-radius: 15px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .producer-page {
        flex-direction: column;
        width: 100%;
        height: auto;
        margin: 40px auto;
    }
    
    .producer-banner {
        width: 100%;
        border-radius: 20px;
        padding: 50px 25px;
        min-height: 250px;
    }
    
    .banner-title {
        font-size: 1.8rem;
    }
    
    .banner-subtitle {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .producer-page {
        flex-direction: column;
        width: 95%;
        height: auto;
        margin: 30px auto;
    }
    
    .producer-banner {
        width: 100%;
        border-radius: 15px;
        padding: 40px 20px;
        min-height: 200px;
    }
    
    .banner-title {
        font-size: 1.6rem;
    }
    
    .banner-subtitle {
        font-size: 28px;
    }
}





.producer-content-section p {
    color: #666666;
    line-height: 1.6;
}

/* Siatka produktów */
.producer-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 20px;
    gap: 25px;
    cursor: pointer;
    align-items: stretch;
}

/* Karta produktu */
.producer-page-product-item {
    background-color: #ffffff;
    border: 2px solid #f0efef;
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    align-self: stretch;
    width: 100%;
    box-sizing: border-box;
}

/* Hover effect dla karty */
.producer-page-product-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* WYŁĄCZ hover effect dla całej karty gdy hover na tytule */
.producer-page-product-item:has(.producer-product-title:hover) {
    transform: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

/* Fallback dla przeglądarek bez :has() */
.producer-page-product-item.title-hover-active {
    transform: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

/* Stickery promocyjne */
.producer-status-label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    z-index: 5;
}


.free-shipping-badge {
    position: absolute;
    top: 15px;
    color: white;
    padding: 5px 9px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 5;
}

.nowość-badge {
    left: 10px;
    background-color: #02b875;
}

.promocja-badge {
    background-color: rgba(15, 169, 172, 0.8);
    position: absolute;
    top: 15px;
    z-index: 5;
}

.nowość-badge + .promocja-badge {
    left: 92px; 
}

.producer-page-product-item:not(:has(.nowość-badge)) .promocja-badge {
    left: 10px;
}


.producer-nowosc-badge {
    background-color: #02b875;
}

.producer-promocja-badge {
    background-color: rgba(15, 169, 172, 0.8);
}

.producer-nowosc-badge + .producer-promocja-badge {
    left: 80px !important; /* Zmniejszony odstęp */
}

/* Container obrazka – stała wysokość */
.producer-product-image-container {
    position: relative;
    margin-bottom: 10px;
    height: 190px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.producer-page-product-item img {
    margin: 0 auto;
    max-width: 80%; /* Zwiększony obraz */
    height: auto;
    border-radius: 8px;
    transition: opacity 0.3s ease;
    object-fit: contain;
    max-height: 180px; /* Zwiększona wysokość */
    width: auto;
    display: block;
}

/* Informacje o produkcie */
.producer-product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.producer-producer-title {
    text-align: left;
    color: #4a5568;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* TYTUŁ – stała wysokość = zawsze dokładnie 3 linie we wszystkich kartach */
.producer-product-title {
    font-size: 16px;
    font-weight: 600;
    color: black;
    line-height: 1.4;
    height: calc(3 * 1.4em);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 0;
    flex: 0 0 calc(3 * 1.4em);
}

/* Separator */
.producer-separator-category {
    height: 1px;
    border: none;
    border-top: 1px solid #e9e9e9;
    margin: 12px -20px; /* Zmniejszony margines */
    width: calc(100% + 40px);
}

/* Ceny - standardowe fonty */
.producer-product-price-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px; /* Zmniejszony gap */
    margin: 10px 0; /* Zmniejszony margines */
}

.producer-current-price {
    font-weight: bold;
    color: #000;
    font-size: 16px; /* Standardowa cena */
}

.producer-savings-amount {
    color: #079257;
    font-size: 0.95em;
    font-weight: bold;
}

.producer-price-brutto {
    color: #666;
    font-size: 0.85em;
    margin-left: 3px;
}

/* Status dostępności */
.producer-stock-status {
    font-size: 14px;
    font-weight: 400;
    margin: 6px 0; /* Zmniejszony margines */
}

.producer-availability {
    text-align: left;
    color: #4a5568;
    font-size: 0.95rem;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 400;
}

.producer-stock-status.producer-in-stock {
    color: #02816f;
    font-weight: bold;
}

.producer-stock-status.producer-medium-stock {
    color: #02816f;
    font-weight: bold;
}

.producer-stock-status.producer-low-stock {
    color: #e67e22;
    font-weight: bold;
}

.producer-stock-status.producer-out-of-stock {
    color: #dc3545;
    font-weight: bold;
}

/* Kontener wysyłki i koszyka */
.producer-ctn-shipping {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    gap: 12px;
}

.producer-shipping-info {
    background-color: #f5f5f5;
    justify-content: flex-start;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
    color: #6c757d;
    border-radius: 9999px;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Kontener przycisku – stała szerokość ZAWSZE (nawet gdy pusty dla niedostępnych)
   dzięki temu shipping-info ma identyczną szerokość dla wszystkich kart */
.producer-cart-button-container {
    width: 40px;
    flex-shrink: 0;
}

/* PRZYCISK KOSZYKA - standardowy */
.producer-cart-button {
    width: 40px;
    height: 40px;
    background: linear-gradient(to left, #e1001d 0%, #03294c 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
    flex-shrink: 0;
    outline: none;
}

.producer-cart-button:hover {
    background: linear-gradient(to left, #c4001a 0%, #021f35 100%);
    transform: scale(1.05);
}

.producer-cart-button:focus {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
    opacity: 1;
    transform: scale(1);
}

.producer-cart-button:active {
    transform: scale(0.95);
}

/* Ukrycie przycisku dla produktów niedostępnych */
.producer-cart-button:disabled,
.producer-cart-button[disabled] {
    display: none !important;
}

/* Pokazanie przycisku po najechaniu - TYLKO dla dostępnych produktów */
.producer-page-product-item:hover .producer-cart-button:not(:disabled):not([disabled]) {
    opacity: 1;
    transform: scale(1);
}

.producer-page-product-item.out-of-stock .producer-cart-button {
    display: none !important;
}

/* Ikonka koszyka - standardowa */
.producer-cart-icon {
    width: 18px;
    height: 18px;
    fill: white;
}

/* Szczegóły produktu */
.producer-product-details {
    display: none;
    text-align: left;
    color: #4a5568;
    font-size: 15px;
    font-weight: 400;
    white-space: normal;
    height: auto;
    line-height: 1.5;
    margin-top: 10px;
}

.producer-page-product-item:hover .producer-product-details {
    display: block;
}

.producer-product-details div {
    margin-bottom: 3px;
}

.producer-product-details div:last-child {
    margin-bottom: 0;
}

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

/* Large screens - 4 kolumny */
@media (min-width: 1400px) {
    .producer-product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Desktop large - 3-4 kolumny */
@media (min-width: 1200px) and (max-width: 1399px) {
    .producer-page {
        width: 95vw;
    }

    .producer-content-section {
        max-width: 1300px;
        width: 95vw;
    }

    .producer-product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .right-column p {
        font-size: 42px;
    }
}

/* Desktop medium - 3 kolumny */
@media (min-width: 992px) and (max-width: 1199px) {
    .producer-page {
        width: 95vw;
  
    }

    .producer-content-section {
        max-width: 1200px;
        width: 95vw;
    }

    .producer-product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .right-column p {
        font-size: 38px;
        letter-spacing: 1.5px;
    }

    .left-column img {
        max-width: 85%;
        max-height: 85%;
    }

    .producer-page-product-item {
        min-height: 300px; /* Zmniejszona wysokość */
        padding: 18px;
    }
}

/* Tablet - 2 kolumny */
@media (min-width: 768px) and (max-width: 991px) {

    .producer-page {
        width: 95vw;
    }

    .producer-content-section {
        max-width: 100%;
        width: 95vw;
        padding: 0 15px;
    }

    .producer-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .producer-page-product-item {
        min-height: 280px; /* Zmniejszona wysokość */
        padding: 16px;
    }

    .producer-page-product-item img {
        max-width: 80%; /* Zachowaj większy rozmiar */
        max-height: 180px; /* Zachowaj większą wysokość */
    }

    .right-column p {
        font-size: 34px;
        letter-spacing: 1px;
    }

    /* Pokazuje elementy na stałe na tabletach */
    .producer-product-details {
        display: block !important;
    }

    /* Przyciski widoczne na tabletach */
    .producer-cart-button:not(:disabled):not([disabled]) {
        opacity: 1 !important;
        transform: scale(1) !important;
    }

    /* Usunięte hover effects */
    .producer-page-product-item:hover {
        transform: translateY(-1px);
    }

    .producer-nowosc-badge + .producer-promocja-badge {
        left: 70px !important; /* Jeszcze mniejszy odstęp na tablet */
    }
}

/* Mobile large - 2 kolumny */
@media (min-width: 576px) and (max-width: 767px) {
    .producer-page {
        flex-direction: column;
        width: 95%;
        height: auto;
        margin: 40px auto;
    }

    .left-column {
        width: 100%;
        order: 2;
        border-radius: 0 0 25px 25px;
        padding: 25px;
        min-height: 200px;
    }

    .left-column img {
        max-width: 70%;
        max-height: 70%;
    }

    .right-column {
        width: 100%;
        order: 1;
        border-radius: 25px 25px 0 0;
        padding: 25px;
        min-height: 120px;
    }

    .right-column p {
        font-size: 28px;
        margin-bottom: 10px;
        letter-spacing: 0.5px;
    }

    .right-column img {
        max-width: 50%;
    }

    .producer-content-section {
        width: 95%;
        padding: 0 15px;
    }

    .producer-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .producer-page-product-item {
        min-height: 260px; /* Zmniejszona wysokość na mobile */
        padding: 15px;
    }

    .producer-page-product-item img {
        max-width: 55%;
        max-height: 140px;
    }

    .producer-current-price {
        font-size: 16px;
    }

    /* Na mobile - elementy zawsze widoczne */
    .producer-product-details {
        display: block !important;
    }

    .producer-cart-button:not(:disabled):not([disabled]) {
        opacity: 1 !important;
        transform: scale(1) !important;
    }

    .producer-page-product-item:hover {
        transform: none;
    }

    /* Mniejsze rozwijanie tytułów */
    .producer-product-title.producer-medium-title:hover a {
        top: -1.2em;
    }

    .producer-product-title.producer-long-title:hover a {
        top: -2.4em;
        -webkit-line-clamp: 3;
        max-height: calc(1.5em * 3);
    }
}

/* Mobile small - 1 kolumna */
@media (max-width: 600px) {
    .producer-page {
        flex-direction: column;
        width: 95%;
        height: auto;
        margin: 30px auto;
    }

    .left-column {
        width: 100%;
        order: 2;
        border-radius: 0 0 20px 20px;
        padding: 20px;
        min-height: 180px;
    }

    .left-column img {
        max-width: 60%;
        max-height: 60%;
    }

    .right-column {
        width: 100%;
        order: 1;
        border-radius: 20px 20px 0 0;
        padding: 20px;
        min-height: 100px;
    }

    .right-column p {
        font-size: 24px;
        margin-bottom: 8px;
        letter-spacing: 0px;
    }

    .right-column img {
        max-width: 45%;
    }

    .producer-content-section {
        width: 95%;
        padding: 0 10px;
    }

    .producer-product-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .producer-page-product-item {
        min-height: 240px; /* Najmniejsza wysokość na mobile small */
        padding: 14px;
        max-width: 100%;
    }

    .producer-page-product-item img {
        max-width: 45%;
        max-height: 120px;
    }

    .producer-current-price {
        font-size: 15px;
    }

    .producer-product-title {
        font-size: 15px;
    }

    .producer-shipping-info {
        font-size: 12px;
        padding: 6px 10px;
    }

    .producer-cart-button {
        width: 40px;
        height: 40px;
    }

    .producer-cart-icon {
        width: 18px;
        height: 18px;
    }

    /* Na bardzo małych ekranach - jeszcze mniejsze rozwijanie */
    .producer-product-title.producer-long-title:hover a {
        -webkit-line-clamp: 3;
        max-height: calc(1.5em * 3);
        top: -1.5em;
    }

    .producer-nowosc-badge + .producer-promocja-badge {
        left: 65px !important; /* Najmniejszy odstęp na mobile */
    }
}

/* === STICKERY === */
.manufacturer-status-label {
    position: absolute;
    top: 15px;
    z-index: 2;
    color: white;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.manufacturer-nowosc-badge {
    left: 15px;
    background-color: #4CAF50 !important;
}

.manufacturer-promocja-badge {
    left: 85px; /* Zmniejszony odstęp */
    background-color: #0FA9AC !important;
}

.producer-page-product-item:not(:has(.manufacturer-nowosc-badge)) .manufacturer-promocja-badge {
    left: 15px;
}

.manufacturer-savings-amount {
    color: #079257;
    font-size: 15px;
    font-weight: bold;
    margin-left: 10px;
}

/* AJAX przycisk - standardowy rozmiar */
.producer-page-product-item .ajax-add-to-cart-button {
    width: 40px !important;
    height: 40px !important;
    background: linear-gradient(to left, rgb(225, 0, 29) 0%, rgb(3, 41, 76) 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    opacity: 0 !important;
    transform: scale(0.8) !important;
    flex-shrink: 0 !important;
    outline: none !important;
    padding: 0px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    margin: 0px !important;
    font-size: 0px !important;
    pointer-events: none !important;
}

@media (min-width: 992px) {
    .producer-page-product-item:hover .ajax-add-to-cart-button {
        opacity: 1 !important;
        transform: scale(1) !important;
        pointer-events: auto !important;
    }
}

@media (max-width: 991px) {
    .producer-page-product-item .ajax-add-to-cart-button {
        opacity: 1 !important;
        transform: scale(1) !important;
        pointer-events: auto !important;
    }
}

/* Style paginacji */
.responsive-pagination .page-list .page-item .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 2px solid #ddd;
    background: white;
    color: #333;
}

.responsive-pagination .page-list .page-item.current .page-link,
.responsive-pagination .page-list .page-item.active .page-link {
    background: linear-gradient(to left, #e1001d 0%, #03294c 100%) !important;
    color: white !important;
    cursor: default !important;
    font-weight: 600 !important;
}

.responsive-pagination .page-list .page-item:not(.current):not(.active) .page-link:hover {
    background: #f5f5f5;
    border-color: #999;
}

.responsive-pagination .page-list .page-item.previous .page-link,
.responsive-pagination .page-list .page-item.next .page-link {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 14px 28px !important;
    border: none !important;
    background: linear-gradient(to left, #e1001d 0%, #03294c 100%) !important;
    color: white !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 30px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    width: auto !important;
    height: auto !important;
    min-height: 48px !important;
}

.responsive-pagination .page-list .page-item.previous .page-link:hover,
.responsive-pagination .page-list .page-item.next .page-link:hover {
    opacity: 0.9 !important;
    transform: none !important;
}

.responsive-pagination .mobile-icon {
    display: none !important;
}

.responsive-pagination .desktop-text {
    display: inline !important;
}

.responsive-pagination .page-list {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.responsive-pagination .page-list .page-item {
    margin: 0;
}

/* Wyłączenie efektów focus/active */
.responsive-pagination .page-list .page-item .page-link:focus,
.responsive-pagination .page-list .page-item .page-link:active,
.responsive-pagination .page-list .page-item .page-link:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    transform: none !important;
}

.mobile-pagination-actions,
.mobile-load-more-btn {
    display: none !important;
}


.producer-content-section {
    margin-bottom: 60px !important; 
}

.pagination-container {
    margin: 30px 0 50px 0 !important;
}

/* Dla responsywności */
@media (max-width: 768px) {
    .producer-content-section {
        margin-bottom: 50px !important;
    }
}

@media (max-width: 576px) {
    .producer-content-section {
        margin-bottom: 40px !important;
    }
}
/* === PRODUCER SORT DROPDOWN === */
.producer-filters-container {
    margin: 16px 0;
}

.producer-sort-dropdown {
    position: relative;
    display: inline-block;
}

.producer-sort-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    transition: all 0.2s ease;
    min-width: 160px;
}

.producer-sort-toggle:hover {
    border-color: #ccc;
    background-color: #fafafa;
}

.producer-sort-toggle::before {
    content: '';
    width: 16px;
    height: 16px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23333333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="4" y1="6" x2="20" y2="6"></line><line x1="4" y1="12" x2="20" y2="12"></line><line x1="4" y1="18" x2="11" y2="18"></line></svg>') no-repeat center;
    background-size: contain;
    flex-shrink: 0;
}

.producer-sort-toggle::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #666;
    margin-left: auto;
    transition: transform 0.2s ease;
}

.producer-sort-dropdown.active .producer-sort-toggle::after {
    transform: rotate(180deg);
}

.producer-sort-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 100%;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 100;
    overflow: hidden;
}

.producer-sort-dropdown.active .producer-sort-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.producer-sort-item {
    display: block;
    padding: 10px 16px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.producer-sort-item:hover {
    background-color: #f8f8f8;
    color: #333;
    text-decoration: none;
}

.producer-sort-item.active {
    color: #333;
    font-weight: 600;
    background-color: #f0f0f0;
}

.producer-sort-divider {
    height: 1px;
    margin: 0;
    background-color: #e0e0e0;
}