
:root {
    --primary-color: #E95322;
    --secondary-color: #F5CB58;
    --secondary-liquid-glass-color: #f5cb58cb;
    --primary-liquid-glass-color: #c0340593;
    --third-color: rgba(58, 123, 213, 1)
}
/* -------------------------------------Utilities-------------------------------------- */
@font-face {
    font-family: 'delivery_primary';
    src: url(/fonts/Lalezar.ttf);
}

@font-face {
    font-family: 'delivery-second';
    src: url(/fonts/BHOMA.TTF);
}

/* ----------------------------------Animations---------------------------------------- */

@keyframes path_come_large {
    from {
        width: 0%;
    }
    to {
        width: 100%
    }
}

@keyframes path_come_medium {
    from {
        width: 0%;
    }
    to {
        width: 74%
    }
}

@keyframes path_come_small {
    from {
        width: 0%;
    }
    to {
        width: 47%
    }
}

@keyframes header_image_come {
    0% {
        scale: 0
    }
    60% {
        scale: 0.8;
    }
    
    100% {
        scale: 0.7;
    }
}

@keyframes dot1 {
    0% {
        scale: 1;
    }
    50% {
        scale: 1.1;
        transform: translateY(-10px);
        background-color: #6078ff;
    }
    
    100% {
        scale: 1.0;
        transform: translateY(0px)
    }
}

@keyframes dot2 {
    0% {
        scale: 1;
    }
    50% {
        scale: 1.1;
        transform: translateY(-10px);
        background-color: #6078ff;
    }
    
    100% {
        scale: 1.0;
        transform: translateY(0px)
    }
}

@keyframes dot3 {
    0% {
        scale: 1;
    }
    50% {
        scale: 1.1;
        transform: translateY(-10px);
        background-color: #6078ff;
    }
    
    100% {
        scale: 1.0;
        transform: translateY(0px)
    }
}

@keyframes radiusMove {
    0%   { border-radius: 40% 60% 60% 40% }
    25%  { border-radius: 60% 40% 40% 60% }
    50%  { border-radius: 40% 60% 60% 40% }
    75%  { border-radius: 60% 40% 40% 60% }
    100% { border-radius: 40% 60% 60% 40% }
}

@keyframes move {
    to {
        transform: translate(100%, 100%);
    }
}

@keyframes shimmer {
    100% {
        left: 100%;
    }
}

@keyframes gradientMove {
    from {
        background-position: 0% 50%;
    }
    to {
        background-position: 300% 50%;
    }
}

@keyframes install-button-gradient {
    from {
        background-color: #bd390d
    }
    to {
        background-color: var(--primary-color)
    }
}

@keyframes popup-opening {
    0% { scale: 0.9; }
    100% { scale: 1; }
}
    

/* -----------------------------------Main Styles---------------------------------- */

/* ______________ Notification _____________ */

section {
    position: absolute;
    width: calc(100%);
    margin-left: 30px;
    
    background-color: transparent !important;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10000;
}
  
.alert {
    width: 50vh;
    padding: 16px;
    margin: 8px;
    max-width: 400px;
    width: 100%;
}
  
.alert-1-primary {
    background-color: rgba(255, 255, 255, 0.596);
}
.alert-1-primary .alert-title {
    color: #4d4dff;
}
  
.alert-1-warning {
    background-color: rgba(255, 255, 225, 0.637);
}
.alert-1-warning .alert-title {
    color: #b88700;
}
  
.alert-2-success {
    border-right: 4px solid #2ec946;
    background-color: rgba(255, 255, 255, 0.596);
}

.alert-2-success .alert-title {
    color: #2ec946;
}
  
.alert-2-secondary {
    border-right: 4px solid #666666;
    background-color: rgba(255, 255, 255, 0.596);
}
.alert-2-secondary .alert-title {
    color: #666666;
}
  
.alert-3-primary {
    border: 1px solid #cdcdff;
    border-radius: 12px !important;
    background-color: rgba(77, 77, 255, 0.05);

}
.alert-3-primary .alert-title {
    color: #4d4dff;
}
  
.alert-3-danger {
    border: 1px solid #be6868;
    border-radius: 12px !important;
    background-color: rgba(255, 0, 0, 0.562) !important;
}

.alert-3-danger .alert-title {
    color: #fff;
}

.alert-1-warning {
    border-radius: 12px !important;
    background-color: rgba(255, 245, 211, 0.603) !important;
}

.alert-2-long-time {
    border-radius: 4px;
    background-color: #ffffff8c;
    border-right: 4px solid #64a141;
}

.alert-2-long-time .alert-title{
    color: #333
}
  
.alert-title {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 18px;
    font-family: "Poppins", sans-serif;
}
  
.alert-content {
    margin: 0;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    color: #555555;
}

/* ______________ Loading _____________ */

.loading-screen {
    position: fixed;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100px;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    box-shadow: 0px 4px 25px -10px #a8a8a8;
    background-color: #fbfeff;
    top: 50%;
    right: 50%;
    transform: translate3d(50%, -50%, 0);
    z-index: 1000;
}

.loading-dot-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-dot {
    width: 12px;
    aspect-ratio: 1 / 1;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

.dot-1 {
    margin-left: .5rem;
    animation: dot1 .5s ease-in-out infinite;
    animation-delay: 0s;
}

.dot-2 {
    animation: dot2 .5s ease-in-out infinite;
    animation-delay: .1s;
}

.dot-3 {
    margin-right: .5rem;
    animation: dot3 .5s ease-in-out infinite;
    animation-delay: .2s;
}

/* ______________ popup _____________ */

.popup-box {
    background-color: #fff !important;
    border-radius: 7px !important;
    box-shadow: 0 0 55.2px 0 #00000052 !important;
    z-index: 10 !important;
    animation: popup-opening 0.1s;
}

.popup-box input,
.popup-box textarea {
    border: none !important;
    outline: none !important;
    border-radius: 7px !important;
    background-color: #eeeeee !important;
    color: #000 !important;
    font-size: 14px !important;
}


/*======================= INDEX.HTML =======================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    cursor: default;
}

html {
    height: -webkit-fill-available;
}

body {
    margin: auto;
    max-width: 520px;
    background-color: #F5CB58;
    font-family: 'delivery_primary';
    width: 100%;
    position:relative;
    overflow: hidden;
    height: auto;
    height: -webkit-fill-available;
}

.header {
    display: flex;
    padding: 0 2rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 4rem;
    margin-top: 1px;
}

.search-box {
    max-width: 300px;
    width: 100%;
    height: 3.5rem;
    padding: 10px 0 10px 0;
    margin: 10px;
}

.search-inner-input {
    background: #ffffff; /* زرد مطابق تصویر */
    position: relative;
    font-family: 'delivery_primary';
    font-size: 12px;
    max-width: 280px;
    width: 100%;
    height: 100%;
    border-radius: 1.75rem;
    padding: 10px 12px 10px 5px;
    border: none;
    outline: none;
}

.search-inner {
    background: #ffffff; /* زرد مطابق تصویر */
    position: relative;
    max-width: 280px;
    width: 100%;
    height: 100%;
    border-radius: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-text {
    font-family: 'delivery_primary';
    font-size: 13px;
    color: #676767;
    cursor: pointer;
}

#installPWA {
    position: relative;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 10px;
    font-size: 14px;
    font-family: 'delivery_primary';
    cursor: pointer;
    animation: install-button-gradient 1s infinite alternate;
}

.filter-btn {
    position: absolute;
    width: 1.8rem;
    aspect-ratio: 1/1;
    background: #E95322;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.filter-btn img {
    width: 100%;
    padding: 5px;
    aspect-ratio: 5/4;
    cursor: pointer;
}

