* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'futurak';
  src: url('https://staging.tossdown.site/assets/theme_one/fonts/futurak/futurak.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'apercu';
  src: url('https://staging.tossdown.site/assets/theme_one/fonts/aperculight/aperculight.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'butler';
  src: url('https://staging.tossdown.site/assets/theme_one/fonts/butlerbold/butlerbold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

/* Navbar */
.menu {
  width: 100%;
  height: 93px;
  background-color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.menuimg {
  width: 120px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  color: white;
  font-size: 18px;
  text-decoration: none;
  margin: 0 10px;
  cursor: pointer;
}

.navbtn-1 {
  color: white;
  background-color: transparent;
  border-radius: 25px;
  width: 140px;
  height: 45px;
  border: 1px solid white;
  cursor: pointer;
}

.navbtn-2 {
  color: white;
  background-color: red;
  border-radius: 25px;
  width: 140px;
  height: 45px;
  border: 1px solid #ff0a0a;
  cursor: pointer;
}

.hamburger {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 93px;
    left: 0;
    width: 100%;
    background: black;
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
    z-index: 999;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
    color: #ff0a0a;
  }

  .menuimg {
    width: 100px;
  }
}

/* Slider */
.slider-img {
  width: 100%;
  height: auto;
  max-height: 86vh;
  object-fit: cover;
  object-position: center;
}

/* ---------- PRODUCT BRAND SECTION ---------- */

/* ===== Base Styles ===== */
.style-0 {
  padding-bottom: 160px;
  display: block;
  width: 100%;
  background-color: black;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  font-family: inter;
  letter-spacing: -0.25px;
  margin: 0;
}

.style-1 {
  max-width: 1140px;
  box-sizing: border-box;
  padding: 0 12px;
  font-family: inter;
  letter-spacing: -0.25px;
  margin: 80px auto 20px;
  width: 100%;
}

/* Text styles */
.style-2 {
  text-align: center;
  margin: 0;
  padding: 0;
}

.style-3 {
  font-size: 40px;
  font-family: Apercu;
  font-weight: 400;
  line-height: 50px;
  text-align: center;
  color: #fff;
  margin: 0 0 8px;
}

.style-4 {
  font-family: futurak;
  font-weight: 400;
  font-size: 52px;
  line-height: 62px;
  color: #fff;
  margin: 0;
}

.style-5,
.style-18,
.style-25,
.style-32,
.style-39 {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: inter;
  letter-spacing: -0.25px;
}

.style-6 {
  font-family: Apercu;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.48px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 40px;
}

/* ===== Cards container ===== */
.style-12 {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  /* force one row on large screens */
  gap: 20px;
  margin: 0 auto;
}

/* Individual card */
.style-13,
.style-20,
.style-27,
.style-34 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 260px;
  /* shrink slightly to fit 4 cards in one row */
  height: 214px;
  padding: 0 15px;
  box-sizing: border-box;
  margin: 0;
}

/* Card image */
.style-17,
.style-24,
.style-31,
.style-38 {
  width: 100%;
  height: 140px;
  object-fit: contain;
  background-color: #fff;
  padding: 0 19px;
  border-radius: 3px;
  display: block;
  vertical-align: middle;
}

/* Card buttons */
.style-19,
.style-26,
.style-33,
.style-40 {
  display: block;
  width: 174px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: #fff;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  margin: 24px auto 0;
  text-decoration: none;
}

/* ===== Center text in cards ===== */
.style-14,
.style-21,
.style-28,
.style-35 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
}

/* ===== Responsive adjustments ===== */

/* Tablet landscape */
@media (max-width: 1024px) {
  .style-12 {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* allow wrap for tablets */
  .style-13,
  .style-20,
  .style-27,
  .style-34 {
    width: 220px;
    height: 180px;
  }

  .style-17,
  .style-24,
  .style-31,
  .style-38 {
    height: 110px;

  }

  .style-19,
  .style-26,
  .style-33,
  .style-40 {
    width: 140px;
    height: 45px;
    line-height: 45px;
    font-size: 13px;

  }
}

/* Tablet portrait / large mobile */
@media (max-width: 768px) {

  .style-13,
  .style-20,
  .style-27,
  .style-34 {
    width: 180px;
    height: 160px;
  }

  .style-17,
  .style-24,
  .style-31,
  .style-38 {
    height: 90px;
  }

  .style-19,
  .style-26,
  .style-33,
  .style-40 {
    width: 120px;
    height: 40px;
    line-height: 40px;
    font-size: 12px;
  }
}

/* Small mobile */
@media (max-width: 480px) {

  .style-13,
  .style-20,
  .style-27,
  .style-34 {
    width: 100%;
    height: auto;
  }

  .style-17,
  .style-24,
  .style-31,
  .style-38 {
    height: auto;
    padding: 10px;
  }

  .style-19,
  .style-26,
  .style-33,
  .style-40 {
    width: 174px;
    height: 50px;
    line-height: 50px;
    display: block;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #fff;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    margin: 24px auto 0;
    text-decoration: none;
  }
}
