
.bg-dark {
    background-color:  #d1f6e5 !important;
}
.text-dark {
    color:  #474242 !important;
        
      }
      
.text-justify {
  text-align: justify;
  text-justify: inter-word;
}
li:hover {
  background-color: #a19797;
}
.gallery {
  border: 1px solid #ccc;
}

.gallery:hover {
  border: 1px solid #777;
}

.gallery img {
  width: 100%;
  height: auto;
}

.desc {
  padding: 15px;
  text-align: center;
}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 0 6px;
  float: left;
  width: 24.99999%;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;

.search{
  margin:0px;
  padding:0px;
  box-sizing: border-box;
  font-family:'B Mitra' ;
  display:flex;
  justify-content: center;
  background-color: #f4f4f4;
}
.search-container{
  margin-top:100px;
  position:relative;
}
.search-container input{
  width: 350px;
  font-size: 18px;
  padding: 10px 20px;
  border-radius:10px;
  border:none;
  box-shadow: 0px 2px 5px rgba(0,0,0,0.2 );
  transition:0.4s ease-in-out;
}
.search-container input:focus{
  width:450px;
}
.search-container i {
  positon: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: #555;
  cursor: pointer;
}

{
  margin:0;
  padding: 0;
  box-sizing:border-box;
  font-family: "poppins", sans-serif;
}

.wrapper{
    width:420px;
    background: transparent;
    border: 5px solid rgba(255,255,255,.2);
    background-filter: blur(20px);
    color: #fff;
    border-radius: 10px;
  }
  *{
    box-sizing: border-box;
  }

  body{
    background-color:#f2f2f2;
    direction:rtl;
    font-family:tahoma;
  }

  input[type="text"],input[type="password"], select{
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  input[type=submit] {
    width: 100%;
    background-color: #069661;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  input[type=submit]:hover {
    background-color: #087e52;
  }

  div.MyBox{
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 2px 5px 30px rgba(0,0,0,.1);
    padding: 20px;
    max-width:600px;
    margin:10px auto;
  }

  h2.login_title{
    text-align:center;
  }
// ... existing code ...

  /* اضافه کردن استایل‌های جدید در بخش style */
.decorative-elements {
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

  .balloon {
    position: absolute;
    animation: float 15s ease-in-out infinite;
  }

  .balloon-1 {
    top: 10%;
    left: 5%;
    font-size: 30px;
    color: var(--primary-color);
    transform-origin: bottom center;
  }

  .balloon-2 {
    top: 15%;
    right: 8%;
    font-size: 25px;
    color: var(--secondary-color);
    animation-delay: -7s;
  }

  .cloud {
    position: absolute;
    color: #ffffff;
    opacity: 0.8;
    animation: drift 20s linear infinite;
  }

  .cloud-1 {
    top: 25%;
    left: 15%;
    font-size: 35px;
    animation-delay: -5s;
  }

  .cloud-2 {
    top: 40%;
    right: 10%;
    font-size: 28px;
    animation-delay: -12s;
  }

  @keyframes float {
    0%, 100% {
      transform: translateY(0) rotate(3deg);
    }
    50% {
      transform: translateY(-20px) rotate(-3deg);
    }
  }

  @keyframes drift {
    from {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(100vw);
    }
  }

  .product-card {
    position: relative;
    overflow: visible;
  }

  .product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
  }

  .product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
  }

  .action-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .action-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
  }

  .add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
  }

  .add-to-cart-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
  }

  .header-decoration {
    position: relative;
    margin-bottom: 50px;
  }

  .header-decoration::before,
  .header-decoration::after {
    content: '🎈';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    animation: bounce 2s ease-in-out infinite;
  }

  .header-decoration::before {
    left: 20%;
  }

  .header-decoration::after {
    right: 20%;
  }

  @keyframes bounce {
    0%, 100% {
      transform: translateY(-50%);
    }
    50% {
      transform: translateY(-70%);
    }
  }

// ... existing code ...

<!-- اضافه کردن المان‌های تزئینی بعد از تگ body -->
<div class="decorative-elements">
<div class="balloon balloon-1">
<i class="fas fa-balloon"></i>
</div>
<div class="balloon balloon-2">
<i class="fas fa-balloon"></i>
</div>
<div class="cloud cloud-1">
<i class="fas fa-cloud"></i>
</div>
<div class="cloud cloud-2">
<i class="fas fa-cloud"></i>
</div>
</div>

<!-- تغییر header -->
<div class="header">
<div class="header-decoration">
<img src="images/manly-kids-logo.png" alt="منلی کیدز" class="logo">
<h1>محصولات منلی کیدز</h1>
</div>
</div>

