* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* scroll-snap-type: Y proximity; */
}

::-webkit-scrollbar {
    width: 0.5rem;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--scrollbar--bg--color);

}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--nav--bg--color);
    border-radius: 50px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--footer--hover--color);
}

:root {
    --body--bg--color: rgba(244, 120, 32, 0.2);
    --nav--bg--color: #f47820;
    --footer--hover--color: #f39c12;
    --scrollbar--bg--color: #1f2025;
    --scroll--thumb--bg--color: #000;
    --social-icons--color: #ecf0f1;
    --social-icons--hover--color: #ff7f50;
    --section--header--color: #333;
    --section--description--color: #555;
    --form-control-bg-color: #f9f9f9;
    --text--color: white;
    /*  */
    --container--cart--details--border:#ddd;
    --remove--button--color:red;
    --remove--button--hover--color:darkred;
    --card--bg--color:#f2f2f2;
    --checkout--button--color:#28a745;
    --checkout--button--hover--color: #218838;
    
}
.signbutton{
    background-color: var(--footer--hover--color);
}
.signbutton:hover{
    background-color: var(--nav--bg--color);
}
body {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
    padding-top: 70px;
    overflow-x: hidden;
    background-color: var(--body--bg--color);


}

/* .navbar {
    height: auto;
} */

#container44 {
    display: none;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid var(--container--cart--details--border);
    border-radius: 8px;
    background: var(--form-control-bg-color);
    
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid var(--container--cart--details--border);
}

#checkoutbutton {
    margin: 20px 0px;
    padding: 10px;
    background-color: var(--checkout--button--color);
    color: var(--text--color);
    border: none;
    border-radius: 4px;
}

#checkoutbutton:hover {
    background-color: var(--checkout--button--hover--color);
}

/* .remove-btn {
    background-color: var(--remove--button--color);
    color: var(--text--color);
    border: none;
    padding: 5px;
    border-radius: 4px;
    cursor: pointer;
}

.remove-btn:hover {
    background-color: var(--remove--button--hover--color);
} */
/* Remove Button Styling */
.remove-btn {
    background-color: var(--remove--button--color);
    color: var(--text--color);
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 50px;
    /* Fully Rounded */
    transition: background-color 0.3s ease;
}

.remove-btn:hover {
    background-color: var(--remove--button--hover--color);
}
 .quantity-btn {
     padding: 8px 12px;
     margin: 0;
     cursor: pointer;
     font-size: 16px;
     border: none;
     background-color: var(--remove--button--color);
     color: var(--text--color);
     transition: all 0.3s ease;
     width: 20px;
     position: relative;
     top: 10px;
     height: 20px;
 }

 .plus {
     position: relative;
     top: -10px;
     right: 7px;
 }

 .minus {
     position: relative;
     top: -10px;
     right: 7px;

 }

 /* Hover Effect */
 .quantity-btn:hover {
     background-color: var(--remove--button--hover--color);
 }

 /* Fully Rounded Left (-) Button */
 .decrease {
     border-top-left-radius: 50px;
     border-bottom-left-radius: 50px;
 }

 /* Fully Rounded Right (+) Button */
 .increase {
     border-top-right-radius: 50px;
     border-bottom-right-radius: 50px;
 }

 /* @media(max-width:576px){
    .quantity-btn{
        height: 10px;
        width: 20px;
    }
 } */

a {
    text-decoration: none;
}

nav {
    color: var(--scroll--thumb--bg--color);
}

.card {
    background-color: var(--card--bg--color);
    color: var(--scroll--thumb--bg--color);
}

#container44 {
    color: var(--scroll--thumb--bg--color);
}


a {
    text-decoration: none;
}


.card {
    height: 400px;
}




.card {
    display: flex;
    flex-direction: column;
    height: 100%;
    
    min-height: 300px;
    
    overflow: hidden;
    
}


.card-img-top {
    object-fit: cover;
    
    height: 200px;
    
}


.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;

}


.card-body button {
    margin-top: 0px;

}


