/* Foothunk Store CSS - Highway Yellow Theme
   Accent updated to #f6c401
   Red theme values replaced with black + highway yellow styling
*/

.hero-banner-root .image-reveal {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

.hero-banner-root .image-reveal-visible {
  opacity: 1;
  transform: none;
}

.hero-banner-root .swiper-pagination {
  display: none !important;
}

.shop-all-link {
  color: #fff !important;
}

/* ===== common.css ===== */
@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800;900&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --fh-black: #070707;
  --fh-ink: #101010;
  --fh-white: #ffffff;
  --fh-cream: #f7f2e8;
  --fh-yellow: #f6c401;
  --fh-gold: #f6c401;
  --fh-red: #f6c401;
  --fh-muted: #767676;
  --fh-border: #f6c401;
  --fh-card: #111111;
  --fh-max: 1440px;
  --fh-font: "Inter", system-ui, sans-serif;
  --fh-display: "Archivo", system-ui, sans-serif;
}

.fh-section,
.fh-section * {
  box-sizing: border-box;
}

.fh-section {
  width: 100%;
  font-family: var(--fh-font);
  overflow: hidden;
  color: var(--fh-ink);
}

.fh-wrap {
  max-width: var(--fh-max);
  margin: 0 auto;
  padding: 0 24px;
}

.fh-eyebrow {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fh-yellow);
}

