/* ============================================================
   COMPONENTS CSS — TowBar Outlet
   Hero, cards, footer, brand styling
   ============================================================ */

/* ---------------- HERO ---------------- */
.hero {
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.hero-inner {
  max-width: 600px;
  background: rgba(0,0,0,0.45);
  padding: 25px;
  border-radius: 10px;
}

.hero-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #eee;
  margin-bottom: 20px;
}


/* ---------------- BLOG CARDS ---------------- */
.blog-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.blog-excerpt {
  color: #555;
  margin-bottom: 15px;
}


/* ---------------- PRODUCT CARDS ---------------- */
.product-card {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  text-align: center;
}

.product-img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 10px;
}

.product-name {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.product-price {
  font-weight: bold;
  color: #ff6a00;
  margin-bottom: 12px;
}


/* ---------------- COUPON CARDS ---------------- */
.coupon-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 2px dashed #ff6a00;
  text-align: center;
}

.coupon-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.coupon-code {
  font-size: 1.4rem;
  font-weight: bold;
  background: #ff6a00;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 10px;
  display: inline-block;
}

.coupon-expiry {
  color: #555;
}


/* ---------------- FOOTER ---------------- */
.footer {
  background: #222;
  color: #ddd;
  padding: 40px 20px;
}

.footer-inner {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.footer-brand h3 {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.social-links {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links a {
  color: #ff6a00;
  text-decoration: none;
  font-weight: bold;
}

.social-links a:hover {
  color: #ffa366;
}
/* Blog thumbnail */
.blog-thumb {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

/* Coupon image */
.coupon-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* Footer logo */
.footer-logo {
  width: 160px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
