* {
  box-sizing: border-box;
    font-family: Vazir, sans-serif;

}
html, body {
  overflow-x: hidden;
  font-family: Vazir, sans-serif;
    font-feature-settings: "locl" 1; /* enables Persian digit substitution */


}
html{
  font-family: Vazir, sans-serif;
}

.slider-track {
  flex-direction: row-reverse; /* فقط در صورت نیاز */
}

body {
  margin: 0;
   direction: rtl;
  background-color: #fff;
    font-family: Vazir, sans-serif;

}








/* سایدبار موبایل */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -293px; /* خارج از صفحه */
  width: 240px;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 15px;
  transition: right 0.4s ease;
}

.mobile-sidebar.open {
  right: 0; /* وارد صفحه شود */
}

/* دکمه بستن */
.close-btn {
  align-self: flex-start;
  background: none;
  border: none;
  font-size: 20px;
  color: #e3000f;
  cursor: pointer;
  margin-bottom: 10px;
}

.mobile-sidebar a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

/* پنهان‌سازی لینک‌های دسکتاپ در موبایل */
@media (max-width: 768px) {
  .nav-menu > a,
  .category-wrapper,
  .support,
  .account-area .btn:nth-child(1), /* ❤️ */
  .account-area .btn:nth-child(2)  /* 🛒 */ {
    display: none;
  }

  .hamburger {
    display: block;
    margin: 0 auto;
  }
}

/* =============== ریسپانسیو موبایل =============== */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
  }

  .logo-area {
    justify-content: center;
    width: 100%;
    margin: 0 0 0 42px;
  }

  .search-bar {
    width: 100%;
  }

  .account-area {
    width: 100%;
    justify-content: center;
  }

  /* فقط نمایش دکمه حساب کاربری */
  .account-area .btn:nth-child(1), /* ❤️ */
  .account-area .btn:nth-child(2)  /* 🛒 */ {
    display: none;
  }

  /* فقط نمایش دکمه همبرگر */
  .hamburger {
    display: block;
    background: #e3000f;
    color: #fff;
    font-size: 24px;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    margin: 0 auto;
  }

  /* پنهان کردن لینک‌های اصلی */
  .nav-menu > a,
  .category-wrapper,
  .support {
    display: none;
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 10px;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
  }

  .mobile-menu.open {
    display: flex;
    padding: 15px;
    max-height: 400px;
    opacity: 1;
  }

  .mobile-menu a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    padding: 8px 0;
    text-align: center;
  }
}

.nav-menu a i {
  margin-left: 5px;
  color: #888;
  transition: color 0.3s ease;
}

.nav-menu a:hover i {
  color: red;
}

/* بخش برترین دسته بندی */

.category-section {
  margin: 80px auto;
  max-width: 1200px;
  padding: 30px;
  background: #f7faff;
  border-radius: 28px;
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
  position: relative;
}

.category-header h2 {
  font-size: 20px;
  font-weight: bold;
}

.category-header h2 span {
  color: #005eff;
}

.category-header .subtitle {
  font-size: 12px;
  color: #999;
  position: absolute;
  bottom: -18px;
  right: 0;
}

.more-btn {
  background: #eef1f6;
  border: none;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 18px;
  cursor: pointer;
}

.category-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-around;
}

