.belshop-cart table {
    width: 100%;
    border-collapse: collapse; /* Verhindert doppelte Rahmen */
}

.belshop-cart th, 
.belshop-cart td {
    border: 1px solid #ddd; /* Leichter grauer Rahmen */
    padding: 10px;
    text-align: left;
}

.belshop-cart th {
    background-color: #f8f8f8; /* Heller Hintergrund für die Kopfzeile */
}

.belshop-cart tbody tr:nth-child(even) {
    background-color: #f9f9f9; /* Abwechselnde Zeilenfarben */
}
.link-small{
    font-size: 10pt;
}
.belshop-quantity-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.belshop-remove-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    max-width: 28px;
    max-height: 28px;
    flex: 0 0 28px;
    box-sizing: border-box;
    aspect-ratio: 1 / 1;
    padding: 0;
    border: 1px solid #ccc;
    border-radius: 50%;
    background: #fff;
     color: #b38f39 !important;
     font-size: 18px;
     line-height: 1;
     cursor: pointer;
     overflow: hidden;
}
.belshop-remove-item:hover {
    background: #ffecec !important;
    border-color: #b30000 !important;
}
/* Versand */
.belshop-shipping-options {
    display: flex;
    gap: 0.5rem;
}

.belshop-option {
    cursor: pointer;
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
    background-color: #f9f9f9;
    color: #333;
}

.belshop-option .icon {
    margin-right: 0.5rem;
    font-size: 0.9em;
}
        .belshop-quantity {
        max-width: 80px;   /* maximale Breite */
        width: 100%;       /* passt sich innerhalb der Zelle an */
    }
.belshop-option:hover {
    border-color: #999;
}

.belshop-option.selected {
    background-color: #007148; /* ✅ Grün (z. B. Tailwind „green-600“) */
    border-color: #007148;
    color: #f9f9f9;
}

.belshop-option.selected .icon,
.belshop-option.selected .text {
    color: #ffffff;
}
