* {
    margin: 0;
    box-sizing: border-box;
    font-family: 'Work Sans', sans-serif;

}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
}

p {
    font-family: 'Work Sans', sans-serif;
}

/* Default values */

:root {
    /* colours */
    --darker-grey: #737479;
    --dark-grey: #939393;
    --grey: #D1D4DC;
    --light-grey: #F2F4F9;
    --lighest-grey: #E2E4EA;
    --green: #C0F2C8;
    --dark-green: #216c2c;
    --red: #F0BFBF;
    --dark-red: #B22222;
    --orange: #FFA500;
    --dark-orange: #FF8C00;

    /* Customer menu colour scheme */
    --red: #FF6A6A;
    --lighter-red: #ff8686;
    --darkest-blue: #012737;
    --even-darkest-blue: #000b0f;
    --blue-grey: #38425C;
    --admin-success: #1cc88a;
    --admin-bg-success: rgba(28, 200, 138, .1);
    --admin-warning: #f6c23e;
    --admin-bg-warning: rgba(246, 194, 62, .1);
    --admin-danger: #e74a3b;
    --admin-bg-danger: rgba(231, 74, 59, .1);
    --admin-text-grey: #858796;

    /* settings */
    --border-radius: 5px;
    --transition: 0.3s ease-in-out all;
    --scale: 1.03;
    --bs-border-color: #dee2e6;
    --bs-border-width: 1px;
}

body {

    /* width: 100vw; */
    /* background-color: blue; */
}

/* ================= SIDE BAR =================*/

.side-bar {
    background-color: var(--light-grey);
    min-height: 100vh;
    min-width: 15vw;
    max-width: 30vw;
}

.nav-container {
    /* background-color: blue; */
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-text {
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    line-height: 20px;
    font-size: 1.25rem;
}

.nav-header {
    margin-top: 1rem;
    cursor: pointer;
}

.bold-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.nav-links {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-link {
    display: flex;
    gap: 0.75rem;
    font-weight: 500;
    font-size: 1rem;
    align-items: center;
    color: var(--dark-grey);
    background-color: none;
    padding: 1.25rem 2rem 1.25rem 2rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

a {
    text-decoration: none !important;
    color: none !important;
}

.nav-link:hover {
    color: black;
    background-color: var(--lighest-grey);
    transform: scale(var(--scale));
}

.nav-link-selected {
    color: black;
    background-color: var(--lighest-grey);
}




/* ================= PAGE HEADER =================*/

main {
    /* background-color: blue; */
    margin-left: 2rem;
    margin-top: 2rem;
    margin-right: 2rem;
    width: 70vw;
}

.page-header {
    display: flex;
}

.page-header-container {
    display: flex;
    /* background-color: blue; */
    width: 100%;
    justify-content: space-between;
}

.page-header-admin {
    display: block;
}

.title-text h1, h3 {
    font-weight: 500;
}

.title-text h1 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.title-text h3 {
    color: var(--dark-grey);
}

.header-right {
    display: flex;
    height: 70%;
    /* background-color: blue; */
    justify-content: end;
    gap: 0.75rem;
    min-width: 10rem;
}

.search-bar-container {
    display: flex;
    background-color: var(--lighest-grey);
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem;
    border-radius: var(--border-radius);

}

.search-bar-container form {
    display: flex;
    align-items: center;
}

.search-bar-container i {
    color: var(--darker-grey);
    padding: 0.5rem;

}

.search-input {
    border: none;
    background-color: transparent;
    display: flex;
}

.search-input:focus {
    outline: none;
}

#clear-form-btn {
    border: none;
    background-color: transparent;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

#clear-form-btn:hover {
    border: none;
    color: var(--even-darkest-blue);
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

#clear-form-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.new-item-btn {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    color: white;
    background-color: black;
    cursor: pointer;
    transition: var(--transition);
}

.new-item-btn:hover {
    transform: scale(var(--scale));
    background-color: rgb(29, 29, 29);
}

.divider {
    height: 0px;
    width: 100%;
    margin-top: 1.5rem;
    color: var(--lighest-grey);
    background-color: var(--lighest-grey);
    border: 1px solid #E2E4EA;
}

@media screen and (min-width: 750px) {

    .title-text h1 {
        font-size: 1.5rem;
    }

}

/* ================= VIEW VENUE TABLE ================= */

.table_component {
    overflow: auto;
    width: 100%;
}

.table_component table {
    border: 1px solid #dee2e6;
    height: 100%;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 1px;
    text-align: left;
}

.table_component caption {
    caption-side: top;
    text-align: left;
}

.table_component th {
    border: 1px solid #dee2e6;
    background-color: #eceff1;
    padding: 5px;
}

.table_component td {
    border: 1px solid #dee2e6;
    background-color: #ffffff;
    color: #858796;
    padding: 5px;
}
/* ================= VENUES TABLE ================= */
.bg-approved {
    background-color: var(--admin-bg-success);
}

.bg-pending {
    background-color: var(--admin-bg-warning);
}

.bg-denied {
    background-color: var(--admin-bg-danger);
}

/* ================= ITEMS TABLE =================*/

#items-table {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    /* background-color: blue; */
    height: 80vh;
}

#items-table-admin {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    width: 100%;
}

#venues-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    height: 100%;
}

#items-table .cel-container {
    /* background-color: green; */
    min-width: 2rem;
    /* height: 100%; */
    margin: 0.2rem;
    transition: var(--transition);
    word-wrap: break-word;
}

.cel-container p {
    transition: var(--transition);
}

#items-table .row {
    display: flex;
    width: 100%;
    min-height: 4rem;
    padding: 0.5rem;
    align-items: center;
    border-radius: var(--border-radius);
}

#items-table .content-row {
    background-color: var(--light-grey);
    cursor: pointer;
    transition: var(--transition);
}

#items-table .content-row:hover {
    /* transform: scale(1.004); */
    background-color: var(--lighest-grey);
}

#items-table .row > * {
    flex-basis: 100%;
    font-weight: 500;
}

.items-row-address {
    word-wrap: break-word;
    margin-right: 50px !important;
}

header > * {
    /* font-weight: 600 !important; */
}

