* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
    height: auto;
}

/* لایه سیاه */
.overlay-content {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid #444;
    position: relative;
    animation: slideUp 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.project-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.5s ease;
    font-family: 'Vazirmatn', Tahoma, sans-serif;
    direction: rtl;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.overly-content {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid#444;
    position: relative;
    animation: slideUp 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.28);

}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}

.overlay-close {
    position: relative;
    left: 25px;
    top: -25px;
    background: #333;
    color: #fff;
    border: 2px solid #555;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    z-index: 10;
}

.overlay-close:hover {
    background: #ff4757;
    border-color: #ff4757;
    transform: rotate(90deg);
}

.overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.overlay-badge {
    background: linear-gradient(135deg, #b3890d, #FF9800);
    color: #000;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.overlay-dot {
    width: 12px;
    height: 12px;
    background: #FFC107;
    ;
    border-radius: 50%;
    animation: pluse 1.5s infinite;
    box-shadow: 0 0 10px #FFC107;
    ;
}

@keyframes pluse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.overlay-body h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'sans-serif';

}

.overlay-body p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: right;
    font-size: 16px;
    font-family: 'Vazirmatn', 'Vazir', Tahoma, sans-serif;
}

.overlay-body strong {
    color: #FFC107;
}

/* پایان لایه سیاه */
.navbar {
    display: flex;
    background-color: #0A490A;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding: 1rem 2rem;
    flex-wrap: wrap;
}

.menu {
    display: flex;
    gap: 20px;
    list-style: none;
}

.searchbox {
    position: relative;
    height: 2rem;
    display: flex;
}

.searchbox select,
.searchbox input {
    height: 100%;
    background: transparent;
    color: inherit;
    padding-inline: 1rem;
    border: 1px solid white;
}

.searchbox img {
    position: absolute;
    left: 5px;
    top: 3px;
    height: 85%;
}

.searchbox select option {
    color: black;
}

input::placeholder {
    text-align: center;
    font: 2rem;
}

