/* قسم "جديدنا" */
.new-arrivals-section {
  background-color: #FFFAF1; /* الخلفية العامة */
  padding: 80px 40px;
  text-align: center;
}

/* عنوان القسم */
.new-arrivals-section h2 {
  font-family: 'Lora', serif; /* يمكنك استبداله بـ Great Vibes */
  font-size: 32px;
  color: #A99D9D;
  margin-bottom: 50px;
  font-weight: 400;
  letter-spacing: 1px;
}

/* شبكة المنتجات */
.new-arrivals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
  justify-items: center;
}

/* صورة المنتج */
.new-arrivals-grid img {
  width: 100%;
  height: auto;
  background-color: #FFFAF1;
  border-radius: 0; /* بدون حدود أو ظلال */
  transition: transform 0.4s ease;
}

.new-arrivals-grid img:hover {
  transform: scale(1.03); /* تكبير بسيط على المرور */
}

/* اسم المنتج والسعر */
.product-info {
  margin-top: 14px;
  color: #6F6666;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
}

/* زر التجربة أو الشراء */
.product-button {
  margin-top: 8px;
  background: none;
  border: 1px solid #A99D9D;
  color: #A99D9D;
  padding: 8px 22px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.product-button:hover {
  background-color: #A99D9D;
  color: #FFFAF1;
}
<section class="new-arrivals-section">
  <h2>جديدنا</h2>
  <div class="new-arrivals-grid">
    <div>
      <img src="link1.jpg" alt="عباية بيج">
      <div class="product-info">عباية بيج - 450 ر.س</div>
      <button class="product-button">تسوقي الآن</button>
    </div>
    <div>
      <img src="link2.jpg" alt="عباية كحلي">
      <div class="product-info">عباية كحلي - 460 ر.س</div>
      <button class="product-button">تسوقي الآن</button>
    </div>
    <div>
      <img src="link3.jpg" alt="عباية سوداء">
      <div class="product-info">عباية سوداء - 470 ر.س</div>
      <button class="product-button">تسوقي الآن</button>
    </div>
  </div>
</section>