/**
 * Product Details - Price & Actions
 * Contains: Price display, quantity controls, stock info, and action buttons
 * Part of modular product-details.css split
 */

/* Price Section */
.price-section {
    background: white !important;
    border-radius: 0 !important;
    padding: 20px !important;
    margin-bottom: 25px !important;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.current-price {
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 700;
}

.original-price {
    font-size: 24px;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.savings {
    background: var(--success-color);
    color: white;
    padding: 5px 12px;
    border-radius: 0 !important;
    font-size: 14px;
    font-weight: 500;
}

/* Quantity Controls */
.quantity-section {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: white !important;
    border-radius: 0 !important;
    padding: 8px !important;
    margin-bottom: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    gap: 10px !important;
}

.quantity-controls {
    display: inline-flex !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 0 !important;
    overflow: hidden !important;
}

.qty-btn {
    width: 45px;
    height: 45px;
    border: none;
    background: white;
    color: var(--text-primary);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

#quantity {
    width: 60px;
    height: 45px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border: none;
    background: white;
    outline: none;
}

/* Stock Info */
.stock-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--success-color);
    white-space: nowrap;
    padding-right: 8px;
    flex-shrink: 0;
}

/* Action Buttons */
.action-buttons {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-primary,
.btn-add-to-cart-black {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 !important;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100% !important;
    height: 56px !important;
}

.btn-primary:hover,
.btn-add-to-cart-black:hover {
    background: var(--primary-hover);
    transform: none;
    box-shadow: none !important;
}

/* Wishlist Button */
.btn-wishlist {
    width: 100%;
    height: 50px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-wishlist:hover {
    border-color: var(--primary-color);
    background: var(--bg-light);
}