.header-btns {
    min-width: 136px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 140px;
    height: 3.5rem;
    padding: 10px;
}

.header-btn {
    position: relative;
    height: 100% !important;
    aspect-ratio: 1/1 !important;
    width: auto !important;
    border-radius: 40% !important;
    background-color: #fff !important;
    display: flex !important;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center !important;
    align-items: center !important;
    cursor: pointer !important;
    margin: 0 !important
}

.cart-item-count-text {
    position: absolute;
    display: none;
    top: -5px;
    right: -5px;
    width: 20px;
    aspect-ratio: 1/1;
    border-radius: 5px;
    background-color: var(--primary-color);
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: white;
    cursor: pointer;
}

.header-btn .user-header-notification-ui {
    right: unset !important;
    left: 0px
}

.header-btn:first-child img {
    height: 18px !important;
    cursor: pointer !important;
}

.header-btn:nth-child(2) img {
    width: 15px !important;
    cursor: pointer !important;
}

.header-btn:nth-child(3) img {
    width: 18px !important;
    cursor: pointer !important;
}

main {
    border-radius: 30px 30px 0 0;
    overflow-y: auto;
    width: 100%;
    height: 100vh;
    height: -webkit-fill-available;
}

::-webkit-scrollbar {
    display: none;
}

.name-main-page {
    position:fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 520px;
    font-family: 'delivery_primary';
    font-size: 20px;
    color: #676767;
    padding: 0px 42px;
    padding-bottom: 20px !important;
    height: 5rem;
    align-self: flex-start;
    z-index: -1;
}

.name-main-page .name-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.name-main-page img {
    height: calc(100% - 5px);
    aspect-ratio: 1/1;
    border-radius: 50%;
}

.name-main-page h1{
    color: #fff;
    font-size: 2rem;
}

.name-main-page h3{
    color: #b4370d;
}

.main_contrainer {
    margin-top: 5rem;
    border-radius: 30px 30px 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    min-height: -webkit-fill-available;
    height: fit-content;
    background-color: white;
    z-index:2;
    padding-bottom: 150px !important;
}

.glass-liquid {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px) saturate(50%) contrast(200%);
    -webkit-backdrop-filter: blur(10px) saturate(50%) contrast(200%);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.bott-navigation {
    width: 100%;
    max-width: 520px;
    height: 5rem;
    position: fixed;
    bottom: 0;
    padding: 10px 30px;
    z-index: 10;
}

.bott-nav-container {
    width: 100%;
    height: 64px;
    display: flex;
    padding: 20px 20px;
    justify-content: space-around;
    align-items: center;
    background-color: var(--primary-liquid-glass-color);
}

.bott-nav-container a{
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.bott-nav-container a img{
    height: 100%;
    aspect-ratio: auto;
    cursor: pointer;
}

.menu-main-page-container {
    position: relative;
    height: fit-content;
    border-bottom: 1px solid var(--secondary-color);
    width: 100%;
    padding: 27px 0 0 0;
    border-radius: 0 0 10px 10px;
}

.horizontal-menu-main-page {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  scrollbar-width: none;
  width: 100%;
  padding: 0px 42px !important; 
}

.horizontal-menu-main-page::-webkit-scrollbar {
    display: none; /* Chrome */
}

.horizontal-menu-items {
    display: flex;
    width: 87px;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    padding: 10px 15px;
}

.horizontal-menu-items h4 {
    line-height: 13px;
    font-size: 14px;
    color: #333;;
    font-family: 'delivery-second';
    font-weight: 100;
    margin-bottom: 6px;
    margin-top: 5px;
    text-align: center;
    cursor: pointer;
}

.horizontal-menu-item-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #F3E9B5;
    border-radius: 100px;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.horizontal-menu-item-container img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 100px;
    border: 1px solid #F3E9B5;
    cursor: pointer;
}

.horizontal-menu-item-container .skeleton-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    border-radius: 100px;
    cursor: pointer;
}

.menu-main-page-container .pc-x-scroll {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    aspect-ratio: 1/1;
    background-color: var(--primary-liquid-glass-color);
    border-radius: 15px;
    z-index: 2;
    cursor: pointer;
}

.menu-main-page-container .pc-x-scroll img {
    width: 9px;
    cursor: pointer;
}

.padding-main-page {
    padding: 0 42px;
}

.menu-main-page-container .left-scroll {
    bottom: 50%;
    transform: translateY(50%);
    left: 10px;
    width: 40px;
    margin-right: -50px;
}

.menu-main-page-container .right-scroll {
    bottom: 50%;
    transform: translateY(50%);
    right: 10px;
    width: 40px;
}

.best-sells-container {
    width: 100%;
    height: fit-content;
    margin-top: 20px;
}

/* Skeleton container */
.skeleton {
    position: relative;
    overflow: hidden;
}

/* Skeleton image box */

/* Skeleton text */
.skeleton-text {
    position: relative;
    background-color: #eee;
    width: 100%;
    height: 14px;
    border-radius: 6px;
    margin-top: 8px;
}

/* Shimmer animation */
.skeleton::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 1.2s infinite;
}

/* Skeleton container */
.slider .skeleton-slide {
    display: flex;
    gap: 10px;
}

/* Image skeleton */
.slider .skeleton-img {
    width: 50%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

/* Text skeletons */
.slider .skeleton-text {
    height: 18px;
    background: var(--primary-color);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.slider .skeleton-text.short {
    width: 40%;
}

.skeleton-slide .off-text {
    width: 50%;
}

.slider .skeleton-text.long {
    width: 50%;
}

/* Shimmer animation */
.slider .skeleton-img::before,
.slider .skeleton-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        #ff7345 50%,
        rgba(255,255,255,0) 100%
    );
    animation: shimmer 1.4s infinite;
}

.best-sells-container .best-seller-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.best-sells-container .best-seller-header h2 {
    font-size: 20px;
    margin: 0;
    font-weight: light;
    color: #5B2019;
}

.best-sells-container .best-seller-header .arrow {
    font-size: 22px;
    margin-left: 10px;
    cursor: pointer;
    color: #444;
}

/* 4 items in a row */
.best-sells-container .best-seller-grid {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    text-align: center;
}

.best-sells-container .bs-item {
    position: relative;
    cursor: pointer;
}

.best-sells-container .bs-item img {
    width: 100%;
    aspect-ratio: 5/7;
    border-radius: 19px;
    background: #ddd;
    object-fit: cover;
    cursor: pointer;
}

.best-sells-container .bs-item span {
    font-family: 'delivery-second';
    font-size: 1.3rem;
    font-weight: lighter;
    right: 0;
    bottom: 30px;
    position: absolute;
    margin-top: 6px;
    font-size: 14px;
    color: #ffffff;
    background-color: #E95322;
    border-radius: 20px 0 0 20px;
    width: 90%;
    cursor: pointer;
}

.off-scroll-container {
    width: 100%;
    margin-top: 20px;
}

.off-scroll-container .slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.off-scroll-container .slider {
    height: 180px;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.off-scroll-container .slider::-webkit-scrollbar {
    display: none;
}

.off-scroll-container .slide {
    background-color: #E95322;
    position: relative;
    border-radius: 20px;
    display: flex;
    flex: 0 0 100%;
    height: 100%;
    scroll-snap-align: center;
    cursor: pointer;
}

.off-scroll-container .slide .off-text{
    padding: 15px;
    cursor: pointer;
}

.off-scroll-container .slide .off-text h2,
.off-scroll-container .slide .off-text h3,
.off-scroll-container .slide .off-text h3 span{
    color: #fff;
    text-align: center;
    cursor: pointer;
}

.off-scroll-container .slide .off-text h2 {
    padding: 0 20px;
    line-height: 22px ;
    font-weight: 100;
    font-size: 20px;
    margin-bottom: 5px;
    margin-top: 20px;
}

.off-scroll-container .slide .off-text h3,
.off-scroll-container .slide .off-text h3 span {
    font-weight: bold;
    font-size: 23px;
}
.english {
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.off-scroll-container .slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    cursor: pointer;
}

.off-date {
    position: absolute;
    top: 0;
    left: 0;
    padding: 3px 7px;
    background-color: red;
    border-radius: 20px 0 5px 0;
}

.off-date h3 {
    color: white
}

/* Dots */
.off-scroll-container .dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 8px;
}

