/**
 * DSAW Product Configurator - Frontend Styles
 */

.dsaw-configurator {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.dsaw-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #212529;
}

.dsaw-loading {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.dsaw-loading i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.dsaw-groups {
    margin-bottom: 20px;
}

.dsaw-group {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
}

.dsaw-group:last-child {
    margin-bottom: 0;
}

.dsaw-group-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #495057;
}

.dsaw-required {
    color: #dc3545;
    font-weight: bold;
}

.dsaw-attributes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dsaw-attribute {
    padding: 10px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    transition: all 0.2s;
    cursor: pointer;
}

.dsaw-attribute:hover {
    border-color: #007bff;
    background-color: #f0f8ff;
}

.dsaw-attribute label {
    display: flex;
    align-items: center;
    margin: 0;
    cursor: pointer;
    width: 100%;
}

.dsaw-attribute-input {
    margin-right: 10px;
    cursor: pointer;
}

.dsaw-attribute-name {
    flex: 1;
    font-weight: 500;
}

.dsaw-attribute-price {
    color: #28a745;
    font-weight: 600;
    margin-left: auto;
}

.dsaw-attribute input:checked + .dsaw-attribute-name {
    color: #007bff;
}

.dsaw-attribute:has(input:checked) {
    border-color: #007bff;
    background-color: #e7f3ff;
}

.dsaw-price-summary {
    background: #fff;
    border: 2px solid #28a745;
    border-radius: 6px;
    padding: 15px;
    margin-top: 20px;
}

.dsaw-price-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.dsaw-price-row:last-child {
    border-bottom: none;
}

.dsaw-price-label {
    font-weight: 500;
    color: #495057;
}

.dsaw-price-value {
    font-weight: 600;
    color: #212529;
}

.dsaw-price-additional {
    color: #28a745;
}

.dsaw-price-additional .dsaw-price-value {
    color: #28a745;
}

.dsaw-price-total {
    margin-top: 5px;
    padding-top: 15px;
    border-top: 2px solid #dee2e6;
    font-size: 1.2rem;
}

.dsaw-price-total .dsaw-price-label,
.dsaw-price-total .dsaw-price-value {
    color: #007bff;
}

.dsaw-errors {
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .dsaw-configurator {
        padding: 15px;
    }
    
    .dsaw-title {
        font-size: 1.25rem;
    }
    
    .dsaw-group {
        padding: 12px;
    }
    
    .dsaw-price-total {
        font-size: 1.1rem;
    }
}

/* ── Koszyk i zamówienie ── */
.dsaw-cart-options {
    margin-top: 10px;
}

.dsaw-cart-item {
    padding: 6px 0;
    border-top: 1px solid #e9ecef;
    font-size: 0.9rem;
}

.dsaw-cart-item:first-child {
    border-top: none;
}

.dsaw-cart-product-name {
    margin-bottom: 4px;
}

.dsaw-cart-lines {
    line-height: 1.6;
}

.dsaw-cart-line {
    display: block;
}

.dsaw-cart-group {
    color: #495057;
    font-weight: 600;
    margin-right: 4px;
}

.dsaw-cart-attrs {
    color: #007bff;
}

.dsaw-cart-price {
    margin-top: 4px;
    font-weight: 600;
    color: #28a745;
    font-size: 0.85rem;
}
