
/* =========================================================
   GENERAL
========================================================= */

* {
    box-sizing: border-box;
    font-family: 'Morvarid', Tahoma, sans-serif;
    direction: rtl;
}
html,body {
    margin: 0;
    padding: 0;
}
body {
    overflow-x: hidden;
}
.container {
    width: 100%;
}
/* =========================================================
   HEADER
========================================================= */
.header {
    width: 100%;
    padding: 10px 30px;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10000;
    background: #fff;
}
/* ---------- Brand ---------- */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
}
.brand span {
    font-size: 22px;
    font-weight: bold;
    color: #333;
}
/* ---------- Right Header ---------- */

.header .rightheader {
    width: 20%;
    display: flex;
    flex-direction: column;
}
.header .rightheader img {
    width: 3vw;
    height: 3vw;
}
/* ---------- Menu ---------- */
.header .menu {
    width: 40%;
    display: flex;
}
.menu-toggle {
    display: none;
}
.header .menu a {
    margin: 1vw;
    margin-left: 2.5vw;
    color: rgb(62, 19, 19);
    font-size: 1.2vw;
    font-weight: bold;
    text-decoration: none;
}
/* ---------- Left Header ---------- */
.header .leftheader {
    width: 20%;
    display: flex;
    align-items: center;
}
.header .leftheader img {
    width: 2vw;
    height: 2vw;
}
.header .leftheader a {
    margin-left: 2vw;
    text-decoration: none;
}
/* =========================================================
   CART
========================================================= */
.basket-link  {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #5c4033;
    background: #fff;
    border: 1px solid #e2d6cc;
    border-radius: 10px;
    text-decoration: none;
    transition: .25s;
}

.basket-link :hover {
    background: #8b5e3c;
    color: #fff;
    border-color: #8b5e3c;
}

.basket-link  i {
    font-size: 18px;
}

.cart-count {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 19px;
    height: 19px;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c0392b;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    border-radius: 50%;
    border: 2px solid #fff;
}


/* =========================================================
   LOGIN / ACCOUNT DROPDOWN
========================================================= */

.account-dropdown,
.user-account {
    position: relative;
    display: inline-block;
}

.leftheader .login-btn,.header .user-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 42px;
    padding: 0 16px;
    background: #8b5e3c;
    color: #fff;
    border: 1px solid #8b5e3c;
    border-radius: 10px;
    text-decoration: none;
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
    transition: .25s;
}

.leftheader .login-btn:hover,.header .user-button:hover {
    background: #6f482d;
    border-color: #6f482d;
}
/* ---------- Login Form ---------- */
.login-form {
    position: absolute;
    top: calc(100% + 1.3vw);
    left: 0;
    width: 25vw;
    padding: 3vw;
    background: #fff;
    border: .1vw solid #ede6e6;
    border-radius: 1vw;
    box-shadow: 0 .2vw 1vw rgba(249, 190, 51, .776);
    opacity: 0;
    visibility: hidden;
    transform: translateY(1.3vw);
    transition: .3s;
    z-index: 99999;
}
.account-dropdown:hover .login-form {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* ---------- Tabs ---------- */
.tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1vw;
    padding-bottom: 1vw;
    border-bottom: .1vw solid #eaa527;
}

.tab-btn {
    background: none;
    border: none;
    color: #ea9b24;
    font-size: 1.2vw;
    cursor: pointer;
}

.tab-btn.active {
    color: rgb(62, 19, 19);
    font-weight: bold;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ---------- Forms ---------- */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-size: 15px;
    font-weight: 600;
}

.form-group input,.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 15px;
    outline: none;
    transition: .3s;
}

.form-group input:focus,.form-group textarea:focus {
    border-color: #eaa527;
    background: #fff;
    box-shadow: 0 0 10px rgba(231, 168, 58, .4);
}

.form-group textarea {
    resize: none;
    height: 100px;
}


/* ---------- Password ---------- */

.password-box {
    position: relative;
}

.password-box span {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #afa7a7;
    font-size: 16px;
}


/* ---------- Submit ---------- */

.submit-btn {
    width: 100%;
    height: 48px;
    background: #eaa527;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    cursor: pointer;
}

/* ---------- Remember ---------- */

.remember {
    display: flex;
    margin: 15px;
}

.remember a {
    font-size: 14px;
}

/* =========================================================
   USER ACCOUNT
========================================================= */

.user-account {
    z-index: 5000;
}

.user-button {
    min-width: 150px;
}

.user-button .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-button .text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-arrow {
    font-size: 11px;
    transition: transform .25s;
}

.user-account:hover .user-arrow {
    transform: rotate(180deg);
}


