@charset "UTF-8";
/***!  /templates/wt_trendi_free/css/custom_hikashop.css  !***/

/* ───── شبكة المنتجات (بطاقات) ───── */
.hikashop_products_listing_main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

/* ───── البطاقة الفردية ───── */
.hikashop_product {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
  padding: 15px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  position: relative;
}
.hikashop_product:hover {
  transform: translateY(-5px);
}
.dj-image {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

/* ───── صورة المنتج ───── 
.hikashop_product_image img {
  width: 70%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 10px;
}*/

/* ───── عنوان المنتج ───── */
.hikashop_product_name {
  font-family: "Cairo", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ba2c2c;
  margin-bottom: 10px;
}

/* ───── زر التفاصيل أو الشراء ───── */
.hikabtn,
.hikashop_product_url_button {
  display: inline-block;
  background-color: #ba2c2c;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: bold;
  font-family: "Cairo", sans-serif;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.hikabtn:hover,
.hikashop_product_url_button:hover {
  background-color: #006699;
}

/* ───── شارة "جديد" ───── */
.hikashop_product::before {
  content: "جديد";
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #ba2c2c;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 2;
  font-family: "Cairo", sans-serif;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* ───── تجاوب الهاتف ───── */
@media (max-width: 768px) {
  .hikashop_product_name {
    font-size: 1rem;
  }
  .hikabtn,
  .hikashop_product_url_button {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
}