.operatin {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.iconBox {
    display: flex;
    align-items: center;
    height: 4rem;
    justify-content: space-between;
    gap: 1.5rem;
    flex-direction: column;
}

.iconBox img {
    transform: scale(0.9);
}

/* banner section */
.banner {
    background-color: #FFC107;
    padding: 2rem 5rem;
    position: relative;
}

.badge {
    background-color: #B4C8B1;
    padding: 0.6rem 1.8rem;
    border-radius: 4px;
    font-size: 1.5rem;
    color: black;
}

.title {
    margin: 1rem;
    font-size: 4rem;
    color: #0A490A;
}

.about {
    font-size: 2rem;
    color: #0A490A;
    padding: 3rem 1rem;
}

.btnbanner {
    padding: 1rem;
    font-size: 2rem;
    background-color: #B4C8B1;
    color: #0A490A;
    border-radius: 0.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.fruitsbanner {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 35%;
}

.fri {
    width: 100%;
}

/* main section star */
.continer {
    margin: 100px 70px;
}

.titleintroduction {
    padding: 60px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.productbtn {
    background-color: #FFC107;
    width: 180px;
    height: 50px;
    gap: 4px;
    position: absolute;
    right: 3%;
    top: -25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    font-size: 1rem;
    border: none;
    color: #0A490A;
    border-radius: 0.5rem;
    font-weight: bold;
}

.texttitleint {
    position: absolute;
    left: 3%;
    top: -40px;
    font-size: 3rem;
    color: #1a6b1a !important;
}

.productsection {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    width: 100%;
    justify-content: center;
    padding: 2rem;
}

.productinformation {
    position: relative;
    min-width: 250px;
    width: calc(25% - 1.5rem);
    min-width: 250px;
    background: linear-gradient(to bottom, #0A490A, #1a6b1a);
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 300px;
    z-index: 1;
}

.productinformation img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.productinformation h4 {
    top: 28%;
    left: 0%;
    color: #FFC107;
    font-weight: bold;
    font-size: 2rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
    position: absolute;
    z-index: 1;
}

.productinformation p {
    font-size: 1.2rem;
    bottom: 30%;
    left: 0%;
    padding: 1rem;
    position: absolute;
    color: white;
    z-index: 1;
}

.productinformation button {
    bottom: 0%;
    left: 0%;
    padding: 0.5rem 0.25rem;
    flex-shrink: 0;
    margin: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6rem;
    color: #0A490A;
    background-color: #FFC107;
    font-size: 1.2rem;
    border-radius: 1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    position: absolute;
    white-space: nowrap;
    z-index: 1;
}

.productinformation img .productbtn {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
}

.productcover {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: all 1s;
}

.productcover:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* best sellers section */
.dowom {
    background-color: #0A490A;
    padding-top: 5rem;
}

.category {
    color: white !important;
}

.mainsellers {
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-sellers {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    margin: 0.25rem 3rem;
    font-size: 1.5rem;
    list-style: none;
    color: white;
}

.cardsection {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 1rem;
    width: 25%;
    position: relative;
    border-radius: 2rem;
    color: white;
    border: 1px solid green;
    margin: 3rem 1rem;
}

.pic1 {
    width: 100%;
}

.pic2 {
    width: 100%;
    margin: 20px;
}

.cardinformation {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.starbox {
    color: #FFC107;
}

.inputbox {
    width: 90%;
    display: flex;
    gap: 1.7rem;
}

.selectsize {
    width: 100px;
    height: 35px;
    border: 2px solid black;
    border-radius: 0.25rem;
    position: relative;
    background-color: #0A490A;
}

.inputnumb {
    width: 150px;
    height: 35px;
    border: 2px solid black;
    border-radius: 0.25rem;
    margin-top: 0.5rem;
    width: 60%;
}

.selectbox {
    margin-top: 0.5rem;
    position: relative;
}

.kilo {
    position: absolute;
    right: 20%;
    top: 25%;
    color: white;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 80%;
    height: 35px;
    border: 2px solid black;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-top: 0.5rem;
    text-align: center;
    background-color: #0A490A;
}

.inputnumb {
    width: 50%;
    height: 100%;
    border: none;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    background-color: #0A490A;
}

.number-btn {
    background-color: #0A490A;
    border: none;
    color: black;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
}

.cardbtn {
    background-color: #FFC107;
    border: none;
    color: aliceblue;
    padding: 0.75rem;
    border-radius: 8px;
}

.heart {
    position: absolute;
    font-size: 2rem;
    top: 0;
    right: 3%;
}

.heart.yelloow {
    color: yellow;
}

.flesh {
    position: absolute;
    left: 8%;
}

.flesh2 {
    position: absolute;
    right: 8%;
}

/* best product .........................................*/

.productintroduction-sewom {
    margin: 5rem;
    color: #0A490A !important;
}

.prdouctitem {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    margin: 3rem 1rem;
}

.prodctitemaval {
    position: relative;
    background-color: #E46002;
    padding: 2rem 0.5rem;
    border-radius: 2rem;
    width: 100%;
}

.cardimg {
    margin: 2rem;
    position: absolute;
    width: 80%;
    bottom: 40%;
    right: -40%;
}

.yellow {
    background-color: #FFC107;
}

.im-dovm {
    position: absolute;
    width: 60%;
    bottom: 40%;
    right: -30%;
}

.green {
    background-color: #327613;
}

.im-sevom {
    position: absolute;
    width: 70%;
    bottom: 40%;
    right: -25%;
}

.pink {
    background-color: #EF174B;
}

.im-chaharom {
    position: absolute;
    width: 60%;
    bottom: 40%;
    right: -30%;
}

/* main baner ................................... */

.bannersection {
    width: 100%;
    display: flex;
    gap: 1rem;
}

.textone {
    padding: 1rem 0;
}

.texttwo {
    font-size: 1.5rem;
    font-weight: bold;
}

.textthree {
    color: white;
    font-size: 1rem;
}

.text_green {
    font-size: 1.5rem;
    -webkit-text-stroke: 0.75px #0A490A;
}

.cardbtn,
.product {
    border: 1px solid black;
    padding: 1rem 3rem;
    margin-top: 0.5rem;
}

.textt_2 {
    color: white;
}

.mainbannerboxleft,
.mainbannerboxright {
    flex: 1;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px;
    z-index: 3;
}

.mainbannerboxleft::after,
.mainbannerboxright::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.bannerboxright,
.bannerboxleft {
    position: relative;
    z-index: 3;
    color: white;
    width: 80%;
    max-width: 600px;
    text-align: center;
    padding: 30px;
}

/* opinions and comment */
.categriessection {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 1.5rem;
    color: #1a6b1a;
    margin-left: 2rem;
}

.categribox {
    width: 50%;
    padding-inline: 1.5rem;
}

.catogretext {
    font-size: 2rem;
    margin-top: 1rem;
}

.textcatogrei {
    font-size: 1.5rem;
    margin-top: 1rem;
    text-align: justify;
}

.catogeri {
    border: none;
}

.catogeri {
    background-color: #FFC107;
    color: #0A490A;
    font-weight: bold;
}

.starcatogeri .star {
    color: #FFC107;
}

.commentcatogeri {
    width: 45%;
    display: flex;
    gap: 0.5rem;
}

.textbox1 {
    border: 1px solid black;
    border-radius: 0.5rem;
    padding: 1rem;
    position: relative;
    width: 90%;
}

.starcatogeri {
    color: #FFC107;
    font-size: 1rem;
}

.starcatogeri span {
    color: #1a6b1a;
    font-size: 1rem;
}

.textbox2 {
    color: #1a6b1a;
    font-size: 2rem;
    font-weight: bold;
    margin-top: 1rem;
}

.commentcat {
    text-align: justify;
    margin-top: 1rem;
    font-size: 1rem;
}

.profilecomment {
    margin-top: 1rem;
}

.profilecomment img b {
    width: 30%;
    font-size: 1rem;
}

.catalogflesh1 img {
    width: 10%;
    position: absolute;
    top: 8rem;
    left: -2rem;
}

.catalogflesh2 img {
    width: 10%;
    position: absolute;
    top: 8rem;
    right: -2rem;
}

.topscrool img {
    width: 2rem;
    height: 2rem;
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    border-radius: 100%;
    transition: all 1s;
    opacity: 12%;
    background-color: #003500;
    cursor: pointer;
}

.topscrool img:hover {
    opacity: 100%;
    box-shadow: 0 0 1rem #003500;
    background-color: #003500;
}

/* Blog § Articles */
.BlogArticles {
    display: flex;
    color: #003500;
    flex-direction: column;
    margin-top: 3rem;
    gap: 1.5rem;
    align-items: center;
}

.blogbox {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blogtitle {
    font-size: 2rem;
}

.blogtext {
    width: 60%;
    text-align: center;
}

.articlesection {
    width: 70%;
    justify-content: center;
    gap: 2.5rem;
    display: flex;
}

.articlebox {
    width: 33%;
    background-color: white;
    border-radius: 1rem;
}

.carditmearticle {
    width: 100%;
    height: 15rem;
    object-fit: cover;
    border-radius: 0.5rem;
}

.articleinformation {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1rem;
}

.articletext {
    font-size: 1.5rem;
}

.article {
    width: 80%;
    background-color: #FFC107;
    font-size: 1rem;
    display: flex;
    border-radius: 1rem;
    justify-content: center;
    gap: 1rem;
    color: aliceblue;
}

.article img {
    color: #0A490A;
}

.foodmart {
    background-color: #003500;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* footer */
.sectionfoodmart {
    color: white;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    width: 70%;
    padding: 1rem;
    margin-top: 2.5rem;
}

.foodbox {
    width: 35%;
}

.foodtitle {
    color: #FFC107;
}

.paraghraftitle {
    margin-top: 2rem;
}

.menufooter {
    width: 15%;
    list-style: none;
    line-height: 1rem;
}

.zeromenu {
    margin-top: 4rem;
    margin-bottom: 0.5rem;
}

.hamahangh {
    margin-bottom: 0.5rem;
}

.foodbackground {
    height: 20rem;
    width: 100%;
    position: absolute;
    top: -20rem;
    background-color: #003500;
    z-index: -1;
}

.t2 {
    font-size: 1rem;
    color: aliceblue;
}

.emailbox {
    height: 2.5rem;
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.foodemail {
    border: 1px;
    background-color: #003500;
    width: 80%;
    text-align: center;
    border: 1px solid white;
}

.bottomfooter {
    height: 6rem;
    padding-top: 4rem;
}

.textfooter1 {
    position: absolute;
    left: 0;
    padding-left: 1rem;
}

.textfooter2 {
    position: absolute;
    right: 0;
    padding-right: 1rem;
}

.textfooter3 {
    color: #FFC107;
}

button {
    cursor: pointer;
    transition: all 500ms;
}

button:hover {
    transition: scale(1.1);
}

li {
    cursor: pointer;
}

/* رسپانسیو */
@media (max-width: 1200px) {

    .continer,
    .productintroduction-sewom,
    .bannersection,
    .categriessection,
    .BlogArticles,
    .foodmart {
        margin-left: 40px;
        margin-right: 40px;
        padding-left: 0;
        padding-right: 0;
    }

    .productinformation {
        width: calc(33.333% - 1.5rem);
    }

    .prodctitemaval {
        width: calc(33.333% - 1.5rem);
    }
}

@media (max-width: 992px) {

    .continer,
    .productintroduction-sewom,
    .bannersection,
    .categriessection,
    .BlogArticles,
    .foodmart {
        margin-left: 20px;
        margin-right: 20px;
    }

    .productinformation {
        width: calc(50% - 1.5rem);
    }

    .prodctitemaval {
        width: calc(50% - 1.5rem);
    }

    .cardsection {
        width: 45%;
        min-width: 280px;
    }

    .articlebox {
        width: 45%;
    }

    .categribox,
    .commentcatogeri {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {

    html,
    body {
        height: auto;
    }

    .navbar {
        padding: 1rem;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .menu {
        justify-content: center;
        gap: 1rem;
        width: 100%;
    }

    .searchbox {
        width: 100%;
        max-width: 300px;
    }

    .searchbox select,
    .searchbox input {
        width: 100%;
    }

    .operatin {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        width: 100%;
    }

    .iconBox {
        flex-direction: row;
        gap: 0.5rem;
        height: auto;
        min-width: 100px;
    }

    .badge {
        font-size: 1rem;
        padding: 0.5rem 1.5rem;
    }

    .title {
        font-size: 2rem;
        margin: 1rem 0;
    }

    .about {
        font-size: 1rem;
        padding: 0.5rem 0;
        line-height: 1.4;
    }

    .banner {
        padding: 1.5rem;
        text-align: left;
        min-height: 350px;
        padding-top: 30px;
    }

    .btnbanner {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
        margin-top: 1.5rem;
        max-width: 200px;
    }

    .fruitsbanner {
        position: relative;
        width: 70%;
        max-width: 250px;
        margin: 2rem auto 0;
        bottom: auto;
        left: auto;
    }

    /* main section star */
    .continer {
        margin: 30px 15px;
    }

    .titleintroduction  {
        padding: 20px 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 20px; 
    }

    .texttitleint {
        font-size: 1.5rem;
        position: static;
        left: auto;
        top: auto;
        margin: 0;
        text-align: right;
        flex: 1;
    }

    .productbtn {
        width: auto;
        height: 45px;
        position: static;
        right: auto;
        top: auto;
        gap: 0.5rem;
        padding: 0 1.5rem;
        font-size: 0.9rem;
        margin-left: 1rem;
         flex-shrink: 0;
    }

    .productsection .vejtable {
        padding: 1rem 0;
        gap: 1rem;
    }

    .productinformation {
        min-width: 160px;
        height: 230px;
        margin-top: 30px;
    }

    .productitem {
        width: 80% !important;
    }

    .productinformation h4 {
        font-size: 1.3rem;
        top: 8%;
        padding: 0.8rem;
    }

    .productinformation p {
        font-size: 0.9rem;
        bottom: 35%;
        padding: 0.8rem;
        line-height: 1.3;
    }

    .productinformation button {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
        gap: 0.8rem;
        margin: 0.8rem;
        min-width: 120px;
        bottom: 8%;
        right: 5%;
    }

    /* best sellers section */

    .dowom {
        padding-top: 3rem;
        padding-bottom: 2rem;
        padding-right: 1rem;
    }

    .menu-sellers {
        margin: 0 1rem;
        font-size: 1rem;
        gap: 1rem;
        padding: 0.8rem;
        justify-content: flex-start;
    }

    .mainsellers {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .flesh,
    .flesh2 img {
        display: none;
    }

    .cardsection {
        width: 90%;
        max-width: 320px;
        margin: 1rem auto;
        padding: 1.5rem;
    }

    .pic2 {
        margin: 10px 0;
    }

    .inputbox {
        gap: 1rem;
        width: 100%;
    }

    .selectsize {
        width: 90px;
        height: 35px;
    }

    .input-wrapper {
        width: 120px;
        height: 35px;
    }

    .inputnumb {
        font-size: 0.9rem;
    }

    .number-btn {
        font-size: 1rem;
        padding: 0.2rem 0.8rem;
    }

    .cardbtn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .heart {
        font-size: 1.5rem;
        right: 5%;
        top: 1rem;
        left: 1rem;
    }

    /* best product  */
    /* .productintroduction-sewom {
        margin: 2rem 15px;
    }

    .titleintroduction {
        margin-top: 0;
          padding: 20px 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 20px;
    } */

    .prdouctitem {
        gap: 1rem;
        margin: 2;
    }

    .productsection {
        margin: 0rem;
        margin-top: -80px;
    }

    .prdouctitem {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .prodctitemaval {
        width: 100%;
        max-width: 350px;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }

    .cardimg {
        position: relative !important;
        width: 60% !important;
        right: auto !important;
        bottom: auto !important;
        margin: 15px auto 0 !important;
        display: block;
    }

    .im-dovm {
        position: relative !important;
        width: 45% !important;
        right: auto !important;
        bottom: auto !important;
        margin: 15px auto 0 !important;
        display: block;
    }

    .im-sevom {
        position: relative !important;
        width: 50% !important;
        right: auto !important;
        bottom: auto !important;
        margin: 15px auto 0 !important;
        display: block;
    }

    .im-chaharom {
        position: relative !important;
        width: 45% !important;
        right: auto !important;
        bottom: auto !important;
        margin: 15px auto 0 !important;
        display: block;
    }

    /* main baner */
    .bannersection {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 95%;
        padding: 15px;
        box-sizing: border-box;
        margin: 0 auto;
    }

    .bannerboxright,
    .bannerboxleft {
        text-align: left;
    }

    .bannerboxright h1,
    .bannerboxleft h1 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .bannerboxright p,
    .bannerboxleft p {
        font-size: 1rem;
        line-height: 1;
        margin-bottom: 1.2rem;
    }

    /* opinions and comment  */
    .categriessection {
        gap: 1.5rem;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .categribox {
        width: 100%;
        text-align: left;
        position: static;
        left: 0;
        top: -15rem;
    }

    .catogretext {
        font-size: 1.8rem;
    }

    .textcatogrei {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .comments-container {
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
    }

    .catalogflesh1,
    .catalogflesh2 {
        display: none;
    }

    .commentcatogeri {
        width: 90%;
        max-width: 500px;
        margin-top: 50px;
    }

    .textbox2 {
        font-size: 1.7rem;
    }

    .commentcat {
        font-size: 0.95rem;
        line-height: 1.3;
    }

    .catogeri {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }

    /* بخش مقالات */
    .blogtitle {
        font-size: 1.8rem;
    }

    .blogtext {
        width: 90%;
        font-size: 1.1rem;
    }

    .articlesection {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        width: 100%;
    }

    .articlebox {
        width: 90%;
        max-width: 400px;
    }

    .carditmearticle {
        height: 12rem;
    }

    .articletext {
        font-size: 1.3rem;
    }

    /* Footer */
    .sectionfoodmart {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 95%;
    }

    .foodbox {
        width: 100%;
        max-width: 500px;
    }

    .menufooter {
        width: 100%;
        max-width: 250px;
        text-align: center;
        padding: 0;
    }

    .zeromenu {
        margin-top: 1.5rem;
    }

    .foodtitle.t2 {
        font-size: 1.3rem;
    }

    .emailbox {
        justify-content: center;
        gap: 10px;
    }

    .foodemail {
        width: 70%;
    }

}