/* Variant Selector Styling */
.variant-selector-wrapper {
    position: relative;
}

.variant-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 12px 40px 12px 16px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.variant-select:hover {
    border-color: #cbd5e1;
}

.variant-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

.variant-select:disabled {
    background-color: #f8fafc;
    cursor: not-allowed;
    opacity: 0.6;
}

.variant-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #64748b;
    font-size: 12px;
    transition: all 0.2s ease;
}

/* Quantity Selector Styling */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 200px;
}

.qty-btn {
    width: 44px;
    height: 44px;
    border: 2px solid #e2e8f0;
    background: #ffffff;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: #475569;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.qty-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #1e293b;
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.qty-input {
    flex: 1;
    height: 44px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    color: #1e293b;
    min-width: 60px;
}

.qty-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Remove spinner arrows */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input[type=number] {
    -moz-appearance: textfield;
}

/* Price Summary Styling */
.price-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    margin-bottom: 16px;
    border: 2px solid #bae6fd;
}

.price-label {
    font-weight: 700;
    font-size: 15px;
    color: #0c4a6e;
}

.price-amount {
    font-size: 20px;
    font-weight: 900;
    color: #0369a1;
}

/* Enhanced Add to Cart Button */
.add-to-cart-btn {
    border-radius: 12px;
    padding: 14px;
    font-size: 16px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 12px -2px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

/* Form Labels */
.form-label {
    margin-bottom: 8px;
    color: #1e293b;
    font-size: 14px;
}

.form-label i {
    font-size: 13px;
}