.category-item {
  background: #fff;
  border-radius: 24px;
  padding: 25px 20px;
  width: 140px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.category-item.active {
  background: #006aff;
  color: #fff;
}

.category-item .cat-img {
  width: 90px;
  height: 90px;
  margin: 0 auto 15px;
  background: #f1f1f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-item img {
  width: 60%;
  height: auto;
  object-fit: contain;
}

.category-item h3 {
  font-size: 14px;
  margin-bottom: 6px;
}

.category-item span {
  font-size: 13px;
  color: #777;
  background: #eef3f9;
  padding: 5px 10px;
  border-radius: 10px;
  display: inline-block;
}

.category-item.active span {
  background: #fff;
  color: #006aff;
}


/* محصولات اول */
.product-showcase {
  background: #f5f8fe;
  padding: 60px 20px;
  direction: rtl;
}

.showcase-wrapper {
  display: flex;
  max-width: 1300px;
  margin: auto;
  gap: 30px;
  background: #fff;
  border-radius: 32px;
  padding: 40px;
  overflow: hidden;
  flex-wrap: wrap;
}

.product-info {
  width: 300px;
  background: #007bff;
  color: white;
  border-radius: 24px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
}

.product-info h2 {
  font-size: 24px;
}
.product-info .sub {
  font-size: 14px;
  margin: 8px 0;
  color: #cce4ff;
}
.product-info .desc {
  font-size: 13px;
  line-height: 2;
}

.slider-nav {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: white;
  color: #007bff;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.product-cards {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-behavior: smooth;
  flex: 1;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-inline: 10px;
}

.product-card {
  scroll-snap-align: start;
  background: #fff;
  border-radius: 24px;
  padding: 20px;
  min-width: 220px;
  flex-shrink: 0;
  position: relative;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.product-card img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  margin-bottom: 10px;
}

.discount {
  position: absolute;
  top: 0;
  right: 0;
  background: #ffa500;
  color: white;
  padding: 4px 10px;
  border-top-left-radius: 12px;
  border-bottom-right-radius: 12px;
  font-size: 12px;
}

.product-card h3 {
  font-size: 15px;
  margin: 10px 0 5px;
}
.product-card .model {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}

.price {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.price del {
  color: #aaa;
  font-size: 12px;
}
.price strong {
  background: #007bff;
  color: white;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 14px;
  margin-top: 6px;
}

/* === ریسپانسیو === */
@media (max-width: 992px) {
  .showcase-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .product-info {
    width: 100%;
    border-radius: 20px;
    text-align: center;
  }

  .slider-nav {
    justify-content: center;
  }

  .product-cards {
    flex-wrap: nowrap;
  }
}


/* بنر */
.promo-banner {
  display: flex;
  gap: 20px;
  padding: 50px 20px;
  max-width: 1300px;
  margin: auto;
  flex-wrap: wrap;
  justify-content: center;
}

.banner-box {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  flex: 1 1 48%;
  min-width: 300px;
  height: 240px;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  cursor: pointer;
}

.banner-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 24px;
}

.banner-box:hover img {
  transform: scale(1.1);
}

.banner-content {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: #333;
  text-align: right;
  z-index: 2;
}

.banner-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.banner-content p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #444;
}

.banner-content button {
  background-color: #333;
  color: white;
  padding: 8px 20px;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.banner-content button:hover {
  background-color: #000;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .promo-banner {
    flex-direction: column;
  }

  .banner-box {
    height: 200px;
  }

  .banner-content {
    right: 10px;
    text-align: center;
  }

  .banner-content h3 {
    font-size: 18px;
  }
}


/* مزایای فروشگاه*/
.benefits {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 50px 20px;
  max-width: 1300px;
  margin: auto;
  gap: 30px;
  text-align: center;
  background: none; /* حذف پس‌زمینه */
}

.benefit-box {
  flex: 1 1 200px;
  max-width: 250px;
}

.icon {
  width: 70px;
  height: 70px;
  border: 2px solid #ef2b50;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 28px;
  color: #ef2b50;
}

.benefit-box h3 {
  font-size: 18px;
  margin: 10px 0;
  color: #222;
  font-weight: bold;
}

.benefit-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* هاور انیمیشن */
.benefit-box:hover .icon {
  background-color: #ef2b50;
  color: white;
}

/* ریسپانسیو */
@media (max-width: 768px) {
  .benefits {
    flex-direction: column;
    gap: 40px;
  }
}




/* نظرات*/

.testimonial-section {
  background: #f5f8fe;
  padding: 80px 20px;
  text-align: center;
  direction: rtl;
}

.title-box {
  margin-bottom: 40px;
}

.title-icon {
  font-size: 28px;
  color: #007bff;
  margin-bottom: 10px;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  color: #007bff;
}

.section-subtitle {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 25px;
  max-width: 320px;
  margin: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s;
  text-align: right;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.user-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #007bff;
  object-fit: cover;
}

.stars {
  color: #f5a623;
  font-size: 16px;
  direction: ltr;
}

.comment-text {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}

.swiper {
  max-width: 1100px;
  margin: auto;
  padding-bottom: 70px;
}

.swiper-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.custom-btn {
  width: 40px;
  height: 40px;
  background: #007bff;
  border-radius: 50%;
  color: white;
  position: static !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #007bff;
}

/* ریسپانسیو */
@media (max-width: 768px) {
  .testimonial-card {
    max-width: 95%;
  }

  .swiper-controls {
    flex-wrap: wrap;
  }
}