.off-scroll-container .dot {
    width: 20px;
    height: 6px;
    background: #ccc;
    border-radius: 3px;
    cursor: pointer;
    transition: 0.3s;
}

.off-scroll-container .dot.active {
    background: #ff4d4d;
    transform: scale(1.2);
}

.off-scroll-container .slider-container .ecliipse-design {
    position: absolute;
    width: 50px;
    aspect-ratio: 1/1;
    top: -30px;
    left: 0;
    right: 45%;
    bottom: 0;
}

.off-scroll-container .slider-container .ecliipse-design-2 {
    position: absolute;
    width: 50px;
    aspect-ratio: 1/1;
    left: -20px;
    bottom: 40%;
}

.best-opp-container {
    width: 100%;
    margin-top: 32px;
}

.best-opp-container .best-opp-text-vector {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: -10px;
}

.best-opp-container .best-opp-text-vector .best-opp-vector {
    width: 20px;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.best-opp-container .best-opp-text-vector .best-opp-text {
    font-size: 20px;
    font-weight: bold;
    color: #5B2019;
}

.best-opp-container .best-opp-text-vector .best-opp-vector img{
    width: 20px;
    height: 10px;
}

.best-opp-more-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.best-opp-more-btn img {
    cursor: pointer;
    width: 11px;
    height: 21px;
}

.best-opp-text-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.best-opp-container .item-card {
    min-height: 140px;
    margin-bottom: 20px;
    width: 100%;
    aspect-ratio: 9/3;
    display: flex;
    flex-direction: row;
}

.best-opp-container .best-opp-items {
    width: 100%;
    margin-top: 20px;
}

.best-opp-container .item-card .best-opp-img {
    position: relative;
    width: 40%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    margin-left: 16px;
}

.best-opp-container .info {
    line-height: 20px;
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.best-opp-container .price,
.best-opp-container .price span {
    font-size: 16px;
    font-weight: 600;
    color: #626262;
}

.best-opp-container .profit, 
.best-opp-container .profit span {
    font-size: 16px;
    color: #990000;
    font-weight: 600;
}

.best-opp-container .buy-btn {
    font-family: 'delivery_primary';
    background: #007E00;
    color: white;
    border: none;
    padding: 10px 20px;
    width: fit-content;
    border-radius: 12px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 16px;
}

/*________________________________________________________ Products ________________________________________________________*/
.product-menu-main-main_contrainer {
    padding-top: 0;
}

.not-available {
    filter: grayscale(100%)
}

.product-menu-main-main_contrainer .menu-main-page-container{
    background-color: #E95322;
    border-radius: 30px 30px 0 0;
    border-bottom: none;
}

.product-menu-main-main_contrainer .menu-main-page-container {
    padding: 27px 0 0 0;
}

.product-menu-main-main_contrainer .horizontal-menu-main-page {
    padding: 0px 42px !important;
}

.product-menu-main-main_contrainer .horizontal-menu-items h4 {
    margin-bottom: 6px;
    margin-top: 5px;
}

.product-menu-main-main_contrainer .horizontal-menu-items {
    padding: 10px 15px;
    margin: 0;
    flex: 0 0 calc(20%);
    z-index: 1;
    background-color: #E95322;
    border-radius: 30px;
}

.product-menu-main-main_contrainer .selected-category {
    position: relative;
    background-color: #fff;
    border-radius: 30px 30px 0 0;
    z-index: 0;
}

.product-menu-main-main_contrainer .selected-category:first-child::after {
    content: "";
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 30px;
    width: 90px;
    height: 90px;
    right: -90px;
    bottom: 0;
    z-index: 2;
}

.product-menu-main-main_contrainer .selected-category:last-child::after {
    content: "";
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 0 0 30px 0;
    width: 45px;
    height: 90px;
    left: -45px;
    bottom: 0;
    z-index: 2;
}

.product-menu-main-main_contrainer .selected-category::before {
    content: "";
    position: absolute;
    inset: 0;
    top: 75px;
    left: -43px;   /* how far the white extends left */
    right: -43px;  /* how far the white extends right */
    bottom: 0;
    background: white;
    border-radius: 10px 10px 0 0;
    z-index: -1;
}



.product-menu-main-main_contrainer .selected-category .horizontal-menu-item-container{
    background-color: #F5CB58;
}

.category-products {
    position: relative;
    width: 100%;
    height: fit-content;
    margin-top: 20px;
}

.category-products h5 {
    font-size: 0.8rem;
    font-weight: 100;
    color: #070707;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.no-results {
    position: absolute;
    top: 200%;
    right: 50%;
    transform: translateX(50%);
    color: #bebebe;
    text-align: center;
    font-weight: 100;
    font-size: 16px;
    margin-top: 20px;
}

.category-products h5 .filter-product-text{
    font-size: 0.8rem;
    font-weight: 100;
    color: #E95322;
    margin-right: 6px;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.category-products h5 img {
    rotate: 270deg;
    width: 12px;
    aspect-ratio: 1/1;
    cursor: pointer;
}

.category-products-container {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 12px;
}

.category-products-container .category-product-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}

.category-products-container .category-product-item .img,
.category-products-container .category-product-item .img img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 19px;
    object-fit: contain;
    cursor: pointer;
    
}

.skeleton-box {
    background: #ddd !important;
}

.category-products-container .category-product-item .skeleton-box {
    position: relative;
    overflow: hidden;
}

.category-products-container .category-product-item .skeleton-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 1.2s infinite;
}

.skeleton-product .category-product-item-text h4, 
.skeleton-product .category-product-item-text p {
    background-color: #ddd;
    border-radius: 10px;
}

.img-discount-animation {
    position: relative;
    display: inline-block;
    border-radius: 19px;
    overflow: hidden; /* keeps border inside */
}

/* the animated border layer */
.img-discount-animation::before {
    content: "";
    position: absolute;
    inset: -3px; /* border thickness */
    border-radius: inherit;
    background: conic-gradient(
        from 0deg,
        #ff3d00,
        #ff3d00,
        #ff3d00,
        #ff3d00,
        #ff3d00,
        #ff3d00,
        #ff3d00
    );
    animation: spin 2s linear infinite;
    z-index: 0;
}

/* the white inner box that hides the center */
.img-discount-animation::after {
    content: "";
    position: absolute;
    inset: 3px; /* same as border thickness */
    border-radius: inherit;
    background: #fff;
    z-index: 1;
}

