.custom-addons-wrapper {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.custom-addons-wrapper h4 {
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}

.custom-addons-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Ukrywamy domyślnego checkboxa */
.custom-addon-item input[type="checkbox"] {
    display: none;
}

.custom-addon-item {
    cursor: pointer;
    flex: 1;
   min-width: 160px;
    max-width: 160px;
}

.custom-addon-item .addon-content {
    position: relative;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    transition: all 0.2s ease;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.addon-zoom-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: none;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow:0px;
    transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
    z-index: 10;
    line-height: 1;
}

.addon-zoom-btn:hover {
    background: #d3a863;
    border-color: #d3a863;
    transform: scale(1.12);
}

.addon-zoom-btn svg {
    width: 12px;
    height: 12px;
    stroke: #000;
    display: block;
    flex-shrink: 0;
}

.custom-addon-item .addon-content img {
    max-width: 100%;
    height: 60px;
    object-fit: contain;
    margin-bottom: 8px;
    border-radius: 4px;
}

.custom-addon-item .addon-title {
    font-size: 13px;
    line-height: 1.2;
    margin-bottom: 5px;
    display: block;
    color: #444;
}

.custom-addon-item .addon-price {
    font-size: 14px;
    font-weight: bold;
    color: #d25619; /* Kolor z Twojego motywu */
}

/* Stan zaznaczony */
.custom-addon-item input[type="checkbox"]:checked + .addon-content {
    border-color: #d25619;
    background: #fdf6f3;
}

.custom-addons-total {
    margin-top: 15px;
    font-size: 18px;
    color: #d25619;
}