/* اخرین مطلب */
.latest-articles {
  background: #f9fbfd;
  padding: 40px 20px;
  border-radius: 24px;
  margin-top: 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-controls button {
  background: #f0f2f5;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 18px;
  cursor: pointer;
}

.articles-wrapper {
  display: flex;
  gap: 43px;
  overflow-x: auto;
  scroll-behavior: smooth;
  justify-content: center;
  align-items: center;
}

.article-card {
  min-width: 260px;
  background: white;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  flex-shrink: 0;
  text-align: right;
}

.thumb {
  background: #ccc;
  height: 120px;
  border-radius: 12px;
  position: relative;
  margin-bottom: 12px;
}

.date {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #007bff;
  color: white;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
}

.article-card h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

/* اخرین محصولات ما */
.latest-products-section {
  background: #fff;
  padding: 40px 20px;
  direction: rtl;
}

.latest-products-wrapper {
  max-width: 1200px;
  margin: auto;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.section-header h2 {
  font-size: 20px;
  color: #333;
}

.section-header i {
  margin-left: 6px;
  color: #d91645;
}

.more-products-btn {
  background: #4fc3f7;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s;
}

.more-products-btn:hover {
  background: #0288d1;
}

/* اسکرول محصولات */
.products-scroll {
  position: relative;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  background: #0d1117;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.product-row {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.product-card {
  min-width: 280px;
  background: #f1f7fd;
  padding: 20px;
  border-radius: 20px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-card h3 {
  font-size: 15px;
  margin-bottom: 10px;
  color: #333;
}

.price-row {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-row del {
  color: #999;
  font-size: 14px;
  margin-bottom: 6px;
  text-decoration: line-through;
}

.price-row strong {
  background: #007bff;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 16px;
}

.product-card img {
  max-width: 90px;
  height: auto;
  margin-top: 15px;
}

/* فوتر */
.ir-footer {
  background: #fff;
  color: #333;
  font-family: sans-serif;
  padding: 40px 20px 0;
  border-top: 3px solid #f2f2f2;
}

.footer-wrapper {
  max-width: 1200px;
  margin: auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
}

.footer-top .footer-item {
  flex: 1;
  margin: 10px;
}

.footer-top .logo img {
  width: 60px;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 40px 0;
}

.link-column h4 {
  margin-bottom: 12px;
  font-size: 16px;
}

.link-column ul {
  list-style: none;
  padding: 0;
}

.link-column ul li {
  margin-bottom: 8px;
}

.link-column ul li a {
  color: #555;
  text-decoration: none;
  transition: 0.3s;
}

.link-column ul li a:hover {
  color: #d91645;
}

.footer-note {
  background: #ef2b50;
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  margin: 0 auto 20px;
  width: fit-content;
  font-weight: bold;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
  padding: 20px 0 40px;
}

.footer-badges img {
  width: 100px;
  margin: 0 10px;
}

.footer-about {
  flex: 1;
  max-width: 600px;
  color: #444;
}

.footer-about h4 {
  margin-bottom: 10px;
  color: #ef2b50;
}

@media (max-width: 768px) {
  .footer-top,
  .footer-links,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-badges {
    margin-bottom: 20px;
  }
}









/* بخش 2 */

    body{
         font-family: 'Vazirmatn', sans-serif;
    }

.shogoon-box {
  background: #fefefe;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 24px;
  flex: 1;
  position: relative;
}


.midoon-col {
  min-width: 160px;
  padding: 0 16px;
  text-align: center;
}

.midoon-col h4 {
  font-size: 17px;
  margin-bottom: 10px;
  color: #333;
  border-right: 3px solid #007bff;
  padding-right: 6px;
  display: inline-block;
  font-weight: 700;
}

.midoon-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.midoon-col li {
  color: #666;
  font-size: 14.5px;
  margin-bottom: 6px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.midoon-col li:hover {
  color: #007bff;
  transform: translateX(-4px);
}








/* نوار دسته بندی */
.gav-nav {
  background: white;
  padding: 10px 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
  position: relative;
}
.gav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.gav-item {
  background: #f1f5f9;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 14px;
  cursor: pointer;
}
.gav-item.active {
  background: #007bff;
  color: white;
}
.gav-cart {
  background: #007bff;
  color: white;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 16px;
}

/* مگا منو */
.mega-shogoon {
  display: none;
  position: absolute;
  top: 100%;
  right: 44px;
  width: calc(100% - 88px);
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 24px;
  z-index: 100;
}
.hover-wrapper:hover .mega-shogoon {
  display: flex;
}
.with-mega:hover .mega-shogoon {
  display: flex;
  background: #f2f6fc;
}
.shogoon-left {
  width: 220px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 15px 15px;
  border-radius: 12px;
}



/* تصویر سمت چپ */
.shogoon-thumb {
  min-width: 180px;
  max-width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.shogoon-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.shogoon-cat {
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  background: transparent;
}
.shogoon-cat.active,
.shogoon-cat:hover {
  background: #007bff;
  color: white;
}
.shogoon-right {
  display: flex;
  gap: 60px;
  flex: 1;
  margin-right: 20px;
}
.under-part h4 {
  border-right: 3px solid #007bff;
  padding-right: 6px;
  margin-bottom: 10px;
}
.under-part ul {
  list-style: none;
  padding: 0;
}
.under-part li {
  margin-bottom: 6px;
  font-size: 14px;
  color: #444;
}





.gav-item:hover {
  background-color: #d0e9ff !important;
  transition: background-color 0.3s ease, transform 0.2s ease;
}


/* برای لوازم خانگی */
.lavan-gangi {
  position: relative;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  
}
.lavan-gangi:hover {
  background-color: #cbd5e3;
  color: #007bff;
  transition: 0.3s;
  border-radius: 30px;
}


.zorat-submenu {
  display: none;
  position: absolute;
  right: 100%;
  top: 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
  padding: 12px;
  min-width: 160px;
  z-index: 99;
}

.zorat-submenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.zorat-submenu li {
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
  transition: 0.2s;
}

.zorat-submenu li:hover {
  color: #007bff;
  transform: translateX(-4px);
}

.lavan-gangi:hover .zorat-submenu {
  display: block;
}



/* منو آبشاری */
.hover-dropdown {
  position: relative;
}

.dropmenu-box {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  z-index: 100;
  min-width: 180px;
}

.dropmenu-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropmenu-box li {
  font-size: 15px;
  color: #333;
  padding: 8px 0;
  border-right: 5px solid transparent;
  position: relative;
  padding-right: 12px;
  transition: 0.3s;
}

.dropmenu-box li::before {
  content: "●";
  color: #ccc;
  position: absolute;
  right: 0;
  font-size: 12px;
}

.dropmenu-box li:hover {
  color: #007bff;
  transform: translateX(-4px);
}

.hover-dropdown:hover .dropmenu-box {
  display: block;
}




    body {
      margin: 0;
      background-color: #f5f7fa;
      font-family: sans-serif;
    }

    .slider-wrapper {
      position: relative;
      width: 100%;
      max-width: 1200px;
      margin: 60px auto;
      overflow: hidden;
      height: 400px;
      border-radius: 32px;
    }

 .slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;

}

.slider-box {
  min-width: 100%;
  height: 100%;
  position: relative;
  background: linear-gradient(to left, #fff, #ffda72);
}


    .slider-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 32px;
    }

    .circle-area {
      position: absolute;
      bottom: 2px;
      right: -10px;
      width: 222px;
      height: 90px;
      background: #f5f7fa;
      border-top-left-radius: 351px;
      border-top-right-radius: 119px;
      z-index: 1;
    }

    .icons {
      position: absolute;
      bottom: 5px;
      right: -1px;
      display: flex;
      gap: 14px;
      z-index: 2;
    }

    .icon {
      width: 58px;
      height: 58px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s ease;
      cursor: pointer;
    }

    .icon:hover {
      transform: scale(1.08);
    }

    .icon img {
      width: 28px;
      height: 28px;
    }
    @media (max-width: 768px) {
  .slider-wrapper {
    height: 240px;
    border-radius: 16px;
  }

  .slider-image {
    border-radius: 16px;
  }

  .nav-buttons {
    bottom: 10px;
    left: 10px;
    gap: 8px;
  }

  .nav-button {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .circle-area {
    display: none; /* می‌تونیم توی موبایل حذف کنیم */
  }

  .icons {
    gap: 8px;
    bottom: 6px;
    right: 6px;
  }

  .icon {
    width: 42px;
    height: 42px;
  }

  .icon img {
    width: 20px;
    height: 20px;
  }
}


    .nav-buttons {
      position: absolute;
      bottom: 20px;
      left: 20px;
      display: flex;
      gap: 12px;
      z-index: 3;
    }

    .nav-button {
      width: 42px;
      height: 42px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