/* the image */
.img-discount-animation img {
    position: relative !important;
    z-index: 2 !important;
    width: calc(100% - 6px) !important;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.category-product-item .discount {
    display: flex;
    position: absolute;
    background-color: #990000;
    border-radius: 40%;
    width: 40px;
    top: -10px;
    right: -10px;
    transform: rotate(20deg);
    aspect-ratio: 1/1;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.category-product-item .discount .discount-text {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
}

.category-product-item .category-product-item-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

.category-product-item .category-product-item-details .category-product-item-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-product-item .category-product-item-details .category-product-item-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #391713;
}

.category-product-item .category-product-item-details .price-text {
    display: inherit
}

.category-product-item .category-product-item-details .price-text span{
    margin-left: 5px;
}

.category-product-item .category-product-item-details .category-product-item-text p {
    font-size: 14px;
    font-weight: 100;
    color: #363636;
    margin-top: 5px;
    text-align: center;
}

.category-product-item .category-product-item-details .category-product-item-price .price,
.category-product-item .category-product-item-details .category-product-item-price .price span {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: #1a0b0b;
}

.category-product-item .category-product-item-details .category-product-item-price {
    position: relative;
    width: 100%;
}

.category-product-item .category-product-item-details .category-product-item-price .price span{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.category-product-item .category-product-item-details .category-product-item-price .previous-price {
    position: absolute;
    display: flex;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
}

.showitnow {
    display: flex !important;
}

.category-product-item .category-product-item-details .category-product-item-price .previous-price,
.category-product-item .category-product-item-details .category-product-item-price .previous-price span {
    font-size: 12px;
    font-weight: 600;
    color: #23254e;
    text-decoration: line-through;
}

.category-product-item-actions .add-to-cart-container {
    display: none;  /* FLEX */
    padding: 5px 10px;
    border: #c4c4c4 1px solid;
    box-shadow: 0px 4px 25px -10px #5a5a5a;
    justify-content: space-between;
    border-radius: 12px;
    gap: 10px;
    margin-top: 6px;
    align-items: center;
}

.category-product-item-price .add-to-cart-text {
    display: flex;
    width: 32px;
    aspect-ratio: 1/1;
    padding: 0;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 25px -10px #5a5a5a;
    border-radius: 12px;
    background-color: #007E00;
    color: white;
    font-weight: 600;
    cursor: pointer;
}


.callus-text {
    font-size: 16px !important;
}

.category-product-item-actions .add-to-cart-container button {
    font-family: 'delivery_primary';
    background: #fff;
    color: #007E00;
    border: none;
    width: 25px;
    aspect-ratio: 1/1;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
}

.category-product-item-actions .add-to-cart-container .remove-product-btn {
    color: #D50000;
}

.category-product-item-actions .add-to-cart-container button img{
    width: 15px;
    margin-bottom: 3px;
    cursor: pointer;
}

.category-product-item-actions .add-to-cart-container .number-product {
    color: rgb(0, 0, 0);
    border: none;
    width: 25px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.lazy {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lazy-loaded {
    opacity: 1;
}

.lazy {
    background: #eee;
}

/*______________________________________________________ Login | Signup ________________________________________________________*/

.fullscreen-body {
    width: 100%;
    max-width: none;
    overflow-x: hidden;
    background-color: var(--secondary-color);
    font-family: 'delivery_primary';
}

.fullscreen-body .bott-navigation {
    right: 50%;
    transform: translateX(50%);
    display: flex;
    gap: 10px;
}

.fullscreen-body .bott-navigation .bott-nav-container {
    background: var(--primary-color);
}

.plogin-main {
    width: 100%;
    height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
}

.plogin-text-container {
    width: 100%;
    height: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.signup-container-row {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.plogin-text-container h1{
    font-size: 1.8rem;
    font-weight: 900;
}

.plogin-text-container h3,
.plogin-text-container h3 a{
    font-size: .8rem;
}

.plogin-text-container h3 a {
    color: var(--third-color);
    cursor: pointer;
}

.plogin-container {
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.plogin-box {
    max-width: 1000px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row-reverse;
    background-color: #fff;
    border-radius: 7px;
}

.plogin-box .two-input-in-row {
    display: flex;
    gap: 10px;
}

.plogin-artwork {
    width: 60%;
    height: 100%;
    background: url('../images/icon-vector/banner.png') center center/cover;
    background-color: var(--primary-color);
    border-radius: 7px 0 0 7px;
}

.plogin-form-container {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plogin-form-inputs {
    width: 100%;
}

.plogin-form-btn {
    width: 100%;
    height: 78px;
    background-color: var(--third-color);
    border-radius: 0 0 7px 0;
    border: 1px white solid;
}

.plogin-form-btn p {
    width: 100%;
    height: 100%;
    color: white;
    font-weight: bolder;
    font-size: 1.2rem;
    cursor: pointer;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plogin-form-inputs {
    padding: 30px;
    box-shadow: none !important;
}

.plogin-form-inputs input{
    width: 100%;
    height: 3rem;
    border: none;
    border-radius: 7px;
    padding: 0 15px;
    margin-top: .2rem;
    outline: none;
    margin-bottom: 20px;
}

.english-letter {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif !important;
}

.plogin-form-inputs form{
    width: 100%;
    margin-bottom: 1rem;
}

.plogin-form-inputs p,
.plogin-form-inputs a {
    font-size: .7rem !important;
    margin-top: .7rem;
}

.plogin-form-inputs a {
    color: var(--third-color) !important;
    cursor: pointer;
}

.plogin-form-inputs p,
.plogin-form-inputs h4,
.plogin-form-inputs a {
    color: #333;
    font-size: .9rem;
    font-weight: lighter;
}

/* ________________________________________________ Dashboard ________________________________________________ */

.customer-box-main {
    background-color: #FFF5E5;
}

.user-box {
    width: 100%;
    height: 100%;
    display: flex;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 13px;
    position: relative;
}

.inner-user-box {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    margin-top: 13px;
    border-radius: 10px;
    display: flex;
    padding: 40px;
    box-shadow: 0px 4px 5px -10px #000000;
}

.menu-user-box {
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: center;
    width: 20%;
    padding-left: 40px;
    padding-right: 40px;
    z-index: 1;
}

.container table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.container thead {
    background-color: #f0f0f0;
}

.container th, .container td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    text-align: right
}

.container th {
    font-size: 14px;
    color: #555;
    font-weight: 600;
    text-align: center;
}

.container tbody tr:hover {
    background-color: #f9f9f9;
}

.container td {
    position: relative;
    font-size: 14px;
    color: #333;
}

.container input[type="checkbox"] {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translate3d(0, -50%, 0);
    cursor: pointer;
    width: 30px;
    height: 30px;
    color: #78da5a
}

.container .badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}

.container .subscribed {
    background-color: #28a745;
}

.container .not-subscribed {
    background-color: #dc3545;
}

.container .pending {
    background-color: #ffc107;
    color: #000;
}

.container .action-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #888;
}

.container .action-btn:hover {
    color: #333;
}

.container .view-products {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    font-family: 'delivery_primary';
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}

.customer-box-main .bott-navigation .section-pager-btn div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    aspect-ratio: 1/1;
    cursor: pointer;
}

.customer-box-main .bott-navigation .section-pager-btn img {
    height: 22px;
    cursor: pointer;
}

.customer-box-main .bott-navigation {
    width: fit-content;
}

.customer-box-main .bott-navigation .home-page-btn {
    width: unset;
    height: 64px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.customer-box-main .bott-navigation .section-pager-btn {
    width: 120px;
    justify-content: space-between;
    padding: 20px 10px;
}

.my-stuff {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    border-radius: 13px;
    margin-bottom: 20px;
}

.my-stuff:hover {
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ;
}

.my-stuff:hover .my-stuff-text p{
    transition: all 0.3s ;
}

.my-stuff:hover .my-stuff-icon i{
    transition: all 0.3s ;
}

.website-name  {
    margin-bottom: 30px;
}

.website-name h2 {
    font-size: 3rem;
    color:#3a3a3a
}

.my-stuff-text {
    padding-right: 10px;
}

.my-stuff-text p{
    color:#3a3a3a
}

.my-stuff-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.my-stuff-icon img {
    width: 25px;
}

.my-stuff-text:hover p{
    cursor: pointer;
    transition: all 0.3s ;
}

.my-stuff-icon:hover img {
    cursor: pointer;
}

.my-stuff-clicked {
    background-color: #0000006e;
    border-radius: 50%;
}

.user-data {
 width: 40%;
}

.user-box svg {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
}

.svg1 {
    height: 70%;
}

.user-box-header {
    position: absolute;
    display: flex;
    justify-content: space-between;
    top: 0;
    right: 0;
    width: 100%;
    height: 5rem;
    border-radius: 10px 10px 0 0;
}

.user-header-1 {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 10px 20px 10px 30px;
}

.user-header-2 {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 10px 20px 10px 30px;
}

.lines {
    padding-top: 1px;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}


.upline, .midline, .downline, .badline {
    height: 3px;
    border-radius: 4px;
    width: 70%;
    visibility: visible;
    background: var(--primary-color);
    transition: all .4s ease-in-out;
}

.upline, .downline {
    opacity: 1;
    transition: all .4s ease-in-out;
}

.badline {
    width: 100%;
}


.user-header-avatar-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
}

.user-header-avatar-ui {
    display: flex;
    overflow-y: auto;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 40px;
    right: 0;
    width: 400px;
    height: 300px;
    border-radius: 13px;
    background-color: white;
    box-shadow: 0px 4px 40px -10px #757575;
    z-index: 10;
    padding: 5px 20px 20px 20px;
    transition: all .2s;
}

.avatar-box {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 30px;
    width: 200px;
    height: 200px;
    border: #3a3a3a 1px dashed;
}

.avatar-box input {
    display: flex;
    font-family: 'delivery_primary';
    justify-content: center;
    align-items: center;
    outline: none;
    border-radius: 8px;
    padding: 6px 30px;
    width: 100px;
    height: 40px;
    cursor: pointer;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.16);
    transition: background-color 200ms;
}

.avatar-box input::-webkit-file-upload-button {
    visibility: hidden;
}

.view-item input::-webkit-file-upload-button {
    visibility: hidden;
}

.avatar-box input:focus-within,
.avatar-box input:focus {
    outline: 2px solid var(--third-color);
    outline-offset: 2px;
}

.avatar-box input::before {
    content: 'آپلود نما';
}

.view-item input::before {
    content: 'آپلود عکس';
}

.view-item input {
    background-color: rgba(255, 255, 255, 0.37);
    padding: 6px 20px;
    z-index: 1;
    display: flex;
    font-family: 'delivery_primary';
    justify-content: center;
    align-items: center;
    outline: none;
    border-radius: 8px;
    width: 100px;
    height: 40px;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.16);
    transition: background-color 200ms;
}

.view-item-type img {
    width: 100%;
    height: 100%;
}

#imagePreview {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    display: none;
}

.avatar-box button {
    font-family: 'delivery_primary';
    color: white;
    background-color: #ffffff;
    outline: none;
    background-color:rgb(43, 117, 255);
    cursor: pointer;
    border: none;
    border-radius: 10px;
    margin-top: 1rem;
    width: 70px;
    height: 27px
}

.user-header-notification {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-header-notification img {
    width: 60%;
}

.user-header-notification-box {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.user-header-notification-box,
.user-header-notification,
.user-header-notification img {
    cursor: pointer;
}

.user-header-avatar-box,
.user-header-avatar,
.user-header-avatar i,
.user-header-avatar img {
    cursor: pointer;
}

.user-header-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-header-avatar img {
    width: 70%;
}

.user-header-notification-ui {
    justify-content: flex-start !important;
    overflow-y: auto;
    display: none;
    flex-direction: column;
    position: absolute;
    top: 40px;
    right: 0;
    width: 300px;
    height: 0;
    border-radius: 13px;
    background-color: white;
    box-shadow: 0px 4px 15px -10px #000000;
    z-index: 10;
    padding: 20px;
    transition: all .2s;
}

.nothing-to-show {
    color: #888;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notif-title {
    color: #353535;
    text-align: right;
    font-weight: 900;
    font-size: 0.85rem;
    line-height: 1rem;
}

.user-header-notification-box, .user-header-notification, .user-header-notification img {
    cursor: pointer;
}
.notification-item,
.notification-item span {
    color: #777777;

}

.notification-item {
    font-size: 1rem;
    padding: 10px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

.shake-animation {
    animation: shake 0.5s;
    animation-iteration-count: infinite;
}

.message-box {
    width: 100%;
    height: fit-content;
    border-bottom: #c4c4c4 1px solid;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.view-item-box {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
}

.view-item-type {
    background-color: #edefff;
    margin-right: 4rem;
    width: 120px;
    height: 120px;
    border-radius: 10px;
}

.view-item {
    position: relative;
    background-color: #edefff;
    margin-left: 4rem;
    width: 120px;
    height: 120px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: #3a3a3a 1px dashed;
}

.upload-item-box {
    width: 100%;
    height: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.upload-item-area {
    width: 400px;
    background: linear-gradient(to bottom, #464240, #302d2c);
    box-shadow: 0px 4px 25px -10px #b1b1b1;
    border-radius: 13px;
    padding: 25px;
}

.uplaod-item-header {
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.uplaod-item-header p{
    font-size: 1.3rem;
    color: #3a3a3a;
}

.uplaod-item-main {
    width: 100%;
    height: 80%;
    display: flex;
    flex-direction: column;
}

.uplaod-item-main .body-form-2{
    margin-left: 0;
    width: 100%;
}

.uplaod-item-main .body-form-1 {
    margin-left: 1rem;
}

.uplaod-item-main .body-form-3 {
    width: 96%;
    margin-top: 2.2rem;
    margin-left: 0rem;
    position: relative;
}

.uplaod-item-main button {
    width: 100%;
    margin-top: 3rem;
    height: 3rem;
    background-color: #f1c40f;
    outline: none;
    border: none;
    border-radius: 10px;
    font-family: 'delivery_primary';
}

.user-box-main {
    position: absolute;
    display: flex;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 90%;
    overflow-y: auto;
    overflow-x: hidden;
}

.main-content {
    justify-content: center !important;
    width: 55%;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items:flex-start;
}

.body-form-1-box {
    width: 100%;
    display: flex;
    justify-content: flex-start
}

.body-form-2-box {
    justify-content: center;
    display: flex;
    width: 100%;
}


.body-form-1 {
    width: 45%;
    margin-top: 2.2rem;
    margin-left: 2rem;
    position: relative;
}

.body-form-2 {
    width: 100%;
    margin-top: 2.2rem;
    margin-left: 2rem;
    position: relative;
}

.body-form-2 textarea {
    width: 100%;
    min-width: 445px;
    max-width: 445px;
    height: fit-content;
    min-height: fit-content;
    max-height: fit-content;
    min-height: 50px;
    padding: 10px;
}

.body-form-3 {
    width: 100%;
    margin-top: 2.2rem;
    margin-left: 2rem;
    position: relative;
}

.main-content-body input,
.upload-item-box input {
    font-size: 16px;
    padding: 10px;
    display: block;
    width: 100%;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'delivery_primary';
}

.main-content-body label,
.upload-item-box label{
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 16px;
    color: #333333;
    pointer-events: none;
    transition: all 0.2s ease;
    z-index: 4;
}

.main-content-header p {
    font-size: 1.3rem;
    color: #333
}

.upload-item-box p {
    font-size: 1.3rem;
    color: #f1c40f
}

.main-content-body input:focus ~ label,
.main-content-body input:not(:placeholder-shown) ~ label,
.upload-item-box input:focus ~ label,
.upload-item-box input:not(:placeholder-shown) ~ label,
.body-form-2 #userLocationField:not(:placeholder-shown) ~ label{
    top: -20px;
    right: 10px;
    font-size: 0.9rem;
    color: #333;
}

.main-content-body select,
.upload-item-box select {
    outline: 0;
    font-family: 'delivery_primary';
    font-size: 16px;
    padding: 5px;
    display: block;
    width: 200px;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.main-content-1-box {
    aspect-ratio: 3/2;
    padding: 20px 40px 20px 40px;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: none !important;
}

.main-content-header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.main-header-primary,
.main-header-secondary {
    display: flex;
    align-items: center;
}

.cancel-resto-profile-box {
    display: none;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 30px;
    border-radius: 7px;
    border: 1px solid var(--third-color);
    margin-right: 0.8rem;
}

.cancel-resto-profile-box,
.cancel-resto-profile-text {
    cursor: pointer;
}

.save-resto-profile-box,
.save-resto-profile-text {
    cursor: pointer;
}

.save-resto-profile-box {
    display: none;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 30px;
    border-radius: 7px;
    background-color: var(--third-color);
}

.save-resto-profile-box p {
    color: white;
}
.save-resto-profile-box p,
.cancel-resto-profile-box p {
    font-size: 12px;
}

.main-content-edit-icon {
    margin-right: 0.8rem;
}

.main-content-edit-icon {
    cursor: pointer;
    color: var(--third-color);
    font-size: 1rem;
}

.main-content-2-box {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 180px;
    border-radius: 10px;
}

.main-content-customers {
    width: 58%;
    height: 100%;
    border-radius: 10px;
    padding: 22px 20px 22px 20px;
    background: linear-gradient(to right, #ffc953, #ffae00);
    box-shadow: 0px 4px 25px -10px #5a5a5a;
}

.main-content-status {
    display: flex;
    flex-direction: column;
    justify-self: center;
    text-align: center;
    width: 38%;
    height: 100%;
    border-radius: 10px;
    background-color: #ffc401;
    padding: 22px 20px 22px 20px;
    box-shadow: 0px 4px 25px -10px #5a5a5a;
}

.main-content-status:hover {
    transform: scale(1.05);
    transition: all .3s;
}

.status-text{
    font-size: 1rem;
    color: #3a3a3a;
    text-align: right;
}

.main-content-status .status-main p{
    font-size: 2.7rem;
    text-align: center;
    color: #292929;
}

.status-header {
    width: 100%;
    height: 34px;

}

.open-status {
    background-color: #3aad05b7;
}

.close-status {
    background-color: #f34040;
}

.main-sidebar {
    width: 45%;
    height: 100%;
    padding: 40px;
}

.main-sidebar-box {
    width: 100%;
    height: 300px;
    min-width: 300px;
    background: linear-gradient(to right, #fab97c, #fa9231);
    border-radius: 7px;
    box-shadow: 0px 4px 25px -10px #5a5a5a;
}

.main-sidebar-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 85px;
}

.main-header-resto-name {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70%;
}

.resto-name {
    font-size: 2.1rem;
    color: #3a3a3a;
}

.main-header-resto-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 30%;
    border-bottom: 1px solid #000;
    padding-bottom: 1rem;
}

.resto-rating-icon {
    display: flex;
    flex-direction: row-reverse;
}

.resto-rating-text {
    color: #464646;
    margin-left: 10px;
    font-size: 1.3rem;
}

.resto-rating-icon i {
    color: #3a3a3a;
}

.main-sidebar-detail {
    padding: 15px 30px 5px 30px;
}

.main-sidebar-detail p{
    color:#3a3a3a;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.customers-header {
    width: 100%;
    height: 20%;
}

.customers-body {
    width: 100%;
    height: 80%;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.customers-body-done-box, .customers-body-inprogress-box {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.customers-body-done-box {
    border-left: 1px solid #3a3a3a
}

.customers-body-text p{
    color:#3a3a3a;
}

.customers-body-number p{
    font-size: 2.2rem;
}

.customers-body-done-box p {
    color:#616161
}

.customers-body-inprogress-box p {
    color:#000000;
}

.inner-user-box .food-menu-box {
    background: none;
    box-shadow: none;
    width: 100%;
    height: 100%;
}

.inner-user-box .main-menu-box {
    width: 100%;
    height: 100%;
    box-shadow: none;
    position: relative;
    background: none;
}

.inner-user-box .section-menu {
    overflow-x: hidden;
}

.inner-user-box .delivery-service-status, 
.inner-user-box .restaurant-name-go-back,
.inner-user-box .restaurant-name-go-back-2,
.inner-user-box .page-back {
    border: none;
}

.inner-user-box .the-food-box,
.inner-user-box .the-food-box img,
.inner-user-box .the-food-box .foodName,
.inner-user-box .the-food-box .foodPrice {
    cursor: pointer;
}

.inner-user-box .the-food-box {
    padding: 10px;
    border-radius: 10px;
}

.inner-user-box .the-food-box:hover {
    background-color: #e4e4e4;
    transform: scale(1.03);
    transition: all .2s;
}

.edit-item-overlay {
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0px 4px 25px -10px #494949;
    border-radius: 11px;
    background: linear-gradient(to bottom, #464240, #302d2c);
    position: absolute;
    z-index: 10;
}

.edit-item-overlay .button-2 {
    background-color: rgb(172, 0, 0);
    margin-right: 1rem;
}

.edit-item-overlay .button-3 {
    background-color: rgb(190, 190, 190);
    margin-right: 1rem;
}

.edit-item-overlay .view-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 11px;
}

.edit-item-overlay .avatar-box {
    position: relative;
    width: 60px;
    height: 60px;
    margin-left: 0;
}

.edit-item-overlay .uplaod-item-header {
    justify-content: space-around;
}

#imagePreview-edit {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    display: none;
}

.edit-item-overlay .view-item input {
    background-color: #f5f5f59c;
    text-align: center;
    padding-right: 12px;
    padding-top: 2px;
}

.edit-item-overlay .view-item input::before {
    content: 'تغییر';
}

.edit-item-overlay .uplaod-item-header input {
    width: 90%;
    height: 30px
}

#inner-user-box-4 .user-box-main,
#inner-user-box-3 .user-box-main {
    display: flex;
    flex-direction: column;
}

#avatar-preview,
#avatar-preview-2,
#avatar-preview-3,
#avatar-preview-4,
#avatar-preview-5,
#avatar-preview-6,
#avatar-preview-7 {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    z-index: -1;
}

.customer-box-main .main-content-1-box{
    box-shadow: none;
    z-index: 0 !important;
    background-color: transparent !important;
}

.customer-box-main #inner-user-box-2 .main-header-primary p{
     font-size: 1.5rem;
}

.customer-box-main #inner-user-box-2 .main-content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.customer-box-main .main-content-orders {
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
}

.customer-box-main .order-type-box {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    height: auto;
    margin-right: 1rem;
    margin-top: 2rem;
}

.customer-box-main .completed-box .order-box{
    background-color: rgb(135, 207, 0);
}

.customer-box-main .order-type-box h5{
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.customer-box-main .pending-payment-box .order-box{
    background-color: rgb(218, 218, 218);
}


.order-type-box .order-box {
    margin-left: 1rem;
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    width: 260px;
    height: 110px;
    background-color: #fab31b;
    border-radius: 15px;
}

.order-type-box .order-box div {
    padding: 15px;
}

.order-type-box .order-details-box {
    width: 200px;
    height: 100%;
}

.order-type-box .order-box .order-number-box{
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border-right: #292929 dotted 1px;
}

.order-type-box .order-box .order-number-box p{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    transform: rotate(270deg);
}

.order-type-box .order-box-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 10px;
}

.message-main-text {
    color: #525252;
    font-size: .87rem;
}

.message-main-text span{
    font-family: Arial, Helvetica, sans-serif;
    font-size: .73rem;
    font-weight: bolder;
}

/* #overlay-orders {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translateY(-50%);
    transform: translateX(-65%);
    width: 500px;
    height: 600px;
    background-color: #ffd000;
    border-radius: 11px;
    box-shadow: 0px 4px 25px -10px #5a5a5a;
    padding: 30px;
    text-align: center;
} */

#overlay-orders h2 {
    font-size: 2rem;
}

.uplaod-item-main #selection-item-availability-edit {
    margin-right: 1rem;
    margin-left: 0;
}

.not-available {
    filter: grayscale(100%)
}

.user-data-box {
    position: relative;
    padding: 30px;
    width: 60%;
    height: auto;
    border:#000000 1px solid;
    border-radius: 15px;
}

.user-data-box p {
    color:#3a3a3a;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.user-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.user-data-box p span{
    color:#c96b00;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.orders-data {
    position: relative;
    width: 60%;
}

.orders-data .not-sign-in-orders{
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate3d(50%, -50%, 0);
}

.orders-data .not-sign-in-orders p {
    color:#9c9c9c;
    font-size: 1.2rem;
}

.sign-in-orders {
    display: none;
}

.sign-in-data {
    display: none;
}

.edit-box {
    width: 30px;
    height: 30px;
    position: absolute;
    cursor: pointer;
    top: 15px;
    left: 20px;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #c96b00;
    border-radius: 5px;
}

.edit-box i {
    cursor: pointer;
}

.profile-edit {
    display: none;
    padding: 20px;
    width: 400px;
    height: 300px;
    position: absolute;
    background-color: #FFCC4C;
    border-radius: 19px;
    top: 50%;
    right: 50%;
    transform: translate3d(50%, -50%, 0);
    box-shadow: 0px 4px 25px -10px #000000;
}

.profile-edit label {
    font-size: 1.2rem;
}

.profile-edit input {
    border-radius: 3px;
    border:unset;
    height: 1.5rem;
    font-family: 'delivery_primary';
    padding-right: 5px;
}

.label {
    margin-bottom: 1.1rem;
}

#updateForm {
    width: 100%;
    height: 100%;
    position: relative;
}

.profile-edit #updateButton {
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    width: 40%;
    z-index: 8;
    font-family: 'delivery_primary';
    display: flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 2.5rem;
    border-radius: 15px;
    background-color: #3d9900;
    border: none;
    margin-bottom: 1rem;
}

.profile-edit #cancelButton {
    position: absolute;
    right: 50%;
    bottom: 0px;
    transform: translateX(50%);
    width: 20%;
    z-index: 8;
    font-family: 'delivery_primary';
    display: flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 2rem;
    border-radius: 15px;
    background-color: #990000;
    border: none;
}

