/* Product Attributes Widget Styles - SIMPLE VERSION */

.cew-product-attributes-container {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cew-product-attributes-title {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    font-size: 1.3em;
    font-weight: 600;
}

.cew-size-attributes, .cew-color-attributes {
    margin-bottom: 15px;
}

.cew-size-attributes:last-child, .cew-color-attributes:last-child {
    margin-bottom: 0;
}

.cew-size-label, .cew-color-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.cew-size-values, .cew-color-values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cew-size-value {
    display: inline-block;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 0.9em;
    color: #333;
    min-width: 40px;
    text-align: center;
}

.cew-size-value:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.cew-color-value {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #ddd;
    cursor: pointer;
}

.cew-color-value:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 2px #333;
}

.cew-color-value-text {
    display: inline-block;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 6px 12px;
    margin: 0 5px 5px 0;
    font-size: 0.9em;
}

.cew-color-value-text:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .cew-product-attributes-container {
        padding: 15px;
    }
    
    .cew-size-value {
        padding: 4px 10px;
        font-size: 0.85em;
        min-width: 35px;
    }
    
    .cew-color-value {
        width: 25px;
        height: 25px;
    }
    
    .cew-size-values, .cew-color-values {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .cew-shipping-row {
        flex-direction: column;
    }
    
    .cew-shipping-label {
        margin-bottom: 5px;
        min-width: auto;
    }
}