:root{
    --primary:#998077;
    --secondary:#b6746f;
    --radius:24px;

  --bg: #f8f6ef;
  --bg-soft: #f2efe5;
  --card: #ffffff;
  --card-strong: #fcfbf7;
  --line: rgba(58, 87, 42, 0.10);
  --text: #1f2a1f;
  --muted: #5f6f5c;
  --primary-2: #b8d14e;
  --primary-dark: #486128;
  --accent: #dff0a6;

  --radius-sm: 16px;

  --shadow: 0 16px 45px rgba(76, 98, 53, 0.10);
  --container: 1120px;
    
    
}



@font-face {
    font-family: IranSans;
    font-style: normal;
    font-weight: normal;
    src: url('iransans-fanum/eot/IRANSansWeb(FaNum).eot');
    src: url('iransans-fanum/eot/IRANSansWeb(FaNum).eot?#iefix') format('embedded-opentype'),
        url('iransans-fanum/woff2/IRANSansWeb(FaNum).woff2') format('woff2'),
        url('iransans-fanum/woff/IRANSansWeb(FaNum).woff') format('woff'),
        url('iransans-fanum/ttf/IRANSansWeb(FaNum).ttf') format('truetype');
}
@font-face {
    font-family: IranSans;
    font-style: normal;
    font-weight: bold;
    src: url('iransans-fanum/eot/IRANSansWeb(FaNum)_Bold.eot');
    src: url('iransans-fanum/eot/IRANSansWeb(FaNum)_Bold.eot?#iefix') format('embedded-opentype'),
        url('iransans-fanum/woff2/IRANSansWeb(FaNum)_Bold.woff2') format('woff2'),
        url('iransans-fanum/woff/IRANSansWeb(FaNum)_Bold.woff') format('woff'),
        url('iransans-fanum/ttf/IRANSansWeb(FaNum)_Bold.ttf') format('truetype');
}
@font-face {
    font-family: IranSans;
    font-style: normal;
    font-weight: lighter;
    src: url('iransans-fanum/eot/IRANSansWeb(FaNum)_Light.eot');
    src: url('iransans-fanum/eot/IRANSansWeb(FaNum)_Light.eot?#iefix') format('embedded-opentype'),
        url('iransans-fanum/woff2/IRANSansWeb(FaNum)_Light.woff2') format('woff2'),
        url('iransans-fanum/woff/IRANSansWeb(FaNum)_Light.woff') format('woff'),
        url('iransans-fanum/ttf/IRANSansWeb(FaNum)_Light.ttf') format('truetype');
}

body{
    font-family:'IranSans',sans-serif !important;
    background:#fefbfb;
    direction:rtl;
}

a:hover{
    text-decoration: none;
    color: inherit;
}


/* HEADER */
.main-header{
padding-bottom: 10px;
    
}

.header-box{
background: #ffffff;
    padding: 5px 10px;
    /* border-radius: 0 0 30px 30px; */
    box-shadow: 0 6px 7px rgba(0, 0, 0, .06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo{
    height:60px;
}

.menu-btn{
    background:none;
    border:none;
    font-size:22px;
    color:#0d2d86;
}

.order-btn{
    padding:7px 18px;
    background:var(--primary);
    border-radius:20px;
    color:#fff;
    text-decoration:none;
    font-size:14px;
}

/* تنظیمات دقیق HERO */
.hero-content .sub-title {
    color: var(--secondary);
    font-weight: 600; /* کمی ضخیم‌تر برای خوانایی بهتر */
    letter-spacing: 0.5px;
 font-size: 10px;
     background-color: #f8ebea;
    padding: 5px;
    border-radius: 11px;
    }
    @media (min-width: 768px) {
    .hero-content .sub-title {
        font-size: 13px;
    }
}
@media (min-width: 1200px) {
   .hero-content .sub-title {
        font-size: 15px;
    }
}



.hero-content h1 {
 font-size: 18px;
    font-weight: 800;
    line-height: 1.4;
    color: var(--secondary);
    margin: 5px 0;
}
@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 22px;
    }
}
@media (min-width: 1200px) {
    .hero-content h1 {
        font-size: 32px;
    }
}










.hero-content p {
 font-size: clamp(11px, 1vw, 18px);
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 10px;
}
    @media (min-width: 768px) {
.hero-content p {
        font-size: 13px;
    }
}
@media (min-width: 1200px) {
.hero-content p {
        font-size: 15px;
    }
}