.container {
    width: 90%;
    max-width: 1200px;
}

#inner-user-box-5 .user-box-main {
    justify-content: space-evenly;
    padding: 30px 15px;
}

.container::-webkit-scrollbar {
    width: 10px;
}

.container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.container::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

.container::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

.container table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.container thead {
    background-color: #f0f0f0;
}

.container th, .container td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    text-align: right
}

.container th {
    font-size: 14px;
    color: #555;
    font-weight: 600;
    text-align: center;
}

.container tbody tr:hover {
    background-color: #f9f9f9;
}

.container td {
    position: relative;
    font-size: 14px;
    color: #333;
    text-align: center;
}

.container input[type="checkbox"] {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translate3d(0, -50%, 0);
    cursor: pointer;
    width: 30px;
    height: 30px;
    color: #78da5a
}

.container .badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}

.container .subscribed {
    background-color: #28a745;
}

.container .not-subscribed {
    background-color: #dc3545;
}

.container .pending {
    background-color: #ffc107;
    color: #000;
}

.container .action-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #888;
}

.container .action-btn:hover {
    color: #333;
}

.container .view-products {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    font-family: 'delivery_primary';
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}

.delivered-row {
    background-color: rgb(229, 255, 133);
}

.checked-row {
    background-color: #d3d3d3
}

