.product-addons-wrapper {
    margin: 30px 0;
    padding: 0;
    background: transparent;
    border: none;
}

.product-addons-wrapper h3 {
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.product-addons-wrapper h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #333;
}

.product-addons-list {
    display: grid;
    gap: 15px;
    margin-bottom: 20px;
}

.product-addon-item {
    position: relative;
    padding: 20px;
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

.product-addon-item:hover {
    border-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-addon-item:has(.product-addon-checkbox:checked) {
    border-color: #333;
    background: #f8f8f8;
}

.product-addon-item:has(.product-addon-checkbox:checked)::before {
    content: '✓';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 28px;
    height: 28px;
    background: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.addon-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    margin: 0;
}

.product-addon-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.addon-name {
    flex: 1;
    font-weight: 600;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.addon-price {
    display: block;
    font-weight: 700;
    color: var(--addon-price-color, #333);
    font-size: 20px;
    margin-top: 5px;
}

.addon-description {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.product-addons-total {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.product-addons-total strong {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.addons-total-price {
    font-weight: 700;
    color: var(--addon-price-color, #333);
    font-size: 24px;
}

.price-with-addons {
    display: block;
    margin-top: 5px;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.addon-content {
    width: 100%;
    padding-right: 40px;
}

/* אנימציה */
@keyframes checkmark {
    0% {
        transform: scale(0) rotate(-45deg);
    }
    50% {
        transform: scale(1.2) rotate(-45deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

.product-addon-item:has(.product-addon-checkbox:checked)::before {
    animation: checkmark 0.3s ease-out;
}

/* התאמה לנייד */
@media (max-width: 768px) {
    .product-addons-wrapper h3 {
        font-size: 18px;
    }
    
    .product-addon-item {
        padding: 15px;
    }
    
    .addon-name {
        font-size: 15px;
    }
    
    .addon-price {
        font-size: 18px;
    }
    
    .product-addons-total {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .addons-total-price {
        font-size: 22px;
    }
}