/* دکمه‌ها - دقیقاً مشابه عکس */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-view,
.btn-order {
/* padding: 5px 13px; */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    min-width: 170px;
    min-height: 35px;
    justify-content: center;
}

.btn-view {
    background: #d3a097;
    color: #fff;
   
}

.btn-order {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

/* افکت هاور */
.btn-view:hover {
      background: #d3a097;
    color: #fff;
    transform: translateY(-1px);
}

.btn-order:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-1px);
}





.hero-wrapper{
    display:flex;
    align-items:center;
    gap:10px;
}

/* موبایل */
.hero-image-col{
    width:50%;
}

.hero-text-col{
    width:50%;
}

.hero-image{
    width:100%;
    max-width:250px;
        max-width:320px;
    margin-left:10px;
}

/* دسکتاپ */
@media (min-width: 992px){

.hero-wrapper{
    justify-content:center;
}

.hero-image-col{
    width:30%;
}

.hero-text-col{
    width:50%;
}

.hero-image{
    max-width:320px;
}

}







/* BRANDS */
.brands{
    padding:10px 0;
    text-align:center;
}

.brands h2{
    font-size:16px;
    font-weight:700;
    margin-top:10px;
}

.brandSwiper .swiper-slide{
    background:#fff;
    height:70px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}


/* تغییر رنگ نقطه‌های فعال به رنگ اصلی سایتت */
.swiper-pagination-bullet-active {
    background-color: var(--primary) !important;
    width: 25px !important; /* کشیده شدن نقطه فعال برای زیبایی */
    border-radius: 10px !important;
    transition: 0.3s;
}

/* فاصله دادن نقطه‌ها از اسلایدر */
.swiper-pagination {
    padding: 6px;
   bottom: 0px !important;
    position: relative !important;
}

















/* ===== CATEGORIES ===== */
.categories{
    padding:10px 0;
}

.pad1{
    padding: 2px !important;
    
}






.category-card{
    position:relative;
        flex-direction: row-reverse;
    height:120px;
    border-radius:10px;
    overflow:hidden;
    background-size:cover;
    background-position:center;
    display:flex;
    
    
 flex-direction:row-reverse;
    justify-content:space-between;
    padding: 20px 10px 20px 10px;
    transition:.3s ease;
}


.category-content{
   
        width: 45%;
       display:flex;
    flex-direction:column;
    justify-content:space-between;
    height:100%;
    color: #49443e; 
} 

/* عنوان بالا */
.category-content h3{
    font-size:14px;
    font-weight:700;
    margin:0;
}



/* دکمه پایین */
.category-content a{
    background:#fff;
    color:var(--primary);
    font-size:12px;
    font-weight:600;
    padding:6px 14px;
    border-radius:12px;
    text-decoration:none;
    display:inline-block;
    align-self:flex-start;
    transition:.3s;
}


.category-card h3{
    font-size:13px;
    font-weight:700;
    margin-bottom:8px;
        color: #49443e; 
            margin-right: 10px;

}

.category-card a{
    display:inline-block;
    background:#fff;
    color:var(--primary);
    font-size:12px;
    font-weight:600;
    padding:6px 14px;
    border-radius:12px;
    text-decoration:none;
    transition:.3s;
}

.category-card a:hover{
    background:var(--primary);
    color:#fff;
}

.category-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}


/* ===== FEATURES ===== */

.features{
    padding:15px 0;
    background:#fff;
    border-radius:40px 40px 0 0;
}

.feature-box{
    background:#f8f9ff;
    padding:8px;
    border-radius:20px;
    text-align:center;
    transition:.3s;
    height:88%;
}

.feature-box i{
    font-size:24px;
    color:var(--primary);
    margin-bottom:10px;
}

.feature-box h6{
    font-size:12px;
    font-weight:700;
    margin-bottom:5px;
}

.feature-box p{
    font-size:12px;
    color:#777;
}

.feature-box:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}



/* ========================
   Footer
======================== */


.nav-btn2{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 44px;
  border-radius:14px;
  background:#eef4d6;
}


.section-soft{
  background:linear-gradient(180deg,rgba(109,143,57,0.04),rgba(255,255,255,0.45));
}

.section-title{
  margin:0;
  text-align:center;
}

/* blog */

