/* ===============================
   MEGA FOOTER BASE
================================ */
#mega-footer {
  background:  #000000;  /* dark neutral background #5a5959 like that color #393737*/
  position: relative;
  overflow: hidden;   /* ✅ prevents extra scroll */
  width: 100%;
}

/* Top strip */
.footer-strip {
  background: linear-gradient(90deg, #0a02f7, #000, #158739);
  /* color: #fff; */
  color: white;  /* changed to letter color Gol Bros */
  text-align: center;
  padding: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* Middle content */
.footer-content {
  text-align: center;
  padding: 60px 20px 90px;
}

.footer-links {
  font-size: 0.8rem;
  opacity: 0.75;
  margin-bottom: 36px;
}

.footer-links a {
  color: #111;
  text-decoration: none;
  font-family: "Poppins",sans-serif;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 1.4rem;
}

.footer-socials i {
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-socials i:hover {
  transform: translateY(-4px);
  opacity: 0.7;
}

/* ===============================
   HUGE LOGO SECTION (KEY PART)
================================ */
.footer-brand-wrap {
  position: relative;
  width: 100%;
  height: 300px;            /* 👈 height of the footer brand section */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;      /* 👈 padding around the image */
}

.footer-brand-image {
  position: absolute;
  bottom: -15rem;    /* 👈 position the Gig image out from the bottom */
  width: 120vw;              /* 👈 width of the logo image */
  transform: translateY(25%) scale(1.2); /* 👈 adjust vertical position and scale */
  opacity: 1;              /* 👈 make it very faint or claro color */
  pointer-events: none;      /* 👈 prevent interaction */
}

@media (max-width: 768px) {
  .footer-brand-wrap {
    height: 220px;
    padding: 50px 60px;
  }

  .footer-brand-image {
    width: 170vw;              /* 👈 mobile width */
    transform: translateY(35%) scale(1);
    bottom: 3rem;    /* 👈 adjust vertical position for mobile */

  }
}



/* ===============================
   BOTTOM FOOTER Size Table
================================ */


.halo-size-chart {
  padding: 10px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.halo-size-chart img {
  max-width: 40%;
  height: auto;
  display: block;
  margin: 0 auto;
  padding: 1px 0;
}

@media (max-width: 600px) {
  .halo-size-chart img {
    max-width: 90%;
  }
}

/* ===============================
   End Size Table size
================================ */



/* ===============================
   Recently Viewed Products
================================ */

/* Recently Viewed Grid */
.recently-viewed-wrapper {
  margin-bottom: 20px;
  width: 100%;
}

.recently-viewed-grid {
  display: flex;
  gap: 5px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.recent-card {
  min-width: 80px;
  flex: 0 0 auto;
  text-align: center;
}

.recent-card img {
  width: 150px;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.recently-viewed-wrapper h2 {
  font-size: 25px;
}

@media (max-width: 600px) {
  .recent-card img {
    width: 150px;
    height: 100px;
  }
}


/* .halo-size-chart {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.halo-size-chart img {
  max-width: 50%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.halo-size-chart p {
  font-size: 0.9rem;
  color: #555;
  margin-top: 8px;
}

#recently-viewed-products {
  margin-top: 40px;
}

.recent-item {
  display: inline-block;
  margin: 10px;
  text-align: center;
}

.recent-item img {
  max-width: 120px;
  height: auto;
  display: block;
  margin: 0 auto 5px;
} */