.row {
    display: flex;
    flex-wrap: wrap;
}

.price {
    margin-top: 10px;
    font-weight: bold;
}

.list-group a:hover {
    background-color: var(--footer--hover--color);
}

a {
    text-decoration: none;
}

.footer {

    color: var(--text--color);
    padding: 40px 0;

}

.footer h5 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer a {
    color: var(--social-icons--color);
    text-decoration: none;
}

.footer a:hover {
    color: var(--footer--hover--color);
}

.footer .social-icons a {
    font-size: 1.5rem;
    margin: 0 10px;
    color: var(--social-icons--color);
}

.footer .social-icons a:hover {
    color: var(--footer--hover--color);
}

footer {
    background-image: url("assets/footer-bg.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
nav {

    background-color: var(--nav--bg--color);
}




#cartCount {
    position: relative;
    left: -10px;
    top: -1px;
    z-index: 3;
    color: var(--scroll--thumb--bg--color);
}

nav {
    color: #fff;
}

.menuback a {
    background-color: var(--body--bg--color);
}

.navbar .navbar-nav .nav-link {
    color: var(--text--color);
}

.navbar .navbar-nav .nav-link:hover {
    color: var(--scrollbar--bg--color);
}
body{
    overflow-x: hidden;
}
@media(max-width:576px) {
    html {
        overflow-x: hidden;
    }

    nav {
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
    }

    .card {
        overflow-x: hidden;

        width: 100%;
    }

    main {
        overflow-x: hidden;
        overflow-y: hidden;
    }
}

@media(max-width:768px) {
    nav {
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
    }

    .card {
        overflow-x: hidden;
    }

    main {
        overflow-x: hidden;
        overflow-y: hidden;
    }
}

@media (max-width: 767px) {
    .menuback {
        position: relative;
        height: auto;
    }
}

@media (max-width: 576px) {
    .menuback {
        position: relative;
        height: auto;
    }

    footer {
        overflow-x: hidden;
    }
}


body {
    overflow-x: hidden;
}

.menuback {
    position: sticky;
    /* top: 120px; */
    top:0px;
    max-height: 100vh;
    overflow-y: auto;
    
}

.navbar-toggler {
    border: 0px;
    border-radius: 0px;
}

.navbar-toggler-icon {
    border: 0px;
    border-radius: 0px;

}

nav {
    --bs-navbar-toggler-focus-width: 0px;
    --bs-navbar-toggler-border-radius: 0px;
    --bs-navbar-toggler-transition: none;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.form-control:focus {
    
    box-shadow: none !important;
    
    outline: none !important;
    
}

.input-group-text {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background-color: transparent;
    border: none;
    color: var(--nav--bg--color);
}


.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}


.form-control {
    padding-left: 40px;
    
    border: none;
    border-bottom: 2px solid var(--nav--bg--color) !important;
    border-radius: 0;
}


.form-floating label {
    left: 40px;
    transition: 0.3s ease all;
    color: #1f2025;
}


.form-floating input:focus+label,
.form-floating input:not(:placeholder-shown)+label {
    transform: translateY(-25px);
    font-size: 12px;
    color: var(--nav--bg--color);
}

.btn-close:focus {
    
    box-shadow: none !important;
    
    outline: none !important;
    
}
nav{
    overflow-x: hidden;
}
.menuback{
    overflow-x: hidden;
}

#container44 {
    max-width: 100%;
    overflow-x: hidden;
    padding: 0 15px;
}

#rightdiv4 {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}
#checkoutbutton {
    width: 100%;

    font-size: 16px;
    padding: 10px;
}

table th,
table td {
    text-align: center;
    padding: 8px;
    border: 1px solid #ddd;
}

@media (max-width: 767px) {

    table th,
    table td {
        font-size: 12px;
        
    }

    table td img {
        width: 30px;
        
        height: 30px;
    }

    #checkoutbutton {
        width: 100%;
        
        font-size: 16px;
        padding: 10px;
    }

    #container44 {
        padding: 0 10px;
        
    }
}