 body {
            background-color: #f8f9fa;
        }
        h2.contact {
            background: #e9e9e9;
            padding: 20px;
        }
        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
        }
        .checkout .form-label{
            display:block;
        }
        .form-label {
    margin-bottom: .5rem;
    font-weight: 600;
    color: #dc3545;
    /* display:none; */
}
dl, ol, ul {
    margin-top: 0;
    list-style: none;
    margin-bottom: 1rem;
}
h2.head{
    text-transform: uppercase;
    font-size: 1.5rem;
}
.quantity-input {
    max-width: 100%;
}
.price-tag {
    min-width: 110px;
    transition: transform 0.2s ease-in-out;
    border-width: 2px;
}
.price-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}


    .product-box {
        border: 1px solid #ddd;
        padding: 15px;
        border-radius: 10px;
        background: #fff;
        transition: box-shadow 0.3s ease;
        height: 100%;
    }
    .product-box:hover {
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .product-box h5 {
       font-size: 1.1rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .product-prices {
        font-size: 0.9rem;
        margin-bottom: 10px;
        color: #555;
    }
    .sticky-tabs {
        position: sticky;
        top: 0;
        background: #f9f9f9;
        z-index: 10;
        padding-top: 0px;
    }
    .product-box img {
    width: 100%;
    max-height: 150px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.product-prices .badge {
    font-size: 0.75rem;
    padding: 5px 10px;
    margin-right: 5px;
}

.product-prices span {
    font-size: 0.9rem;
}
html {
    scroll-behavior: smooth;
}
/* Make the tab list scroll horizontally */
.category-scroll-container {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

/* Remove scrollbar (optional, for cleaner look) */
.category-scroll-container::-webkit-scrollbar {
    display: none;
}

/* Ensure horizontal layout for tabs */
#categoryTabs {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    padding: 0.5rem 0rem;
}

/* Prevent tabs from wrapping */
#categoryTabs .nav-item {
    flex: 0 0 auto;
}


/* Desktop view: full width + centered */
@media (min-width: 768px) {
    .category-scroll-container {
        overflow-x: visible;
        white-space: normal;
        display: flex;
        justify-content: center;
    }
    .navbar-brand img{
      
    }

    #categoryTabs {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    #categoryTabs .nav-item {
        flex: unset;
    }
}

/* Floating cart button (mobile only) */
.cart-floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ffc107; /* Bootstrap warning */
    color: #000;
    padding: 10px 15px;
    font-weight: bold;
    border-radius: 50px;
    z-index: 1050;

    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-decoration: none;
}

.cart-floating-btn:hover {
    background-color: #e0a800;
    color: #fff;
}

/* Show only on small screens */
@media (max-width: 767.98px) {
    .cart-floating-btn {
        display: inline-block;
    }
    .navbar-brand img{
         width: 145px;   
    }
     h2.head-main{
         font-size: 1.3rem;
         line-height: 1.7rem;
    text-transform: none;
     }
    h2.head {
    font-size: 1.2rem;
    line-height: 1.7rem;
    text-transform: none;
    color:red;
}
.checkout .flex-column {
    flex-direction: row !important;
}
}
        .lead {
            font-size: 1.25rem;
            font-weight: 400 !important;
        }
        .product-box {
            background-color: #fff;
            border: 1px solid #e1e1e1;
            border-radius: 8px;
            padding: 15px;
            transition: all 0.3s ease;
        }

        .product-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .product-box h5 {
            font-size: 1.1rem;
            font-weight: 600;
        }

        .product-prices {
            list-style: circle;
            font-size: 0.9rem;
            margin-bottom: 10px;
            color: red;
        }

        .product-prices li {
            color: red;
        }

        .cart-btn {
            position: fixed;
            bottom: 87px !important;
            right: 20px;
            z-index: 9999;
            font-size: 1rem;
            padding: 10px 18px;
        }

        .sticky-tabs {
            position: sticky;
            top: 64px;
            z-index: 1020;
            background-color: #fff;
        }
        
        .product-row { border-bottom: 1px solid #eee; padding: 10px 0; }

        footer {
            background-color: #343a40;
            color: #fff;
        }
        .select2-container--default .select2-selection--single .select2-selection__placeholder {
            color: #212529b8 !important;
        }
        .select2-container--default .select2-selection--single {
            background-color: #fff;
            border: 1px solid #dde2e6 !important;
            
        }
      @media (max-width: 767.98px) {
            .sticky-tabs {
            position: sticky;
            top: 60px !important
        }
        .carbtn{
            text-align: center;
            margin: 0px auto;
            display: block;
        }

.bounce {
  animation: bounceAnim 0.5s ease;
}

@keyframes bounceAnim {
  0% { transform: scale(1); }
  30% { transform: scale(1.2); }
  60% { transform: scale(0.95); }
  100% { transform: scale(1); }
}


