/* ================= FOOTER ================= */

.bew-footer {
  background: #111;
  color: #fff;
  font-size: 14px;
}

.footer-title {
  color: #fdd835;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

/* Lists */
.footer-links,
.footer-social {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-social li {
  margin-bottom: 10px;
}

/* Links */
.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fdd835;
}

/* Policy icons */
.footer-icons div {
  margin-top: 6px;
  font-size: 13px;
}

/* Social Icons */
.social-icons i {
  font-size: 20px;
  margin-right: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.social-icons i:hover {
  transform: scale(1.2);
  color: #fdd835;
}

/* ================= PAYMENT ICONS ================= */

.payment-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 8px;
}

.payment-icons img {
  height: 35px;          /* Perfect professional size */
  width: auto;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.payment-icons img:hover {
  transform: scale(1.1);
}

/* ================= NEWSLETTER ================= */

.newsletter {
  display: flex;
  margin-top: 10px;
}

.newsletter input {
  flex: 1;
  padding: 10px 12px;
  border: none;
  outline: none;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
}

.newsletter button {
  background: #fdd835;
  border: none;
  padding: 10px 18px;
  font-weight: 600;
  border-radius: 0 4px 4px 0;
  transition: background 0.2s ease;
}

.newsletter button:hover {
  background: #fbc02d;
}

/* Extra footer links */
.footer-extra a {
  color: #4dd0e1;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.footer-extra a:hover {
  color: #ffffff;
}

/* Bottom Copyright */
.bew-footer .border-top {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .newsletter {
    flex-direction: column;
  }

  .newsletter input {
    border-radius: 4px;
    margin-bottom: 8px;
  }

  .newsletter button {
    border-radius: 4px;
  }

  .payment-icons {
    justify-content: flex-start;
  }
}

/* ================= EXTRA STYLES (Your Existing Cards) ================= */

.wishlist-card {
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wishlist-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.list-group-item {
  border: none;
}

.list-group-item.active {
  background: #000;
  color: #fff;
  font-weight: 600;
}

.list-group-item:hover {
  background: #f8f9fa;
}

.card {
  border-radius: 12px;
}


/* =========================
   ABOUT PAGE STYLING
========================= */

.about-hero {
  background: linear-gradient(135deg, #000, #111);
  color: #fff;
  padding: 100px 0;
}

.about-title {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.about-tagline {
  font-size: 20px;
  margin-top: 10px;
  color: #fdd835;
}

.about-section {
  background: #fff;
  padding: 80px 0;
}

.about-content {
  max-width: 900px;
  margin: auto;
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}

.about-content h2 {
  font-weight: 700;
  margin-bottom: 25px;
}

.about-content h3 {
  font-weight: 600;
}

.highlight-box {
  background: #f8f9fa;
  padding: 25px;
  border-left: 4px solid #fdd835;
  margin: 30px 0;
  font-weight: 500;
}

.mission-box {
  background: #111;
  color: #fff;
  padding: 30px;
  margin: 40px 0;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}

.bold-line {
  font-weight: 700;
  font-size: 20px;
}

.closing-text {
  margin-top: 50px;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  color: #000;
}
