/* Font */
@font-face {
    font-family: 'Vazirmatn Black';
    src: url(../fonts/Vazirmatn-Black.ttf) format('truetype');
}

@font-face {
    font-family: 'Vazirmatn Bold';
    src: url(../fonts/Vazirmatn-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'Vazirmatn Light';
    src: url(../fonts/Vazirmatn-Light.ttf) format('truetype');
}

@font-face {
    font-family: 'Vazirmatn ExtraLight';
    src: url(../fonts/Vazirmatn-ExtraLight.ttf) format('truetype');
}

@font-face {
    font-family: 'Vazirmatn Medium';
    src: url(../fonts/Vazirmatn-Medium.ttf) format('truetype');
}

@font-face {
    font-family: 'Vazirmatn Regular';
    src: url(../fonts/Vazirmatn-Regular.ttf) format('truetype');
}

/* Reest Css */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Styles Css */
:root {
  --text-primary-color: #2c3E50;
  --text-secondery-color: #6e6e6e;
  --app-bg-color: #f5f5f5;
  --section-bg-color: #e0e0e0;
  --secondery-color: #ff6c00;
  --primary-color: #006633;
  --color: #4CAF50;
}

html{
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 10px; /* 1rem = 10px */
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
            box-sizing: inherit;
}

.container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
    position: relative;
}

body {
    font-family: 'Vazirmatn Regular', sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--text-primary-color);
    background-color: var(--app-bg-color);
}

/* Slider */
.swiper {
    margin-bottom: 2.2rem;
    margin-top: 10rem;
}
.swiper-pagination {
  position: static !important;
  margin-top: .5rem !important;
}

.swiper-pagination-bullet {
  width: 1.3rem !important;
  height: 1.3rem !important;
  border: 0.35rem solid #bfbebe !important;
  background-color: #fff !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  border-color: var(--primary-color) !important;
}
.swiper-slide img {
    border-radius: 1rem;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
    margin: 2rem 0 2rem 0;
}

.wrapper {
    position: fixed;
    top: 0; 
    left: 0;
    right: 0; 
    z-index: 1000; 
    background-color: var(--app-bg-color); 
    padding: 2rem 3rem 1rem 3rem; 
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

/* tooltip */
.tooltip {
    position: absolute;
    top: 6rem;
    right: 3rem;
    background: var(--secondery-color);
    color: var(--section-bg-color);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 1.2rem;
    font-family: 'Vazirmatn ExtraLight';
    white-space: wrap;
    z-index: 10;
    opacity: 0;
    -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    -o-transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
    pointer-events: none;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
}

.tooltip::before {
    content: '';
    position: absolute;
    bottom: 96%;
    right: 1.5rem; 
    border-width: 8px; 
    border-style: solid;
    border-color: transparent transparent var(--secondery-color) transparent;
    -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
            transform: translateX(50%); 
}

.tooltip.show {
    opacity: 1;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
}

.tooltip.called {
    background: var(--color);
}

.tooltip.called::before {
    border-color: transparent transparent var(--color) transparent; 
}

@-webkit-keyframes shake {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    25% { -webkit-transform: rotate(10deg); transform: rotate(10deg); }
    50% { -webkit-transform: rotate(-10deg); transform: rotate(-10deg); }
    75% { -webkit-transform: rotate(10deg); transform: rotate(10deg); }
    100% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
}

@keyframes shake {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    25% { -webkit-transform: rotate(10deg); transform: rotate(10deg); }
    50% { -webkit-transform: rotate(-10deg); transform: rotate(-10deg); }
    75% { -webkit-transform: rotate(10deg); transform: rotate(10deg); }
    100% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
}

.wrapper__tooltip.active svg {
    -webkit-animation: shake 0.5s ease 2;
            animation: shake 0.5s ease 2;
        color: var(--secondery-color);
}

.logo {
    width: 2.7rem;
    height: auto;
    object-fit: cover;
}

.shop {
    position: relative;
}

.shop__number {
    position: absolute;
    top: -0.6rem;
    left: 1.4rem;
    width: 1.8rem;
    height: 1.8rem;
    line-height: 2rem;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 1.2rem;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.menu-container {
    position: relative;
    width: 100%;
}

.menu-wrapper {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
}

.arrow {
    position: absolute;
    top: 39%;
    transform: translateY(-50%);
    background-color: rgba(255,255,255,0.9);
    color: var(--primary-color);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem 1.2rem;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: background-color 0.3s;
    z-index: 10;
}

.arrow:hover {
    background-color: rgba(255,255,255,1);
}

.arrow.left {
    left: -2rem;
}

.arrow.right {
    right: -2rem;
}

.menu-wrapper {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
        -ms-overflow-style: none; 
    scrollbar-width: none; 
}

.menu-wrapper::-webkit-scrollbar {
    display: none;           
}

.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 1rem 0;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    min-width: 100%;
}

.menu__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-width: 10rem; 
    -ms-flex-negative: 0; 
        flex-shrink: 0;
    margin-bottom: 1rem;
    cursor: pointer;
    min-width: 8rem;
}

