body {
    margin: 0;
    font-family: Tahoma, sans-serif;
    /* background-color: #fff; */
    overflow-x: hidden;
        width: 100%;
}
a{
    text-decoration: none;
    color: #000;
}
li{
    list-style-type: none;
}
/*header code*/
/* ----- پایه هدر ----- */

.header{
  background-color: #ffffff;
  padding: 10px 20px;
  position: relative;
  z-index: 100;
}

.header-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  
}

.header-right{
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo{
  width: 150px;
  height: 90px;
}

.menu-togglee {
display: none; /* ابتدا مخفی */
font-size: 30px;
cursor: pointer;
}

.header-left{
  display: flex;
  gap: 25px;
  align-items: center;
  flex-wrap: wrap;
}
.auth-buttons {
  border: 1px solid #ccc;
  display: flex;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  gap: 4px;
}


.register-btn, .login-btn {
  background-color: transparent;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  padding: 8px 8px; /* کوچک و جمع و جور */
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.register-btn {
  color: #c00000;
}

.register-btn:hover {
  color: #ff4d4d;
  transform: translateY(-1px);
}

.login-btn {
  color: #333333;
}

.login-btn:hover {
  color: #ff4d4d;
  transform: translateY(-1px);
}
.auth-buttons p {
  margin: 0 4px; /* فاصله کم بین دکمه‌ها و اسلش */
  color: #555; /* رنگ ملایم و مینیمال */
  user-select: none; /* نشه انتخابش کرد */
}

/* Wrapper هدر جستجو */
.search-wrapper {
  position: relative;
  width: 550px; /* تمام فضای والد */
  max-width: 400px; /* محدود کردن حداکثر عرض */
  display: flex;
  align-items: center;
}

/* فرم جستجو */
.search-form {
  display: flex;
  width: 100%;
  position: relative;
}

/* Input جستجو */
.search-input {
  flex: 1;
  padding: 10px 45px 10px 12px; /* فضای کافی برای دکمه */
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  height: 50px; /* ارتفاع ثابت */
  outline: none;
  box-sizing: border-box;
}

/* دکمه جستجو */
.btn-search {
  position: absolute;
  right: 350px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background-color: #fff;
  color: #fff;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* نتایج جستجو */
.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* هر آیتم جستجو */
.search-item {
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #eee;
}

.search-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
}

.search-item.no-result {
  color: red;
  text-align: center;
  padding: 10px;
}


.header-left a {
  margin-left: 15px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}


.divider1 {
  width: 2px;
  height: 37px;
  background-color: #000;
}

.header-main{
  border-bottom: 1px solid #ccc;
}


.category-menu {
  background-color: #fff;
  padding: 10px 20px;
  font-family: sans-serif;
  
}

/* منو اصلی افقی دسکتاپ */
.category-menu > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.category-item {
  position: relative;
  padding: 5px 10px;
  cursor: pointer;
}

.category-item:hover {
  background-color: #f2f2f2;
  border-radius: 5px;
}

.subcategory {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  min-width: 150px;
  padding: 5px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 1000;
}

.subcategory li {
  padding: 8px 15px;
  white-space: nowrap;
}

.category-item:hover .subcategory {
  display: block;
}
a{
    text-decoration: none;
    color: #000;
}
.slider {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .slide {
    min-width: 100%;
    position: relative;
    display: none; /* فقط اسلاید فعال نمایش داده می‌شود */
  }
  
  .slide.active {
    display: block;
  }
  
  .slide img {
    width: 100%;
    display: block;
    border-radius: 10px;
  }
  
  .slide-caption {
    position: absolute;
    bottom: 15px;
    left: 20px;
    color: white;
    background: rgba(0,0,0,0.5);
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 18px;
  }
  /* اسلایدر محصولات جدید - دسکتاپ */
.slider-products {
  display: flex;
  align-items: center; /* وسط چین شدن دکمه‌ها با کارت‌ها */
  gap: 10px;
}

.products-wrapper {
  display: flex;      /* کنار هم بودن کارت‌ها */
  flex-wrap: nowrap;   /* جلوگیری از رفتن کارت‌ها به خط بعد */
  overflow-x: auto;    /* اسکرول افقی */
  gap: 10px;
  padding: 10px 0;
  scroll-behavior: smooth;
  flex: 1;             /* فضای باقی مانده بین دکمه‌ها */
}

/* دکمه‌های قبلی و بعدی */
.prev-btn, .next-btn {
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}
/* پیشنهاد شگفت انگیز - دسکتاپ */
.slider-amazing {
  display: flex;
  align-items: center;
  gap: 10px;
}

.amazing-wrapper {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 10px;
  padding: 10px 0;
  scroll-behavior: smooth;
  flex: 1;
}

/* دکمه‌ها */
.prev-amazing, .next-amazing {
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}

/* مخفی کردن اسکرول بار */
.amazing-wrapper::-webkit-scrollbar {
  display: none;
}
.amazing-wrapper {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* مخفی کردن اسکرول بار در مرورگرها */
.products-wrapper::-webkit-scrollbar {
  display: none;
}
.products-wrapper {
  -ms-overflow-style: none;  /* IE و Edge */
  scrollbar-width: none;     /* Firefox */
}

  /* دکمه‌ها */
  .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 30px;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    
  }
  
  .prev { left: 10px; }
  .next { right: 10px; }
  
  /* نقاط پایین اسلایدر */
  .dots {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
  }
  
  .dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
  }
  
  .dot.active {
    background-color: #717171;
  }
  /*main code*/
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* بقیه CSS محصولات همان قبلی است */
.products-section {
  padding: 30px 20px;
  border-radius: 10px;
  margin: 20px 0;
}

.products-section h2 {
  margin-bottom: 20px;
  font-size: 24px;
  text-align: right;
}

/* پس زمینه متفاوت */
.amazing {
  background-color: #d32f2f; /* رنگ ملایم قرمز/صورتی */
}

.newest {
  background-color: #fff;
  /*رنگملایمآبی*/border-bottom: 1px solid #ccc;
  border-radius:0 ;
  -webkit-border-radius:0 ;
  -moz-border-radius:0 ;
  -ms-border-radius:0 ;
  -o-border-radius:0 ;
  height: auto;
}
.title-newest{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
}
 .title-newest a {
  font-size: 20px;
 }
/* گرید محصولات */
.products-grid {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.product-card {
  background: white;
  /*padding: 5px;
  */border-radius: 7px;
  width:250px;
  height: 310px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}


.product-card img {
  width: 55%;
  border-radius: 10px;
}

.product-card h3 {
  margin: 10px 0 5px;
  font-size: 18px;
}

.product-card p {
  font-size: 14px;
  color: #555;
}

.product-card .price {
  display: block;
  margin: 10px 0;
  font-weight: bold;
  color: #e60023;
}

.btn-add {
  padding: 8px 12px;
  background-color: #e60023;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn-add:hover {
  background-color: #b3001a;
}
 .beners{
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
 } 
 .bener-img{
  width: 100%;
  
 }
 /*footer code*/
 .footer{
background: #cccccc;
    color: #000 !important;
 }
 .email-field{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 2px solid #ccc;
 }
 .email-title-div{
  margin-right: 150px;
 }
 .email-input{
  margin-left: 200px;
 }
 .input-email{
  width: 450px;
  height: 35px;
 }
 
 .footer a {
     color: #000 !important;
     text-decoration: none;
 }

 /* لینک‌ها هنگام هاور */
 .footer a:hover {
     color: #ff6600 !important;
     /* دلخواه */
 }

 /* آیکون‌ها */

 .email-field{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 2px solid #ccc;
 }
 .email-title-div{
  margin-right: 150px;
 }
 .email-input{
  margin-left: 200px;
 }
 .input-email{
  width: 450px;
  height: 35px;
 }
 .btn-email{
  width: 115px;
  height: 40px;
  background-color: #0277BD;
  color: #fff;
  border: 1px solid #0277BD;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  font-size: 17px;
  cursor: pointer;
}
.logo-footer{
 width: 100px;
 height: 100px;
}
.abutus-paragraph{
  line-height: 25px;
  font-size: 17px;
}
.footer-page{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr; /* چهار ستون مساوی */
  gap: 30px;
  padding: 40px 35px;
  box-sizing: border-box;
}
.copy_rigth{
  text-align: center;
  padding: 10px;
}
.contact-us {
  color: #fff;
  padding: 40px 20px;
}

.contactus-div {
  max-width: 500px;
  margin: auto;
}

.contactus-title {
  margin-top: 1px;
  margin-bottom: 70px;
  margin-top: -20px;
  font-size: 1.3rem;
}

.contact-links {
  display: flex;       /* قرار دادن لینک‌ها در یک ردیف */
  flex-direction: column; /* عمودی بودن */
  gap: 25px;           /* فاصله بین لینک‌ها */
  margin-bottom: 15px; /* فاصله با آدرس */
}

.contact-links a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-links a:hover {
  color: #FF6600; /* تغییر رنگ هنگام هاور */
}

.address {
  font-size: 1rem;
  line-height: 2;
}
.page-title {
  margin-top: 20px;
  font-size: 18px;
  color: #fff;
}

.page-link {
  display: flex;
  flex-direction: column; /* لینک‌ها زیر هم */
  margin-top: 70px; /* فاصله بین عنوان و لینک‌ها */
}

.linkfooter {
  color: #fff;
  margin-bottom: 28px; /* فاصله بین لینک‌ها */
  text-decoration: none;
}

.linkfooter:hover {
  text-decoration: underline;
}
.Licenses-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-top: 40px;
}
.social-title{
  margin-top: -20px;
}
.social-title,
.license-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 50px;
  margin-right: 70px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* رنگ‌بندی هر شبکه */
.facebook { background-color:#0088cc; }
.instagram { background-color: #e1306c; } 
.twitter { background-color: #1da1f2; }
.telegram { background-color: #B2EBF2; }

/* افکت هاور */
.social-icon:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

/* استایل مجوزها */
.license-title{
  margin-right: 70px;
}
.licenses {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-right:70px;
}

.license-img {
  width: 80px;
  height: auto;
}
.insta-img{
  width: 30px;
  height: 30px;
}
.tel-img{
  width: 40px;
  height: 40px;
}
 .btn-email{
  width: 115px;
  height: 40px;
  background-color: #0277BD;
  color: #fff;
  border: 1px solid #0277BD;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  font-size: 17px;
  cursor: pointer;
}
.logo-footer{
 width: 100px;
 height: 100px;
}
.abutus-paragraph{
  line-height: 25px;
  font-size: 17px;
}
.footer-page{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr; /* چهار ستون مساوی */
  gap: 30px;
  padding: 40px 35px;
  box-sizing: border-box;
}
.copy_rigth{
  text-align: center;
  padding: 10px;
}
.contact-us {
  color: #fff;
  padding: 40px 20px;
}

.contactus-div {
  max-width: 500px;
  margin: auto;
}

.contactus-title {
  margin-top: 1px;
  margin-bottom: 70px;
  margin-top: -20px;
  font-size: 1.3rem;
  color: #000;
}

.contact-links {
  display: flex;       /* قرار دادن لینک‌ها در یک ردیف */
  flex-direction: column; /* عمودی بودن */
  gap: 25px;           /* فاصله بین لینک‌ها */
  margin-bottom: 15px; /* فاصله با آدرس */
}

.contact-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-links a:hover {
  color: #FF6600; /* تغییر رنگ هنگام هاور */
}

.address {
  font-size: 1rem;
  line-height: 2;
  color: #000;
}
.page-title {
  margin-top: 20px;
  font-size: 18px;
  color: #000;
}

.page-link {
  display: flex;
  flex-direction: column; /* لینک‌ها زیر هم */
  margin-top: 70px; /* فاصله بین عنوان و لینک‌ها */
}

.linkfooter {
  color: #fff;
  margin-bottom: 28px; /* فاصله بین لینک‌ها */
  text-decoration: none;
}

.linkfooter:hover {
  text-decoration: underline;
}
.Licenses-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-top: 40px;
}
.social-title{
  margin-top: -20px;
}
.social-title,
.license-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 50px;
  margin-right: 70px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* رنگ‌بندی هر شبکه */
.facebook { background-color:#0088cc; }
.instagram { background-color: #e1306c; } 
.twitter { background-color: #1da1f2; }
.telegram { background-color: #B2EBF2; }

/* افکت هاور */
.social-icon:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

/* استایل مجوزها */
.license-title{
  margin-right: 70px;
}
.licenses {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-right:70px;
}

.license-img {
  width: 80px;
  height: auto;
}
.insta-img{
  width: 30px;
  height: 30px;
}
.tel-img{
  width: 40px;
  height: 40px;
}
/*login page*/
.search-toggle{
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
.search-overlay{
  display: none;
}
.icon img{
  width: 30px;
  height: 30px;
  display: none;
}
.bottom-nav {
  display: none;
  overflow-X: hidden;
}

.profile-menu {
  position: relative;
  display: inline-block;
}

.profile-btn {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  transition: background-color 0.3s ease;
}

.profile-btn:hover {
  background-color: #0056b3;
}

.dropdown {
  display: none;
  position: absolute;
  top: 45px;
  right: -50px;
  background-color: white;
  min-width: 155px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-radius: 12px;
  z-index: 1000 !important;
  overflow: hidden;
  animation: fadeIn 0.2s ease;
}

.dropdown a {
  display: block;
  color: #333;
  padding: 10px 14px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.dropdown a:hover {
  background-color: #f5f5f5;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-5px);}
  to {opacity: 1; transform: translateY(0);}
}
/* overlay */
/* پس‌زمینه اورلی */
/* پس‌زمینه اورلی */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: flex-start;
  z-index: 1002;
  padding-top: 100px;
  flex-direction: column;
  align-items: center;
}

/* دکمه بستن */
#closeSearch {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ff4d4d;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 5px 8px;
  font-size: 16px;
  cursor: pointer;
  z-index: 1100;
}

/* جعبه جستجو */
.search-box {
  position: relative;
  width: 90%;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* دکمه جستجو (سمت چپ input) */
.search-box button {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: white;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* اینپوت جستجو */
#searchMobile {
  width: 100%;
  padding: 12px 15px 12px 50px; /* فضای سمت چپ برای دکمه */
  font-size: 16px;
  border: none;
  border-radius: 50px;
  outline: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: width 0.3s ease;
}

/* نتایج جستجو */
#searchResultsMobile {
  position: absolute;
  top: calc(100% + 10px); /* درست زیر input */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 500px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: none;
  max-height: 250px;
  overflow-y: auto;
  z-index: 1003;
}

/* آیتم‌های نتیجه */
.search-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.search-item img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
}

.search-item a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.search-item.no-result {
  text-align: center;
  color: red;
  padding: 15px;
}

/* واکنش‌گرا برای موبایل کوچک */
@media (max-width: 480px) {
  .search-box {
    width: 95%;
  }

  #searchMobile {
    font-size: 14px;
    padding: 10px 12px 10px 45px;
  }

  .search-box button {
    width: 32px;
    height: 32px;
    left: 10px;
  }

  #searchResultsMobile {
    width: 95%;
    max-height: 220px;
  }
}