.user-box-main-2 {
    display: flex;
    flex-direction: column;
}

.all-orders-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 300px;
}

.total-orders-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 130px;
    height: 130px;
    border-radius: 11px;
    background-color: #f3f3f3;
    box-shadow: 0px 4px 25px -10px #dadada;
    padding: 8px;
}

.total-orders-number, .total-orders-text {
    color:#333;
}

.total-orders-number {
    margin: 1rem;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.3rem;
}

.user-header-2 {
    display: none;
}

.exit-button {
    display: none;
}

/* New */

.order-items-show-container {
    width: 100%;
    max-width: 420px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 30px;
}

.order-items-show-container td:nth-child(2),
.order-items-show-container th:nth-child(2),
.order-items-show-container td:nth-child(3),
.order-items-show-container th:nth-child(3) {
    display: table-cell !important;
}

.order-details-show-container {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.order-details-show-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 70%;
    height: 90%;
}

.order-details-show {
    width: 420px;
    height: 420px;
    background-color: #FDDF77;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.order-items-show-box {
    display: flex;
    flex-direction: column;
    max-width: 420px;
    width: 70%;
    height: 90%;
    background-color: #333;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.order-items-show-box h3, .order-items-show-box p, .order-items-show-box span {
    color: white
}

.order-detail-box-1 {
    width: 100%;
    height: 280px;
}