/* ---------- User Menu ---------- */

.user-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 210px;
    padding: 7px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: .25s;
    z-index: 99999;
}

.user-account:hover .user-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-menu a,.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 43px;
    padding: 0 12px;
    color: #6b4935;
    text-decoration: none;
    border-radius: 7px;
    font-size: 14px;
    transition: .2s;
}

.user-menu a i,.user-dropdown a i {
    width: 20px;
    text-align: center;
}

.user-menu a:hover,.user-dropdown a:hover {
    background: #f7f0eb;
    color: #8b5e3c;
    padding-right: 17px;
}

.user-menu-line,.dropdown-line {
    height: 1px;
    margin: 6px 4px;
    background: #eee;
}

.user-menu .logout-link,.user-dropdown .logout-link {
    color: #c0392b;
}

.user-menu .logout-link:hover,.user-dropdown .logout-link:hover {
    background: #fff1f1;
    color: #a93226;
}


/* =========================================================
   INTRODUCTION
========================================================= */

.introduction {
    display: flex;
    flex-direction: row;
    background: #fff;
}

.introtext {
    width: 50%;
    margin: 2vw 5vw;
    display: flex;
    flex-direction: column;
}

.introtext p {
    color: rgb(62, 19, 19);
    font-size: 1.2vw;
    font-weight: bold;
    line-height: 4vw;
    text-align: center;
}

.introtext a {
    color: #fff;
    text-decoration: none;
}