<!-- اضافه کردن دکمه‌های عملیات به product-card -->
<div class="product-card">
<div class="product-actions">
<button class="action-btn" title="افزودن به علاقه‌مندی‌ها">
<i class="fas fa-heart"></i>
</button>
<button class="action-btn" title="مقایسه">
<i class="fas fa-exchange-alt"></i>
</button>
<button class="action-btn" title="مشاهده سریع">
<i class="fas fa-eye"></i>
</button>
</div>
<!-- محتوای موجود product-card -->
<div class="product-details">
<!-- محتوای موجود product-details -->
<button class="add-to-cart-btn">
<i class="fas fa-shopping-cart"></i>
افزودن به سبد خرید
</button>
</div>
</div>
  /* اضافه کردن استایل‌های جدید */
.stars {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

  .star {
    position: absolute;
    font-size: 20px;
    color: #FFD700;
    animation: twinkle 2s ease-in-out infinite;
  }

  .star-1 { top: 15%; left: 25%; animation-delay: 0s; }
  .star-2 { top: 35%; right: 30%; animation-delay: 0.5s; }
  .star-3 { top: 60%; left: 40%; animation-delay: 1s; }
  .star-4 { top: 25%; right: 15%; animation-delay: 1.5s; }

  @keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
  }

  .shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .shape {
    position: absolute;
    opacity: 0.1;
    animation: rotate 20s linear infinite;
  }

  .shape-1 {
    top: 20%;
    left: 10%;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  }

  .shape-2 {
    top: 40%;
    right: 15%;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
  }

  .shape-3 {
    bottom: 30%;
    left: 20%;
    width: 45px;
    height: 45px;
    background: #FFD700;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  }

  @keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .product-card::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
  }

  .product-card:hover::before {
    opacity: 0.3;
  }

  .add-to-cart-btn {
    overflow: hidden;
    position: relative;
  }

  .add-to-cart-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    transition: all 0.3s ease;
  }

  .add-to-cart-btn:hover::after {
    transform: rotate(45deg) translate(50%, 50%);
  }

  /* تغییر استایل‌های موجود */
  .balloon-1 { color: #FF69B4; }
  .balloon-2 { color: #87CEEB; }
  .cloud-1 { color: #F0F8FF; }
  .cloud-2 { color: #E6E6FA; }


<!-- اضافه کردن المان‌های جدید به decorative-elements -->
<div class="decorative-elements">
<!-- المان‌های موجود -->
<div class="stars">
<div class="star star-1"><i class="fas fa-star"></i></div>
<div class="star star-2"><i class="fas fa-star"></i></div>
<div class="star star-3"><i class="fas fa-star"></i></div>
<div class="star star-4"><i class="fas fa-star"></i></div>
</div>
<div class="shapes">
<div class="shape shape-1"></div>
<div class="shape shape-2"></div>
<div class="shape shape-3"></div>
</div>
</div>

<!-- تغییر ساختار product-card -->
<div class="product-card">
<div class="product-actions">
<button class="action-btn" title="افزودن به علاقه‌مندی‌ها">
<i class="fas fa-heart"></i>
</button>
<button class="action-btn" title="مقایسه">
<i class="fas fa-exchange-alt"></i>
</button>
<button class="action-btn" title="مشاهده سریع">
<i class="fas fa-eye"></i>
</button>
</div>
<img src="images/product1.jpg" alt="پیراهن دخترانه" class="product-image">
<div class="product-details">
<h3 class="product-name">پیراهن آستین بلند دخترانه طرح گل</h3>
<div class="product-price">185,000 تومان</div>
<div class="product-meta">
<span class="meta-item">سایز: 2-3-4-5</span>
</div>
<div class="color-options">
<div class="color-option" style="background-color: #FFB6C1;"></div>
<div class="color-option" style="background-color: #87CEEB;"></div>
<div class="color-option" style="background-color: #98FB98;"></div>
</div>
<div class="availability available">
<i class="fas fa-check-circle"></i>
موجود در انبار
</div>
<button class="add-to-cart-btn">
<i class="fas fa-shopping-cart"></i>
افزودن به سبد خرید
</button>
</div>
</div>


// ... existing code ...
}


.icon-custom-shopping-bag {
}
.icon-custom-shopping-bag::before {
  content: "\e90b";
}
.container-contact .contact-data .contact-data-box .des {
  width: 100%;
  height: 60px;
  line-height: 26px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 0 0;
  overflow: hidden;
}
*, ::after, ::before {
  box-sizing: border-box;
}
div {
  display: block;
  unicode-bidi: isolate;
}