.order-detail-header-box {
    position: relative;
    width: 100%;
    height: 65px;
    border-bottom: #333 solid 1px;
}

.order-number-header-text {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.order-status-header-box {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2rem;
    padding: 5px 10px;
    background-color: #333;
    border-radius: 5px;
}

.order-status-header-text {
    color: #fff
}

.order-detail-main-box {
    width: 100%;
    height: 215px;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.order-detail-main-text {
    font-size: 1.24rem;
    text-align: center;
}

.order-detail-main-bottom .order-date-main-bottom {
    font-size: 1.1rem;
    margin-bottom: .7rem;
}

.order-detail-main-text span{
    font-size: 1.1rem;
}

.order-detail-box-2 {
    width: 100%;
    height: 140px;
    background-color: #EDEDED;
    display: flex;
    flex-direction: column;
}

.order-location-box {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    padding: 5px 12px;
}


.order-description-text,
.order-location-text {
    font-size: .95rem;
}

.order-description-text {
    color: #fff
}

.order-description-box {
    width: 100%;
    height: 100%;
    padding: 5px 12px;
    background-color: #333;
    border-radius: 0 0 12px 12px;
}

.order-submit-btn {
    width: 420px;
    height: 3.5rem;
    background-color: rgb(255, 196, 0);
    border: none;
    border-radius: 10px;
    outline: none;
    font-family: 'delivery_primary';
    cursor: pointer;
    margin-bottom: .3rem;
}

.order-cancel-btn {
    width: 420px;
    height: 3.5rem;
    background-color: #fff;
    color: white;
    border: none;
    border-radius: 10px;
    outline: none;
    font-family: 'delivery_primary';
    cursor: pointer;
    margin-bottom: .3rem;
}

.order-items-header {
    padding: 15px 20px;
    width:100%;
    text-align: center;
    font-size: 1.8rem;
    border-bottom: #fff solid 1px;
}

.order-items-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
    width:100%;
    height: 100%;
}

.order-items-show {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.item-quantity-text {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: rgb(255, 255, 255);
    position: relative;
    color: #333 !important;
    font-weight:600;
    padding: 10px;
    border-radius: 13px;
    margin-left: .6rem;
}

.the-item-text {
    font-size: 1.15rem;
}

.order-btns {
    margin-top: 2rem;
    margin-bottom: 8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media ((max-width: 1450px)) {
    .user-box-main {
        flex-direction: column;
        align-items: center;
    }
    
    .main-content-1-box {
        border-radius: 10px 10px 0 0;
    }
    
    .main-content-2-box {
        justify-content: center;
    }
    
    .main-content {
        width: 100%;
        align-items: center;
    }

    .main-sidebar {
        width: 100%;
        max-width: 600px;
    }
    
    .main-content-customers {
        border-radius: 0 0 10px 0;
        width: 350px;
        box-shadow: none;
    }
    
    .main-content-status {
        width: 250px;
        border-radius: 0 0 0 10px;
        box-shadow: none;
    }
    
    .main-content-1-box-user {
        border-radius: 10px;
    }
    
    .main-content-status:hover {
        transform: none;
        background-color: #ffc953;
    }


    .order-items-show-box {
        height: fit-content;
    }
    
    .order-details-show-container {
        width: 100%;
    }

    .order-details-show-box {
        align-items: center;
    }

    .order-btns {
        margin-top: 2rem;
        margin-bottom: 8rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media((max-width: 1200px)) {
    .user-box {
        padding-left: 0;
    }
    
    .menu-user-box {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media((max-width: 900px)) {
    .menu-user-box {
        display: none;
        position: absolute;
        max-width: 400px;
        width: 100%;
        height: 90%;
        background-color: #e76d21;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        z-index: 11;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: all .4s ease-in-out;
        box-shadow: 0px 4px 30px -10px #383838;
        border-radius: 20px 0 0 20px;
    }

    .user-header-2 {
        display: flex;
    }

    .inner-user-box {
        width: 100%;
    }

    .user-box {
        padding-left: 10px;
        padding-right: 10px;
    }

    .website-name {
        margin-top: 20px;
        position: relative;
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .website-name h2{
        width: 50%;
        font-size: 2rem;
        padding: 10px 5px;
        border-radius: 10px;
        background-color: #00000091;
        color: white
    }

    .exit-button {
        right: 0;
        top: 0;
        display: block;
        position: absolute;
    }
}

@media((max-width: 750px)) {
    .main-content-1-box {
        width: 100%;
    }

    .main-content-customers {
        border-radius: 0 0 10px 0;
        width: 300px;
        box-shadow: none;
    }

    .main-content-status {
        width: 200px;
        border-radius: 0 0 0 10px;
        box-shadow: none;
    }

    .removable-table {
        display: none;
    }
}

/* ___________________________________________________ Cart ___________________________________________________ */

.cart-container {
    width: 100%;
    flex-direction: column;
    gap: 10px;
    display: flex;
    align-items: center;
}

.page-title-cart {
    font-size: 1.5rem;
    color: #333;
}

.product-cart {
  width: 100%;
  max-width: 500px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  font-family: sans-serif;
}

.product-cart .product-image img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: contain;
}

.product-cart .product-info {
  flex: 1;
}

.product-cart .product-info h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.product-cart .product-info .details {
  color: #777;
  font-size: 0.85rem;
}

.product-cart .product-info .price {
  font-weight: 600;
  margin-top: 4px;
}

.product-cart .quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  gap: 6px;
}

.product-cart .quantity-controls button {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 6px;
  background: #fff;
  font-size: 1rem;
  cursor: pointer;
}

.product-cart .quantity-controls .quantity {
  min-width: 20px;
  text-align: center;
}

.header-cart-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 20px 0;
}

.cart-total-price-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px 12px 0;
    font-family: sans-serif;
}

.cart-total-price-container .palce-order-btn{
    padding: 10px 20px;
    background-color: var(--primary-color);
    border: none;
    color:#fff;
    margin-right: 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.confirm-place-order {
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    width: 95%;
    max-width: 400px;
    transform: translate(-50%, -50%);
    padding: 20px;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.confirm-place-order-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.confirm-place-order-container h3,
.confirm-place-order-container p,
.confirm-place-order-container button,
.confirm-place-order-container span {
    color: #3a3a3a;
    font-weight: 100;
    font-size: 0.8rem;
}

.confirm-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color:#000000
}

.confirm-address {
    display: flex;
    align-items: center;
    justify-content: start;
    color: #555;
}

.confirm-address a {
    cursor: pointer;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: 0.95rem;
    color: var(--secondary-color);
}

.confirm-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    gap: 30px;
    width: 100%;
}

.confirm-footer button {
    padding: 13px 60px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    background-color: #fff;
    border: 1px solid #b9b9b9;
}

.confirm-footer button.confirm-confirm-btn {
    border: none;
    background-color: var(--primary-color);
    color: #fff;
}

/* ___________________________________________________ Success Page ___________________________________________________ */

.success-page {
    border-radius: 0;
}

.success-page .main_contrainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    margin-top: 0;
}

.success-page .main_contrainer .success-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    margin-bottom: 100px;
}

.success-container h1 {
    color: #007E00;
    font-size: 1rem;
    margin-bottom: 20px;
    
}

.success-container p {
    text-align: center;
    color: #838383;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.success-container a {
    color: #002fff;
    font-size: 0.8rem;
    margin-bottom: 20px;
    cursor: pointer;
}

/* ___________________________________________________ About US Page ___________________________________________________ */

.about-us-container {
    margin: 0;
}

.aboutus-box {
    margin-top: 30px;
}

.aboutus-text h3 {
    font-family: 'delivery-second';
    font-size: 18px;
}

.aboutus-text a {
    font-family: 'delivery-second';
    font-size: 16px;
    color: var(--primary-color);
    cursor: pointer;
}

.aboutus-text p {
    padding: 5px 7px;
    font-size: 16px;
    color: #383838;
    font-weight: 900;
    line-height: 1.7rem;
}

.bano-mari {
    font-family: 'delivery-second';
    color: #eeb928;
}

.aboutCall {
    margin-top: 40px;
    font-size: 17px;
    font-weight: 900;
}

.our-number {
    margin-top: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.our-number .our-number-box {
    position: relative;
    padding: 7px 10px;
    background-color: #e9a72c;
    border-radius: 10px;
    color: white
}

.our-number .our-number-box h5 {
    position: absolute;
    font-size: 13px;
    top: 3px;
    right: 6px;
    color: #fff
}

.our-number .our-number-box span {
    font-size: 17px;
    color: #fff
}

.our-stuff {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.our-stuff img{
    width: 150px;
    aspect-ratio: 1/1;
    
}

.copyright {
    font-weight: 900;
}

.hypein {
    cursor: pointer;
    background: linear-gradient(
        90deg,
        #ff6b6b,
        #ff4a4a,
        #eea0a0,
        #98f1ec,
        #2bfff1,
        #4ecdc4
    );
    background-size: 300% 100%;
        
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientMove 4s linear infinite;
}

.bot-widge-box p {
    font-family: 'delivery-second';
    font-size: 18px;
    font-weight: 900;
}
    
.bot-widge-box h2 {
    padding: 5px 7px;
}

/* ___________________________________________________ Terms and Policy Page ___________________________________________________ */

/*==================== Terms & Conditions ====================*/
    
.privacy-container {
    margin: 0;
}

.terms-container {
    margin-top: 30px;
}

.terms-container {
    overflow-y: auto;
}

.term-head {
    font-size: 1.3rem;
}

.terms-text {
    margin-top: 2rem;
}

.term-main {
    font-weight: 100;
    font-size: .9rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.terms-text li {
    font-weight: 300;
    font-size: .9rem;
}

/*==================== Privacy Policy ====================*/

.privacy-head {
    margin-top: 2rem;
    font-size: 1rem;
    font-weight: 200;
}

.privacy-mini-title {
    font-weight: 600;
    font-size: .9rem;
}