.fh-title {
  margin: 8px 0 0;
  font-family: var(--fh-display);
  font-size: clamp(34px, 5vw, 76px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.fh-title span {
  display: block;
  color: var(--fh-yellow);
}

.fh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: 0.25s ease;
  white-space: nowrap;
}

.fh-btn-primary {
  background: var(--fh-yellow);
  color: var(--fh-black);
  border: 2px solid var(--fh-yellow);
}

.fh-btn-outline {
  background: transparent;
  color: var(--fh-white);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.fh-btn-dark {
  background: var(--fh-black);
  color: var(--fh-white);
  border: 2px solid var(--fh-black);
}

.fh-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .fh-wrap {
    padding: 0 14px;
  }

  .fh-title {
    font-size: 42px;
  }

  .fh-btn {
    width: 100%;
    min-height: 44px;
  }
}

/* ===== 01-marquee-header.css ===== */
.fh-top {
  background: #000;
  color: #fff;
}

.fh-marquee {
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.fh-marquee-track {
  display: flex;
  width: max-content;
  animation: fhMarquee 34s linear infinite;
}

.fh-marquee span {
  padding: 10px 20px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.fh-marquee span::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 20px;
  border-radius: 50%;
  background: var(--fh-yellow);
  vertical-align: middle;
}

@keyframes fhMarquee {
  to {
    transform: translateX(-50%);
  }
}

.fh-header {
  background: #080808;
}

.fh-header-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.fh-logo {
  width: 76px;
  height: 48px;
  overflow: hidden;
  border-radius: 10px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fh-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fh-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
}

.fh-nav::-webkit-scrollbar {
  display: none;
}

.fh-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  padding: 9px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.fh-nav a:hover {
  background: var(--fh-yellow);
  color: #000;
}

.fh-cart {
  color: #000;
  background: var(--fh-yellow);
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

@media (max-width: 800px) {
  .fh-header-row {
    gap: 10px;
  }

  .fh-logo {
    width: 58px;
    height: 40px;
  }

  .fh-cart {
    font-size: 11px;
    padding: 8px 10px;
  }
}

/* ===== 02-hero.css ===== */
.fh-hero {
  background:
    radial-gradient(circle at 80% 20%,
      rgba(246, 196, 0, 0.25),
      transparent 34%),
    linear-gradient(135deg, #050505, #1b1b1b);
  color: #fff;
  padding-top: 0px;
}

.fh-hero-grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding-top: 48px;
  padding-bottom: 48px;
}

.fh-hero-copy p {
  max-width: 620px;
  color: #d8d8d8;
  font-size: 18px;
  line-height: 1.6;
  margin: 24px 0 28px;
}

.fh-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.fh-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 34px;
  max-width: 680px;
}

.fh-stats b {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 14px;
  text-align: center;
  color: #fff;
  font-size: 13px;
}

.fh-hero-art {
  position: relative;
  min-height: 430px;
  border-radius: 34px;
  background: linear-gradient(160deg, #171717, #050505);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.fh-hero-art::before {
  content: "";
  position: absolute;
  inset: -80px;
  background: repeating-linear-gradient(115deg,
      transparent 0 42px,
      rgba(246, 196, 0, 0.92) 42px 52px,
      transparent 52px 96px);
  opacity: 0.32;
  transform: rotate(-5deg);
}

.fh-shoe-card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-7deg);
  width: 72%;
  height: 220px;
  border-radius: 40px;
  background: #f5f5f5;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #000;
}

.fh-shoe-card span {
  font-family: var(--fh-display);
  font-size: 86px;
  font-weight: 900;
}

.fh-shoe-card strong {
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.fh-road {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70px;
  background: linear-gradient(90deg,
      transparent 0 10%,
      var(--fh-yellow) 10% 42%,
      transparent 42% 58%,
      var(--fh-yellow) 58% 90%,
      transparent 90%);
}

@media (max-width: 900px) {
  .fh-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .fh-hero-art {
    min-height: 300px;
  }

  .fh-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .fh-hero-copy p {
    font-size: 15px;
  }

  .fh-hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .fh-stats {
    grid-template-columns: 1fr 1fr;
  }

  .fh-hero-art {
    min-height: 240px;
  }

  .fh-shoe-card {
    height: 150px;
  }

  .fh-shoe-card span {
    font-size: 54px;
  }
}

/* ===== 03-brand-section.css ===== */
.fh-brands {
  background: #000;
  padding: 46px 0;
}

.fh-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.fh-section-head h2 {
  color: #fff;
  font-family: var(--fh-display);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.95;
  margin: 4px 0 0;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.fh-section-head a {
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid #000;
}

.fh-brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.fh-brand-grid a {
  height: 150px;
  border-radius: 24px;
  background: linear-gradient(145deg, #0d0d0d, #222);
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: end;
  padding: 18px;
  font-family: var(--fh-display);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}

.fh-brand-grid a::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid var(--fh-yellow);
  border-radius: 18px;
  opacity: 0.45;
}

@media (max-width: 1000px) {
  .fh-brand-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .fh-brand-grid a {
    min-width: 220px;
    scroll-snap-align: start;
  }
}

@media (max-width: 600px) {
  .fh-brands {
    padding: 34px 0;
  }

  .fh-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .fh-brand-grid a {
    min-width: 180px;
    height: 120px;
    font-size: 18px;
  }
}

/* ===== 04-latest-arrivals.css ===== */
.fh-products {
  background: #f7f7f7;
  padding: 48px 0;
}

.fh-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.fh-section-head h2 {
  font-family: var(--fh-display);
  font-size: clamp(32px, 4vw, 58px);
  line-height: 0.95;
  margin: 4px 0 0;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}

.fh-section-head a {
  color: #000;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid #000;
}

.fh-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.fh-product {
  background: #fff;
  border-radius: 24px;
  padding: 14px;
  border: 1px solid #e8e8e8;
  position: relative;
}

.fh-product>span {
  position: absolute;
  top: 24px;
  left: 24px;
  background: #000;
  color: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.fh-product-img {
  height: 260px;
  border-radius: 18px;
  background: linear-gradient(145deg, #eee, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh-display);
  font-size: 52px;
  font-weight: 900;
  color: #111;
}

.fh-product p {
  margin: 14px 0 6px;
  color: #777;
  font-size: 13px;
  font-weight: 800;
}

.fh-product h3 {
  font-size: 20px;
  line-height: 1.15;
  margin: 0 0 12px;
}

.fh-product b {
  font-size: 20px;
}

.fh-product del {
  color: #999;
  font-size: 14px;
  margin-left: 8px;
}

.fh-product button {
  width: 100%;
  margin-top: 14px;
  border: 0;
  background: var(--fh-yellow);
  color: #000;
  border-radius: 999px;
  padding: 12px;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 900px) {
  .fh-product-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .fh-product {
    min-width: 80%;
    scroll-snap-align: start;
  }

  .fh-product-img {
    height: 220px;
  }
}

@media (max-width: 520px) {
  .fh-products {
    padding: 34px 0;
  }

  .fh-product {
    min-width: 88%;
  }

  .fh-section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== 05-budget-section.css ===== */
.fh-budget {
  background: #0a0a0a;
  color: #fff;
  padding: 48px 0;
}

.fh-budget h2 {
  font-family: var(--fh-display);
  font-size: clamp(32px, 5vw, 64px);
  text-transform: uppercase;
  letter-spacing: -0.05em;
  margin: 8px 0 24px;
}

.fh-budget-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.fh-budget-grid a {
  min-height: 210px;
  background: linear-gradient(135deg, #191919, #080808);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  padding: 24px;
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.fh-budget-grid a::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 28px solid var(--fh-yellow);
  opacity: 0.18;
}

.fh-budget small {
  font-weight: 900;
  color: var(--fh-yellow);
  text-transform: uppercase;
}

.fh-budget strong {
  font-family: var(--fh-display);
  font-size: 36px;
  line-height: 0.95;
  text-transform: uppercase;
}

.fh-budget span {
  font-weight: 900;
  color: #fff;
}

@media (max-width: 760px) {
  .fh-budget-grid {
    grid-template-columns: 1fr;
  }

  .fh-budget-grid a {
    min-height: 150px;
  }

  .fh-budget {
    padding: 34px 0;
  }
}

/* ===== 06-categories.css ===== */
.fh-cats {
  background: #fff;
  padding: 48px 0;
}

.fh-cats h2 {
  font-family: var(--fh-display);
  font-size: clamp(32px, 5vw, 64px);
  text-transform: uppercase;
  letter-spacing: -0.05em;
  margin: 8px 0 24px;
}

.fh-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 768px) {
  .fh-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

.fh-cat-grid a {
  min-height: 120px;
  border-radius: 24px;
  background: #f1f1f1;
  color: #000;
  text-decoration: none;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-family: var(--fh-display);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.fh-cat-grid a:nth-child(2n) {
  background: #111;
  color: #fff;
}

.fh-cat-grid span {
  color: var(--fh-yellow);
}

@media (max-width: 760px) {
  .fh-cat-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .fh-cat-grid a {
    min-width: 230px;
    scroll-snap-align: start;
  }

  .fh-cats {
    padding: 34px 0;
  }
}

/* ===== 07-reels-instagram.css ===== */
.fh-reels {
  background: #0b0b0b;
  color: #fff;
  overflow: hidden;
}

.fh-reels-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr;
  gap: 36px;
  align-items: center;
}

.fh-reels-content {
  min-width: 0;
}

.fh-reels-content h2 {
  margin: 10px 0 12px;
  color: #fff;
}

.fh-reels-content p {
  max-width: 420px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.fh-reels-area {
  position: relative;
  min-width: 0;
}

.fh-reel-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 16px;
  scrollbar-width: none;
}

.fh-reel-scroll::-webkit-scrollbar {
  display: none;
}

.fh-reel-card {
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: calc((100% - 36px) / 3);
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  background: #171717;
  border: 1px solid rgba(255, 255, 255, 0.12);
  scroll-snap-align: start;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.fh-reel-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.fh-reel-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #111111;
  font-size: 30px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
  transition: 0.25s ease;
}

.fh-reel-arrow:hover {
  background: #f6c401;
  color: #000;
}

.fh-reel-prev {
  left: -18px;
}

.fh-reel-next {
  right: -18px;
}

@media (max-width: 900px) {
  .fh-reels-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .fh-reels-content {
    text-align: center;
  }

  .fh-reels-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .fh-reel-scroll {
    gap: 14px;
    padding: 2px 2px 14px;
  }

  .fh-reel-card {
    flex: 0 0 42%;
    min-width: 42%;
    border-radius: 18px;
  }

  .fh-reel-prev {
    left: 6px;
  }

  .fh-reel-next {
    right: 6px;
  }

  .fh-reel-arrow {
    width: 38px;
    height: 38px;
    font-size: 26px;
  }
}

@media (max-width: 520px) {
  .fh-reel-card {
    flex: 0 0 72%;
    min-width: 72%;
  }

  .fh-reel-arrow {
    width: 34px;
    height: 34px;
    font-size: 24px;
  }
}

/* ===== 08-whatsapp-cta.css ===== */
.fh-wa {
  background: #fff;
  padding: 0px 0;
}

.fh-wa-card {
  border-color: #000000 !important;
  border-radius: 0px;
  background: linear-gradient(135deg, var(--fh-yellow), #ffe477);
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.fh-wa h2 {
  font-family: var(--fh-display);
  font-size: clamp(28px, 4vw, 52px);
  text-transform: uppercase;
  letter-spacing: -0.05em;
  margin: 6px 0;
}

.fh-wa p {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: #222;
}

.fh-wa .fh-eyebrow {
  color: #000;
}

@media (max-width: 760px) {
  .fh-wa-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .fh-wa {
    padding: 30px 0;
  }

  .fh-wa .fh-btn {
    width: 100%;
  }
}

/* ===== 09-trust-strip.css ===== */
.fh-trust {
  background: #0b0b0b;
  color: #fff;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.fh-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.fh-trust-grid div {
  padding: 22px 20px;
  border-right: 1px solid #222;
}

.fh-trust-grid div:last-child {
  border-right: 0;
}

.fh-trust b {
  display: block;
  font-family: var(--fh-display);
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.fh-trust span {
  display: block;
  margin-top: 4px;
  color: #aaa;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 800px) {
  .fh-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fh-trust-grid div:nth-child(2) {
    border-right: 0;
  }

  .fh-trust-grid div:nth-child(n + 3) {
    border-top: 1px solid #222;
  }
}

@media (max-width: 480px) {
  .fh-trust-grid {
    grid-template-columns: 1fr;
  }

  .fh-trust-grid div {
    border-right: 0;
    border-top: 1px solid #222;
  }

  .fh-trust-grid div:first-child {
    border-top: 0;
  }
}

/* ===== 10-footer.css ===== */
.fh-footer {
  background: #050505;
  color: #fff;
  padding-top: 50px;
}

.fh-footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 34px;
}

.fh-footer-brand img {
  width: 130px;
  border-radius: 14px;
  margin-bottom: 16px;
}

.fh-footer h2 {
  font-family: var(--fh-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.fh-footer h2 span {
  color: var(--fh-yellow);
}

.fh-footer p {
  color: #aaa;
  line-height: 1.6;
}

.fh-footer h3 {
  color: var(--fh-yellow);
  font-family: var(--fh-display);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.fh-footer a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin: 10px 0;
  font-size: 14px;
  font-weight: 800;
}

.fh-footer a:hover {
  color: var(--fh-yellow);
}

.fh-footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 1px solid #222;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.fh-footer-bottom p {
  margin: 0;
  font-size: 13px;
}

@media (max-width: 900px) {
  .fh-footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .fh-footer-brand {
    grid-column: 1/-1;
  }

  .fh-footer {
    padding-top: 36px;
  }
}

@media (max-width: 520px) {
  .fh-footer-top {
    grid-template-columns: 1fr;
  }

  .fh-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

.section {
  padding: 0px;
}

.collection-header {
  display: none;
}

/* =========================================================
   FINAL DARK + HIGHWAY YELLOW THEME OVERRIDES
   Background: Black
   Text: White
   Border/Sub-title/Accent: Highway Yellow
   Brand section: Grid, 2 cards per row, no scrolling
========================================================= */

:root {
  --fh-black: #000000;
  --fh-ink: #ffffff;
  --fh-white: #ffffff;
  --fh-cream: #000000;
  --fh-yellow: #f6c401;
  --fh-gold: #f6c401;
  --fh-red: #f6c401;
  --fh-muted: #b8b8b8;
  --fh-border: #f6c401;
  --fh-card: #0b0b0b;
}

/* Global section dark setup */
.fh-section,
.fh-top,
.fh-header,
.fh-hero,
.fh-brands,
.fh-products,
.fh-budget,
.fh-cats,
.fh-reels,
.fh-wa,
.fh-trust,
.fh-footer {
  background: #000000 !important;
  color: #ffffff !important;
}

.fh-section {
  color: #ffffff !important;
}

/* Main headings white */
.fh-title,
.fh-section-head h2,
.fh-budget h2,
.fh-cats h2,
.fh-wa h2,
.fh-footer h2,
.fh-reels-content h2 {
  color: #ffffff !important;
}

/* Subtitles / eyebrow / labels in highway yellow */
.fh-eyebrow,
.fh-title span,
.fh-section-head a,
.fh-budget small,
.fh-cat-grid span,
.fh-footer h2 span,
.fh-footer h3 {
  color: #f6c401 !important;
}

/* Paragraph/sub content readable on black */
.fh-hero-copy p,
.fh-section-head p,
.fh-reels-content p,
.fh-wa p,
.fh-footer p,
.fh-footer a,
.fh-trust span,
.fh-product p {
  color: #d7d7d7 !important;
}

/* Buttons */
.fh-btn-primary {
  background: #f6c401 !important;
  color: #ffffff !important;
  border: 2px solid #f6c401 !important;
}

.fh-btn-outline {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid #f6c401 !important;
}

.fh-btn-dark {
  background: #f6c401 !important;
  color: #ffffff !important;
  border: 2px solid #f6c401 !important;
}

.fh-btn:hover {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff !important;
}

/* Marquee + header */
.fh-marquee {
  background: #000000 !important;
  border-bottom: 1px solid #f6c401 !important;
}

.fh-marquee span {
  color: #ffffff !important;
}

.fh-marquee span::after {
  background: #f6c401 !important;
}

.fh-header {
  background: #000000 !important;
  border-bottom: 1px solid #f6c401 !important;
}

.fh-logo {
  background: #0b0b0b !important;
  border: 1px solid #f6c401 !important;
}

.fh-nav a {
  color: #ffffff !important;
}

.fh-nav a:hover {
  background: #f6c401 !important;
  color: #ffffff !important;
}

.fh-cart {
  background: #f6c401 !important;
  color: #ffffff !important;
  border: 1px solid #f6c401 !important;
}

/* Hero */
.fh-hero {
  background:
    radial-gradient(circle at 80% 20%,
      rgba(246, 196, 1, 0.26),
      transparent 34%),
    linear-gradient(135deg, #000000, #070707) !important;
}

.fh-stats b {
  background: #0b0b0b !important;
  color: #ffffff !important;
  border: 1px solid #f6c401 !important;
}

.fh-hero-art {
  background: linear-gradient(160deg, #090909, #000000) !important;
  border: 1px solid #f6c401 !important;
}

.fh-hero-art::before {
  background: repeating-linear-gradient(115deg,
      transparent 0 42px,
      rgba(246, 196, 1, 0.95) 42px 52px,
      transparent 52px 96px) !important;
  opacity: 0.32 !important;
}

.fh-shoe-card {
  background: #0b0b0b !important;
  color: #ffffff !important;
  border: 2px solid #f6c401 !important;
}

.fh-road {
  background: linear-gradient(90deg,
      transparent 0 10%,
      #f6c401 10% 42%,
      transparent 42% 58%,
      #f6c401 58% 90%,
      transparent 90%) !important;
}

/* Brand section - black, red border, 2 in a row, no scrolling */
.fh-brands {
  background: #000000 !important;
  border-top: 1px solid #f6c401 !important;
  border-bottom: 1px solid #f6c401 !important;
}

.fh-brand-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
  overflow: visible !important;
  scroll-snap-type: none !important;
  padding-bottom: 0 !important;
}

.fh-brand-grid a {
  min-width: 0 !important;
  height: 160px !important;
  scroll-snap-align: unset !important;
  background: #0b0b0b !important;
  color: #ffffff !important;
  border: 1px solid #f6c401 !important;
  box-shadow: none !important;
}

.fh-brand-grid a::before {
  border: 2px solid #f6c401 !important;
  opacity: 0.9 !important;
}

.fh-brand-grid a:hover {
  background: #f6c401 !important;
  color: #ffffff !important;
}

/* Products */
.fh-products {
  background: #000000 !important;
}

.fh-product {
  background: #0b0b0b !important;
  border: 1px solid #f6c401 !important;
  color: #ffffff !important;
}

.fh-product>span {
  background: #f6c401 !important;
  color: #ffffff !important;
}

.fh-product-img {
  background: linear-gradient(145deg, #111111, #050505) !important;
  color: #ffffff !important;
  border: 1px solid rgba(246, 196, 1, 0.55) !important;
}

.fh-product h3,
.fh-product b {
  color: #ffffff !important;
}

.fh-product del {
  color: #999999 !important;
}

.fh-product button {
  background: #f6c401 !important;
  color: #ffffff !important;
  border: 1px solid #f6c401 !important;
}

.fh-product button:hover {
  background: #ffffff !important;
  color: #000000 !important;
}

/* Budget cards */
.fh-budget-grid a {
  background: linear-gradient(135deg, #0b0b0b, #000000) !important;
  border: 1px solid #f6c401 !important;
  color: #ffffff !important;
}

.fh-budget-grid a::after {
  border-color: #f6c401 !important;
  opacity: 0.22 !important;
}

.fh-budget span,
.fh-budget strong {
  color: #ffffff !important;
}

/* Categories */
.fh-cats {
  background: #000000 !important;
}

.fh-cat-grid a {
  background: #0b0b0b !important;
  color: #ffffff !important;
  border: 1px solid #f6c401 !important;
}

.fh-cat-grid a:nth-child(2n) {
  background: #171300 !important;
  color: #ffffff !important;
}

.fh-cat-grid a:hover {
  background: #f6c401 !important;
  color: #ffffff !important;
}

/* Reels */
.fh-reel-card {
  background: #0b0b0b !important;
  border: 1px solid #f6c401 !important;
}

.fh-reel-arrow {
  background: #f6c401 !important;
  color: #ffffff !important;
}

.fh-reel-arrow:hover {
  background: #ffffff !important;
  color: #000000 !important;
}

/* WhatsApp CTA */
.fh-wa-card {
  background: #0b0b0b !important;
  color: #ffffff !important;
  border: 1px solid #f6c401 !important;
}

.fh-wa .fh-eyebrow {
  color: #f6c401 !important;
}

/* Trust strip */
.fh-trust {
  background: #000000 !important;
  border-top: 1px solid #f6c401 !important;
  border-bottom: 1px solid #f6c401 !important;
}

.fh-trust-grid div {
  border-right: 1px solid #f6c401 !important;
}

.fh-trust b {
  color: #ffffff !important;
}

/* Footer */
.fh-footer {
  background: #000000 !important;
  border-top: 1px solid #f6c401 !important;
}

.fh-footer a:hover {
  color: #f6c401 !important;
}

.fh-footer-bottom {
  border-top: 1px solid #f6c401 !important;
}

/* Store section and collection override */
.section {
  padding: 0 !important;
  background: #000000 !important;
}

/* Responsive brand grid remains 2 in one row */
@media (max-width: 1000px) {
  .fh-brand-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    overflow: visible !important;
    gap: 14px !important;
    padding-bottom: 0 !important;
  }

  .fh-brand-grid a {
    min-width: 0 !important;
    height: 140px !important;
  }
}

@media (max-width: 600px) {
  .fh-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .fh-brand-grid a {
    height: 118px !important;
    font-size: 16px !important;
    border-radius: 18px !important;
    padding: 14px !important;
  }
}

/* Mobile general polish */
@media (max-width: 760px) {

  .fh-cat-grid a,
  .fh-budget-grid a,
  .fh-product,
  .fh-reel-card,
  .fh-wa-card {
    border-color: #f6c401 !important;
  }

  .fh-trust-grid div:nth-child(n + 3) {
    border-top: 1px solid #f6c401 !important;
  }
}

@media (max-width: 480px) {
  .fh-trust-grid div {
    border-top: 1px solid #f6c401 !important;
    border-right: 0 !important;
  }

  .fh-trust-grid div:first-child {
    border-top: 0 !important;
  }
}

/* =========================================================
   FINAL GRID FIX ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â BRAND + CATEGORY SECTIONS
   Brand: Desktop 6 in a row, Mobile 2 in a row, no scrolling
   Category: Desktop 3 in a row, Mobile 2 in a row, no scrolling
   Theme: Black + White + Highway Yellow elegant borders
========================================================= */

/* ---------- Brand Section Grid ---------- */
.fh-brands {
  background: #000000 !important;
  border-top: 1px solid rgba(246, 196, 1, 0.72) !important;
  border-bottom: 1px solid rgba(246, 196, 1, 0.72) !important;
}

.fh-brand-grid {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 14px !important;
  overflow: visible !important;
  overflow-x: visible !important;
  scroll-snap-type: none !important;
  padding-bottom: 0 !important;
}

.fh-brand-grid a {
  min-width: 0 !important;
  width: 100% !important;
  height: 150px !important;
  padding: 16px !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: 22px !important;
  color: #ffffff !important;
  background:
    radial-gradient(circle at 100% 0%,
      rgba(246, 196, 1, 0.28),
      transparent 38%),
    linear-gradient(145deg, #141414 0%, #050505 100%) !important;
  border: 1px solid rgba(246, 196, 1, 0.72) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 14px 34px rgba(246, 196, 1, 0.12) !important;
  scroll-snap-align: unset !important;
}

.fh-brand-grid a::before {
  content: "" !important;
  position: absolute !important;
  inset: 8px !important;
  border: 1px solid rgba(246, 196, 1, 0.92) !important;
  border-radius: 16px !important;
  opacity: 1 !important;
  pointer-events: none !important;
}

.fh-brand-grid a::after {
  content: "" !important;
  position: absolute !important;
  right: -26px !important;
  top: -26px !important;
  width: 88px !important;
  height: 88px !important;
  border-radius: 50% !important;
  border: 18px solid rgba(246, 196, 1, 0.16) !important;
  pointer-events: none !important;
}

.fh-brand-grid a:hover {
  transform: translateY(-3px) !important;
  background:
    radial-gradient(circle at 100% 0%,
      rgba(255, 255, 255, 0.12),
      transparent 42%),
    linear-gradient(145deg, #f6c401 0%, #c99f00 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 18px 42px rgba(246, 196, 1, 0.28) !important;
}

/* ---------- Category Section Grid ---------- */
.fh-cats {
  background: #000000 !important;
  border-top: 1px solid rgba(246, 196, 1, 0.72) !important;
  border-bottom: 1px solid rgba(246, 196, 1, 0.72) !important;
}

.fh-cat-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
  overflow: visible !important;
  overflow-x: visible !important;
  scroll-snap-type: none !important;
  padding-bottom: 0 !important;
}

.fh-cat-grid a {
  min-width: 0 !important;
  width: 100% !important;
  min-height: 128px !important;
  border-radius: 22px !important;
  padding: 20px !important;
  background:
    radial-gradient(circle at 100% 0%,
      rgba(246, 196, 1, 0.22),
      transparent 36%),
    linear-gradient(145deg, #111111 0%, #050505 100%) !important;
  border: 1px solid rgba(246, 196, 1, 0.78) !important;
  color: #ffffff !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035) !important;
  scroll-snap-align: unset !important;
}

.fh-cat-grid a:nth-child(2n) {
  background:
    radial-gradient(circle at 100% 0%,
      rgba(246, 196, 1, 0.26),
      transparent 38%),
    linear-gradient(145deg, #171300 0%, #060606 100%) !important;
  color: #ffffff !important;
}

.fh-cat-grid a span {
  color: #f6c401 !important;
}

.fh-cat-grid a:hover {
  transform: translateY(-3px) !important;
  background: linear-gradient(145deg, #f6c401 0%, #c99f00 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 16px 36px rgba(246, 196, 1, 0.26) !important;
}

.fh-cat-grid a:hover span {
  color: #ffffff !important;
}

/* ---------- Tablet ---------- */
@media (max-width: 1000px) {
  .fh-brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .fh-brand-grid a {
    height: 140px !important;
    min-width: 0 !important;
  }
}

@media (max-width: 760px) {
  .fh-cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .fh-cat-grid a {
    min-width: 0 !important;
    min-height: 112px !important;
    padding: 14px !important;
    border-radius: 18px !important;
    font-size: 17px !important;
  }
}

/* ---------- Mobile: 2 in a row for both ---------- */
@media (max-width: 600px) {
  .fh-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .fh-brand-grid a {
    min-width: 0 !important;
    width: 100% !important;
    height: 118px !important;
    padding: 13px !important;
    border-radius: 18px !important;
    font-size: 16px !important;
  }

  .fh-brand-grid a::before {
    inset: 6px !important;
    border-radius: 14px !important;
  }

  .fh-cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .fh-cat-grid a {
    min-width: 0 !important;
    width: 100% !important;
    min-height: 108px !important;
    padding: 13px !important;
    border-radius: 18px !important;
    font-size: 16px !important;
    line-height: 1.05 !important;
  }
}

@media (max-width: 380px) {

  .fh-brand-grid a,
  .fh-cat-grid a {
    font-size: 14px !important;
    min-height: 98px !important;
  }
}

/* =========================================================
   FINAL UI POLISH OVERRIDES
   Hero height compact + remove unnecessary red divider lines
========================================================= */

/* Remove hard red separator lines that were looking heavy UI-wise */
.fh-header,
.fh-brands,
.fh-cats,
.fh-trust,
.fh-footer {
  border-top: 0 !important;
  border-bottom: 0 !important;
}

/* Keep divider very subtle only where structure is needed */
.fh-marquee {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.fh-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Hero banner: reduced extra top and bottom spacing */
.fh-hero {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border: 0 !important;
}

.fh-hero-grid {
  min-height: 500px !important;
  padding-top: 26px !important;
  padding-bottom: 30px !important;
  gap: 34px !important;
}

.fh-hero-copy p {
  margin: 18px 0 22px !important;
}

.fh-stats {
  margin-top: 24px !important;
}

.fh-hero-art {
  min-height: 360px !important;
}

/* Less aggressive red pattern inside hero visual */
.fh-hero-art::before {
  opacity: 0.18 !important;
}

.fh-road {
  height: 48px !important;
  opacity: 0.72 !important;
}

/* Brand section: keep elegant grid, no red outer line */
.fh-brand-grid a {
  border: 1px solid rgba(246, 196, 1, 0.55) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04) !important;
}

.fh-brand-grid a::before {
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  opacity: 1 !important;
}

/* Category section: cleaner cards without section divider line */
.fh-cat-grid a {
  border: 1px solid rgba(246, 196, 1, 0.55) !important;
}

/* Mobile hero compact spacing */
@media (max-width: 900px) {
  .fh-hero-grid {
    min-height: auto !important;
    padding-top: 24px !important;
    padding-bottom: 26px !important;
    gap: 24px !important;
  }

  .fh-hero-art {
    min-height: 270px !important;
  }
}

@media (max-width: 520px) {
  .fh-hero-grid {
    padding-top: 18px !important;
    padding-bottom: 20px !important;
    gap: 18px !important;
  }

  .fh-hero-copy p {
    margin: 14px 0 18px !important;
  }

  .fh-stats {
    margin-top: 18px !important;
  }

  .fh-hero-art {
    min-height: 220px !important;
    border-radius: 22px !important;
  }

  .fh-road {
    height: 34px !important;
  }
}

.logo {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.logo img {
  display: block !important;
  margin: 0 auto !important;
  object-fit: contain !important;
}

@media (max-width: 768px) {
  .logo {
    width: 100% !important;
    justify-content: center !important;
  }

  .logo img {
    margin: 0 auto !important;
  }
}

.section {
  padding: 0px;
}

.product-card-name {
  color: #e3b501;
}

.product-card-price {
  color: #e3b501;
}

/* =========================================================
   WHATSAPP CTA + TRUST STRIP BORDER CLEANUP
   Removes unnecessary red lines and makes section cleaner
========================================================= */

/* Remove red outer border from WhatsApp section */
.fh-wa {
  border: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  background: #000000 !important;
  padding: 0 !important;
}

/* Make CTA card clean without red outline */
.fh-wa-card {
  border: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  background: #0b0b0b !important;
  border-radius: 0 !important;
}

/* Keep CTA button proper */
.fh-wa .fh-btn,
.fh-wa .fh-btn-primary,
.fh-wa .fh-btn-dark {
  background: #f6c401 !important;
  color: #ffffff !important;
  border: 1px solid #f6c401 !important;
}

.fh-wa .fh-btn:hover,
.fh-wa .fh-btn-primary:hover,
.fh-wa .fh-btn-dark:hover {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff !important;
}

/* Trust strip: remove heavy red top/bottom line */
.fh-trust {
  border-top: 0 !important;
  border-bottom: 0 !important;
  background: #000000 !important;
}

/* Make trust column dividers subtle instead of bright red */
.fh-trust-grid div {
  border-right: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.fh-trust-grid div:last-child {
  border-right: 0 !important;
}

/* Mobile trust border cleanup */
@media (max-width: 800px) {
  .fh-trust-grid div {
    border-right: 0 !important;
  }

  .fh-trust-grid div:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
  }
}

@media (max-width: 480px) {
  .fh-trust-grid div {
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-right: 0 !important;
  }

  .fh-trust-grid div:first-child {
    border-top: 0 !important;
  }
}

.fh-products {
  padding-top: 0px;
  padding-bottom: 0px;
}

.swiper-horizontal {
  background-color: #000 !important;
}

.foothunk-banner-collage {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

.foothunk-collage-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  padding: 10px;
  background: #000;
  border-radius: 30px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.foothunk-collage-item {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Images */
.img-one {
  background-image: url("https://image.cdn.shpy.in/333539/foothunkbanner%20(1).jpeg");
}

.img-two {
  background-image: url("https://image.cdn.shpy.in/333539/foothunkbanner%20(2).jpeg");
}

.img-three {
  background-image: url("https://image.cdn.shpy.in/333539/foothunkbanner%20(3).jpeg");
}

.img-four {
  background-image: url("https://image.cdn.shpy.in/333539/foothunkbanner%20(4).jpeg");
}

@media (max-width: 768px) {
  .foothunk-collage-grid {
    gap: 6px;
    padding: 6px;
    border-radius: 18px;
    aspect-ratio: auto;
  }

  .foothunk-collage-item {
    min-height: 160px;
    border-radius: 12px;
  }
}

.fh-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.fh-brand-card {
  position: relative;
  min-height: 220px;
  padding: 24px;
  border-radius: 30px;
  overflow: hidden;
  background: #0f0f0f;
  border: 1px solid rgba(246, 196, 1, 0.65);
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.fh-brand-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.fh-brand-img {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 42%;
  height: 44%;
  overflow: hidden;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.fh-brand-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
  object-position: center;
  filter: grayscale(100%);
  opacity: 0.78;
}

.fh-brand-card span {
  position: relative;
  z-index: 2;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
}

.fh-brand-card::after {
  content: "";
  position: absolute;
  top: -42px;
  right: -30px;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  border: 28px solid rgba(246, 196, 1, 0.22);
  z-index: 1;
  pointer-events: none;
}

.fh-brand-card:hover {
  transform: translateY(-4px);
  border-color: #f6c401;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.fh-brand-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 900px) {
  .fh-brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fh-brand-card {
    min-height: 190px;
  }
}

@media (max-width: 540px) {
  .fh-brand-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fh-brand-card {
    min-height: 170px;
    border-radius: 24px;
    padding: 22px;
  }

  .fh-brand-card::before {
    inset: 10px;
    border-radius: 20px;
  }

  .fh-brand-img {
    top: 20px;
    right: 20px;
    width: 44%;
    height: 42%;
  }

  .fh-brand-card span {
    font-size: 20px;
  }
}

/* =========================================================
   FINAL FIXES ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â CENTER HEADINGS + REELS + MORE TO EXPLORE
   Added to fix heading alignment, reels card count, and
   category image/text visibility.
========================================================= */

/* 1) All major section headings in center */
.fh-section-head,
.fh-products .fh-section-head,
.fh-brands .fh-section-head {
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column !important;
  text-align: center !important;
  gap: 8px !important;
}

.fh-section-head h2,
.fh-products .fh-section-head h2,
.fh-brands .fh-section-head h2,
.fh-cats h2,
.fh-budget h2,
.fh-reels-content h2,
.fh-wa h2,
.fh-title {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.fh-section-head .fh-eyebrow,
.fh-cats .fh-eyebrow,
.fh-budget .fh-eyebrow,
.fh-reels .fh-eyebrow,
.fh-wa .fh-eyebrow {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
}

.fh-section-head a {
  margin-left: auto !important;
  margin-right: auto !important;
  border-bottom: 0 !important;
  text-align: center !important;
}

/* keep hero content centered only when it uses fh-title */
.fh-hero-copy {
  text-align: center !important;
}

.fh-hero-copy p,
.fh-hero-actions,
.fh-stats {
  margin-left: auto !important;
  margin-right: auto !important;
  justify-content: center !important;
}

/* 2) Reels section: desktop 5 cards visible, mobile 3 cards visible + horizontal scroll */
.fh-reels {
  padding: 4px 0 !important;
}

.fh-reels-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 24px !important;
  align-items: center !important;
}

.fh-reels-content {
  text-align: center !important;
  max-width: 720px !important;
  margin: 0 auto !important;
}

.fh-reels-content p {
  max-width: 560px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.fh-reels-area {
  width: 100% !important;
  min-width: 0 !important;
}

.fh-reel-scroll {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 14px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory !important;
  -webkit-overflow-scrolling: touch !important;
  padding: 4px 2px 14px !important;
}

.fh-reel-card {
  flex: 0 0 calc((100% - 56px) / 5) !important;
  min-width: calc((100% - 56px) / 5) !important;
  max-width: calc((100% - 56px) / 5) !important;
  aspect-ratio: 9 / 16 !important;
  scroll-snap-align: start !important;
  border-radius: 18px !important;
}

.fh-reel-card video,
.fh-reel-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

@media (max-width: 900px) {
  .fh-reel-scroll {
    gap: 10px !important;
    padding-bottom: 12px !important;
  }

  .fh-reel-card {
    flex: 0 0 calc((100% - 20px) / 3) !important;
    min-width: calc((100% - 20px) / 3) !important;
    max-width: calc((100% - 20px) / 3) !important;
    border-radius: 14px !important;
  }

  .fh-reel-arrow {
    display: none !important;
  }
}

@media (max-width: 520px) {
  .fh-reels {
    padding: 3px 0 !important;
  }

  .fh-reel-scroll {
    gap: 8px !important;
  }

  .fh-reel-card {
    flex: 0 0 calc((100% - 16px) / 3) !important;
    min-width: calc((100% - 16px) / 3) !important;
    max-width: calc((100% - 16px) / 3) !important;
    border-radius: 12px !important;
  }
}

/* 3) More To Explore / Category section: proper image cards + visible text */
.fh-cats {
  padding: 48px 0 !important;
  background: #000000 !important;
}

.fh-cats .fh-wrap {
  text-align: center !important;
}

.fh-cat-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
  overflow: visible !important;
  padding-bottom: 0 !important;
}

.fh-cat-grid a {
  position: relative !important;
  isolation: isolate !important;
  min-width: 0 !important;
  width: 100% !important;
  min-height: 230px !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
  border-radius: 20px !important;
  padding: 16px !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 10px !important;
  background: #070707 !important;
  border: 1px solid rgba(246, 196, 1, 0.75) !important;
  color: #ffffff !important;
  font-family: var(--fh-display) !important;
  font-size: clamp(16px, 1.6vw, 22px) !important;
  font-weight: 900 !important;
  line-height: 1.02 !important;
  letter-spacing: -0.02em !important;
  text-align: left !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.045) !important;
}

.fh-cat-grid a::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  height: 56% !important;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.96),
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0)) !important;
  z-index: -1 !important;
  pointer-events: none !important;
}

.fh-cat-grid a>img {
  position: absolute !important;
  left: 10px !important;
  right: 10px !important;
  top: 10px !important;
  width: calc(100% - 20px) !important;
  height: 68% !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 15px !important;
  z-index: -2 !important;
  opacity: 0.96 !important;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease !important;
}

.fh-cat-grid a span {
  flex: 0 0 auto !important;
  color: #fff !important;
  font-size: 22px !important;
  line-height: 1 !important;
  margin-left: auto !important;
  position: relative !important;
}

.fh-cat-grid a:hover {
  transform: translateY(-3px) !important;
  background: #0d0d0d !important;
  color: #ffffff !important;
  border-color: #f6c401 !important;
  box-shadow: 0 16px 36px rgba(246, 196, 1, 0.2) !important;
}

.fh-cat-grid a:hover>img {
  transform: scale(1.04) !important;
  opacity: 1 !important;
}

.fh-cat-grid a:hover span {
  color: #ffffff !important;
}

@media (max-width: 900px) {
  .fh-cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .fh-cat-grid a {
    min-height: 190px !important;
    border-radius: 18px !important;
    padding: 14px !important;
    font-size: 17px !important;
  }
}

@media (max-width: 520px) {
  .fh-cats {
    padding: 3px 10px !important;
  }

  .fh-cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .fh-cat-grid a {
    min-height: 150px !important;
    aspect-ratio: 1 / 1 !important;
    padding: 10px !important;
    border-radius: 14px !important;
    font-size: 13px !important;
    line-height: 1.04 !important;
  }

  .fh-cat-grid a>img {
    left: 8px !important;
    right: 8px !important;
    top: 8px !important;
    width: calc(100% - 16px) !important;
    height: 66% !important;
    border-radius: 11px !important;
  }

  .fh-cat-grid a span {
    font-size: 16px !important;
  }
}

/* =========================================================
   FINAL FIX ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â MOBILE FOOTER + SHOP BY BRAND + MORE TO EXPLORE
   Date: latest override
========================================================= */

/* 1) Footer mobile hide rule removed: all required footer items stay visible */

/* 2) Shop By Brand: clean heading and card UI */
.fh-brands {
  padding: 42px 0 44px !important;
  background: #000000 !important;
}

.fh-brands .fh-section-head {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 6px !important;
  margin-bottom: 18px !important;
}

.fh-brands .fh-section-head h2 {
  margin: 0 !important;
  font-size: clamp(32px, 4vw, 48px) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.055em !important;
  color: #ffffff !important;
}

.fh-brands .fh-section-head a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-bottom: 0 !important;
  color: #f6c401 !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

.fh-brand-grid {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 12px !important;
  overflow: visible !important;
  padding-bottom: 0 !important;
}

.fh-brand-grid>a,
.fh-brand-card {
  position: relative !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 166px !important;
  min-height: 166px !important;
  padding: 12px !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  color: #ffffff !important;
  text-decoration: none !important;
  background:
    radial-gradient(circle at 18% 0%, rgba(246, 196, 1, 0.23), transparent 34%),
    linear-gradient(145deg, #161616 0%, #050505 100%) !important;
  border: 1px solid rgba(246, 196, 1, 0.65) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.045) !important;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease !important;
}

.fh-brand-grid>a::before,
.fh-brand-card::before {
  content: "" !important;
  position: absolute !important;
  inset: 7px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  pointer-events: none !important;
  z-index: 4 !important;
}

.fh-brand-grid>a::after,
.fh-brand-card::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  height: 56% !important;
  border: 0 !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

.fh-brand-img {
  position: absolute !important;
  inset: 10px 10px 42px 10px !important;
  width: auto !important;
  height: auto !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background: rgba(255, 255, 255, 0.04) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 1 !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

.fh-brand-img img,
.fh-brand-card img,
.fh-brand-grid>a img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: fill !important;
  object-position: center !important;
  filter: grayscale(100%) contrast(1.04) !important;
  opacity: 0.86 !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: -9999px !important;
}

.fh-brand-card span,
.fh-brand-grid>a>span {
  position: relative !important;
  z-index: 3 !important;
  display: block !important;
  max-width: 95% !important;
  color: #ffffff !important;
  font-family: var(--fh-display) !important;
  font-size: clamp(15px, 1.45vw, 21px) !important;
  font-weight: 900 !important;
  line-height: 0.96 !important;
  letter-spacing: -0.02em !important;
  text-transform: uppercase !important;
  text-align: left !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.75) !important;
}

.fh-brand-grid>a:hover,
.fh-brand-card:hover {
  transform: translateY(-3px) !important;
  border-color: #f6c401 !important;
  box-shadow: 0 16px 34px rgba(246, 196, 1, 0.18) !important;
}

.fh-brand-grid>a:hover img,
.fh-brand-card:hover img {
  filter: grayscale(0%) contrast(1.02) !important;
  opacity: 1 !important;
}

@media (max-width: 1000px) {
  .fh-brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }
}

@media (max-width: 600px) {
  .fh-brands {
    padding: 34px 0 !important;
  }

  .fh-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .fh-brand-grid>a,
  .fh-brand-card {
    height: 138px !important;
    min-height: 138px !important;
    border-radius: 14px !important;
    padding: 10px !important;
  }

  .fh-brand-img {
    inset: 8px 8px 36px 8px !important;
    border-radius: 10px !important;
  }

  .fh-brand-card span,
  .fh-brand-grid>a>span {
    font-size: 15px !important;
    line-height: 0.98 !important;
  }
}

/* 3) More To Explore: compact cards, image focus, readable text */
.fh-cats {
  padding: 40px 0 42px !important;
  background: #000000 !important;
}

.fh-cats .fh-wrap {
  text-align: center !important;
}

.fh-cats h2 {
  margin: 8px 0 20px !important;
  text-align: center !important;
  font-size: clamp(30px, 4vw, 48px) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.055em !important;
}

.fh-cat-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
  overflow: visible !important;
  padding-bottom: 0 !important;
}

.fh-cat-grid a {
  position: relative !important;
  min-width: 0 !important;
  width: 100% !important;
  min-height: 188px !important;
  aspect-ratio: 4 / 3 !important;
  padding: 14px !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 8px !important;
  background: #070707 !important;
  border: 1px solid rgba(246, 196, 1, 0.68) !important;
  color: #ffffff !important;
  font-family: var(--fh-display) !important;
  font-size: clamp(15px, 1.55vw, 22px) !important;
  font-weight: 900 !important;
  line-height: 0.98 !important;
  letter-spacing: -0.02em !important;
  text-align: left !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  box-shadow:
    inset 0 -78px 58px rgba(0, 0, 0, 0.96),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04) !important;
}

.fh-cat-grid a::after {
  display: none !important;
}

.fh-cat-grid a>img {
  position: absolute !important;
  left: 10px !important;
  right: 10px !important;
  top: 10px !important;
  width: calc(100% - 20px) !important;
  height: 66% !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 12px !important;
  z-index: 0 !important;
  opacity: 0.92 !important;
  filter: grayscale(35%) contrast(1.04) !important;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    filter 0.3s ease !important;
}

.fh-cat-grid a span {
  position: relative !important;
  z-index: 2 !important;
  color: #f6c401 !important;
  font-size: 20px !important;
  line-height: 1 !important;
  margin-left: auto !important;
  flex: 0 0 auto !important;
}

.fh-cat-grid a:hover {
  transform: translateY(-3px) !important;
  border-color: #f6c401 !important;
  background: #0a0a0a !important;
  color: #ffffff !important;
  box-shadow:
    inset 0 -78px 58px rgba(0, 0, 0, 0.92),
    0 14px 32px rgba(246, 196, 1, 0.18) !important;
}

.fh-cat-grid a:hover>img {
  transform: scale(1.04) !important;
  opacity: 1 !important;
  filter: grayscale(0%) contrast(1.02) !important;
}

@media (max-width: 760px) {
  .fh-cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .fh-cat-grid a {
    min-height: 138px !important;
    aspect-ratio: 1 / 1 !important;
    padding: 10px !important;
    border-radius: 14px !important;
    font-size: 13px !important;
    line-height: 1.02 !important;
    box-shadow:
      inset 0 -72px 52px rgba(0, 0, 0, 0.96),
      inset 0 0 0 1px rgba(255, 255, 255, 0.04) !important;
  }

  .fh-cat-grid a>img {
    left: 8px !important;
    right: 8px !important;
    top: 8px !important;
    width: calc(100% - 16px) !important;
    height: 62% !important;
    border-radius: 10px !important;
  }

  .fh-cat-grid a span {
    font-size: 15px !important;
  }
}

/* =====================================================
   FH Category Card - Full Image Cover + Black Bold Text
   Paste this at the bottom of your CSS file
   ===================================================== */

.fh-cat-grid a {
  position: relative !important;
  overflow: hidden !important;
  min-height: 280px !important;
  border-radius: 22px !important;

  display: flex !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;

  padding: 0 24px 28px !important;
  text-align: left !important;

  font-size: 28px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: -0.04em !important;
  text-transform: uppercase !important;
  color: #000000 !important;

  isolation: isolate !important;
}

/* Image covers complete container */
.fh-cat-grid a>img {
  position: absolute !important;
  inset: 0 !important;

  width: 100% !important;
  height: 100% !important;

  object-fit: cover !important;
  object-position: center !important;

  border-radius: inherit !important;
  z-index: -2 !important;
  opacity: 1 !important;
  filter: none !important;
}

/* Remove inner white border */
.fh-cat-grid a::after {
  display: none !important;
  content: none !important;
}

/* Arrow styling */
.fh-cat-grid a span {
  margin-left: 6px !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  color: #000000 !important;
  transform: translateY(-1px);
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .fh-cat-grid a {
    min-height: 210px !important;
    padding: 0 16px 22px !important;
    font-size: 21px !important;
    border-radius: 18px !important;
  }

  .fh-cat-grid a span {
    font-size: 16px !important;
  }
}

/* =========================================================
   FINAL CATEGORY IMAGE FIX ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â remove grey/white top box
   Image covers full card, top grey area hidden, black bold text
   ========================================================= */

.fh-cat-grid a {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;

  min-width: 0 !important;
  width: 100% !important;
  min-height: 280px !important;
  aspect-ratio: 4 / 3 !important;

  border-radius: 22px !important;
  border: 1px solid rgba(246, 196, 1, 0.78) !important;
  background: #000000 !important;

  display: flex !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  gap: 8px !important;

  padding: 0 24px 26px !important;

  font-family: var(--fh-display) !important;
  font-size: clamp(22px, 2.2vw, 32px) !important;
  font-weight: 900 !important;
  line-height: 0.95 !important;
  letter-spacing: -0.055em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  text-align: left !important;
  white-space: nowrap !important;

  color: #000000 !important;
  text-shadow: none !important;
  box-shadow: none !important;
}

/* Full image cover */
.fh-cat-grid a>img {
  position: absolute !important;
  inset: 0 !important;

  width: 100% !important;
  height: 100% !important;

  object-fit: cover !important;
  object-position: center 72% !important;

  border-radius: inherit !important;
  z-index: -3 !important;
  opacity: 1 !important;
  filter: none !important;

  transform: scale(1.08) !important;
  transform-origin: center bottom !important;
  transition: transform 0.35s ease !important;
}

/* Remove previous inner/white border */
.fh-cat-grid a::after {
  display: none !important;
  content: none !important;
}

/* Force category text + arrow black */
.fh-cat-grid a,
.fh-cat-grid a:visited,
.fh-cat-grid a:hover,
.fh-cat-grid a span,
.fh-cat-grid a:hover span {
  color: #000000 !important;
  text-shadow: none !important;
}

.fh-cat-grid a span {
  position: relative !important;
  z-index: 2 !important;
  margin-left: 4px !important;
  font-size: 22px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  transform: translateY(-1px) !important;
}

/* Hover */
.fh-cat-grid a:hover {
  transform: translateY(-3px) !important;
  border-color: #f6c401 !important;
  background: #000000 !important;
  box-shadow: 0 14px 30px rgba(246, 196, 1, 0.18) !important;
}

.fh-cat-grid a:hover>img {
  transform: scale(1.12) !important;
}

/* Mobile */
@media (max-width: 768px) {
  .fh-cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .fh-cat-grid a {
    min-height: 170px !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 16px !important;
    padding: 0 12px 18px !important;
    font-size: 16px !important;
    letter-spacing: -0.035em !important;
    white-space: normal !important;
  }

  .fh-cat-grid a>img {
    object-position: center 74% !important;
    transform: scale(1.1) !important;
  }

  .fh-cat-grid a span {
    font-size: 15px !important;
  }

  .fh-cat-grid a:hover>img {
    transform: scale(1.13) !important;
  }
}

@media (max-width: 380px) {
  .fh-cat-grid a {
    min-height: 150px !important;
    font-size: 14px !important;
    padding: 0 10px 16px !important;
  }

  .fh-cat-grid a span {
    font-size: 14px !important;
  }
}

/* =========================================================
   FINAL HEADING FIX
   - Makes all major section headings consistent
   - Adds proper word spacing: LIVE PRODUCT VIDEOS
   - Keeps headings centered with clean yellow underline
========================================================= */

.fh-title,
.fh-section-head h2,
.fh-products .fh-section-head h2,
.fh-brands .fh-section-head h2,
.fh-cats h2,
.fh-budget h2,
.fh-reels-content h2,
.fh-wa h2,
.fh-footer h2,
.collection-header,
.collection-header h2,
.collection-header h3,
.category-header,
.category-header h2,
.category-header h3,
.section-heading,
.heading-title {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;

  font-family: var(--fh-display) !important;
  font-size: clamp(32px, 4.6vw, 64px) !important;
  font-weight: 900 !important;
  line-height: 0.95 !important;

  letter-spacing: -0.025em !important;
  word-spacing: 0.18em !important;
  text-transform: uppercase !important;

  color: #ffffff !important;
  text-align: center !important;

  margin: 0 auto 24px !important;
  padding: 0 !important;
}

.fh-section-head,
.fh-products .fh-section-head,
.fh-brands .fh-section-head,
.collection-header,
.category-header {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 10px !important;
  margin: 0 auto 28px !important;
}

.fh-section-head h2::after,
.fh-products .fh-section-head h2::after,
.fh-brands .fh-section-head h2::after,
.fh-cats h2::after,
.fh-budget h2::after,
.fh-reels-content h2::after,
.fh-wa h2::after,
.collection-header h2::after,
.category-header h2::after,
.section-heading::after,
.heading-title::after {
  content: "" !important;
  display: block !important;
  width: 96px !important;
  height: 6px !important;
  margin: 22px auto 0 !important;
  border-radius: 999px !important;
  background: #f6c401 !important;
}

.fh-eyebrow,
.fh-section-head .fh-eyebrow,
.fh-cats .fh-eyebrow,
.fh-budget .fh-eyebrow,
.fh-reels .fh-eyebrow,
.fh-wa .fh-eyebrow {
  display: block !important;
  width: 100% !important;
  margin: 0 0 8px !important;
  text-align: center !important;
  color: #f6c401 !important;
  letter-spacing: 0.18em !important;
}

.fh-section-head a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  margin: 0 auto !important;
  color: #f6c401 !important;
  text-align: center !important;
  border-bottom: 0 !important;
}

@media (max-width: 768px) {
  /* .fh-title,
  .fh-section-head h2,
  .fh-products .fh-section-head h2,
  .fh-brands .fh-section-head h2,
  .fh-cats h2,
  .fh-budget h2,
  .fh-reels-content h2,
  .fh-wa h2,
  .fh-footer h2,
  .collection-header,
  .collection-header h2,
  .collection-header h3,
  .category-header,
  .category-header h2,
  .category-header h3,
  .section-heading,
  .heading-title {
    font-size: clamp(28px, 9vw, 42px) !important;
    line-height: 1 !important;
    letter-spacing: -0.02em !important;
    word-spacing: 0.14em !important;
    margin-bottom: 18px !important;
  } */

  .fh-section-head,
  .fh-products .fh-section-head,
  .fh-brands .fh-section-head,
  .collection-header,
  .category-header {
    gap: 8px !important;
    margin-bottom: 22px !important;
  }

  .fh-section-head h2::after,
  .fh-products .fh-section-head h2::after,
  .fh-brands .fh-section-head h2::after,
  .fh-cats h2::after,
  .fh-budget h2::after,
  .fh-reels-content h2::after,
  .fh-wa h2::after,
  .collection-header h2::after,
  .category-header h2::after,
  .section-heading::after,
  .heading-title::after {
    width: 74px !important;
    height: 5px !important;
    margin-top: 16px !important;
  }
}

/* =========================================================
   FINAL FIX ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â SHOP BY BRAND 7 CARDS IN ONE ROW ON DESKTOP
   Desktop: 7 in one row
   Tablet: 4 / 3 columns
   Mobile: 2 in one row
========================================================= */

.fh-brands {
  padding-top: 30px !important;
  padding-bottom: 32px !important;
  background: #000000 !important;
}

.fh-brand-grid {
  display: grid !important;
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  gap: 10px !important;
  width: 100% !important;
  overflow: visible !important;
  overflow-x: visible !important;
  scroll-snap-type: none !important;
  padding-bottom: 0 !important;
}

.fh-brand-grid>a,
.fh-brand-card {
  width: 100% !important;
  min-width: 0 !important;
  height: 132px !important;
  min-height: 132px !important;
  padding: 10px !important;
  border-radius: 14px !important;
  scroll-snap-align: unset !important;
}

.fh-brand-img {
  inset: 8px 8px 34px 8px !important;
  border-radius: 10px !important;
}

.fh-brand-card span,
.fh-brand-grid>a>span,
.fh-brand-grid a {
  font-size: clamp(12px, 0.95vw, 16px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.015em !important;
}

.fh-brand-grid>a::before,
.fh-brand-card::before {
  inset: 6px !important;
  border-radius: 10px !important;
}

/* Large laptop / small desktop */
@media (max-width: 1200px) {
  .fh-brand-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .fh-brand-grid>a,
  .fh-brand-card {
    height: 142px !important;
    min-height: 142px !important;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .fh-brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .fh-brand-grid>a,
  .fh-brand-card {
    height: 136px !important;
    min-height: 136px !important;
  }
}

/* Mobile: keep 2 cards in one row */
@media (max-width: 600px) {
  .fh-brands {
    padding-top: 24px !important;
    padding-bottom: 26px !important;
  }

  .fh-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .fh-brand-grid>a,
  .fh-brand-card {
    height: 128px !important;
    min-height: 128px !important;
    border-radius: 14px !important;
    padding: 10px !important;
  }

  .fh-brand-img {
    inset: 8px 8px 34px 8px !important;
    border-radius: 10px !important;
  }

  .fh-brand-card span,
  .fh-brand-grid>a>span,
  .fh-brand-grid a {
    font-size: 14px !important;
    line-height: 1 !important;
  }
}

@media (max-width: 380px) {
  .fh-brand-grid {
    gap: 8px !important;
  }

  .fh-brand-grid>a,
  .fh-brand-card {
    height: 116px !important;
    min-height: 116px !important;
    padding: 9px !important;
  }

  .fh-brand-card span,
  .fh-brand-grid>a>span,
  .fh-brand-grid a {
    font-size: 12.5px !important;
  }
}

/* =========================================================
   FINAL PERFECT HEADING POLISH
   Reduced font size + weight for cleaner premium UI
   Keep this block at the END of the CSS file
========================================================= */

/* Main section headings */
.fh-title,
.fh-section-head h2,
.fh-products .fh-section-head h2,
.fh-brands .fh-section-head h2,
.fh-cats h2,
.fh-budget h2,
.fh-reels-content h2,
.fh-wa h2,
.fh-footer h2,
.collection-header,
.collection-header h2,
.collection-header h3,
.category-header,
.category-header h2,
.category-header h3,
.section-heading,
.heading-title {
  font-size: clamp(26px, 3.15vw, 44px) !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.018em !important;
  word-spacing: 0.08em !important;
  margin: 0 auto 18px !important;
  text-align: center !important;
  text-transform: uppercase !important;
}

/* Hero heading can stay slightly stronger, but not too bold */
.fh-hero .fh-title,
.fh-hero-copy .fh-title {
  font-size: clamp(34px, 4.2vw, 56px) !important;
  font-weight: 700 !important;
  line-height: 1.02 !important;
  letter-spacing: -0.024em !important;
  margin-bottom: 16px !important;
}

/* Section header spacing */
.fh-section-head,
.fh-products .fh-section-head,
.fh-brands .fh-section-head,
.collection-header,
.category-header {
  gap: 6px !important;
  margin: 0 auto 22px !important;
}

/* Eyebrow / small heading label */
.fh-eyebrow,
.fh-section-head .fh-eyebrow,
.fh-cats .fh-eyebrow,
.fh-budget .fh-eyebrow,
.fh-reels .fh-eyebrow,
.fh-wa .fh-eyebrow {
  font-size: 10px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.16em !important;
  margin-bottom: 6px !important;
  margin-top: 6px !important;
}

/* Clean thinner underline below headings */
.fh-section-head h2::after,
.fh-products .fh-section-head h2::after,
.fh-brands .fh-section-head h2::after,
.fh-cats h2::after,
.fh-budget h2::after,
.fh-reels-content h2::after,
.fh-wa h2::after,
.collection-header h2::after,
.category-header h2::after,
.section-heading::after,
.heading-title::after {
  width: 64px !important;
  height: 3px !important;
  margin: 12px auto 0 !important;
  border-radius: 999px !important;
  background: #f6c401 !important;
}

/* Product and card headings */
.fh-product h3,
.fh-budget strong,
.fh-trust b,
.fh-brand-card span,
.fh-brand-grid>a>span,
.fh-cat-grid a {
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}

.fh-product h3 {
  font-size: 17px !important;
  line-height: 1.25 !important;
}

.fh-budget strong {
  font-size: clamp(24px, 2.4vw, 32px) !important;
  line-height: 1.05 !important;
}

.fh-trust b {
  font-size: 16px !important;
  line-height: 1.15 !important;
}

/* Brand card text ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â compact and premium */
.fh-brand-card span,
.fh-brand-grid>a>span,
.fh-brand-grid a {
  font-size: clamp(11.5px, 0.82vw, 14px) !important;
  font-weight: 700 !important;
  line-height: 1.05 !important;
}

/* Category card text */
.fh-cat-grid a {
  font-size: clamp(14px, 1.25vw, 18px) !important;
  line-height: 1.08 !important;
}

.fh-cat-grid a span {
  font-size: 18px !important;
  font-weight: 700 !important;
}

/* Footer column headings */
.fh-footer h3 {
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  letter-spacing: 0.01em !important;
}

/* Mobile heading polish */
@media (max-width: 768px) {

  .fh-title,
  .fh-section-head h2,
  .fh-products .fh-section-head h2,
  .fh-brands .fh-section-head h2,
  .fh-cats h2,
  .fh-budget h2,
  .fh-reels-content h2,
  .fh-wa h2,
  .fh-footer h2,
  .collection-header,
  .collection-header h2,
  .collection-header h3,
  .category-header,
  .category-header h2,
  .category-header h3,
  .section-heading,
  .heading-title {
    font-size: clamp(23px, 6.4vw, 32px) !important;
    font-weight: 700 !important;
    line-height: 1.12 !important;
    letter-spacing: -0.012em !important;
    word-spacing: 0.04em !important;
    margin-bottom: 14px !important;
  }

  .fh-hero .fh-title,
  .fh-hero-copy .fh-title {
    font-size: clamp(30px, 8vw, 42px) !important;
    font-weight: 700 !important;
    line-height: 1.05 !important;
  }

  .fh-section-head,
  .fh-products .fh-section-head,
  .fh-brands .fh-section-head,
  .collection-header,
  .category-header {
    gap: 5px !important;
    margin-bottom: 18px !important;
  }

  .fh-section-head h2::after,
  .fh-products .fh-section-head h2::after,
  .fh-brands .fh-section-head h2::after,
  .fh-cats h2::after,
  .fh-budget h2::after,
  .fh-reels-content h2::after,
  .fh-wa h2::after,
  .collection-header h2::after,
  .category-header h2::after,
  .section-heading::after,
  .heading-title::after {
    width: 50px !important;
    height: 3px !important;
    margin-top: 10px !important;
  }

  .fh-product h3 {
    font-size: 16px !important;
  }

  .fh-budget strong {
    font-size: 24px !important;
  }

  .fh-trust b {
    font-size: 15px !important;
  }

  .fh-brand-card span,
  .fh-brand-grid>a>span,
  .fh-brand-grid a {
    font-size: 12.5px !important;
    font-weight: 700 !important;
  }

  .fh-cat-grid a {
    font-size: 13px !important;
    font-weight: 700 !important;
  }

  .fh-cat-grid a span {
    font-size: 15px !important;
  }
}

@media (max-width: 380px) {

  .fh-title,
  .fh-section-head h2,
  .fh-products .fh-section-head h2,
  .fh-brands .fh-section-head h2,
  .fh-cats h2,
  .fh-budget h2,
  .fh-reels-content h2,
  .fh-wa h2,
  .fh-footer h2 {
    font-size: clamp(21px, 6.2vw, 28px) !important;
  }

  .fh-brand-card span,
  .fh-brand-grid>a>span,
  .fh-brand-grid a {
    font-size: 11.5px !important;
  }
}

/* =========================================================
   FINAL MOBILE FIX ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â SHOP BY BRAND 3 CARDS IN ONE ROW
   Keep this block at the END of the CSS file
========================================================= */

@media (max-width: 600px) {
  .fh-brands {
    padding-top: 24px !important;
    padding-bottom: 26px !important;
  }

  .fh-brand-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
    overflow: visible !important;
    overflow-x: visible !important;
    padding-bottom: 0 !important;
  }

  .fh-brand-grid>a,
  .fh-brand-card {
    width: 100% !important;
    min-width: 0 !important;
    height: 108px !important;
    min-height: 108px !important;
    padding: 7px !important;
    border-radius: 12px !important;
  }

  .fh-brand-img {
    inset: 6px 6px 30px 6px !important;
    border-radius: 8px !important;
  }

  .fh-brand-grid>a::before,
  .fh-brand-card::before {
    inset: 5px !important;
    border-radius: 9px !important;
  }

  .fh-brand-card span,
  .fh-brand-grid>a>span,
  .fh-brand-grid a {
    font-size: 10.5px !important;
    font-weight: 700 !important;
    line-height: 1.02 !important;
    letter-spacing: -0.01em !important;
  }
}

@media (max-width: 380px) {
  .fh-brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 6px !important;
  }

  .fh-brand-grid>a,
  .fh-brand-card {
    height: 96px !important;
    min-height: 96px !important;
    padding: 6px !important;
    border-radius: 10px !important;
  }

  .fh-brand-img {
    inset: 5px 5px 27px 5px !important;
    border-radius: 7px !important;
  }

  .fh-brand-card span,
  .fh-brand-grid>a>span,
  .fh-brand-grid a {
    font-size: 9.5px !important;
    line-height: 1.02 !important;
  }
}

.mobile-menu-content {
  background-color: #000;
  color: #fff;
}

/* =========================================================
   FINAL FIX ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â MORE TO EXPLORE / CATEGORY CARDS
   Mobile: 3 cards in one row
   Text: transparent black stripe for better visibility
   Image: full cover inside card
========================================================= */

.fh-cats {
  background: #000000 !important;
  padding: 34px 0 !important;
}

.fh-cat-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
  overflow: visible !important;
  overflow-x: visible !important;
  scroll-snap-type: none !important;
  padding-bottom: 0 !important;
}

.fh-cat-grid a {
  position: relative !important;
  isolation: isolate !important;
  min-width: 0 !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  min-height: auto !important;
  overflow: hidden !important;
  border-radius: 18px !important;
  padding: 10px !important;

  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 6px !important;

  background: #080808 !important;
  border: 1px solid rgba(246, 196, 1, 0.72) !important;
  color: #ffffff !important;

  font-family: var(--fh-display) !important;
  font-size: clamp(12px, 1.4vw, 18px) !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em !important;
  text-align: left !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;

  box-shadow: none !important;
  scroll-snap-align: unset !important;
}

/* Full image cover */
.fh-cat-grid a>img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: inherit !important;
  z-index: -2 !important;
  opacity: 1 !important;
  filter: none !important;
}

/* Remove semi-circle / extra decorative design */
.fh-cat-grid a::before {
  display: none !important;
  content: none !important;
}

/* Transparent stripe behind text */
.fh-cat-grid a::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  height: 34% !important;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.58) 62%,
      rgba(0, 0, 0, 0.08) 100%) !important;
  backdrop-filter: blur(2px) !important;
  -webkit-backdrop-filter: blur(2px) !important;
  z-index: -1 !important;
  pointer-events: none !important;
}

/* Text and arrow should stay above stripe */
.fh-cat-grid a,
.fh-cat-grid a span,
.fh-cat-grid a strong {
  color: #ffffff !important;
  position: relative !important;
}

.fh-cat-grid a span {
  color: #fff !important;
  font-size: 1em !important;
  line-height: 1 !important;
  margin-left: 4px !important;
  flex: 0 0 auto !important;
}

.fh-cat-grid a:hover {
  transform: translateY(-3px) !important;
  border-color: #f6c401 !important;
  color: #ffffff !important;
  background: #000000 !important;
  box-shadow: 0 14px 34px rgba(246, 196, 1, 0.18) !important;
}

.fh-cat-grid a:hover>img {
  transform: scale(1.04) !important;
}

/* Tablet also 3 in row */
@media (max-width: 900px) {
  .fh-cat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .fh-cat-grid a {
    border-radius: 16px !important;
    padding: 9px !important;
    font-size: 12px !important;
  }
}

/* Mobile: exactly 3 in one row */
@media (max-width: 600px) {
  .fh-cat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 6px !important;
  }

  .fh-cat-grid a {
    aspect-ratio: 1 / 1 !important;
    min-height: auto !important;
    border-radius: 10px !important;
    padding: 6px !important;
    font-size: 9px !important;
    line-height: 1.05 !important;
    letter-spacing: -0.01em !important;
  }

  .fh-cat-grid a::after {
    height: 38% !important;
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.86) 0%,
        rgba(0, 0, 0, 0.62) 66%,
        rgba(0, 0, 0, 0.08) 100%) !important;
  }

  .fh-cat-grid a span {
    font-size: 10px !important;
    margin-left: 2px !important;
  }
}

@media (max-width: 380px) {
  .fh-cat-grid {
    gap: 5px !important;
  }

  .fh-cat-grid a {
    font-size: 8px !important;
    padding: 5px !important;
    border-radius: 9px !important;
  }

  .fh-cat-grid a span {
    font-size: 9px !important;
  }
}

/* =========================================================
   FOOTHUNK FOOTER
   Sequence: Why Choose ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬ ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ Features ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬ ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ Logo ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬ ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ Help ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬ ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ Bottom
========================================================= */

.fh-footer {
  background: #000000;
  color: #ffffff;
  padding: 54px 0 0;
  font-family: "Inter", Arial, sans-serif;
}

.fh-footer,
.fh-footer * {
  box-sizing: border-box;
}

.fh-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.fh-footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: 56px;
  align-items: flex-start;
}

.fh-footer-brand h2 {
  margin: 0 0 26px;
  color: #ffffff;
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.fh-footer-brand h2 span {
  color: #f6c401;
}

.fh-footer-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.fh-footer-feature {
  padding: 18px;
  border-radius: 18px;
  background: #0b0b0b;
  border: 1px solid rgba(246, 196, 1, 0.32);
}

.fh-footer-feature strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}

.fh-footer-feature p {
  margin: 0;
  color: #bdbdbd;
  font-size: 13px;
  line-height: 1.6;
}

.fh-footer-logo {
  display: block;
  width: 130px;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(246, 196, 1, 0.45);
}

.fh-footer-help {
  padding-top: 8px;
}

.fh-footer-help h3 {
  margin: 0 0 18px;
  color: #f6c401;
  font-family: "Archivo", Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.fh-footer-help a {
  display: block;
  width: fit-content;
  margin: 0 0 13px;
  color: #d6d6d6;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

.fh-footer-help a:hover {
  color: #f6c401;
  transform: translateX(3px);
}

.fh-footer-bottom {
  margin-top: 44px;
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.fh-footer-bottom p {
  margin: 0;
  color: #a8a8a8;
  font-size: 13px;
  line-height: 1.5;
}

/* ================= Mobile ================= */

@media (max-width: 768px) {
  .fh-footer {
    padding-top: 38px;
  }

  .fh-wrap {
    padding: 10 1px;
  }

  .fh-footer-top {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .fh-footer-brand {
    display: flex;
    flex-direction: column;
  }

  /* 1. Why Choose Foothunk */
  .fh-footer-brand h2 {
    order: 1;
    margin-bottom: 20px;
    font-size: 40px;
    line-height: 0.9;
    text-align: left;
  }

  /* 2. Features */
  .fh-footer-features {
    order: 2;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 22px;
  }

  .fh-footer-feature {
    padding: 15px;
    border-radius: 15px;
  }

  .fh-footer-feature strong {
    font-size: 14px;
  }

  .fh-footer-feature p {
    font-size: 13px;
  }

  /* 3. Logo */
  .fh-footer-logo {
    order: 3;
    width: 112px;
    margin-top: 2px;
  }

  /* 4. Help */
  .fh-footer-help {
    padding-top: 0;
  }

  .fh-footer-help h3 {
    margin-bottom: 14px;
    font-size: 22px;
  }

  .fh-footer-help a {
    margin-bottom: 12px;
    font-size: 14px;
  }

  /* 5. Footer Bottom */
  .fh-footer-bottom {
    margin-top: 28px;
    padding-top: 16px;
    padding-bottom: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 420px) {
  .fh-footer-brand h2 {
    font-size: 34px;
  }

  .fh-footer-feature {
    padding: 13px;
  }
}

/* =========================================================
   CLEAN FOOTER FINAL OVERRIDE
   Sequence: Why Choose -> Features -> Logo -> Help -> Footer Bottom
   No footer item is hidden with display:none.
========================================================= */

.fh-footer {
  background: #000000 !important;
  color: #ffffff !important;
  padding: 50px 0 0 !important;
  border-top: 0 !important;
}

.fh-footer .fh-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.fh-footer-top {
  display: grid !important;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr) !important;
  gap: 42px !important;
  align-items: flex-start !important;
}

.fh-footer-brand {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.fh-footer-brand h2 {
  order: 1 !important;
  display: block !important;
  margin: 0 0 22px !important;
  color: #ffffff !important;
  font-family: var(--fh-display, "Archivo", Arial, sans-serif) !important;
  font-size: clamp(36px, 4.6vw, 64px) !important;
  line-height: 0.9 !important;
  font-weight: 900 !important;
  letter-spacing: -0.06em !important;
  text-align: left !important;
  text-transform: uppercase !important;
}

.fh-footer-brand h2 span {
  color: #f6c401 !important;
}

.fh-footer-features {
  order: 2 !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  width: 100% !important;
  margin: 0 0 22px !important;
}

.fh-footer-feature {
  display: block !important;
  padding: 16px !important;
  border-radius: 18px !important;
  background: #0b0b0b !important;
  border: 1px solid rgba(246, 196, 1, 0.28) !important;
}

.fh-footer-feature strong {
  display: block !important;
  margin: 0 0 7px !important;
  color: #ffffff !important;
  font-size: 14px !important;
  line-height: 1.3 !important;
  font-weight: 800 !important;
}

.fh-footer-feature p {
  display: block !important;
  margin: 0 !important;
  color: #bdbdbd !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
}

.fh-footer-brand img,
.fh-footer-logo {
  order: 3 !important;
  display: block !important;
  width: 120px !important;
  height: auto !important;
  margin: 0 !important;
  border-radius: 14px !important;
  border: 1px solid rgba(246, 196, 1, 0.35) !important;
  object-fit: contain !important;
}

/* Help is always visible */
.fh-footer-help,
.fh-footer-col.fh-footer-help,
.fh-footer-top>.fh-footer-col:last-child {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  order: 4 !important;
  padding-top: 6px !important;
}

.fh-footer-help h3,
.fh-footer-top>.fh-footer-col:last-child h3 {
  display: block !important;
  margin: 0 0 16px !important;
  color: #f6c401 !important;
  font-family: var(--fh-display, "Archivo", Arial, sans-serif) !important;
  font-size: 24px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

.fh-footer-help a,
.fh-footer-top>.fh-footer-col:last-child a {
  display: block !important;
  width: fit-content !important;
  margin: 0 0 12px !important;
  color: #d7d7d7 !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 750 !important;
  line-height: 1.35 !important;
}

.fh-footer-help a:hover,
.fh-footer-top>.fh-footer-col:last-child a:hover {
  color: #f6c401 !important;
}

.fh-footer-bottom {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
  margin-top: 36px !important;
  padding-top: 18px !important;
  padding-bottom: 18px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.fh-footer-bottom p {
  display: block !important;
  margin: 0 !important;
  color: #a8a8a8 !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
}

/* Mobile sequence */
@media (max-width: 768px) {
  .fh-footer {
    padding-top: 36px !important;
  }

  .fh-footer .fh-wrap {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .fh-footer-top {
    display: flex !important;
    flex-direction: column !important;
    gap: 26px !important;
  }

  .fh-footer-brand {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }

  .fh-footer-brand h2 {
    order: 1 !important;
    font-size: 36px !important;
    margin-bottom: 18px !important;
  }

  .fh-footer-features {
    order: 2 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-bottom: 20px !important;
  }

  .fh-footer-brand img,
  .fh-footer-logo {
    order: 3 !important;
    width: 108px !important;
  }

  .fh-footer-help,
  .fh-footer-col.fh-footer-help,
  .fh-footer-top>.fh-footer-col:last-child {
    order: 4 !important;
    display: block !important;
    width: 100% !important;
    padding-top: 0 !important;
  }

  .fh-footer-bottom {
    margin-top: 26px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 7px !important;
  }
}

@media (max-width: 420px) {
  .fh-footer-brand h2 {
    font-size: 32px !important;
  }

  .fh-footer-feature {
    padding: 13px !important;
  }
}

/* =========================================================
   FINAL MOBILE REELS ONLY FIX
   Bigger reel cards + no extra left/right padding on mobile
   This targets only the .fh-reels section.
========================================================= */
@media (max-width: 640px) {
  .fh-reels {
    padding-top: 10px !important;
    padding-bottom: 16px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: hidden !important;
  }

  .fh-reels .fh-wrap {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .fh-reels-grid {
    gap: 14px !important;
  }

  .fh-reels-content {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .fh-reels-content h2 {
    margin-bottom: 8px !important;
  }

  .fh-reels-content p {
    margin-bottom: 12px !important;
  }

  .fh-reel-scroll {
    gap: 10px !important;
    padding: 0 0 12px 0 !important;
    margin: 0 !important;
    scroll-padding-left: 0 !important;
  }

  .fh-reel-card {
    flex: 0 0 44% !important;
    min-width: 44% !important;
    max-width: 44% !important;
    aspect-ratio: 9 / 16 !important;
    border-radius: 14px !important;
  }

  .fh-reel-card:first-child {
    margin-left: 0 !important;
  }

  .fh-reel-card:last-child {
    margin-right: 0 !important;
  }
}

@media (max-width: 420px) {
  .fh-reel-scroll {
    gap: 9px !important;
  }

  .fh-reel-card {
    flex-basis: 46% !important;
    min-width: 46% !important;
    max-width: 46% !important;
    border-radius: 13px !important;
  }
}

/* =========================================================
   FINAL MOBILE REELS PADDING TWEAK
   Adds little left/right padding only to reel section on mobile
========================================================= */
@media (max-width: 640px) {
  .fh-reels {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .fh-reels .fh-wrap {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .fh-reel-scroll {
    padding-left: 2px !important;
    padding-right: 2px !important;
    scroll-padding-left: 2px !important;
  }
}

@media (max-width: 420px) {
  .fh-reels {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }
}

/* =========================================================
   REELS SOUND BUTTON FIX
   Working mute / unmute overlay button for every reel video
========================================================= */
.fh-reel-card {
  position: relative !important;
}

.fh-reel-card video {
  cursor: pointer !important;
}

.fh-reel-sound-btn {
  position: absolute !important;
  right: 10px !important;
  bottom: 10px !important;
  z-index: 10 !important;
  width: 38px !important;
  height: 38px !important;
  border: 1px solid rgba(255, 255, 255, 0.34) !important;
  border-radius: 999px !important;
  background: rgba(0, 0, 0, 0.72) !important;
  color: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  cursor: pointer !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease !important;
}

.fh-reel-sound-btn:hover,
.fh-reel-sound-btn.is-unmuted {
  background: #f6c401 !important;
  color: #000000 !important;
  border-color: #f6c401 !important;
}

.fh-reel-sound-btn:active {
  transform: scale(0.94) !important;
}

.fh-reel-sound-btn svg {
  width: 18px !important;
  height: 18px !important;
  display: block !important;
  pointer-events: none !important;
}

@media (max-width: 640px) {
  .fh-reel-sound-btn {
    right: 8px !important;
    bottom: 8px !important;
    width: 32px !important;
    height: 32px !important;
  }

  .fh-reel-sound-btn svg {
    width: 15px !important;
    height: 15px !important;
  }
}

/* =========================================================
   FINAL OVERRIDE Ã¢â‚¬â€ REELS MOBILE FULL WIDTH ONLY
   Scope: Only .fh-reels section on mobile
   Purpose:
   - Make reel section full viewport width
   - Reduce mobile top/bottom padding
   - Keep small side breathing space for reel cards
   - Do not affect any other section
========================================================= */

@media (max-width: 768px) {
  .fh-reels {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding-top: 14px !important;
    padding-bottom: 12px !important;
    overflow: hidden !important;
  }

  .fh-reels>.fh-wrap,
  .fh-reels .fh-wrap {
    width: 100% !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .fh-reels .fh-section-head,
  .fh-reels-content {
    padding-left: 12px !important;
    padding-right: 12px !important;
    margin-bottom: 10px !important;
  }

  .fh-reels-grid {
    gap: 12px !important;
    padding: 0 !important;
  }

  .fh-reels-area {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .fh-reel-scroll {
    width: 100% !important;
    gap: 10px !important;
    padding: 0 10px 8px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-padding-left: 10px !important;
    scroll-padding-right: 10px !important;
  }

  .fh-reel-card {
    flex: 0 0 calc((100% - 20px) / 3) !important;
    min-width: calc((100% - 20px) / 3) !important;
    max-width: calc((100% - 20px) / 3) !important;
    border-radius: 13px !important;
  }
}

@media (max-width: 520px) {
  .fh-reels {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }

  .fh-reels .fh-section-head,
  .fh-reels-content {
    padding-left: 10px !important;
    padding-right: 10px !important;
    margin-bottom: 8px !important;
  }

  .fh-reel-scroll {
    gap: 8px !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
    padding-bottom: 6px !important;
    scroll-padding-left: 8px !important;
    scroll-padding-right: 8px !important;
  }

  .fh-reel-card {
    flex: 0 0 calc((100% - 16px) / 3) !important;
    min-width: calc((100% - 16px) / 3) !important;
    max-width: calc((100% - 16px) / 3) !important;
    border-radius: 12px !important;
  }
}

@media (max-width: 768px) {
  .fh-brands .fh-wrap {
    padding: 0px 12px !important;
  }
}

.fh-brand-grid {
  padding: 16px !important;
}

.product-image-container {

  width: auto;
}

.related-products.my-6 {
  background-color: #000000 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 40px 16px !important;
  margin: 0px -16px;
}

.related-products.my-6 .heading-title {
  color: #ffffff !important;
}