.items-row-image {
    border-radius: var(--border-radius);
    /* overflow: hidden; */
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.item-image-container {
    /* padding: 1rem; */
}

.item-image {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url();
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    background-position: center center;
    border-radius: var(--border-radius);
    display: block;

}

input:focus {
    outline: none;
    border: none;
}

.layer {
    background: transparent;
    height: 100%;
    width: 100%;
    position: relative;
    bottom: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    flex-direction: column;
    /* transform: translateY(-50%); */
}

.layer .fa-image {
    font-size: 7rem;
    margin-bottom: 1rem;
}

.items-row-image img {
    display: flex;
    height: 4rem;
    padding: 0.1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.items-row-btns {
    display: flex;
    justify-content: flex-end !important;
    gap: 1rem;
    /* background-color: blue; */

}

.items-row-btns a {
    border: none;
    background-color: var(--grey);
    padding: 0.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    color: black;
}

.items-row-btns a:hover {
    transform: scale(1.05);
    background-color: #b6b8be;
}

.items-row-btns a i {
    font-size: 1.3rem;

}

.items-row-soh p, .items-row-current-price p {

    background-color: var(--grey);
    color: black;
    display: inline-flex;
    border-radius: 15px;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.green p {
    background-color: var(--green);
    color: var(--dark-green);
}

.red p {
    background-color: var(--red);
    color: var(--dark-red);
}

.orange p {
    background-color: var(--orange);
    color: var(--dark-orange);
}


.paginator-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.paginator {
    background-color: var(--light-grey);
    height: 2.5rem;
    align-items: center;
    border-radius: var(--border-radius);
    color: var(--dark-grey);
    display: flex;
    gap: 4rem;
    /* padding: 1rem; */

}

.paginator-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* padding: 1rem; */
    cursor: pointer;
    height: 100%;
    /* background-color: blue; */
    border-radius: var(--border-radius);
    padding: 0.5rem 0.75rem;
    transition: var(--transition);
}

.paginator-btn:hover {
    background-color: var(--lighest-grey);
    color: black;
    transform: scale(1.05);
}

.pagination li {
    margin: 0 0.5rem;
    display: inline;
}

/* ================= EDIT ITEM PAGE =================*/

.edit-item-page {
    width: 100%;
    /* background-color: red; */
    height: 94vh;
}

.title-text input {
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: 0.25rem;
    font-family: 'Montserrat', sans-serif;
    width: 30rem;
    border-radius: var(--border-radius);
    border-color: var(--lighest-grey);
    padding: 0.5rem;
    border-style: solid;
}

.title-input input:focus {
    outline: none;
}

.item-dashboard-grid {
    width: 90%;
    height: 70%;
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(6, 1fr);
    margin-top: 2rem;
    grid-auto-rows: 1fr;

}

.item-grid {
    background-color: var(--light-grey);
    border-radius: var(--border-radius);
    /* padding: 1rem; */
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    /* background-color: red; */
}

.stock-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.grid-col-span-1 {
    grid-column: span 1;
}

.grid-col-span-2 {
    grid-column: span 2;
}

.grid-col-span-3 {
    grid-column: span 3;
}

.grid-col-span-4 {
    grid-column: span 4;
}

.item-image {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-image: url(../img/corona-bottle.webp); */
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.item-image-container input {
    color: black;
    display: flex;
    border: none;
}

.price-grid-item {
    padding: 1rem 1rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    /* background-color: blue; */
}

.stock-grid-item {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    /* background-color: blue; */
}

.price-grid-item h1 {
    font-weight: 600;
    /* padding-left: 2rem; */
}

.price-grid-item h3 {
    font-family: 'Work Sans', sans-serif;
    color: #939393;
    font-size: 1rem;
}

.current-price h1 {
    font-size: 2rem;
}

.current-price h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.number-entry-container {
    background-color: white;
    border-radius: 15px;
    display: flex;
    /* width: 20rem; */
}

.number-entry-container h1, .number-entry-container input {
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: black;

}

.number-entry-container input {
    width: 100%;
    /* background-color: red; */
    padding: 1rem;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.error {
    color: #601515;
    background-color: #F2C0C0;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    width: 100%;
}

.success {
    color: #00480d;
    background-color: #b2ffd1;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.hidden {
    display: none;
}

.price-input-label {
    display: flex;
    gap: 0.5rem;
    color: #939393;
    align-items: center;
}



.smaller-item input, .smaller-item input h1 {
    font-size: 1.5rem;
}

.smaller-item input {
    padding: 0.5rem;
}

.smaller-item {
    margin-top: 1rem;
}

.price-column {
    display: flex;
    justify-content: space-evenly;
}

.details-cel {
    padding: 1rem;
}

.details-cel h1 {
    font-weight: 600;
}

.details-cel h3 {
    font-family: 'Work Sans', sans-serif;
    color: #939393;
    font-size: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.details-cel textarea, select, option, input {
    display: flex;
    background-color: ivory;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    border-color: lightblue;
    font-weight: 500;
    font-size: 1rem;
    color: var(--darker-grey);
}

.details-cel textarea {
    width: 100%;
}

.details-cel textarea:focus, .details-cel select:focus {
    outline: none;
}

.percentage {
    justify-content: flex-end;
    margin-right: 1rem;
}

.details-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}

.select-form {
    display: flex;
    width: 10rem;
}

.small-text {
    font-size: 0.8rem;
    font-weight: 500;
}

.input-category input {
    font-size: 1rem;
    margin-bottom: 2rem;
    min-width: 25rem;
}

.input-category {
    margin-top: 2rem;
    padding: 2rem;
}

.form-container {
    width: 50%;
}

/* ================= CUSTOMER MENU =================*/

/* Header */

/* ----- Mobile size ----- */

.customer-menu {
    width: 100vw;
    padding: 0;
    margin: 0;
    background-color: var(--light-grey);
}

.content-container {
    width: 100vw;
    margin: 0;
    margin: 2rem;
}

.customer-menu h1 {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.customer-menu h3 {
    font-size: 1rem;
    color: var(--dark-grey);
    margin-bottom: 2rem;
}

.customer-menu .divider {
    margin-top: 1.5rem;
    margin-bottom: 3rem;
}

.customer-menu .search-bar-container {
    background-color: white;
    height: 3.5rem;
    justify-content: space-between;
}

.customer-menu .search-input {
    font-size: 1rem;
    padding: 0.5rem;
    color: black;
}

.header-container {
    display: flex;
    flex-direction: column;
}

/* ----- Tablet size ----- */

@media screen and (min-width: 576px) {

    .customer-menu {
        /* color: blue; */
    }

    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .content-container {
        margin-right: 10vw;
        margin-left: 10vw;
    }

    .customer-menu h1 {
        font-size: 3rem;
    }

    .customer-menu h3 {
        font-size: 1.2rem;
    }

    .customer-menu .search-bar-container, .customer-menu input {
        min-width: 15rem;
    }
}

/* ----- Desktop size ----- */

@media screen and (max-width: 992px) {
    .customer-menu {
        /* color: red; */
    }

    .content-container {
        margin-right: 10vw;
        margin-left: 10vw;
        margin-top: 5vh;
    }

    .customer-menu h1 {
        font-size: 4rem;
    }

    .customer-menu h3 {
        font-size: 1.5rem;
    }

    hr.divider {
        border: none;
        height: 1px;
        background-color: var(--darkest-blue);
        opacity: 0.25;
        margin: 1rem;
        max-width: 10%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Item list */

/* ----- Mobile size ----- */

.menu-grid {
    width: 100%;
    /* min-height: 70vh; */
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
    gap: 1rem;
}

.menu-item {
    width: 100%;
    min-height: 4rem;
    background-color: white;
    border-radius: var(--border-radius);
    display: flex;
    padding: 1rem;
    gap: 1rem;
    transition: var(--transition);
}

.menu-item:hover {
    transform: scale(var(--scale));
    /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
}

.menu-img {
    background-color: var(--light-grey);
    width: 30%;
    height: 100%;
    border-radius: var(--border-radius);
    display: flex;
    overflow: hidden;
    position: relative;
    display: flex;
}

.menu-img img {
    object-fit: cover;
    position: absolute;
    height: 100%;
    width: 100%;
}

.menu-details h3 {
    font-weight: 600;
    color: black;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.menu-desc {
    font-size: 0.8rem;
    color: #939393;
}

.menu-price {
    display: flex;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 500;
}

.menu-price p {
    background-color: #E2E4EA;
    padding: 0.6rem;
    border-radius: 5rem;
}

/* ----- Tablet size ----- */

@media screen and (min-width: 850px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ----- Desktop size ----- */

@media screen and (min-width: 1300px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* ================= LOGIN PAGE =================*/

.message {
    /* display: none; */
}

.login-page {
    display: flex;
    width: 100vw;
}

.login-form {
    display: flex;
    background-color: #ffffff;
    height: 100vh;
    width: 50vw;
    flex-direction: column;
    padding-left: 2rem;
    padding-right: 2rem;
    justify-content: center;
}

.login-form-h1 {
    font-weight: 500;
    margin-bottom: 1rem;
}

.login-form h3 {
    color: #939393;
    margin-bottom: 1rem;
}

.login-form-container {
    margin-top: 2rem;
}

.login-form-container .input-category {
    margin-top: 0;
    padding: 0;
}

.login-form-container input {
    background-color: #F2F4F9;
    min-width: 0;
    width: 100%;
    color: black
}

.login-img {
    display: flex;
    background-image: url(../webroot/img/drink3.avif);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 50vw;
    border-radius: 50px 0px 0px 50px;
}

.login-btn {
    background-color: var(--darkest-blue); /* Primary button color */
    color: white; /* White text */
    padding: 0.75rem 1rem; /* Button padding */
    border-radius: var(--border-radius); /* Rounded button */
    font-weight: bold; /* Bold text */
    transition: var(--transition); /* Smooth transition */
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
}

.login-btn:hover {
    background-color: var(--even-darkest-blue); /* Darker color on hover */
    transform: scale(1.05); /* Slightly larger on hover */
}

/* ================= FORGOT PASSWORD =================*/
.btnContinue {
    background-color: var(--darkest-blue); /* Primary button color */
    color: white; /* White text */
    padding: 0.75rem 1rem; /* Button padding */
    border-radius: var(--border-radius); /* Rounded button */
    font-weight: bold; /* Bold text */
    transition: var(--transition); /* Smooth transition */
    cursor: pointer;
}

.btnContinue:hover {
    background-color: var(--even-darkest-blue); /* Darker color on hover */
    transform: scale(1.05); /* Slightly larger on hover */
}

/* ================= REGISTRATION =================*/
#customerForm {
    background-color: var(--light-grey); /* Light background for form */
    border-radius: var(--border-radius); /* Rounded corners */
    padding: 2rem; /* Padding inside the form */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.register-page-container {
    position: relative;
    min-height: 100vh;
    padding-top: 5rem;
    padding-bottom: 4rem;
    max-width: min-content;
    margin-left: auto;
    margin-right: auto;
  }

/* .new-customer-register {
    background-color: var(--darkest-blue);
} */

.dropzone-box {
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    background-color: white;
}

.dropzone-area {
    padding: 1rem;
    position: relative;
    min-height: 16rem;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 2px dashed var(--bs-border-color);
    border-radius: 1rem;
    color: #212529;
    cursor: pointer;
}

.dropzone-area [type="file"] {
    cursor: pointer;
    position: absolute;
    opacity: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.dropzone-area .file-upload-icon svg {
    height: 5rem;
    width: 5rem;
    margin-bottom: 0.5rem;
    stroke: black;
}

.dropzone--over {
    border-style: solid;
    background-color: white;
}

.dropzone-actions {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-bottom: 1px solid gray;
    gap: 1rem;
    flex-wrap: wrap;
}

.dropzone-actions button {
    flex-grow: 0.2;
    min-height: 1rem;
    font-size: 1rem;
}

.dropzone-actions button:hover {
    text-decoration: underline;
}

hr.divider {
    border: none;
    height: 1px;
    background-color: var(--darkest-blue);
    opacity: 0.25;
    margin: 1rem;
    max-width: 75%;
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
    /*margin-bottom: 1.5rem; !* Space below the header *!*/
}

label {
    font-weight: 600; /* Bold labels */
    font-size: 0.9rem; /* Slightly larger font for readability */
}

.register-container {
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    height: 100vh;
    background-color: var(--darker-grey);
}

.btn-container {
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.register-form {
    padding: 5%;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 9px 26px 0 rgba(0, 0, 0, 0.19);
    width: 100%;
    background: #fff;
    border-radius: 8px;
    max-width: 70%;
    height: 90%;
}

.register-form h3 {
    text-align: center;
}

.btnSubmit {
    background-color: var(--darkest-blue); /* Primary button color */
    color: white; /* White text */
    padding: 0.75rem 1.5rem; /* Button padding */
    border-radius: var(--border-radius); /* Rounded button */
    font-weight: bold; /* Bold text */
    transition: var(--transition); /* Smooth transition */
    cursor: pointer;
}

.btnSubmit:hover {
    background-color: var(--even-darkest-blue); /* Darker color on hover */
    transform: scale(1.05); /* Slightly larger on hover */
}

.btnClear {
    background-color: transparent;
    color: var(--darkest-blue);
    padding: 0.75rem 1.5rem;
    border-color: var(--darkest-blue);
    border-radius: var(--border-radius);
    font-weight: bold;
    transition: var(--transition);
    width: 100%;
    cursor: pointer;
}

.btnClear:hover {
    background-color: var(--grey);
    transform: scale(1.05);
}

.btnBack {
    background-color: transparent;
    color: var(--darkest-blue);
    padding: 0.2rem 0.2rem;
    border-color: transparent;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
}

.btnBack:hover {
    background-color: var(--grey);
    transform: scale(1.05);
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

.fade-out {
    opacity: 1;
    animation: fadeOut 0.5s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
    }
}


#agree {
    margin-right: 0.5rem; /* Space between checkbox and label */
}

label[for="agree"] {
    font-size: 0.85rem; /* Smaller font for T&C */
    color: var(--dark-grey); /* Grey text */
}

label[for="agree"] a {
    text-decoration: none; /* No underline */
    color: var(--darkest-blue); /* Link color */
    transition: var(--transition); /* Smooth transition */
}

/* Link hover effect */
label[for="agree"] a:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Responsive design */
@media screen and (min-width: 768px) {
    .container-sm {
        padding: 1rem; /* Adjust padding for smaller screens */
    }

    .btnSubmit {
        width: 100%; /* Full-width button on smaller screens */
        padding: 0.75rem 0.75rem;
    }

    .btnClear {
        width: 100%; /* Full-width button on smaller screens */
        padding: 0.75rem 0.75rem;
    }

    hr.divider {
        border: none;
        height: 1px;
        background-color: var(--darkest-blue);
        opacity: 0.25;
        margin: 1rem;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .register-page-container {
        position: relative;
        min-height: 100vh;
        padding-top: 5rem;
        padding-bottom: 4rem;
        max-width: min-content;
        margin-left: auto;
        margin-right: auto;
      }
}

@media screen and (max-width: 768px) {
    .btnSubmit {
        width: 100%; /* Full-width button on smaller screens */
        padding: 0.75rem 0.75rem;
        margin-top: 1rem;
    }

    .register-page-container {
        width: 100%;
    }

    .btnClear {
        width: 100%; /* Full-width button on smaller screens */
        padding: 0.75rem 0.75rem;
    }
}

.btnCustomer, .btnVendor {
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

.btnCustomer {
    color: #fff;
    background-color: black;
}

.btnVendor {
    color: black;
    background-color: #fff;
}

.activeForm {
    display: block !important;
}

.inactiveForm {
    display: none !important;
}


/* ================= NEW CUSTOMER MENU =================*/


/* Login */
.login-bottomsup-logo {
    margin: 1rem;
    text-align: left;
}

.login-bottomsup-logo p {
    font-family: 'Montserrat';
    font-weight: 900;
    color: black;
    z-index: 999;
    margin-bottom: 0;
}

.login-bottomsup-logo span {
    color: var(--red);
    font-weight: 900;
    font-family: 'Montserrat';
}


/* ================= HOME PAGE =================*/


/* Nav */



.new-customer-menu header {
    /* background-color: var(--darkest-blue); */
    text-align: center;
    padding-left: 1rem;
    position: fixed;
    z-index: 999;
    width: 100%;
    transform: scale(1);
    transition: var(--transition);
}

/* .new-customer-menu header:hover {
    transform: scale(1, 0);
    transform-origin: top;
} */

.hide-to-top {
    transform: scale(1, 0) !important;
    transform-origin: top;
    transition: transform 400ms ease-out;
}

.bottomsup-logo {
    margin: 1rem;
    text-align: left;
}

.bottomsup-logo p {
    font-family: 'Montserrat';
    font-weight: 900;
    color: white;
    z-index: 999;
    margin-bottom: 0;
}

.bottomsup-logo span {
    color: var(--red);
    font-weight: 900;
    font-family: 'Montserrat';
}

.customer-menu-nav {
    background-color: var(--darkest-blue);
    width: 50%;
    height: 100vh;
    position: absolute;
    text-align: left;
    top: 0;
    right: 0;
    /* display: none; */
    transform: scale(0, 1);
    transform-origin: right;
    transition: transform 400ms ease-in-out;
    display: flex;
    justify-content: center;

}

.dark-screen-cover {
    z-index: 500;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 300vh;
    overflow: hidden;
    transition: background-color 200ms;
    /* display: none; */
}

.not-visible {
    display: none !important;
}

.nav-toggle:checked ~ .customer-menu-nav {
    /* display: block; */
    transform: scale(1, 1);
}

.customer-menu-nav ul {
    margin-top: 50%;
}


.customer-menu-nav ul li {
    list-style: none;
    margin-bottom: 2rem;
    /* margin-left: 1rem;   */
}

.customer-menu-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 150ms ease-in-out;
    opacity: 0;
}

.customer-menu-nav a:hover {
    color: white;
}

.nav-toggle:checked ~ .customer-menu-nav {
    /* display: block; */
    transform: scale(1, 1);
}

.nav-toggle:checked ~ .customer-menu-nav a {
    opacity: 1;
    transition: 250ms ease-in-out 250ms;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    color: white;
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 1em;
    /* border: 1px solid red; */
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background-color: white;
    height: 2px;
    width: 2em;
    border-radius: 2px;
    position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;

}

.nav-toggle-label span::before {
    bottom: 7px;
}

.nav-toggle-label span::after {
    top: 7px;
}

/* Tablet size */
@media screen and (min-width: 768px) {
    .customer-menu-nav a {
        font-size: 1.5rem;

    }

}

/* Desktop size */
@media screen and (min-width: 1200px) {

    .new-customer-menu header {
        height: 8rem;
    }
    .nav-toggle-label {
        display: none;
    }

    .new-customer-menu header {
        /* margin-top: 2rem; */
        display: grid;
        grid-template-columns: 1fr auto minmax(600px, 4fr) 1fr;
        /* background-color: blue; */
        gap: 10px;
    }

    .customer-menu-nav a {
        opacity: 1;
    }

    .bottomsup-logo {
        grid-column: 2 / span 1;
        text-align: left;
        /* border: 1px solid red; */
        font-size: 1.5rem;
        display: flex;
        align-items: center;
        flex-direction: row;
    }

    .customer-menu-nav {
        all: unset;
        grid-column: 3 / 4;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .customer-menu-nav ul {
        all: unset;
    }

    .customer-menu-nav ul {
        display: flex;
        justify-content: flex-end;
        /* border: 1px solid red; */
        /* gap: 2rem; */
        font-size: 1rem;
    }

    .customer-menu-nav ul li {
        margin-bottom: 0;
        margin-left: 3em;
    }

    .customer-menu-nav a {
        margin: 0;
        font-size: 1.1rem;
        position: relative;
    }

    .customer-menu-nav a::before {
        content: '';
        display: block;
        height: 2px;
        background: var(--red);
        position: absolute;
        bottom: -.5em;
        left: 0;
        right: 0;
        transform: scale(0, 1);
        /* transform-origin: left; */
        transition: transform ease-in-out 255ms;
    }

    .customer-menu-nav a:hover::before {
        transform: scale(1, 1);
    }


    .contact-btn {
        background-color: var(--red);
        padding: 1rem 2rem;
        border-radius: var(--border-radius);
        color: black !important;
        font-weight: 600;
    }

    .contact-btn:hover {
        background-color: var(--lighter-red)
    }

    .contact-btn:hover::before {
        transform: scale(0, 1) !important;
    }


}

/* Page content - mobile size */


.new-customer-menu {
    background-color: #001119f2;
    flex-direction: column;
}

.splash-image {
    /* background: url(https://images.unsplash.com/photo-1523173508938-2dbf2c43d473?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1471&q=80), #00293D; */
    background-image: linear-gradient(rgba(0,41,61,0.5),rgba(0,41,61,0.5));
    /* height: 100vh; */
    position: relative;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    padding-bottom: 5rem;
}

.scroll-arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff; 
    cursor: pointer;
}

.splash-container {
    /* border: 1px solid red; */
    margin-top: 4rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;

}

.home-grid {
    display: grid;
    grid-template-columns: 1fr 4fr 1fr;

}

.hero-text {
    margin-top: 2rem;
    grid-column: 2 / span 1;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.hero-text h1, .red-text {
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    font-size: 10vw;
    line-height: 9vw;
    text-align: left;
    letter-spacing: -0.03em;
}

.red-text {
    color: var(--red);
}

.hero-text h1 {
    margin-bottom: 3rem;
}

.hero-text p {
    display: flex;
    text-align: left;
    font-size: 1.2rem;
    color: #e4e4e4;
}

.hero-img {
    display: none;
}

.splash-subheading {
    color: var(--red);
    font-size: 1.3rem;
    margin-top: 3rem;
}

.hero-img {
    display: flex;
    /* border: 1px solid blue; */
    justify-content: center;
    align-items: center;
}

.stock-line {
    position: absolute;
    z-index: 500;
}

.glass {
    position: absolute;
    z-index: 300;
}

@media screen and (min-width: 320px) {
    .venues-splash-image {
        /* background: url(https://images.unsplash.com/photo-1523173508938-2dbf2c43d473?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1471&q=80), #00293D; */
        background-image: linear-gradient(rgba(10, 46, 64, 0.6),rgb(8, 33, 46)),url(https://images.unsplash.com/uploads/1412198485051133af17f/5049dacb?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80);
        /* height: 100vh; */
        position: relative;
        width: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        overflow: hidden;
        padding: 0;
    }

    .splash-image {
        padding-top: 30%;
        padding-bottom: 30%;
    }

    .custom-form .form-control {
        border-radius: 0 5px 5px 0;
        border: none;
        padding: 10px 10px 10px 10px;
        width: 330px;
    }

    .btn-dark {
        margin-top: 1rem;
    }

    .btn-secondary {
        /* margin-top: 1rem; */
    }

    .scroll-arrow {
        font-size: 1rem;
    }

    .stock-line {
        transform: scale(0);
    }
    
    .glass {
        transform: scale(0);
    }

    .hero-text {
        margin-top: 2rem;
        align-items: center;
    }
    
    .hero-text h1, .red-text {
        text-align: center;
    }
    
    .hero-text h1 {
        margin-bottom: 3rem;
    }
    
    .hero-text p {
        text-align: center;
        font-size: 3.5vw;
    }
}

/* Tablet size */
@media screen and (min-width: 768px) {

    .scroll-arrow {
        font-size: 1.25rem;
    }

    .stock-line {
        transform: scale(0);
    }
    
    .glass {
        transform: scale(0);
    }

    .hero-text {
        margin-top: 2rem;
        align-items: center;
    }
    
    .hero-text h1, .red-text {
        font-size: 8vw;
        line-height: 7vw;
        text-align: center;
    }
    
    .hero-text h1 {
        margin-bottom: 3rem;
    }
    
    .hero-text p {
        text-align: center;
        font-size: 2.5vw;
    }

    .services-grid {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media screen and (min-width: 992px) {
    
    .hero-text h1, .red-text {
        font-size: 5vw;
        line-height: 4vw;
    }
    
    .hero-text p {
        font-size: 1.8vw;
    }
}

@media screen and (min-width: 1200px) {
    
    .home-grid {
        display: grid;
        grid-template-columns: 1fr 3fr 1fr 1fr;
        gap: 4rem;
    }

    .splash-image {
        padding-top: 11%;
        padding-bottom: 11%;
    }

    .hero-text {
        align-items: start;
    }

    .hero-text h1, .red-text {
        font-size: 4vw;
        line-height: 3vw;
        text-align: left;
    }

    .hero-text p {
        text-align: left;
    }
    
    .glass {
        transform: scale(1.3);
    }

    .stock-line {
        transform: scale(1.3);
    }

    .hero-text p {
        font-size: 1.3vw;
    }

    .bottomsup-logo p {
        font-size: 1.5vw;
    }

    .customer-menu-nav a {
        font-size: 1.2vw;
    }

    .scroll-arrow {
        font-size: 1.5rem;
    }
}

/* Desktop size */
@media screen and (min-width: 1400px) {
    .splash-image {
        padding-top: 14%;
        padding-bottom: 13%;
    }

    .hero-text h1, .red-text {
        font-size: 4vw;
        line-height: 3vw;
    }

    .stock-line {
        transform: scale(1.5);
    }

    .glass {
        transform: scale(1.5);
    }

    .hero-text p {
        font-size: 1.3vw;
    }

    .bottomsup-logo p {
        font-size: 1.5vw;
    }

    .customer-menu-nav a {
        font-size: 0.9vw;
    }

    .scroll-arrow {
        font-size: 2rem;
    }
}


/* Venues - mobile size */

.venues {
    /* border: 1px solid blue; */
    padding: 1rem;
    height: 100%;
    color: white;
    margin-right: 3rem;
    margin-left: 3rem;
}

.venues-container {
    /* border: 1px solid red; */
    width: 100%;
    /* height: 3rem; */
    position: relative;
}

.venues-title {
    margin-top: 1rem;
}

.venues-title h1 {
    color: white;
    font-weight: 900;
    font-size: 2.5rem;
    margin-bottom: 0.3rem;
    text-align: center;
}

.venues-title p {
    color: #B4B4B4;
    text-align: center;
}

.venue-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.venue-item {
    background-color: #001C28;
    /* min-height: 12rem; */
    border-radius: 5px;
    transition: var(--transition);
}

.venue-item:hover {
    transform: scale(var(--scale));
}



.venue-img {
    background-color: var(--light-grey);
    width: 100%;
    height: 60%;
    border-radius: 5px 5px 0px 0px;
    display: flex;
    overflow: hidden;
    position: relative;
    display: flex;
}

.venue-img img {
    object-fit: cover;
    position: absolute;
    height: 100%;
    width: 100%;
}
.cart-count-indicator {
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    position: absolute;
    top: -15px;
    right: -20px;
}
.venue-info {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background:#1a1a1a;
}

.venue-name {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: white;
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
}

.venue-address {
    color: #939393;
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
}

.venue-display {
    padding: 1rem;
    margin-bottom: 4rem;
}

.venue-menu {
    background-color: black;
}

.venue-img-display {
    background-color: var(--light-grey);
    width: 100%;
    height: 15rem;
    display: flex;
    overflow: hidden;
    position: relative;
    display: flex;
}

.venue-img-display img {
    object-fit: cover;
    position: absolute;
    height: 100%;
    width: 100%;
}

.gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,  rgba(0,41,61,0.5), rgba(0,41,61,0.5)130%);
    z-index: 30;
}

.venue-title-menu {
    color: white;

}

.venue-title-menu h1 {
    font-weight: 900;
    font-size: 1.8rem;
    padding-bottom: 0.1rem;
}

.venue-title-menu p {
    color: #939393;
}

.venue-title-and-search-bar {
    position: relative;
    bottom: 2.8rem;
    z-index: 40;

    display: flex;
    flex-direction: column;
}

.home-page-search-bar {
    border-radius: 5px;
    border: none;
    padding: 10px 15px;
    width: 100%;
    background-color: white;
}

.venue-display-content {
    height: 3rem;
}

.search-menu-items-input i {
    position: absolute;
    color: var(--blue-grey);
    padding-left: 15px;
}

.search-menu-items-input {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 3rem;
}

.search-menu-items-input input {
    padding-left: 3rem;
    color: var(--blue-grey);
    border-radius: 15px;
    height: 4rem;
    font-size: 1rem;
    width: 100%;
}

/* Adjusting h1 size */

@media screen and (min-width: 400px) {

    .venue-title-menu h1 {
        font-size: 2.5rem;
    }

    hr.divider {
        border: none;
        height: 1px;
        background-color: var(--darkest-blue);
        opacity: 0.25;
        margin: 1rem;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Tablet size */
@media screen and (min-width: 768px) {

    .venue-display {
        padding: 0;
    }

    .venue-title-and-search-bar {
        display: grid;
        grid-template-columns: 0.5fr 3fr 1.5fr 0.5fr;
        /* flex-direction: row; */
        /* align-items: center; */
        /* justify-content: space-between; */

        /* gap: 10rem; */
    }

    .venue-display-content {
        grid-column: 2 / span 1;
    }

    .search-menu-items-input {
        width: 100%;
        height: 100%;
        margin-top: 0;

    }

    .search-menu-items-input input {
        height: 100%;
    }

    .venue-title-menu h1 {
        font-size: 2.8rem;
    }

    .venue-title-menu p {
        font-size: 1.3rem;
    }



}

/* Desktop size */
@media screen and (min-width: 1200px) {

    .venue-title-and-search-bar {
        /* padding-left: 10vw;
        padding-right: 10vw; */
        /* display: flex; */
    }

    .venue-title-and-search-bar {
        display: grid;
        grid-template-columns: 1fr 3fr 1.5fr 1fr;
    }

    .venue-title-menu h1 {
        font-size: 3.5rem;
    }

    .venue-title-menu p {
        font-size: 1.3rem;
    }

}

/* ================= CATEGORY SCROLLER =================*/

/* Mobile size */

.category-wrapper {
    max-height: 6rem;
    display: flex;
    overflow-x : auto;
    position: relative;
    margin-top: 4rem;
    bottom: 2rem;
    /* left: 1rem; */
    gap: 0.5rem;
    /* background-color: blue; */
    /* width: 100vw; */
}

.category-wrapper::-webkit-scrollbar {
    width: 0px;
}

.category-item {
    color: white;
    display: flex;
    background-color: #0B2D3C;
    border-radius: 30px;
    /* height: 4rem; */
    align-items: center;
    justify-content: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    min-width: 8rem;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);

}

.category-item:hover {
    cursor: pointer;
    transform: scale(var(--scale));
}

/* Tablet size */
@media screen and (min-width: 768px) {

    .category-container {
        display: grid;
        grid-template-columns: 0.5fr 4.5fr 0.5fr;
    }

    .category-wrapper {
        grid-column: 2 / span 1;
        /* max-height: 6rem; */
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        overflow-x: unset;
        margin-top: 6rem;
        gap: 0.7rem;
    }

    .category-wrapper::-webkit-scrollbar {
        width: 0px;
    }

    .category-item {
        font-size: 1.2rem;

    }

}

/* Desktop size */
@media screen and (min-width: 1200px) {

    .category-container {
        display: grid;
        grid-template-columns: 1fr 4.5fr 1fr;
    }

    .category-wrapper {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
        margin-top: 8rem;
    }

}

/* ================= MENU ITEMS =================*/

/* Mobile size */

.menu-items {
    color: white;

}

.category-title {
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;

}

.category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.new-menu-item {
    height: 13rem;
    color: white;

    position: relative;
    background: #1a1a1a;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.new-menu-item .menu-price p {
    all: unset;
    font-weight: 400;
    letter-spacing: 1px;
    margin-right: 10px;
    margin-left: 5px;
}

.new-menu-item .menu-price {
    background-color: #0B3C33;
    padding: 0.6rem;
    border-radius: 5rem;
    width: fit-content;
    display: flex;
    align-items: center;
}

.price-icon {
    margin-right: 5px;
    display: flex;
    flex-direction: column;
}

.price-icon i {
    color: #00FFD4;
    font-size: 0.8rem;
}

.new-menu-item h3 {
    color: white;
}



/* Tablet size */
@media screen and (min-width: 768px) {

    .menu-items-container {
        display: grid;
        grid-template-columns: 0.5fr 4.5fr 0.5fr;
    }

    .menu-items {
        grid-column: 2 / span 1;
    }

    .category-grid {
        grid-template-columns: 1fr 1fr;
    }

    .category-title {
        margin-top: 3rem;

    }


}

/* Desktop size */
@media screen and (min-width: 1200px) {

    .menu-items-container {
        grid-template-columns: 1fr 4.5fr 1fr;
    }

    .category-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

}


/* ================= ABOUT US =================*/

/* Mobile size */

.about-us-title {
    display: flex;
}

.about-us-title .venue-display-content {
    display: flex;
    justify-content: center;
    text-align: center;
}

.about-us-title-text {
    margin-top: 1rem;
}

.about-us-title h1 {
    font-size: 2.5rem;
}

.about-us-content {
    color: white;
}

.about-us-section {
    margin-top: 2rem;
}

.about-us-section h1 {
    font-weight: 500;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.about-us-section p {
    color: #CFCFCF;
    line-height: 1.4rem;
    font-size: 1rem;
}

/* Tablet size */
@media screen and (min-width: 768px) {

    .about-us-section {
        display: grid;
        margin-top: 5rem;
        grid-template-columns: 1fr 1.8fr 2.25fr 1fr;
        gap: 1rem;
    }

    .about-us-title .subheading {
        font-size: 3rem;
        display: grid;
    }

    .about-us-section p {
        grid-column: 3 / span 1;
    }

    .about-us-section h1 {
        grid-column: 2 / span 1;
        font-size: 2rem;
    }

    .divider-grid {
        display: grid;
        grid-template-columns: 1fr 4.05fr 1fr;
    }

    .about-us-divider {
        border: 1px solid #001C28;
        width: 100%;
        grid-column: 2 / span 1;
        margin-top: 4rem;
    }

    .about-us-title h1 {
        font-size: 3.3rem;
        margin-bottom: 0.5rem;
    }


}

/* Desktop size */
@media screen and (min-width: 1200px) {

    .about-us-title h1 {
        font-size: 4rem;
        margin-bottom: 0.5rem;
    }

    .about-us-section h1 {
        /* font-size: 2.3rem; */
    }

    .about-us-section {
        grid-template-columns: 2fr 1.8fr 2.25fr 2fr;
        margin-top: 8rem;
    }

    .divider-grid {
        grid-template-columns: 2fr 4.05fr 2fr;
    }



}

/* ================= ABOUT US BACKEND =================*/

.about-us-page-entries {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.single-about {
    background-color: #F2F4F9;
    border-radius: var(--border-radius);
    padding: 2rem;
    width: 70%;
    word-break: break-all;
}

.single-about h1 {
    font-size: 1.5rem;
    font-weight: 500;
}

.single-about p {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 1rem;
}

.single-about-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.abouts-btns {
    display: flex;
    gap: 0.5rem;
}

.abouts-btns a {
    border: none;
    background-color: var(--grey);
    padding: 0.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    color: black;
    font-weight: 500;
}

.abouts-btns a:hover {
    transform: scale(1.05);
    background-color: #b6b8be;
}

.about-us-subheading {
    color: black;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    display: flex;
    width: 100%;
    margin-bottom: 2rem;
}

.single-about-header-edit {
    all: unset;
}

.about-input-label {
    color: #939393;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-us-textarea {
    display: flex;
    padding: 1rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 1rem;
    width: 100%;
    /* color: var(--darker-grey); */
    color: black;
}

.about-page-add-btn {
    margin-top: 2rem;
}

.about-us-btns-top {
    display: flex;
    gap: 1rem;
}

/* ================= FOOTER =================*/

/* Mobile size */

/* .footer {
    background-color: #001C28;
    width: 100%;
    height: 5rem;
    position: absolute;
    bottom: 0;

}

.page-body-content {
    background-color: blue;
    width: 100%;
    min-height: 100vh;
} */

/* .new-customer-menu {
    min-height: 100vh;
} */

.page-content-blah {
    background-color: red;
    height: 200vh;
    width: 100%;
}

.page-container {
    position: relative;
    min-height: 100vh;
    /* background-color: #001119f2; */
  }
.content-wrap {
    padding-bottom: 22rem;    /* Footer height */
    /* background-color: #001119f2; */
    min-height: auto;
  }

.footer {
    background-color: #001C28;
    color: white;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 22rem;            /* Footer height */
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
  }

  .footer-content h3 {
    margin-bottom: 2rem;
    font-size: 1.3rem;
  }

  .social-media-links {
    display: flex;
    gap: 0.7rem;
  }

  .social-media-link:hover {
    cursor: pointer;

  }

  .social-media-link i:hover {
    transform: scale(var(--scale));
    background-color: rgb(223, 223, 223);

  }

  .social-media-link i {
    color: black;
    background-color: white;
    padding: 1rem;
    border-radius: 100%;
    font-size: 1.2rem;
    transition: var(--transition);
  }

  .contact-infos {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-direction: column;
    margin-top: 2rem;
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .contact-info {
    display: flex;
    gap: 1rem;
  }

  .copyright {
    color: #939393;
    opacity: 0.5;
  }

  /* Tablet size */
@media screen and (min-width: 768px) {

    .social-media-link i {
        padding: 1.3rem;
        font-size: 1.3rem;
      }

    .contact-infos {
        font-size: 1.3rem;
    }

    .footer-content h3 {
        font-size: 1.5rem;
    }

    .social-media-links {
        gap: 1rem;
    }

}

/* Desktop size */
@media screen and (min-width: 1200px) {

}

.field-icon {
    position: absolute;
    top: 15px;
    right: 15px;
}

.eye-preview-container {
    position: relative;
    display: inline-block;
}


/* Edit Footer Page */
.footers-edit {
    width: 100%;
}

.footer-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-input-box {
    margin-bottom: 0rem;
}

.footer-input i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Creating view max min stock on hover */

.stockonhand {
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.stockonhand:hover {
    /* transform: scale(1.1); */
}

.stockonhand:hover .max-stock-inventory {
    /* color: red; */
    display: block;
}

.categories-row {
    /* width: 60% !important; */
}


.welcome-message {
    font-weight: 500;
}

.custom-form.hero-form {
    /*background-color: rgba(51, 51, 51, 0.7); !* Change this to match the desired background color *!*/
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.55);
}

.custom-form.hero-form h3 {
    color: white;
}

.custom-form .input-group {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-form .input-group-text {
    background-color: white;
    border: none;
    border-radius: 5px 0 0 5px;
    padding: 10px 5px 10px 15px;
}

.custom-form .form-control {
    border-radius: 0 5px 5px 0;
    border: none;
    padding: 10px 10px 10px 10px;
}

.custom-form .form-control:focus {
    box-shadow: none;
    border: none;
}

.custom-form button.form-control {
    background-color: black;
    color: white;
    border-radius: 25px;
    padding: 10px;
    border: none;
    margin-top: 10px;
}

.form-control-dropdown {
    background-color: var(--bs-body-bg);
    border: var(--bs-border-width) solid var(--bs-border-color);
    padding: 10px 15px;
    width: 100%;
}

.form-control-dropdown option {
    background-color: var(--bs-body-bg);
}

.form-control-dropdown:focus {
    box-shadow: none;
    border: 1px solid #ccc;
}

.btn-primary-admin {
    color: #fff;
    background-color: #4e73df;
    border-color: #4e73df;
    width: 100%;
}

.btn-approve {
    color: #1cc88a;
    background-color: white;
    border-color: #1cc88a;
}

.btn-approve:hover {
    color: white;
    background-color: #1cc88a;
    border-color: #1cc88a;
}

.btn-pending {
    color: #f6c23e;
    background-color: white;
    border-color: #f6c23e;
}

.btn-pending:hover {
    color: white;
    background-color: #f6c23e;
    border-color: #f6c23e;
}

.btn-deny {
    color: #e74a3b;
    background-color: white;
    border-color: #e74a3b;
}

.btn-deny:hover {
    color: white;
    background-color: #e74a3b;
    border-color: #e74a3b;
}

.form-control-search {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #6e707e;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #d1d3e2;
    border-radius: .35rem;
    border-top-left-radius: .35rem;
    border-bottom-left-radius: .35rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control-filter {
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #6e707e;
    background-color: var(--bs-body-bg);
    border: 1px solid #d1d3e2;
    border-radius: 0;
}

.form-control-filter option {
    background-color: var(--bs-body-bg);
    border-radius: 0;
}

.form-control-filter:focus {
    box-shadow: none;
    border-radius: 0;
    border: 1px solid #ccc;
}

.btn-search {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-top-right-radius: .35rem !important;
    border-bottom-right-radius: .35rem !important;
}

.add-to-cart {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: block; /* Ensuring the add-to-cart div is displayed */
}

.add-to-cart-btn {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    display: block; /* Ensuring the button is always displayed */
}

.add-to-cart-btn:hover {
    background-color: #555;
}

.price-icon i {
    margin-left: 5px;
}


/*---------------------------------------
  HOME PAGE
-----------------------------------------*/
/* .categories-section {
    padding: 40px 0;
} */

.categories-section .categories-block {
    position: relative;
    background: #ff6a6a;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    transition: all 0.5s;
}

.categories-section .categories-block:hover {
    position: relative;
    background: white;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ff6a6a;
    text-align: center;
    transition: all 0.5s;
    border-color: transparent;
}

.categories-section .categories-block a {
    color: white;
    text-decoration: none;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.categories-section .categories-block a:hover {
    color: #ff6a6a;
}

.form-control-home-search {
    display: block;
    padding: .375rem .75rem;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 400;
    color: #6e707e;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #d1d3e2;
    border-radius: .35rem;
    /* border-top-left-radius: .35rem;
    border-bottom-left-radius: .35rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; */
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-home-search {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-top-right-radius: .35rem !important;
    border-bottom-right-radius: .35rem !important;
    margin-top: 1rem;
    border: 1px solid #d1d3e2 !important;
    background-color: #fff !important;
    /* color: var(--darkest-blue) !important; */
    font-size: 4vw !important;
}

.btn-home-search:hover {
    background-color: #d1d3e2 !important;
    color: #fff !important;
}

@media (min-width: 320px) {

    .venues-title h1 {
        font-size: 7vw;
    }

    .venues {
        margin-right: 0.5rem;
        margin-left: 0.5rem;
    }

    .form-control-home-search {
        width: 80vw;
        height: auto;
        font-size: 4vw;
    }

    .btn-home-search {
        font-size: 4vw !important;
    }

    .categories-section .categories-block {
        position: relative;
        background: #ff6a6a;
        border-radius: 5px;
        color: white;
        text-align: center;
        transition: all 0.5s;
        padding: 0.75rem 2rem;
    }

    .categories-section .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: row;
        align-content: space-between;
        align-items: center;
        margin-top: 0.5rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    .services-grid {
        display: grid;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

    .service-card {
        position: relative;
        overflow: hidden;
        border-radius: 5px;
        transition: transform 0.3s ease;
    }
    
    .service-card img {
        width: 100%;
        height: 60vw;
        object-fit: cover;
        border-radius: 5px 5px 0px 0px;
        border: 15px solid var(--darkest-blue);
    }
    
    .service-card p {
        padding: 0rem 1.25rem 1.25rem 1.25rem;
        font-weight: 200;
        font-size: 4vw;
        color: white;
        background-color: var(--darkest-blue);
        border-radius: 0px 0px 5px 5px;
        margin: 0;
    }
    
    .service-card:hover {
        transform: scale(1.05);
    }
        
    .small, small {
        font-size: 4vw !important;
    }
}

/* Tablet size */
@media screen and (min-width: 768px) {

    .form-control-home-search {
        width: 80vw;
        height: auto;
        font-size: 2.5vw;
    }

    .btn-home-search {
        font-size: 2.5vw !important;
    }

    .services-grid {
        padding-left: 15% !important;
        padding-right: 15% !important;
    }

    .small, small {
        font-size: 2.5vw !important;
    }

    .service-card p {
        font-size: 2.5vw;
    }

    .service-card img {
        width: 100%;
        height: 30vw;
        object-fit: cover;
        border-radius: 5px 5px 0px 0px;
        border-top: 1.5rem solid var(--darkest-blue);
        border-right: 1.5rem solid var(--darkest-blue);
        border-left: 1.5rem solid var(--darkest-blue);
    }
}

@media (min-width: 992px) {

    .venues-title h1 {
        font-size: 3.5vw;
    }

    .venues {
        margin-left: 3rem;
        margin-right: 3rem;
    }

    .categories-section .categories-block {
        position: relative;
        background: #ff6a6a;
        border-radius: 5px;
        color: white;
        text-align: center;
        transition: all 0.5s;
        padding: 0.75rem 1.25rem;
    }

    .categories-section .categories-block-title {
        font-size: 18px;
    }

    .categories-section .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        flex-direction: row;
        align-content: space-between;
        align-items: center;
        margin-top: 0.5rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    .form-control-home-search {
        width: 80vw;
        height: auto;
        font-size: 1.6vw;
    }

    .btn-home-search {
        font-size: 1.6vw !important;
    }

    .small, small {
        font-size: 1.6vw !important;
    }

    .explore {
        margin: 3rem;
        margin-top: 2rem;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1rem;
        padding-left: 0% !important;
        padding-right: 0% !important;
    }

    .service-card {
        margin: 1rem;
        position: relative;
        overflow: hidden;
        border-radius: 5px;
        transition: transform 0.3s ease;
        width: fit-content;
    }
    
    .service-card img {
        height: 30vw;
    }
    
    .service-card p {
        padding: 0rem 1.25rem 1.25rem 1.5rem;
        font-weight: 200;
        font-size: 1.6vw;
        color: white;
        background-color: var(--darkest-blue);
        border-radius: 0px 0px 5px 5px;
        margin: 0;
    }
    
    .service-card:hover {
        transform: scale(1.05);
    }
        
}

@media (min-width: 1400px) {

    .venues-title h1 {
        font-size: 2.2vw;
    }
    
    .venues {
        margin-left: 16.5rem;
        margin-right: 16.5rem;
    }

    .categories-section .categories-block {
        position: relative;
        background: #ff6a6a;
        border-radius: 5px;
        color: white;
        text-align: center;
        transition: all 0.5s;
        padding: 1rem 2rem;
    }

    .categories-section .categories-block-title {
        font-size: 24px;
    }

    .categories-section .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        flex-direction: row;
        align-content: space-between;
        align-items: center;
        margin-top: 0.5rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    .form-control-home-search {
        width: 60vw;
        height: auto;
        font-size: 1vw;
    }

    .btn-home-search {
        font-size: 1vw !important;
    }

    .small, small {
        font-size: 1vw !important;
    }

    .explore {
        padding: 1rem;
        margin: 3rem;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1rem;
        justify-items: center;
        align-items: center;
    }    

    .service-card {
        margin: 2rem;
        position: relative;
        overflow: hidden;
        border-radius: 5px;
        transition: transform 0.3s ease;
        width: fit-content;
    }

    .left-item {
        justify-self: end; 
    }
    
    .right-item {
        justify-self: start; 
    }
    
    .service-card img {
        width: 30vw;
        height: 20vw;
    }
    
    .service-card p {
        padding: 0rem 1.25rem 1.25rem 1.5rem;
        font-weight: 200;
        font-size: 1vw;
        color: white;
        background-color: var(--darkest-blue);
        border-radius: 0px 0px 5px 5px;
        margin: 0;
    }
    
    .service-card:hover {
        transform: scale(1.05);
    }
        
}

.categories-block:hover {
    color: #ff6a6a;
    background-color: white;
    border-color: var(--white-color);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
    justify-content: center;
}

.categories-section .categories-block-title {
    font-weight: 500;
    justify-content: center;
}

.categories-section .categories-block-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #00d1ff;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.categories-icon {
    font-size: 36px;
}

.categories-section .row {
    display: flex;
    flex-wrap: wrap;
}

.categories-section .col-lg-2 {
    flex: 0 0 auto;
    width: auto;
    max-width: fit-content;
    justify-content: center;
}

.venues-page-container {
    display: flex;
    height: 100vh;
}

#map {
    width: 100%;
    height: 100%;
}

.categories-section .venues-categories-block {
    position: relative;
    background: #ff6a6a;
    border-radius: 5px;
    color: white;
    text-align: center;
    transition: all 0.5s;
    padding: 0.75rem 1.25rem;
}

.categories-section .venues-categories-block-title {
    font-weight: 500;
    justify-content: center;
}

.venues-categories-block:hover {
    color: #ff6a6a !important;
    background-color: white;
    border-color: var(--white-color);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
    justify-content: center;
}

.form-control-venue-page-search {
    display: block;
    padding: .375rem .75rem;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 400;
    color: #6e707e;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #d1d3e2;
    border-radius: .35rem;
    /* border-top-left-radius: .35rem;
    border-bottom-left-radius: .35rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; */
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (min-width: 320px) {

    .venues-page-container {
        flex-direction: column-reverse;
    }

    .left-side {
        width: 100%;
        height: 100%;
        overflow: auto;
    }

    .venues-title p {
        font-size: 4vw;
    }

    .input-group {
        justify-content: center;
        padding-bottom: 1rem;
    }

    .form-control-venue-page-search {
        width: 80vw;
        height: auto;
        font-size: 4vw;
    }

    .categories-section .venues-categories-block-title {
        font-size: 3.5vw !important;
    }
    
    .btn-dark {
        width: 80vw !important;
        font-size: 3.5vw !important;
    }

    .venue-item {
        width: 100%;
        overflow: hidden;
        height: 45vw;
    }

    .venue-grid {
        padding: 1rem;
        display: grid;
        grid-auto-rows: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .no-venues {
        font-size: 4vw;
        text-align: center;
    }

    .venue-name {
        font-size: 4vw;
    }

    .venue-address {
        font-size: 3.5vw;
        margin-bottom: 0rem !important;
    }

    .right-side {
        width: 100%;
        top: 0;
        height: 30vh;
    }
}

@media (min-width: 768px) {

    .custom-form .form-control {
        width: 43rem;
    }

    .venues-title p {
        font-size: 2.5vw;
    }

    .form-control-venue-page-search {
        width: 80vw;
        height: auto;
        font-size: 2.5vw;
    }

    .categories-section .venues-categories-block-title {
        font-size: 2vw !important;
    }
    
    .btn-dark {
        width: 80vw !important;
        font-size: 2vw !important;
    }

    .venue-item {
        height: 25vw;
    }
    
    .no-venues {
        font-size: 2.5vw;
        text-align: center;
    }

    .venue-name {
        font-size: 2.5vw;
    }

    .venue-address {
        font-size: 2vw;
        margin-bottom: 0rem !important;
    }

    .venue-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .venue-item {
        width: 45%;
    }

}

@media (min-width: 1200px) {

    .venues-splash-image {
        height: 8rem;
    }
    
    .venues-page-container {
        flex-direction: row;
    }

    .left-side {
        width: 50%;
        padding: 2.5rem;
        height: 100%;
        overflow: auto;
    }

    .custom-form.hero-form {
        padding: 0rem;
        padding-top: 1rem;
        box-shadow: 0 0px 0px;
    }

    .categories-section .venues-categories-block {
        padding: 0.01rem 0.7rem;
    }

    .categories-section .venues-categories-block-title {
        font-size: 1vw !important;
    }

    .categories-section .col-lg-2 {
        padding-left: 0rem;
    }

    .venues-title p {
        font-size: 1.5vw;
    }

    .form-control-venue-page-search {
        width: 43.5vw;
        height: auto;
        font-size: 1.5vw;
    }

    .categories-section .venues-categories-block-title {
        font-size: 1vw !important;
    }
    
    .btn-dark {
        font-size: 1vw !important;
    }

    .venue-item {
        height: 15vw;
        width: 20vw;
    }
    
    .no-venues {
        font-size: 1vw;
        text-align: center;
    }

    .venue-name {
        font-size: 1.5vw;
    }

    .venue-address {
        font-size: 1vw;
        margin-bottom: 0rem !important;
    }

    .venue-grid {
        padding: 0rem;
    }
    
    .right-side {
        width: 50%;
        position: sticky;
        top: 0;
        height: 100vh;
    }
}

@media (min-width: 1400px) {

    .custom-form .form-control {
        width: 51rem;
    }

    .venues-title p {
        font-size: 1vw;
    }

    .form-control-venue-page-search {
        width: 44.5vw;
        height: auto;
        font-size: 1vw;
    }

    .categories-section .venues-categories-block-title {
        font-size: 0.75vw !important;
    }
    
    .btn-dark {
        font-size: 0.75vw !important;
    }

    .venue-item {
        height: 11vw;
        width: 19.9vw;
    }
    
    .no-venues {
        font-size: 1vw;
        text-align: center;
    }

    .venue-name {
        font-size: 1vw;
    }

    .venue-address {
        font-size: 0.75vw;
        margin-bottom: 0rem !important;
    }

}

.no-venues {
    color: white;
}