/*
.card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:20px;
  padding: 15px;

}
*/

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
      padding: 15px;

}

@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}







.blog-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid rgb(211 160 151);
  padding: 3px;
}

.blog-card img{
  width:100%;
  display:block;
  padding: 5px;
  border-radius: 15px;
}

.blog-hh{
  font-size:16px;
  padding:5px 14px 0;
}

.blog-pp{
  font-size:11px;
  padding:0px 3px;
  color:var(--muted);
}

.blog-btn{
border-style: solid;
    display: block;
    text-align: center;
    padding: 3px;
    margin: 3px;
    border-radius: 10px;
    /* background: linear-gradient(135deg, var(--primary), var(--primary-2)); */
    color: #b6746f;
    font-size: 12px;
    background-color: #f8ebea;
    border-width: 1px;
    border-color: #b6746f;
    text-decoration: none;
}
.blog-btn:hover{
    color: #5d3b38;
    text-decoration: none;
}

/* support */

.support-card{
 margin: 0 auto;
    padding: 20px;
    text-align: center;
    
    border-radius: 25px;
    border: 1px solid #d7a9a1;
    background-color: #faf5f2;
}

.support-title{
  font-size:22px;
  margin-bottom:15px;
}

.support-text{
  font-size:15px;
  opacity:.7;
  margin-bottom:25px;
}

.support-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    width: 100%;
    max-width: 280px;
    border-radius: 15px;
    /* background: linear-gradient(135deg, var(--primary), var(--primary-2)); */
    color: #fff;
    margin: 5px;
    background-color: #d3a097;
    text-decoration: none;
}

/* footer */

.footer{
background-color: #d3a097;
    color: #fff;
    padding: 1px 0 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:50px;
}

.footer-bottom{
     text-align: center;
     font-size: 12px;
    padding: 10px 0;
    margin-top: 5px;
    background: rgb(255 255 255 / 69%);
    color: #80665c;
}

/* responsive */

@media (max-width:768px){

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

}

#backToTop {
   position: fixed;
    bottom: 25px;
    left: 25px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #fff;
    /* background: linear-gradient(135deg, var(--primary), var(--primary-2)); */
    box-shadow: 0 10px 25px rgba(109, 143, 57, 0.3);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all .3s ease;
    background-color: burlywood;
}




/* =========================
   PRODUCTS PAGE
========================= */

.products-hero{
    padding: 20px 0 10px;
}

.products-hero-box{
    background: linear-gradient(135deg, #faf5f2, #fff);
    border: 1px solid #e4c5bf;
    border-radius: 24px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(153, 128, 119, 0.08);
}

.products-badge{
    display: inline-block;
    background: #f8ebea;
    color: var(--secondary);
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.products-hero-box h1{
    margin: 0 0 10px;
    font-size: 22px;
    color: var(--secondary);
    font-weight: 700;
}

.products-hero-box p{
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 2;
}

.products-section{
    padding: 10px 0 30px;
}

.products-toolbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    gap: 10px;
    flex-wrap: wrap;
}

.products-title{
    margin: 0;
    font-size: 20px;
    color: #49443e;
    font-weight: 700;
}

.products-count{
    font-size: 13px;
    color: #8a6d66;
    background: #f8ebea;
    padding: 6px 12px;
    border-radius: 999px;
}

.products-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.product-card{
    background: #fff;
    border: 1px solid #e5c5bf;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(153, 128, 119, 0.10);
    transition: .3s ease;
}

.product-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(153, 128, 119, 0.16);
}

.product-image-wrap{
    display: block;
    background: #fff;
    padding: 12px;
}

.product-image{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.product-body{
    padding: 0 14px 14px;
}

.product-code{
    display: inline-block;
    font-size: 12px;
    color: #8d6f67;
    background: #f9f1ef;
    padding: 5px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.product-name{
    font-size: 15px;
    font-weight: 700;
    color: #4f433f;
    line-height: 1.8;
    margin: 0 0 10px;
    min-height: 54px;
}

.product-price{
    font-size: 14px;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 14px;
}

.product-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 42px;
    border-radius: 12px;
    background: #d3a097;
    color: #fff;
    text-decoration: none;
    transition: .3s ease;
}

.product-btn:hover{
    background: #bc8d84;
    color: #fff;
}

@media (min-width: 768px){
    .products-hero-box h1{
        font-size: 28px;
    }

    .products-hero-box p{
        font-size: 15px;
    }
}



/* =========================
   SINGLE PRODUCT
========================= */

.single-product-section{
    padding:25px 0;
}

.single-product-wrapper{
    display:flex;
    flex-wrap:wrap;
    gap:30px;
    align-items:center;
}

.single-product-image{
    flex:1 1 350px;
}

.single-product-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(153,128,119,0.15);
}