.introtext .btn-products {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.2vw;
    width: 15vw;
    height: 4vw;
    background: linear-gradient(90deg, #f8c32d, #e19016);
    color: #fff;
    border-radius: 8vw;
    font-size: 1.2vw;
    font-weight: 500;
    font-family: Tahoma, sans-serif;
    text-decoration: none;
    box-shadow: 0 1vw 2vw rgba(234, 172, 28, .4);
   transition: .3s;
}

.introtext .btn-products:hover {
    transform: translateY(-3px);
    box-shadow: 0 1vw 4vw rgba(216, 107, 31, .35);
}

.introimage {
    width: 50%;
    margin: 5vw;

    display: flex;
    flex-direction: column;
}

.introimage img {
    width: 50vw;
    height: 40vw;
    border-radius: 5vw;
}


/* =========================================================
   ABOUT ZIMA
========================================================= */

.aboutzima {
    width: 98%;
    height: 30vw;
    margin-top: 15vw;
    margin-bottom: 15vw;
    background: #eaa527;
    border-radius: 5vw;
}

.aboutzima img {
    float: right;
    width: 25vw;
    height: 30vw;
}

.aboutzima h3 {
    margin-top: 2vw;
    color: #fff;
}

.aboutzima p {
    margin: 3vw;
    color: #fff;
    font-size: 1.2vw;
    line-height: 4vw;
    text-align: justify;
}

.aboutzima a {
    color: #fff;
    text-decoration: none;
}


/* =========================================================
   PRODUCTS
========================================================= */

.product {
    width: 100%;
    margin-top: 4vw;
    background: #fff;
}

.product h3 {
    width: 100%;
    margin: 1vw;
    color: rgb(62, 19, 19);
    font-size: 1.5vw;
    text-align: center;
}

.newproducts {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.card {
    width: 250px;
    background: #fffef6;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    transition: .4s ease;
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: .4s ease;
}

.card p {
    padding: 15px;
    font-size: 16px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.card:hover img {
    transform: scale(1.08);
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.product-container {
    width: 100%;
}

.container .products {
    display: grid;
	 grid-template-columns: repeat(4, 1fr);
    gap: 1vw;
}


.product-card {
    position: relative;
    width: 80%;
    height:400px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fffef6;
    border-radius: 30px;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
    transition: .4s;
}

.product-card:hover {
    transform: translateY(-1.1vw);
    box-shadow: 0 2.2vw 6.5vw rgba(0, 0, 0, .1);
}

.img-box {
    width: 100%;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
}


.img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    transition: .4s;
}

.product-card:hover img {
    transform: scale(1.05);
}
.product-card h3 {
    font-family: Rokh, sans-serif;
	 margin-top: 20px;
    font-size: 16px;
    font-weight: 400;
    margin: 8px 5px 4px;
    line-height: 1.5;
}

.price {
    display: block;
    font-family: Rokh, sans-serif;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 12px;
}

.actions {
    position: absolute;
    top: 50%;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transform: translateY(-50%);
    transition: .3s;
    padding-bottom: 15px;
	align-items: center;
}

.product-card:hover .actions {
    opacity: 1;
}
.actions i {
    font-size: 18px;
    cursor: pointer;
}
.actions i {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    color: #666;

    border-radius: 50%;
}

.actions i:hover {
    background: #efae21;
    color: #fff;
}
.add-cart {
   
    background: transparent;
    cursor: pointer;
    font-size: 18px;
}

/* =========================================================
   PRODUCT SWIPER
========================================================= */
.products-section {
    width: 100%;
	height:auto;
    max-width: 1400px;
    margin: 4px auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.section-title {
    font-family: Rokh, sans-serif;
    font-size: 20px;
    text-align: center;
    margin: 0 0 25px;
}

.productSwiper {
    width: 100%;
    padding: 10px 45px 4px;
    box-sizing: border-box;
	margin: 5px auto 5px;
    padding-top: 0;
    overflow: hidden;
}

.productSwiper .swiper-wrapper {
    align-items: stretch;
}

.productSwiper .swiper-slide {
    height: auto;
    box-sizing: border-box;
}

.productSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.productSwiper .swiper-button-next,
.productSwiper .swiper-button-prev {
    width: 34px;
    height: 34px;
    background: #fff;
    color: #efae21;
    border: 1px solid #e9e2cf;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .15);
}

.productSwiper .swiper-button-next {
    right: 8px;
}

.productSwiper .swiper-button-prev {
    left: 8px;
}

.productSwiper .swiper-button-next::after,
.productSwiper .swiper-button-prev::after {
    font-size: 4px;
}

 
/* =========================================================
   ABOUT PAGE
========================================================= */

.about-page {
    width: 100%;
    background: #fff;
}

.about-hero {
    padding: 4vw 2vw;

    background: #fffdf7ec;

    text-align: center;
}

.about-hero h3 {
    margin-bottom: 20px;

    font-size: 1.5rem;
    font-weight: bold;
}

.about-hero p {
    max-width: 700px;

    margin: auto;

    color: #666;
    line-height: 2;
}

.about-content {
    width: 90%;
    max-width: 1200px;

    margin: 80px auto;

    display: flex;
    align-items: center;

    gap: 50px;

    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 20vw;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    margin-bottom: 20px;

    color: rgb(62, 19, 19);

    font-size: 35px;
}

.about-text p {
    color: #666;
    line-height: 2;
    text-align: justify;
}

.features {
    display: flex;
    gap: 20px;

    margin-top: 40px;

    flex-wrap: wrap;
}

.feature-box {
    flex: 1;
    min-width: 180px;

    padding: 25px;

    background: #fffdf7ec;

    border-radius: 15px;

    text-align: center;

    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
}

.feature-box h3 {
    margin-bottom: 10px;
    color: #eaa527;
}

.counter-section {
    display: flex;
    justify-content: center;

    gap: 30px;

    padding: 80px 5%;

    background: #fffdf7ec;

    flex-wrap: wrap;
}

.counter-box {
    width: 220px;

    padding: 35px;

    background: #fff;

    border-radius: 20px;

    text-align: center;

    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
}

.counter-box h2 {
    margin-bottom: 10px;

    color: #eaa527;
    font-size: 40px;
}

.counter-box span {
    color: #666;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-page {
    width: 100%;
    background: #fafafa;
}

.contact-header {
    padding: 60px 20px;
    text-align: center;
}

.contact-header h1 {
    margin-bottom: 15px;

    color: #222;
    font-size: 40px;
}

.contact-header p {
    color: #777;
}

.contact-container {
    width: 90%;
    max-width: 1200px;

    margin: auto;

    display: flex;
    gap: 30px;

    flex-wrap: wrap;
}

.contact-info,
.contact-form {
    flex: 1;
    min-width: 320px;

    padding: 40px;

    background: #fff;

    border-radius: 20px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.contact-info h2,
.contact-form h2 {
    margin-bottom: 25px;
    color: #222;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 25px;

    color: #555;
}

.info-item span {
    font-size: 24px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;

    border: 1px solid #ddd;
    border-radius: 12px;

    font-size: 15px;
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.contact-form button {
    padding: 15px;

    background: #eaa527;
    color: #fff;

    border: none;
    border-radius: 50px;

    font-size: 16px;

    cursor: pointer;
    transition: .3s;
}

.contact-form button:hover {
    background: #c88914;
}

.map-section {
    width: 90%;
    max-width: 1200px;

    margin: 50px auto;
}

.map-section iframe {
    width: 100%;
    height: 400px;

    border: none;
    border-radius: 20px;
}


/* =========================================================
   ORDER
========================================================= */

.container .order-form {
    max-width: 500px;

    margin: 50px auto;
    padding: 30px;

    background: #fff;

    border-radius: 20px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.order-form h2 {
    margin-bottom: 30px;

    color: #233d63;

    text-align: center;
}

.product-select {
    width: 100%;
    height: 55px;

    padding: 0 20px;

    background: #fafafa;

    border: 1px solid #ddd;
    border-radius: 2vw;

    color: #555;
    font-size: 15px;

    cursor: pointer;
    outline: none;
}

.product-select:focus {
    border-color: #eaab24;
    background: #fff;

    box-shadow: 0 0 1.4vw rgba(238, 191, 39, .5);
}

.btns {
    display: flex;
    gap: 15px;
}

.btns button {
    flex: 1;

    padding: 15px;

    border: none;
    border-radius: 12px;

    font-size: 16px;

    cursor: pointer;
}

.save-btn {
    background: #eaa527;
    color: #fff;
}

.clear-btn {
    background: #f3f3f3;
    color: #444;
}


/* =========================================================
   SUCCESS BOX
========================================================= */

.success-wrapper {
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

.success-box {
    width: 420px;
    max-width: 90%;

    margin: 50px auto;
    padding: 30px;

    background: #fff;

    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);

    text-align: center;

    border-top: 6px solid #22c55e;
}

.success-icon {
    width: 80px;
    height: 80px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eafaf1;
    color: #22c55e;

    border-radius: 50%;

    font-size: 40px;
}

.success-title {
    margin-bottom: 10px;

    color: #2c3e50;
    font-size: 22px;
}

.success-text {
    margin-bottom: 25px;

    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

.order-info {
    margin: 15px 0;
    padding: 12px;

    background: #f3f4f6;

    border-radius: 10px;

    color: #333;
    font-size: 14px;
}

.btn {
    display: inline-block;

    margin-top: 15px;
    padding: 12px 20px;

    background: #22c55e;
    color: #fff;

    border-radius: 10px;

    text-decoration: none;
    transition: .3s;
}

.btn:hover {
    background: #16a34a;
}

.btn-secondary {
    background: #2563eb;
    margin-right: 8px;
}

.secondary {
    display: block;

    margin-top: 15px;

    color: #888;
    font-size: 13px;

    text-decoration: none;
}


/* =========================================================
   ALERT
========================================================= */

.wm-alert {
    position: fixed;

    top: 20px;
    right: 20px;

    width: 320px;

    display: flex;
    align-items: flex-start;
    gap: 12px;

    padding: 14px 16px;

    background: #fff;

    border-radius: 12px;

    font-family: Tahoma, sans-serif;
    direction: rtl;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);

    z-index: 99999;

    animation: slideIn .4s ease;
}

.wm-error {
    background: #fff2f2;
    border-right: 5px solid #e53935;
    color: #b71c1c;
}

.wm-icon {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #e53935;
    color: #fff;

    border-radius: 50%;

    font-size: 16px;
    font-weight: bold;
}

.wm-text strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.wm-text p {
    margin: 0;

    font-size: 13px;
    line-height: 1.6;
}

.wm-close {
    margin-right: auto;

    cursor: pointer;

    font-size: 18px;
    opacity: .6;
}

.wm-close:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(120%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}


/* =========================================================
   MY ORDERS
========================================================= */

.my-orders-container {
    width: 100%;
    min-height: 600px;

    padding: 60px 20px;

    display: flex;
    justify-content: center;

    background: #faf8f6;
}

.my-orders-card {
    width: 100%;
    max-width: 1100px;

    padding: 30px;

    background: #fff;

    border-radius: 18px;
    border: 1px solid #eee;

    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
}

.my-orders-title {
    display: flex;
    align-items: center;
    gap: 15px;

    padding-bottom: 25px;
    margin-bottom: 25px;

    border-bottom: 1px solid #eee;
}

.my-orders-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f5ebe4;
    color: #8b5e3c;

    border-radius: 50%;

    font-size: 22px;
}

.my-orders-title h1 {
    margin: 0 0 5px;

    color: #4d3426;
    font-size: 24px;
}

.my-orders-title p {
    margin: 0;
    color: #999;
    font-size: 13px;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-item {
    display: grid;

    grid-template-columns:
        1fr
        1.5fr
        1.3fr
        1.2fr
        auto;

    align-items: center;

    gap: 20px;

    padding: 18px;

    background: #faf8f6;

    border-radius: 12px;

    transition: .2s;
}

.order-item:hover {
    background: #f5ebe4;
    transform: translateY(-2px);
}

.order-column {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.order-label {
    color: #999;
    font-size: 12px;
}

.order-column strong {
    color: #4d3426;
    font-size: 14px;
}

.order-price {
    color: #eaa527 !important;
}

.order-status {
    width: fit-content;

    padding: 6px 12px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    font-size: 12px;
    font-weight: bold;
}

.order-status.pending {
    background: #fff4d6;
    color: #a66a00;
}

.order-status.processing {
    background: #eaf2ff;
    color: #3478c9;
}

.order-status.shipped {
    background: #e8f7ef;
    color: #24945c;
}

.order-status.completed {
    background: #dcf8e8;
    color: #168449;
}

.order-status.cancelled {
    background: #fff0f0;
    color: #c0392b;
}

.order-view-btn,
.orders-shop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    background: #8b5e3c;
    color: #fff;

    text-decoration: none;
    border-radius: 9px;

    transition: .2s;
}

.order-view-btn {
    min-width: 90px;
    height: 38px;
    padding: 0 12px;
    font-size: 12px;
}

.order-view-btn:hover,
.orders-shop-btn:hover {
    background: #6f482d;
}

.no-orders {
    padding: 60px 20px;
    text-align: center;
}

.no-orders > i {
    margin-bottom: 20px;

    color: #d8c7ba;
    font-size: 60px;
}

.no-orders h3 {
    margin-bottom: 10px;
    color: #4d3426;
}

.no-orders p {
    margin-bottom: 25px;

    color: #999;
    font-size: 13px;
}

.orders-shop-btn {
    padding: 12px 22px;
}


/* =========================================================
   CART PAGE
========================================================= */

.cart-page {
    width: 95%;
    max-width: 1200px;

    margin: 50px auto;

    direction: rtl;
}

.cart-title {
    margin-bottom: 35px;

    color: #4d3426;

    text-align: center;
}

.cart-title i {
    margin-left: 8px;
    color: #8b5e3c;
}

.cart-content {
    display: grid;

    grid-template-columns: 1fr 320px;

    gap: 25px;

    align-items: start;
}

.cart-products {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-item {
    position: relative;

    display: flex;
    align-items: center;

    gap: 20px;

    padding: 18px;

    background: #fff;

    border: 1px solid #eee;
    border-radius: 15px;

    box-shadow: 0 5px 18px rgba(0, 0, 0, .06);

    transition: .25s;
}

.cart-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .09);
}

.cart-image {
    width: 120px;
    height: 120px;

    flex-shrink: 0;

    background: #faf8f6;

    border-radius: 12px;

    overflow: hidden;
}

.cart-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-info {
    flex: 1;
}

.cart-info h3 {
    margin: 0 0 10px;

    color: #4d3426;
    font-size: 17px;
}

.cart-price {
    margin-bottom: 12px;
    color: #999;
    font-size: 13px;
}

.quantity-box {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5ebe4;
    color: #8b5e3c;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
}

.quantity-btn:hover {
    background: #8b5e3c;
    color: #fff;
}

.quantity {
    min-width: 25px;
    text-align: center;
    font-weight: bold;
}

.cart-subtotal {
    margin-top: 12px;

    color: #777;
    font-size: 13px;
}

.cart-subtotal strong {
    margin-right: 5px;
    color: #8b5e3c;
}

.cart-remove {
    align-self: flex-start;
}

.cart-remove a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff2f2;
    color: #c0392b;
    border-radius: 8px;
    text-decoration: none;
}

.cart-remove a:hover {
    background: #c0392b;
    color: #fff;
}


/* ---------- Cart Summary ---------- */

.cart-summary {
    position: sticky;
    top: 100px;
    padding: 22px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .07);
}

.cart-summary h3 {
    margin-top: 0;
    padding-bottom: 15px;
    color: #4d3426;
    border-bottom: 1px solid #eee;
}

.summary-row,.summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0;
}

.summary-row {
    color: #777;
    font-size: 14px;
}

.summary-total {
    color: #4d3426;
    font-size: 16px;
}

.summary-total strong {
    color: #8b5e3c;
    font-size: 18px;
}

.summary-line {
    height: 1px;
    background: #eee;
}

.checkout-btn,.continue-btn,.continue-shopping {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 9px;
    transition: .25s;
}

.checkout-btn {
    width: 100%;
    height: 48px;
    margin-top: 20px;
    gap: 8px;
    background: #8b5e3c;
    color: #fff;
}

.checkout-btn:hover {
    background: #6f482d;
}

.continue-btn {
    width: 100%;
    height: 43px;
    margin-top: 10px;
    background: #f5ebe4;
    color: #8b5e3c;
}

.continue-btn:hover {
    background: #eadbd0;
}


/* ---------- Empty Cart ---------- */

.empty-cart {
    max-width: 500px;
    margin: 70px auto;
    padding: 50px 25px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
    text-align: center;
}

.empty-cart > i {
    margin-bottom: 20px;
    color: #d6c2b4;
    font-size: 60px;
}

.empty-cart h3 {
    margin-bottom: 10px;
    color: #4d3426;
}

.empty-cart p {
    margin-bottom: 25px;
    color: #999;
    font-size: 14px;
}

.continue-shopping {
    padding: 12px 25px;
    background: #8b5e3c;
    color: #fff;
}

.continue-shopping:hover {
    background: #6f482d;
}


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

.zm-footer {
    background: #ffd175;
}

.zm-footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.zm-footer-col {
    width: 100%;
}

.zm-footer-col a {
    text-decoration: none;
}

.zm-footer-col p {
    margin-bottom: 12px;
    color: rgb(46, 46, 46);
}

.zm-footer-logo {
    width: 100px;
    margin: 20px auto;
    display: block;
}

.zm-footer-col h3 {
    margin-bottom: 12px;
    color: rgb(62, 19, 19);
    font-size: 20px;
}

.zm-footer-col a img {
    width: 3vw;
    height: 3vw;
    border-radius: 10px;
    transition: .3s;
}

.zm-footer-col a:hover img {
    transform: scale(1.1);
}

.zm-footer ul {
    padding: 0;
    list-style: none;
}

.zm-footer ul li {
    margin-bottom: 10px;
}

.zm-footer ul li a {
    color: rgb(46, 46, 46);
    transition: .3s;
}

.zm-footer ul li a:hover {
    color: #eaa527;
    padding-right: 1vw;
}

.zm-footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: rgb(46, 46, 46);
    font-size: 13px;
    text-align: center;
}


/* =========================================================
   PROFILE
========================================================= */

.profile-container {
    width: 100%;
    min-height: 600px;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.profile-card {
    width: 100%;
    max-width: 700px;
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
}

.profile-title {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 25px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.profile-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #f5ebe4;
    color: #8b5e3c;

    border-radius: 50%;

    font-size: 22px;
}

.profile-title h2 {
    margin: 0 0 5px;

    color: #4d3426;
    font-size: 22px;
}

.profile-title p {
    margin: 0;
    color: #999;
    font-size: 13px;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 16px;

    background: #faf8f6;

    border-radius: 10px;
}

.profile-label {
    min-width: 180px;

    display: flex;
    align-items: center;
    gap: 10px;

    color: #6b4935;
    font-size: 14px;
}

.profile-label i {
    width: 20px;
    text-align: center;
    color: #8b5e3c;
}

.profile-value {
    color: #333;
    font-size: 14px;
    text-align: left;
    word-break: break-word;
}

.profile-buttons {
    display: flex;
    gap: 10px;

    margin-top: 25px;

    flex-wrap: wrap;
}

.profile-btn {
    flex: 1;
    min-width: 180px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border-radius: 9px;

    text-decoration: none;

    font-size: 13px;
}

.edit-btn {
    background: #8b5e3c;
    color: #fff;
}

.password-btn {
    background: #f5ebe4;
    color: #8b5e3c;
}

.orders-btn {
    background: #eee;
    color: #555;
}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 768px) {

    /* ---------- Header ---------- */

    .header {
        position: relative;
        margin: 0;
        padding: 15px;
        row-gap: 20px;
        justify-content: space-between;
    }

    .header .rightheader {
        order: 1;
        width: auto;
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .header .rightheader img {
        width: 50px;
        height: 50px;
    }

    .header .rightheader h2 {
        font-size: 24px;
    }

    .header .menu {
        order: 2;
        width: 100%;
        display: none;
        flex-direction: column;
        margin-top: 15px;
    }

    .header .menu.active {
        display: flex;
    }

    .header .menu a {
        margin: 0;
        padding: 15px;
        border-bottom: 1px solid #eee;
        font-size: 18px;
        text-align: center;
    }

    .menu-toggle {
        display: block !important;
        position: relative;
        width: 40px;
        height: 40px;
        cursor: pointer;
    }

    .menu-toggle span {
        position: absolute;
        right: 5px;
        width: 30px;
        height: 3px;
        background: #333;
        border-radius: 2px;
    }

    .menu-toggle span:nth-child(1) {
        top: 8px;
    }

    .menu-toggle span:nth-child(2) {
        top: 18px;
    }

    .menu-toggle span:nth-child(3) {
        top: 28px;
    }


    /* ---------- Left Header ---------- */

    .header .leftheader {
        order: 3;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
    }

   .header .leftheader > a:first-child {
    	display: none;
	}
	
	.header .leftheader .basket-link {
	    display: flex;
	}


    /* ---------- Login ---------- */

    .header .leftheader .login-btn {
        min-width: 170px;
        height: 48px;
        padding: 0 18px;
        font-size: 16px;
        border-radius: 40px;
    }

    .login-form {
        width: 95vw;
        max-width: 380px;
        top: 60px;
        left: 50%;
        padding: 25px;
        border-radius: 15px;
        transform: translateX(-50%);
    }

    .account-dropdown:hover .login-form {
        transform: translateX(-50%);
    }

    .tabs {
        margin-bottom: 20px;
        padding-bottom: 10px;
    }

    .tab-btn {
        font-size: 18px;
    }


    /* ---------- Form ---------- */

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 15px;
    }

    .form-group input {
        height: 45px;
        padding: 0 12px;
        font-size: 15px;
        border-radius: 8px;
    }

    .submit-btn {
        height: 48px;
        font-size: 17px;
    }


    /* ---------- User Account ---------- */

    .header .user-button {
        min-width: 170px;
        height: 48px;
        padding: 0 18px;
        font-size: 16px;
        border-radius: 40px;
    }

    .header .user-button .text {
        max-width: 110px;
    }

    .header .user-menu {
        top: calc(100% + 8px);
        right: 50%;
        width: 220px;
        transform: translate(50%, -8px);
    }

    .header .user-account:hover .user-menu {
        transform: translate(50%, 0);
    }

    .user-menu a {
        min-height: 45px;
        font-size: 15px;
    }


    /* ---------- Main ---------- */

    .container {
        width: 100%;
        padding: 15px;
    }


    /* ---------- Introduction ---------- */

    .introduction {
        flex-direction: column-reverse;
        align-items: center;
        gap: 25px;
        text-align: center;
    }

    .introtext,
    .introimage {
        width: 100%;
        margin: 0;
    }

    .introtext p {
        font-size: 17px;
        line-height: 2;
    }

    .introimage img {
        width: 90%;
        max-width: 320px;
        height: auto;
    }

    .introtext .btn-products {
        width: 260px !important;
        height: 60px !important;
        display: inline-flex;
        gap: 12px;
        border-radius: 40px;
        font-size: 18px !important;
        box-shadow: 0 8px 20px rgba(234, 172, 28, .4);
    }

    .introtext .btn-products .arrow {
        font-size: 22px;
    }


    /* ---------- Products ---------- */

    .product {
        width: 100%;
        margin-bottom: 40px;
        overflow: hidden;
    }

    .product h3 {
        margin-bottom: 30px;
        font-size: 28px;
    }

    .newproducts {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0;
    }

    .newproducts .card {
        width: 100%;
        margin: 0;
        padding: 15px;
    }

    .newproducts .card p {
        margin-top: 15px;
        font-size: 15px;
    }

    .products {
        display: grid;
        grid-template-columns: 1fr;
        justify-content: center;
        gap: 20px;
    }


    /* ---------- About Zima ---------- */

    .aboutzima {
        width: 100%;
        height: auto;
        margin: 50px 0;
        padding: 25px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 25px;
    }

    .aboutzima img {
        width: 90%;
        max-width: 330px;
        height: auto;
        margin-bottom: 20px;
    }

    .aboutzima p {
        margin: 0;
        color: #fff;
        font-size: 16px;
        line-height: 2;
        text-align: justify;
    }


    /* ---------- About Page ---------- */

    .about-page {
        width: 100%;
        padding: 15px;
    }

    .about-hero {
        padding: 50px 20px;
    }

    .about-hero h3 {
        font-size: 24px;
    }

    .about-hero p {
        font-size: 16px;
        line-height: 2;
    }

    .about-content {
        width: 100%;

        margin: 50px 0;

        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .about-image,
    .about-text {
        width: 100%;
        min-width: 0;
    }

    .about-image {
        text-align: center;
    }

    .about-image img {
        width: 90%;
        max-width: 330px;
    }

    .about-text h2 {
        font-size: 28px;
        text-align: center;
    }

    .about-text p {
        font-size: 16px;
        line-height: 2.2;
    }

    .features {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 35px;
    }

    .feature-box {
        width: 100%;
        min-width: 0;
        padding: 20px;
    }

    .counter-section {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 50px 0;
        padding: 30px 15px;
    }

    .counter-box {
        width: 100%;
        padding: 25px;
    }


    /* ---------- Contact ---------- */

    .contact-container {
        flex-direction: column;
    }

    .contact-header h1 {
        font-size: 30px;
    }


    /* ---------- Profile ---------- */

    .profile-container {
        padding: 30px 15px;
    }

    .profile-card {
        padding: 20px;
    }

    .profile-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-value {
        width: 100%;
        text-align: right;
    }

    .profile-buttons {
        flex-direction: column;
    }

    .profile-btn {
        width: 100%;
    }


    /* ---------- My Orders ---------- */

    .my-orders-container {
        padding: 30px 15px;
    }

    .my-orders-card {
        padding: 20px 15px;
    }

    .my-orders-title h1 {
        font-size: 20px;
    }

    .order-item {
        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 14px;
    }

    .order-column {
        width: 100%;
    }

    .order-view-btn {
        width: 100%;
    }


    /* ---------- Cart ---------- */

    .cart-page {
        width: 95%;
        margin: 30px auto;
    }

    .cart-content {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
        order: -1;
    }

    .cart-item {
        align-items: flex-start;
        padding: 12px;
        gap: 12px;
    }

    .cart-image {
        width: 90px;
        height: 90px;
    }

    .cart-info h3 {
        font-size: 14px;
    }

    .cart-price {
        font-size: 12px;
    }

    .cart-remove {
        position: absolute;

        left: 10px;
        top: 10px;
    }

/* =========================================================
   MOBILE PRODUCT GRID
========================================================= */

.product-container {
    width: 100%;
}
.products-section {
        width: 100%;
        max-width: 100%;
        margin: 10px auto;
        padding: 0 10px;
        box-sizing: border-box;
    }
 .section-title {
        font-family: Rokh, sans-serif;
        font-size: 18px;
        text-align: center;
        margin: 35px 5px 35px;
    }

    .productSwiper {
        width: 100%;
		height:450px;
        margin: 30px 20px 5px;
        padding: 5px 35px 5px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .productSwiper .swiper-wrapper {
        align-items: stretch;
    }

    .productSwiper .swiper-slide {
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: stretch;
        box-sizing: border-box;
    }
.container .products {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 300px;
}

.product-card {
    position: relative;
    width: 100%;
    height: 400px;
    min-height: 0;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: #fffef6;
    border-radius: 30px;
    text-align: center;
    overflow: hidden;
}

/* ---------- Product Image ---------- */

.img-box {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 40px;
}
	 

  
/* ---------- Product Title ---------- */
 
.product-card h4 {
    margin: 15px 0 12px;
    color: #444;
    font-size: 10px;
    line-height: 1.5;
}

/* ---------- Price ---------- */
 

.price {
    display: block;
    margin-top: 8px;
    margin-bottom: 18px;
    color: #efae21;
    font-size: 12px;
}

/* ---------- Actions ---------- */

.actions {
    position: static;
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none;
    margin-top: 10px;
    padding: 0;
}
.product-card .add-cart {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: transparent;
    color: #666;
    cursor: pointer;
}

.product-card .add-cart i {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 20px !important;
}


/* ---------- Remove Desktop Hover ---------- */

.product-card:hover {
    transform: none;
    box-shadow: none;
}

.product-card:hover img {
    transform: none;
}

    /* ---------- Footer ---------- */

    .zm-footer-col a img {
        width: 35px;
        height: 35px;
    }
}
 @media (max-width: 575px) {
	.products-section {
        margin-top: 15px !important;
    }

    .products-section .section-title {
        margin-bottom: 2px !important;
    }

    .products-section .productSwiper {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
   

    .productSwiper .swiper-slide {
        width: auto;
    }

    .product-card {
        width: 100%;
        border-radius: 12px;
    }

    .img-box {
        width: 100%;
        height: 180px;
        border-radius: 17px;
    }

    .img-box img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 15px;
    }

    .product-card h3 {
        font-size: 15px;
        margin: 6px 3px 4px;
        line-height: 1.5;
    }
	
	.price {
	    font-size: 14px;
	    margin-bottom: 8px;
	}

    .actions {
        gap: 18px;
        padding-bottom: 10px;
    }

    .actions i,.add-cart {
        font-size: 16px;
    }
}
/* ==============================
   موبایل خیلی کوچک
============================== */

@media (max-width: 380px) {

    .products-section {
        padding: 0 5px;
    }

    .productSwiper {
    width: 100%;
    padding: 0 30px 40px;
	}

    .img-box {
        height: 160px;
    }

    .section-title {
    font-size: 22px;
    margin-bottom: 5px;
}

    .product-card h3 {
        font-size: 15px;
    }

    .price {
        font-size: 14px;
    }
	/* وقتی فقط یک محصول در اسلایدر وجود دارد */
	.productSwiper .swiper-wrapper {
	    justify-content: center;
	}
	.productSwiper .swiper-slide {
	    max-width: 300px;
	}
	.productSwiper.single-product .swiper-wrapper {
    justify-content: center;
	}

	.productSwiper.single-product .swiper-slide {
	    width: 300px !important;
	}
	
}  

