/* Reset */
body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background: #fafafa;
  color: #222;
}

/* mini header */
.mini-header nav {
  padding: 10px 20px;
  background: #f4f4f4;
  font-size: 14px;
}
.mini-header a {
  color: #333;
  text-decoration: none;
}

/* catalogue */
.catalogue {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
}

.catalogue h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #c62828;
}

/* grid cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.card h2 {
  font-size: 16px;
  color: #111;
  margin: 12px 0;
}

.card p {
  font-size: 14px;
  color: #666;
  flex: 1;
}

/* button */
.btn {
  margin-top: 12px;
  background: #c62828;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}
.btn:hover {
  background: #a61717;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #fafafa;
  color: #333;
}

.mini-header nav {
  padding: 12px 20px;
  background: #f4f4f4;
  font-size: 14px;
}
.mini-header a {
  text-decoration: none;
  color: #c62828;
}

.product {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  gap: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.product .image {
  flex: 1 1 350px;
}
.product .image img {
  width: 100%;
  border-radius: 10px;
}

.product .info {
  flex: 1 1 400px;
}

.product .info h1 {
  font-size: 24px;
  color: #c62828;
  margin-bottom: 12px;
}

.product .info p {
  font-size: 16px;
  line-height: 1.6;
}

.price {
  font-size: 18px;
  color: #111;
  margin: 15px 0;
}

.btn {
  display: inline-block;
  background: #c62828;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}
.btn:hover {
  background: #a61717;
}
.product-card {
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.product-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transform: translateY(-3px);
}
.promo-card {
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin: 10px;
  text-decoration: none;  /* تحيد الخط تحت النص */
  color: inherit;         /* تخلي الألوان ديالك الأصلية */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.promo-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transform: translateY(-3px);
}