.single-product-info{
    flex:1 1 350px;
}

.single-product-code{
    display:inline-block;
    font-size:13px;
    background:#f8ebea;
    color:var(--secondary);
    padding:6px 12px;
    border-radius:999px;
    margin-bottom:12px;
}

.single-product-info h1{
    font-size:24px;
    margin:0 0 12px;
    color:#49443e;
}

.single-product-price{
    font-size:18px;
    font-weight:700;
    color:var(--secondary);
    margin-bottom:15px;
}

.single-product-desc{
    font-size:14px;
    line-height:2;
    color:#555;
    margin-bottom:20px;
}

.single-product-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:45px;
    padding:0 25px;
    border-radius:12px;
    background:#d3a097;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.single-product-btn:hover{
    background:#bc8d84;
    color:#fff;
}

/* =========================
   RELATED PRODUCTS
========================= */

.related-section{
    padding:10px 0 40px;
}

.related-title{
    font-size:20px;
    margin-bottom:18px;
    color:#49443e;
}

.related-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

.related-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(153,128,119,0.10);
    border:1px solid #e5c5bf;
    transition:.3s;
}

.related-card img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
}

.related-body{
    padding:10px;
}

.related-code{
    font-size:11px;
    color:#8d6f67;
}

.related-body h3{
    font-size:13px;
    margin:4px 0;
    color:#4f433f;
}

.related-view{
    font-size:12px;
    color:#b6746f;
}

/* دسکتاپ */
@media (min-width:768px){

.related-grid{
    grid-template-columns:repeat(4,1fr);
}

.single-product-info h1{
    font-size:28px;
}

}


/* ======================
BLOG POST
======================*/

.blog-post-section{
padding:0px 0;
}

.blog-post-title{
font-size:26px;
margin-bottom:0px;
color:#49443e;
}

.blog-post-image{
width:100%;
border-radius:18px;
margin-bottom:20px;
}

.blog-post-content{
font-size:15px;
line-height:2.2;
color:#444;
}

.blog-post-content img{
width:100%;
border-radius:14px;
margin:20px 0;
}


/* ======================
OTHER POSTS
======================*/

.other-posts{
padding:30px 0;
}

.section-title{
font-size:20px;
margin-bottom:18px;
color:#49443e;
}

.blog-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:16px;
}

.blog-card{
background:#fff;
border-radius:16px;
overflow:hidden;
box-shadow:0 6px 18px rgba(153,128,119,0.12);
}

.blog-card img{
width:100%;
aspect-ratio:1.4;
object-fit:cover;
}

.blog-card h3{
font-size:14px;
line-height:1.8;
color:#4f433f;
}


/* ======================
RANDOM CARDS
======================*/

.random-cards{
padding:10px 0 40px;
}


/* دسکتاپ */

@media(min-width:768px){

.blog-grid{
grid-template-columns:repeat(3,1fr);
}

.blog-post-title{
font-size:32px;
}

}


/* =====================
CONTACT PAGE
=====================*/

.contact-section{
padding:25px 0 40px;
}

.contact-title{
font-size:26px;
margin-bottom:15px;
color:#49443e;
}

.contact-intro{
font-size:15px;
line-height:2.2;
margin-bottom:25px;
color:#555;
}

.contact-grid{
display:grid;
grid-template-columns:1fr;
gap:18px;
margin-bottom:25px;
}

.contact-box{
background:#fff;
border-radius:18px;
padding:18px;
border:1px solid #e5c5bf;
box-shadow:0 8px 22px rgba(153,128,119,0.10);
}

.contact-box h3{
font-size:16px;
margin-bottom:12px;
color:#49443e;
}

.contact-item{
display:flex;
align-items:center;
gap:10px;
padding:8px 0;
text-decoration:none;
color:#555;
font-size:14px;
}

.contact-item i{
color:#b6746f;
}

.contact-address{
font-size:14px;
line-height:2;
color:#555;
margin-bottom:10px;
}

