.quick-buy-widget {
    font-family: 'Segoe UI', system-ui, sans-serif;
    max-width: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid #e0e6ef;
    padding: 20px;
    margin: 0 auto;
}

.variations-container {
    margin-bottom: 20px;
}

.variation-group {
    margin-bottom: 15px;
}

.variation-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.variation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.variation-btn {
    padding: 8px 16px;
    background: white;
    border: 1px solid #e0e6ef;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.variation-btn:hover {
    border-color: #ff3366;
}

.variation-btn.selected {
    background: #ff3366;
    color: white;
    border-color: #ff3366;
}

.actions-container {
    display: flex;
    gap: 15px;
}

.action-btn {
    flex: 1;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.buy-now-btn {
    background: #ff3366;
    color: white;
}

.buy-now-btn:hover {
    background: #e62e5c;
    transform: translateY(-2px);
}

.add-to-cart-btn {
    background: #4a6cf7;
    color: white;
}

.add-to-cart-btn:hover {
    background: #3a5ae8;
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.2rem;
}

@media (max-width: 480px) {
    .actions-container {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
    }
}