

main {
    background-color: var(--my-gray);
}

.dropdown a {
    color: white;
}

#logo {
    width: 200px;
}

.box-container {
    background-color: white;
    color: black;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 0 2px 5px;
}



.sidebar-container {
    color: black;
}

.sidebar-category-link {
    color: black;
}

.sidebar-category {
    font-size: 1.5rem;
}
.sidebar-category.active {
    border-bottom: 4px solid;
    border-image-source: var(--my-orange-gradient);
    border-image-slice: 1;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50% 50%;
}
#banner {
    width: 100%;
    min-height: 500px;
    position: relative;
    margin-bottom: 1rem;
}
#banner-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-right: 2rem;
}
#banner-header {
    min-height: 8vh;
    color: white !important;
    font-size: 1.5rem;
}
#banner-footer {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 65%;
    height: 35%;
    z-index: 2;
 }
#banner-footer-content {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    height: 100%;
}
#banner-text-name {
    font-size: 3rem;
    font-weight: bold;
    color: white;
}
#banner-header-menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#banner-header-menu-icon {
    font-size: 2rem;
}
.banner-header-button-container {
    font-size: 1.3rem;
    margin-right: 1.2rem;
    cursor: pointer;
}

#search-input {
    background-color: var(--my-gray);
    border-radius: 5px;
    width: 85%;
    height: 50px;
    border: none;
    padding: 1rem;
    border-bottom: 2px solid var(--my-gray-hover);
}
#search-input:focus {
    outline: none;
}

#menu-container {
    padding: 0 0.5rem;
}

.category-products-wrapper {
    display: grid;
    grid-template-rows: 1fr;
    overflow: hidden;
    transition: grid-template-rows 0.3s ease-out, opacity 0.3s ease;
    opacity: 1;
}
.category-products-wrapper.collapsed {
    grid-template-rows: 0fr;
    opacity: 0;
    pointer-events: none;
}
.category-products-container {
    min-height: 0;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 0.5rem 0;
}
.category-products-container.collapsed {
    padding: 0;
}
.category-header {
    padding: 0.3rem 0.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    color: black;
}
.category-header-dot-wrapper {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.6rem;
    margin-right: 0.5rem;
}
.category-header-title {
    font-size: 1.5rem;
}

.product-card {
    width: 330px;
    height: fit-content;
    margin: 0.5rem 1.5rem 1.5rem 0;
}
.product-card.mini, .product-card.cart {
    width: 100%;
    margin: 0;
    padding: 0.5rem;
}
.product-card.cart {
    margin: 0.5rem 0;
}
.product-card-image-container {
    width: 100%;
}
.product-card-image {
    border-radius: 10px 10px 0 0;
}
.product-card-body {
    width: 100%;
    min-height: 80px;
    padding: 1rem 1rem 0 1rem;
}
.product-card-body.mini {
    width: 50%;
    padding: 0;
    min-height: 30px;
}
.product-card-image {
    width: 100%;
    height: 220px !important;
}
.product-card-title {
    font-weight: bold;
    font-size: 1.2rem;
}
.product-card-weight {
    color: var(--bs-gray);
}
.product-card-description {
    font-size: 1.2rem;
    color: var(--bs-gray);
    max-width: 400px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    cursor: pointer;
}
.product-card-description.expanded {
    display: block;
    max-width: 100%;
}
.product-card-footer {
    padding: 1rem;
}
.product-card-footer.mini {
    padding: 0;
}
.product-option-price {
    font-size: 1.2rem;
    min-width: 112px;
    align-content: end;
    text-align: end;
}
.product-option-description {
    color: var(--bs-gray);
    font-size: 1.2rem;
    align-content: end;
}
.product-card-buttons {
    width: 90px;
}


#bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
    font-size: 1.8rem;
    background-color: white;
    z-index: 500;
}

.bottom-bar-button {
    position: relative;
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: black;
}

#bottom-bar-cart-counter {
    position: absolute;
    top: 5px;
    right: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: var(--my-orange-gradient);
}

.cart-btn {
    border-radius: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    cursor: pointer;
    font-weight: bold;
    color: black;
}
.cart-btn.minus {
    background-image: var(--my-gray-gradient);
}
.cart-btn.plus {
    background-image: var(--my-orange-gradient);
}
.cart-quantity {
    font-size: 1.2rem;
}

.app-modal-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: linear-gradient( to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 0% );
}
.app-modal {
    width: 700px;
    height: 70%;
    border-radius: 10px;
}
.app-modal-header {
    background-color: white;
    border-radius: 20px 20px 0 0;
    min-height: 10%;
    padding: 1rem;
    color: black;
}
.app-modal-body {
    background-color: var(--my-gray);
    padding: 1rem;
    height: 80%;
    overflow-y: auto;
}
.app-modal-footer {
    background-color: white;
    min-height: 10%;
    font-size: 1.5rem;
    border-radius: 0 0 10px 10px;
    color: black;
}

#cart-body-empty-message {
    font-size: 1.5rem;
    text-align: center;
}
#cart-close-btn {
    font-size: 2rem;
    cursor: pointer;
}
#cart-total {
    font-weight: normal;
}
#cart-order-btn {
    background-image: var(--my-orange-gradient);
    font-size: 1.6rem;
}

#notification {
    width: 700px;
    height: 40%;
    border-radius: 10px;
    font-size: 2rem;
}

#footer {
    height: 20vh;
    background-color: var(--my-gray);
    color: black;
}

.toggle-icon {
    color: var(--my-black);
}