.location-btn{
display:inline-flex;
align-items:center;
gap:8px;
padding:8px 14px;
border-radius:10px;
background:#d3a097;
color:#fff;
text-decoration:none;
font-size:13px;
}

.map-box{
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 30px rgba(153,128,119,0.15);
}

.map-box iframe{
width:100%;
height:320px;
border:0;
}


/* دسکتاپ */

@media(min-width:768px){

.contact-grid{
grid-template-columns:repeat(3,1fr);
}

.contact-title{
font-size:30px;
}

}


/* ======================
ALBUM PAGE
======================*/

.album-section { padding: 40px 0; }
.page-title { font-size: 24px; color: #49443e; margin-bottom: 30px; text-align: center; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* موبایل ۲تایی */
    gap: 15px;
}

.gallery-card {
    position: relative;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e5c5bf;
}

.gallery-card img {
    width: 100%;
    aspect-ratio: 1/1.2;
    object-fit: cover;
    transition: 0.4s;
}

.gallery-card:hover img { transform: scale(1.05); }

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(153,128,119,0.8);
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 70%;
    border-radius: 10px;
    border: 3px solid #fff;
}

.lightbox p { color: #fff; margin-top: 15px; font-size: 18px; }

.close-lightbox {
    position: absolute;
    top: 20px; right: 30px;
    color: #fff; font-size: 40px; cursor: pointer;
}

/* دسکتاپ */
@media (min-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}




.form-section{
padding:40px 0;
background:#faf7f4;
}

.form-box{
max-width:800px;
margin:auto;
background:#fff;
padding:30px;
border-radius:15px;
border:1px solid #e5c5bf;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.form-title{
font-size:22px;
color:#49443e;
margin-bottom:25px;
text-align:center;
}

.form-group{
margin-bottom:18px;
}

.form-group label{
display:block;
margin-bottom:6px;
font-size:14px;
color:#555;
}

.form-control{
width:100%;
padding:10px;
border:1px solid #d7bdb7;
border-radius:8px;
font-size:14px;
}

.form-control:focus{
outline:none;
border-color:#998077;
box-shadow:0 0 0 2px rgba(153,128,119,0.15);
}

.radio-group label,
.checkbox-group label{
margin-left:15px;
font-size:14px;
}

.form-buttons{
margin-top:25px;
display:flex;
gap:10px;
}

.btn-submit{
background:#998077;
color:#fff;
border:none;
padding:10px 20px;
border-radius:8px;
cursor:pointer;
}

.btn-submit:hover{
background:#7f675f;
}

.btn-back{
background:burlywood;
color:#fff;
padding:10px 20px;
border-radius:8px;
text-decoration:none;
display:inline-block;
}

.btn-back:hover{
background:#d4a76a;
}

@media (min-width:768px){

.form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:15px;
}

.full{
grid-column:1/3;
}

}

.error{
color:#d33;
font-size:13px;
margin-top:5px;
display:block;
}

.input-error{
border-color:#d33 !important;
}















/*=====================
ORDER RESULT
======================*/

.result-section{
padding:70px 15px;
background:#faf7f4;
}

.result-box{
max-width:520px;
margin:auto;
background:#fff;
padding:40px 30px;
border-radius:16px;
border:1px solid #e5c5bf;
text-align:center;
box-shadow:0 6px 25px rgba(0,0,0,0.05);
}

.result-icon{
width:85px;
height:85px;
line-height:85px;
border-radius:50%;
margin:0 auto 20px;
font-size:34px;
color:#fff;
}

.result-icon.success{
background:#998077;
}

.result-icon.error{
background:#d47b7b;
}

.result-title{
font-size:22px;
color:#49443e;
margin-bottom:12px;
}

.result-text{
font-size:14px;
color:#666;
line-height:1.9;
}

.btn-main{
display:inline-block;
margin-top:20px;
padding:10px 28px;
background:#998077;
color:#fff;
border-radius:10px;
text-decoration:none;
font-size:14px;
transition:0.3s;
}

.btn-main:hover{
background:#7f675f;
}

/* Header Navigation */
.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 5px;
}

.header-logo {
  display: inline-flex;
  align-items: center;
}

.logo {
  max-height: 58px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
}

