 /* body {
            font-family: 'Inter', sans-serif;
            background-color: #f9fafb;
            padding: 20px;
        } */
        
        .container-sm {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .main-product-container {
            border-radius: 15px;
            background-color: white;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            border: 1px solid #e5e7eb;
            padding: 25px;
            margin-bottom: 30px;
        }
        
        .search-container {
            position: relative;
            margin-bottom: 25px;
        }
        
        .search-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #6c757d;
        }
        
        .product-main-image {
            height: 235px;
            border-radius: 15px;
            background-color: #f3f4f6;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .product-image {
            max-width: 80%;
            max-height: 80%;
            transition: transform 0.3s ease;
        }
        
        .product-image:hover {
            transform: scale(1.05);
        }
        
        .selected-product-container {
            border-radius: 15px;
            border: 1px solid #e5e7eb;
            padding: 20px;
        }
        
        .left-product-description {
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .quantity-input {
            width: 60px;
            text-align: center;
            border: 1px solid #ced4da;
            height: 32px;
        }
        
        .btn-quantity {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f0f0f0;
            border: 1px solid #ccc;
            padding: 5px;
            cursor: pointer;
        }
        
        .main-total-amount {
            color: #ffbe00;
            font-weight: 700;
            font-size: 1.25rem;
        }
        
        .add-2-cart-btn {
            border-radius: 10px;
            background-color: #ffbe00;
            color: white;
            padding: 12px;
            font-weight: 600;
            transition: background-color 0.3s;
            line-height: 0;
        }
        
        .add-2-cart-btn:hover {
            background-color: #e5ab00;
            color: white;
        }
        
        .buy-now-btn {
            border-radius: 10px;
            background-color: #151616;
            color: white;
            padding: 12px;
            font-weight: 600;
            transition: background-color 0.3s;
            line-height: 0;
        }
        
        .buy-now-btn:hover {
            background-color: #595d60;
            color: white;
        }
        
        .recent-products {
            border-radius: 15px;
            background-color: white;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            border: 1px solid #e5e7eb;
            padding: 20px;
            height: 100%;
        }
        
        .recent-product-title {
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 5px;
        }
        
        .recent-product-price {
            font-weight: 600;
            color: #3c3b37;
            margin-top: 10px;
        }
        
        .search-results {
            max-height: 300px;
            overflow-y: auto;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            background-color: white;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }
        
        .search-result-item {
            padding: 12px 15px;
            cursor: pointer;
            transition: background-color 0.2s;
            display: flex;
            align-items: center;
        }
        
        .search-result-item:hover {
            background-color: #f3f4f6;
        }
        
        .empty-state {
            text-align: center;
            padding: 40px 20px;
            color: #6b7280;
        }
        
        h2.display-6 {
            font-weight: 800;
            margin-bottom: 20px;
        }
        
        .form-label {
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .form-control {
            border-radius: 8px;
            padding: 12px 15px;
            border: 1px solid #d1d5db;
        }
        
        .form-control:focus {
            border-color: #7dad3d;
            box-shadow: 0 0 0 0.25rem rgba(125, 173, 61, 0.25);
        }
        
        .btn:focus {
            box-shadow: none;
        }
        
        @media (max-width: 768px) {
            .product-main-image {
                height: 200px;
            }
        }

        @media (max-width: 425px) {

            .cart-buy-button-container {
                justify-content: center;
            }

        }