.whatsapp-order-container {
    margin: 20px 0;
    text-align: center;
}

#whatsapp-order-btn {
    background-color: #25D366;
    border-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

#whatsapp-order-btn:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#whatsapp-order-btn .whatsapp-icon {
    margin-right: 10px;
    font-size: 20px;
}

@media (max-width: 768px) {
    #whatsapp-order-btn {
        width: 100%;
        padding: 15px;
    }
}

.product-attributes-selection {
    margin: 15px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 4px;
    border-left: 4px solid #25D366;
}

.attribute-notice {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 10px;
}

.attribute-list {
    margin-top: 10px;
}

.attribute-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #e9ecef;
}

.attribute-name {
    font-weight: bold;
}

.attribute-value {
    color: #25D366;
}