.menu__item-box {
    width: 8rem;
    height: 8rem;
    border: 2px solid var(--section-bg-color);
    border-radius: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: white;
    -webkit-box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.menu__item:hover .menu__item-box {
    -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
            transform: translateY(-5px);
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.menu__item.selected .menu__item-box {
    border-color: var(--primary-color);
}

.menu__logo {
    width: 5rem;
    height: 5rem;
    -o-object-fit: contain;
       object-fit: contain;
}

.menu__item a {
    text-decoration: none;
    color: var(--text-primary-color);
    font-size: 1.3rem;
    font-family: 'Vazirmatn Regular';
    text-align: center;
    white-space: nowrap;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.menu__item.selected a {
    color: var(--primary-color);
    font-weight: bold;
}

/* Main */
.main {
    padding: 1rem;
    margin-bottom: 3rem;
}

.wrapper-product {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

.wrapper-product-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-family: 'Vazirmatn Bold';
    font-size: 2rem;
    margin: 2rem 0;
    position: relative;
    color: var(--secondery-color);
}

.wrapper-product-title::before,
.wrapper-product-title::after {
    content: "";
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 1px;
    background-color: var(--secondery-color);
    margin: 0 1rem;
}

.product-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    background-color: var(--primary-color);
    color: var(--app-bg-color);
    border-radius: 1.5rem;
    overflow: hidden;
    -webkit-box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.05),
        0 4px 16px rgba(76, 175, 80, 0.15);
            box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.05),
        0 4px 16px rgba(76, 175, 80, 0.15);
}

.product-box__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12rem;
            flex: 0 0 12rem;
    max-width: 12rem;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
}

.wrapper-left {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.product-box__title {
    font-size: 1.5rem;
}

.wrapper-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: .5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: .5rem;
}

.icon-details {
    width: 1.5rem;
}

.product-details {
    font-size: 1.2rem;
    width: 12rem;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
}

.wrapper-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 2rem;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 1rem;
}

.product-box__price {
    font-size: 1.4rem;
}

.product-counter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: .4rem;
    background-color: var(--app-bg-color);
    border-radius: .5rem;
    -webkit-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
    padding: .2rem;
    cursor: pointer;
    color: var(--primary-color);
}

.counter-number {
    min-width: 20px;
    text-align: center;
    font-size: 1.5rem;
    margin-top: 0.3rem;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--app-bg-color);
    width: 100%;
    height: 10rem;
    border-top-right-radius: 2rem;
    border-top-left-radius: 2rem;
    text-align: center;
    padding: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.footer p {
    font-size: 1.3rem;
}

/* arrow */
.arrow-top {
  display: none;
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #ff6c00c7;
  color: white;
  cursor: pointer;
  padding: 1rem;
  border-radius: 50%;
  font-size: 1.8rem;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  -o-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}

.arrow-top:hover {
  background-color: #ff6c00e3;
}

.arrow-top svg {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
}

/* shopping cart*/
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    width: 100%;
    height: 100%;
    background: white;
    -webkit-transition: right 0.3s ease;
    -o-transition: right 0.3s ease;
    transition: right 0.3s ease;
    z-index: 1000;
}

.cart-sidebar.active {
    right: 0;
}

.cart-sidebar__content {
    padding: 3rem;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.cart-sidebar__close {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    background: none;
    border: none;
    font-size: 3rem;
    cursor: pointer;
    color: var(--text-primary-color);
}

.cart-sidebar__close + h2 {
    font-weight: bold;
}

.cart-items {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    overflow-y: auto;
    margin: 3rem 0;
}

.cart-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
}

.cart-item__img {
    width: 6rem;
    height: 6rem;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0.5rem;
    margin-left: 1rem;
}