.main-nav a {
  position: relative;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.main-nav a:hover {
  color: #9b6a3d;
  background: #fff4ea;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 14px;
  left: 14px;
  bottom: 5px;
  height: 2px;
  background: #c99a6b;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  white-space: nowrap;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: #fff4ea;
  color: #9b6a3d;
  font-size: 20px;
}

/* Breadcrumb */
.breadcrumb-section {
  background: #fffaf5;
  border-top: 1px solid rgba(201, 154, 107, 0.18);
  border-bottom: 1px solid rgba(201, 154, 107, 0.18);
  padding: 12px 0;
}

.breadcrumb-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 14px;
}

.breadcrumb-box li {
  display: inline-flex;
  align-items: center;
  color: #777;
}

.breadcrumb-box a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #9b6a3d;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-box a:hover {
  color: #6f4525;
}

.breadcrumb-box i {
  font-size: 12px;
}

.breadcrumb-box .active {
  color: #333;
  font-weight: 700;
}

/* Mobile Navigation */
@media (max-width: 991px) {
  .header-box {
    position: relative;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    background: #fff;
    border: 1px solid rgba(201, 154, 107, 0.18);
    border-radius: 18px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 12px 14px;
  }

  .main-nav a::after {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .logo {
    max-height: 48px;
  }

  .order-btn {
    padding: 9px 12px;
    font-size: 13px;
  }

  .breadcrumb-box {
    font-size: 13px;
  }
}


#mini-checkout-btn {
    position: fixed;
    right: 25px;
    bottom: 28px;
    z-index: 9999;
        font-weight: 700;

    background: #3d3230;
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    text-decoration: none;
border-style: double;
    border-width: thick;
    transition: 0.2s ease;
    animation: fadeInMini 0.3s ease;
}

#mini-checkout-btn:hover {
    background: #73504a;
    transform: translateY(-2px);
}

@keyframes fadeInMini {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* موبایل */
@media (max-width: 576px) {
    #mini-checkout-btn {
              right: 23px;
        bottom: 24px;
        font-size: 12px;
        padding: 12px 16px;
        font-weight: 700;
    }
}

.order-product-card{
    display:flex;
    align-items:center;
    gap:15px;

    background:#fff;
   
justify-content: center;
    max-width:420px;
    margin:0 auto 5px auto;
    padding: 15px 15px;
}

.order-product-image{
    width:140px;
    height:140px;
    flex-shrink:0;
}

.order-product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:10px;
}

.order-product-info{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.order-product-name{
    font-size:15px;
    font-weight:600;
    color:#b6746f;
}

.order-product-code{
    font-size:12px;
    color:#777;
}

.order-product-price{
    font-size:14px;
    font-weight:600;
    color:#b6746f;
}

.product-modal{
position:fixed;
inset:0;
background:rgba(0,0,0,0.45);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
}

.product-modal.active{
display:flex;
}

.product-modal-box{
background:#fefbfb;
padding:28px 24px;
border-radius:16px;
max-width:360px;
width:90%;
text-align:center;
box-shadow:0 20px 60px rgba(0,0,0,0.25);
animation:modalFade .25s ease;
}

.product-modal-box h3{
    color:#b6746f;
margin-bottom:10px;
font-size:18px;
font-weight: 700;

}

.product-modal-box p{
font-size:14px;
color:#555;
line-height:1.8;
margin-bottom:18px;
}

.product-modal-buttons{
display:flex;
gap:10px;
flex-wrap:wrap;
justify-content:center;
}

.btn-replace{
background:#917a70;
color:#fff;
border:none;
padding:9px 16px;
border-radius:10px;
cursor:pointer;
}

.btn-keep{
background:#d49f97;
color:#fff;

border:none;
padding:9px 16px;
border-radius:10px;
cursor:pointer;
}

@keyframes modalFade{
from{
opacity:0;
transform:translateY(10px);
}
to{
opacity:1;
transform:translateY(0);
}
}

.btn-cancel{
background:#7b7b7b;
color:#fff;
border:1px solid #ddd;
padding:9px 16px;
border-radius:10px;
cursor:pointer;
}

.btn-cancel:hover{
background:#676363;
}


.remove-product-btn{
position:absolute;
top:-8px;
left:-8px;
background:#ff4d4d;
color:#fff;
border:none;
padding:4px 10px;
font-size:12px;
border-radius:8px;
cursor:pointer;
box-shadow:0 2px 5px rgba(0,0,0,0.15);
transition:0.2s;
}

.remove-product-btn:hover{
background:#ff1f1f;
}



