/* Kontener całego modułu */
.js-shipping-container {
    clear: both;
    display: block;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #333;
    position: relative; /* Ważne */
    z-index: 10;
}

/* Klikalny nagłówek */
.js-shipping-summary {
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.js-main-price {
    color: #d0021b;
    font-weight: 700;
    margin: 0 6px;
}

#js-shipping-arrow {
    font-size: 12px;
    transition: transform 0.3s;
    margin-left: 2px;
    color: #7a7a7a;
}

/* Lista rozwijana */
#js-shipping-list {
    display: none; /* Ukryta */
    margin-top: 8px;
    padding: 0;
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 4px;
    
    /* KLUCZOWE ZMIANY DLA ROZPYCHANIA STRONY */
    position: relative; /* Nie absolute! */
    width: 100%;
    box-shadow: none; /* Opcjonalnie, żeby wyglądało bardziej płasko */
}

#js-shipping-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
}

#js-shipping-list li:last-child {
    border-bottom: none;
}

.s-name { color: #555; }
.s-price { font-weight: bold; color: #222; }