.cart-item__info {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.cart-item__name {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.cart-item__price {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.cart-item__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5rem;
}

.cart-item__decrease,
.cart-item__increase {
    color: white;
    border: none;
    border-radius: 100%;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    font-size: 1.4rem;
}

.cart-item__decrease {
    background-color: #ff2727;
}

.cart-item__increase {
    background-color: var(--color);
}

.cart-item__quantity {
    margin: 0 .5rem;
    min-width: 20px;
    text-align: center;
}

.empty-cart-message {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondery-color);
}

.empty-cart-message svg {
    width: 20rem;
    height: 20rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.cart-summary {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.total-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.continue-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--app-bg-color);
    font-family: 'Vazirmatn Regular';
    border: none;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    cursor: pointer;
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.continue-btn:hover {
    background-color: #005a2b;
}

.continue-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.customer-form {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    width: 100%;
    height: 100%;
    background: white;
    -webkit-transition: right 0.3s ease;
    -o-transition: right 0.3s ease;
    transition: right 0.3s ease;
    z-index: 1000;
}

.customer-form.active {
    right: 0;
}

.customer-form__content {
    padding: 3rem;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.customer-form__content > h2 {
    font-weight: bold;
}

.customer-form__close {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    background: none;
    border: none;
    font-size: 3rem;
    cursor: pointer;
    color: var(--text-primary-color);
}

.order-form {
    padding-top: 3rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    font-family: 'Vazirmatn Regular';
    color: var(--text-primary-color);
}

.form-group select.form-select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    font-family: 'Vazirmatn Regular';
    color: var(--text-primary-color);
    background-color: white;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2010%206%22%3E%3Cpath%20fill%3D%22%232c3E50%22%20d%3D%22M0%200l5%205%205-5z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: left 1.2rem center;
    background-size: 1.2rem; 
    cursor: pointer;
    text-align: right;
    padding-left: 4rem; 
    outline: none;
}

.submit-order-btn {
    margin-top: auto;
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--app-bg-color);
    font-family: 'Vazirmatn Regular';
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    cursor: pointer;
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 0.5rem;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 1000;
    -webkit-transform: translateY(100px);
        -ms-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.notification.active {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
}

.notification__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: .5rem;
       -moz-column-gap: .5rem;
            column-gap: .5rem;
}

.notification__content svg {
    width: 2.4rem;
    height: 2.4rem;
    margin-left: 1rem;
}

/* overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.overlay.active {
    display: block;
}


/* Login */
.login-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100vh;
    background-color: var(--app-bg-color);
}

.login-box {
    background-color: white;
    padding: 3rem;
    border-radius: 1rem;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 40rem;
    text-align: center;
}

.login-box h2 {
    font-family: 'Vazirmatn Bold';
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.form-group label {
    text-align: right;
}

.login-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-family: 'Vazirmatn Medium';
    font-size: 1.6rem;
    cursor: pointer;
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: #005a2b;
}


/* Admin Panel */
.orders-title {
    font-family: 'Vazirmatn Bold';
    text-align: center;
    margin: 3rem 0;
    color: var(--primary-color);
    font-size: 2.2rem;
    position: relative;
}

.orders-title::before,
.orders-title::after {
    content: "";
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 1px;
    background-color: var(--primary-color);
    margin: 0 1rem;
}

.orders-container {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 3rem;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.orders-table {
    width: 100%;
    min-width: 600px;
}

.orders-table thead {
    background-color: var(--primary-color);
    color: white;
}

.orders-table th {
    font-family: 'Vazirmatn Medium';
    padding: 1.2rem 0.8rem;
    text-align: center;
    font-size: 1.4rem;
}

.orders-table td {
    padding: 1rem 0.8rem;
    text-align: center;
    border-bottom: 1px solid var(--section-bg-color);
    font-size: 1.3rem;
}

.orders-table tr:nth-child(even) {
    background-color: rgba(0, 102, 51, 0.05);
}

.orders-table tr:hover {
    background-color: rgba(0, 102, 51, 0.1);
}

.status {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    font-family: 'Vazirmatn Medium';
    min-width: 8rem;
    border-radius: 4px;
}

.status-btn {
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Vazirmatn Medium';
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    min-width: 120px;
}

.not-delivered {
    background-color: #dc3545;
}

.delivered {
    background-color: var(--color);
    cursor: default !important;
}

.waiter-requested {
    color: #d9534f;
    text-decoration: underline;
    font-weight: bold;
}

.order-item {
    margin: 0.3rem 0;
    padding: 0.2rem 0.5rem;
    border-radius: 0.3rem;
    display: inline-block;
}

/* Splash */
.splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease-out;
}

.splash.fade-out {
    opacity: 0;
    pointer-events: none;
}

.glass-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.glass-box img {
    max-width: 150px;
    margin-bottom: 20px;
}

.slogan {
    text-align: center;
    margin: 0;
    font-size: 1.5rem;
    color: var(--secondery-color);
    font-family: 'Vazirmatn Bold';
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* respansive */

@media (min-width: 300px) {
  .container {
    max-width: 280px;
  }

  .product-box__img {
    min-width: 100%;
  }

  .product-details {
    width: 20rem;
  }
}

@media (min-width: 350px) {
  .container {
    max-width: 350px;
  }

  .product-box__img {
    min-width: 100%;
  }
}

@media (min-width: 400px) {
  .container {
    max-width: 380px;
  }

  .product-box__img {
    min-width: 12rem;
  }

  .product-details {
    width: 13rem;
  }
}

@media (max-width: 480px) {
    .orders-title {
        font-size: 1.8rem;
        margin: 1.5rem 0;
    }
    
    .orders-table th,
    .orders-table td {
        padding: 0.6rem 0.3rem;
        font-size: 1.1rem;
    }
    
    .status {
        min-width: 6rem;
        padding: 0.3rem 0.6rem;
        font-size: 1rem;
    }
    
    .status-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 500px) {
  .container {
    max-width: 480px;
  }
}

@media (min-width: 576px) {
  .container {
    max-width: 550px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
  
  .orders-table th,
  .orders-table td {
      padding: 0.8rem 0.5rem;
      font-size: 1.2rem;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}