/* ...existing code... */

/* ===== PRODUCT PAGE STYLES ===== */
.product-details-section {
    background: var(--body-bg, #f8f9fa);
    min-height: 100vh;
}

.product-images .main-image img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-images .main-image img:hover {
    transform: scale(1.02);
}

.product-info .product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color, #2c3e50);
    margin-bottom: 1rem;
}

.product-meta .badge {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
}

.product-price h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color, #007bff);
}

.product-description h5 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.stock-status .badge {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
}

.add-to-cart-form {
    background: var(--card-bg, #ffffff);
    /* padding: 2rem; */
    border-radius: 12px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
}

.quantity-selector label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.input-group .quantity-btn {
    border: 1px solid var(--border-color, #dee2e6);
    background: var(--btn-bg, #ffffff);
    color: var(--text-color, #495057);
    transition: all 0.2s ease;
}

.input-group .quantity-btn:hover {
    background: var(--primary-color, #007bff);
    color: #ffffff;
    border-color: var(--primary-color, #007bff);
}

.add-to-cart-form .btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.add-to-cart-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.related-products-section {
    background: var(--body-bg, #f8f9fa);
}

.related-products-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color, #2c3e50);
    margin-bottom: 2rem;
}

.related-products-section .product-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.related-products-section .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.related-products-section .product-card .card-body {
    padding: 1.5rem;
}

.related-products-section .product-title a {
    color: var(--text-color, #2c3e50);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.related-products-section .product-title a:hover {
    color: var(--primary-color, #007bff);
}

/* ===== CART PAGE STYLES ===== */
.cart-section {
    background: var(--body-bg, #f8f9fa);
    min-height: 100vh;
}

.cart-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color, #2c3e50);
    margin-bottom: 3rem;
}

.empty-cart {
    background: var(--card-bg, #ffffff);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.empty-cart .text-muted {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cart-items .cart-item {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.cart-items .cart-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cart-items .cart-item .card-body {
    padding: 1.5rem;
}

.cart-items .cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-items .cart-item h6 {
    font-weight: 600;
    color: var(--text-color, #2c3e50);
}

.cart-items .cart-item .text-muted {
    font-size: 0.875rem;
}

.cart-items .cart-item .font-weight-bold {
    color: var(--primary-color, #007bff);
    font-size: 1.1rem;
}

.cart-items .input-group-sm .quantity-btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

.cart-summary {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 2rem;
}

.cart-summary .card-header {
    background: var(--primary-color, #007bff);
    color: #ffffff;
    border-radius: 12px 12px 0 0 !important;
    padding: 1.5rem;
}

.cart-summary .card-header h5 {
    margin: 0;
    font-weight: 600;
}

.cart-summary .card-body {
    padding: 2rem;
}

.cart-summary .d-flex {
    margin-bottom: 1rem;
}

.cart-summary hr {
    margin: 1.5rem 0;
    border-color: var(--border-color, #dee2e6);
}

.cart-summary .btn-primary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cart-summary .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.cart-summary .btn-outline-primary {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* ===== WISHLIST PAGE STYLES ===== */
.wishlist-items {
    margin-top: 2rem;
}

.wishlist-item {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.wishlist-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.wishlist-item .card-body {
    padding: 1.5rem;
}

.wishlist-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.wishlist-item .card-title {
    font-weight: 600;
    color: var(--text-color, #2c3e50);
    margin-bottom: 0.5rem;
}

.wishlist-item .card-text {
    margin-bottom: 0.5rem;
}

.wishlist-item .btn {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.wishlist-item .btn:hover {
    transform: translateY(-1px);
}

.empty-wishlist-icon {
    color: var(--text-muted, #6c757d);
    margin-bottom: 1.5rem;
}

.empty-wishlist-icon svg {
    stroke-width: 0.5;
}

/* ===== CHECKOUT PAGE STYLES ===== */
.checkout-section {
    background: var(--body-bg, #f8f9fa);
    min-height: 100vh;
}

.checkout-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color, #2c3e50);
    margin-bottom: 3rem;
}

.checkout-section .billing-info,
.checkout-section .order-summary {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.checkout-section .card-header {
    background: var(--primary-color, #007bff);
    color: #ffffff;
    padding: 1.5rem;
    font-weight: 600;
}

.checkout-section .card-body {
    padding: 2rem;
}

.checkout-section .form-group {
    margin-bottom: 1.5rem;
}

.checkout-section .form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--text-color, #2c3e50);
}

.checkout-section .form-control {
    border: 2px solid var(--border-color, #dee2e6);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-section .form-control:focus {
    border-color: var(--primary-color, #007bff);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.checkout-section .btn-primary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
}

.checkout-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.checkout-section .btn-outline-primary {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-details-section .row {
        flex-direction: column;
    }

    .product-info .product-title {
        font-size: 2rem;
    }

    .cart-items .cart-item .row {
        flex-direction: column;
        text-align: center;
    }

    .cart-items .cart-item img {
        margin-bottom: 1rem;
    }

    .wishlist-item .row {
        flex-direction: column;
        text-align: center;
    }

    .wishlist-item img {
        margin-bottom: 1rem;
    }

    .checkout-section .row {
        flex-direction: column;
    }
}

/* ...existing code... */
