/* ===== Reset & Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

/* ===== Header ===== */
header {
  background-color: #000;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  height: 80px;
  margin-bottom: 10px;
}

/* ===== Catalog Section ===== */
.catalog {
  padding: 50px 20px;
  text-align: center;
}

.catalog h2 {
  color: #e91e63; /* Pink */
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 700;
}
/* ✅ Product Card Styling */
.product-card {
  width: 220px; /* fixed width */
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  padding: 15px;
  margin: 15px;
  display: inline-block;
  vertical-align: top;
}

.product-card img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain; /* keeps image aspect ratio */
  margin-bottom: 10px;
}

.product-card h3 {
  font-size: 1.1em;
  margin-bottom: 5px;
  color: #333;
}

.product-card p {
  font-size: 1em;
  color: #555;
}

/* ✅ Wrap product cards in a flex container */
.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.product {
  display: inline-block;
  width: 250px;
  margin: 15px;
  padding: 15px;
  border-radius: 12px;
  background-color: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.product:hover {
  transform: translateY(-6px);
}

.product img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.product h3 {
  color: #000;
  margin: 12px 0 8px;
  font-size: 1.2rem;
}

.product p {
  font-weight: bold;
  color: #e91e63; /* Pink for price */
  font-size: 1.1rem;
}

/* ===== Branches Section ===== */
.branches {
  padding: 50px 20px;
  background-color: #fff0f6; /* light pink tint */
  text-align: center;
}

.branches h2 {
  color: #e91e63;
  font-size: 28px;
  margin-bottom: 25px;
}

.branches ul {
  list-style: none;
}

.branches li {
  margin: 10px 0;
  font-size: 18px;
  color: #000;
  font-weight: 500;
}

/* ===== Footer ===== */
footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}

/* ===== Promo Hero Banner ===== */
.promo-hero {
  position: relative;
  background-image: url('products-banner.jpg'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.promo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.promo-hero__content {
  position: relative;
  padding: 30px;
}

.promo-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(26px, 4.5vw, 44px);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.promo-hero p {
  margin: 0 0 20px;
  font-size: clamp(16px, 2vw, 20px);
  opacity: 0.95;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, background 0.3s;
}

.btn-primary {
  background: #e91e63;
  color: #fff;
  box-shadow: 0 6px 16px rgba(233, 30, 99, 0.35);
}
.btn-primary:hover {
  background: #d81b60;
  transform: translateY(-3px);
}

/* ===== Testimonials (centered) ===== */
.testimonials {
  text-align: center;
  padding: 50px 20px;
  background: none;            /* keep existing page background */
}
/* ✅ Section Styling */
.testimonials, 
.newsletter, 
.branches, 
.contact, 
.map {
  display: block;
  width: 100%;
  max-width: 800px;            /* slightly narrower for balance */
  margin: 30px auto;           /* space between cards */
  padding: 25px;
  background: #fff;            /* white background */
  border-radius: 12px;         /* rounded corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* soft shadow */
  text-align: center;
  font-family: 'Arial', sans-serif;
}

/* ✅ Headings */
.testimonials h3, 
.newsletter h3, 
.branches h3, 
.contact h3, 
.map h3 {
  font-size: 1.8em;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

/* ✅ Paragraph Text */
.testimonials p, 
.newsletter p, 
.branches p, 
.contact p, 
.map p {
  font-size: 1.1em;
  color: #555;
  line-height: 1.6em;
  margin-bottom: 15px;
}

/* ✅ Newsletter & Contact Form */
form input, 
form textarea, 
form button {
  width: 100%;
  max-width: 500px;
  margin: 10px auto;
  padding: 12px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 6px;
  display: block;
}

/* ✅ Buttons (Pink with Rounded Edges) */
form button {
  background: #e91e63;         /* pink color */
  color: #fff;
  border: none;
  border-radius: 25px;         /* pill shape */
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background: #c2185b;
}

/* ✅ Newsletter Button Inline with Input */
.newsletter form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter input {
  flex: 1 1 auto;
  min-width: 200px;
}

/* ✅ Map Styling */
.map iframe {
  border-radius: 12px;
  width: 100%;
  height: 400px;
  border: 0;
}

/* ✅ WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp-float img {
  width: 35px;
}
