@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;500;600&family=Oswald:wght@400;500;600;700&family=Oxygen:wght@300;400;700&display=swap");

:root {
  --red: #d71921;
  --red-hot: #ef0202;
  --black: #111;
  --muted: #353535;
  --gray: #e7e8e7;
  --line: #cecece;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  color: #111;
  background: #fff;
  font-family: "Oxygen", sans-serif;
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
a:hover { text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, p { margin: 0; padding: 0; }

/* ---------- Header ---------- */
.header-fluid {
  background: #f7f7f8;
  padding: 0 30px;
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid #ececec;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  max-width: 1400px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  background: transparent;
  padding: 6px 0;
}
.logo img { height: 52px; width: auto; background: transparent; }
.nav-desktop { display: flex; align-items: center; gap: 2px; }
.nav-desktop > a,
.nav-item > a.top-link {
  display: block;
  color: #000;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.4px;
  padding: 28px 16px;
  transition: color 0.2s;
}
.nav-desktop > a:hover,
.nav-item:hover > a.top-link,
.nav-desktop > a.active,
.nav-item > a.top-link.active { color: var(--red); }

.nav-item { position: static; }
.mega {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 92px;
  width: min(920px, 92vw);
  background: #e9e9e9;
  display: none;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  z-index: 1100;
}
.nav-item:hover .mega { display: grid; grid-template-columns: 240px 1fr; }
.mega-cats { background: #f3f3f3; padding: 10px 0; }
.mega-cats a {
  display: block;
  padding: 16px 28px;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  border-bottom: 1px solid #d0d0d0;
  color: #111;
}
.mega-cats a:hover, .mega-cats a.on { color: var(--red); background: #fff; }
.mega-panel { background: #d2d2d2; padding: 28px 30px; min-height: 220px; }
.mega-panel a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  color: #111;
  text-transform: capitalize;
}
.mega-panel a:hover { color: var(--red); }

.header-tools { display: flex; align-items: center; gap: 16px; }
.header-tools a, .header-tools button {
  background: none; border: 0; cursor: pointer; color: #111; font-size: 16px;
}
.header-tools a:hover, .header-tools button:hover { color: var(--red); }
.header-tools a[href*="wa.me"]:hover { color: #25d366; }
.basket-link { position: relative; }
.basket-count {
  position: absolute; top: -8px; right: -10px;
  background: var(--red); color: #fff; border-radius: 50%;
  font-size: 10px; width: 16px; height: 16px; line-height: 16px; text-align: center;
  font-family: "Oswald", sans-serif;
}
.hamburger {
  display: none; width: 32px; height: 24px; flex-direction: column; justify-content: space-between;
  background: none; border: 0; padding: 0; cursor: pointer;
}
.hamburger span { display: block; height: 3px; background: #000; width: 100%; }

.search-bar {
  display: none; background: #e9e9e9;
}
.search-bar.open { display: block; }
.search-bar input {
  width: 100%; border: 0; height: 58px; padding: 0 8%;
  font-size: 22px; font-family: "Oxygen", sans-serif; font-weight: 700; color: #333;
  background: #fff;
}

/* Mobile sidebar */
.sidebar {
  position: fixed; left: -280px; top: 0; bottom: 0; width: 260px;
  background: #111; z-index: 2000; padding: 70px 20px 20px;
  transition: left 0.3s ease; overflow-y: auto;
}
.sidebar.open { left: 0; }
.sidebar a { display: block; color: #fff; padding: 12px 8px; text-transform: uppercase; font-family: "Oswald", sans-serif; font-size: 14px; }
.sidebar a:hover { color: var(--red); }
.sidebar .sub { padding-left: 16px; display: none; }
.sidebar .sub.open { display: block; }
.sidebar .sub a { text-transform: capitalize; font-family: "Oxygen", sans-serif; font-size: 13px; color: #ccc; }
.overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1500;
}
.overlay.open { display: block; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: #0b0d18; }
.hero-track { display: flex; transition: transform 0.6s ease; }
.hero-slide { min-width: 100%; position: relative; }
.hero-slide img { width: 100%; height: 520px; object-fit: cover; object-position: center 30%; }
.hero-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 48px 8% 40px;
  background: linear-gradient(transparent, rgba(8,10,18,.78));
  color: #fff;
}
.hero-caption span {
  display: inline-block;
  background: var(--red);
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 12px;
  margin-bottom: 10px;
}
.hero-caption h2 {
  font-family: "Oswald", sans-serif;
  font-size: 42px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  text-shadow: 0 8px 24px rgba(0,0,0,.45);
}
.hero-dots {
  position: absolute; bottom: 18px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px;
}
.hero-dots button {
  width: 12px; height: 12px; border-radius: 50%; border: 0; background: #fff; cursor: pointer;
}
.hero-dots button.on { background: var(--red); }

/* ---------- Categories ---------- */
.cat-wrap { padding: 10px 20px 20px; }
.our-text { text-align: center; padding: 22px 0 14px; }
.our-text h1 {
  font-size: 30px; font-family: "Oswald", sans-serif; font-weight: 400;
  text-transform: uppercase; color: #000;
}
.cat-grid { max-width: 1200px; margin: 0 auto; }
.cat-row { display: grid; gap: 4px; margin-bottom: 4px; }
.cat-row.top { grid-template-columns: 1fr 1fr; }
.cat-row.top-right { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.cat-row.bottom { grid-template-columns: repeat(4, 1fr); }
.cat-box { position: relative; overflow: hidden; }
.cat-box img { width: 100%; height: 230px; object-fit: cover; transition: transform 0.35s ease; display: block; }
.cat-box:hover img { transform: scale(1.15); }
.cat-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  text-align: center; color: #fff; font-family: "Oswald", sans-serif;
  font-size: 22px; text-transform: uppercase; padding: 22px 10px;
  background: linear-gradient(transparent, rgba(0,0,0,.55));
  transition: opacity 0.25s;
}
.cat-hover {
  position: absolute; left: 0; right: 0; top: -80px; background: var(--red-hot);
  text-align: center; opacity: 0; transition: all 0.3s ease; z-index: 2;
}
.cat-hover span {
  display: block; color: #fff; font-family: "Oswald", sans-serif;
  font-size: 20px; text-transform: uppercase; padding: 12px;
}
.cat-box:hover .cat-hover { opacity: 1; top: 0; }
.cat-box:hover .cat-label { opacity: 0; }

/* ---------- Achievements ---------- */
.achievement-fluid { padding: 36px 15px 50px; }
.achievement-heading {
  color: #353535; font-size: 34px; font-family: "Oxygen", sans-serif; font-weight: 300;
  text-align: center; padding-bottom: 40px;
}
.ach-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
}
.achievement {
  padding: 25px 10px; border: 1px solid var(--line); text-align: center;
  position: relative; transition: 0.4s; min-height: 170px;
}
.achievement img { height: 72px; margin: 0 auto; transition: 0.4s; }
.achievement .hov { position: absolute; top: 25px; left: 0; right: 0; margin: 0 auto; opacity: 0; height: 72px; }
.achievement p {
  padding-top: 18px; color: #353535; font-size: 15px;
  font-family: "Oswald", sans-serif; text-transform: uppercase;
}
.achievement:hover { background: #000; }
.achievement:hover p { color: #fff; }
.achievement:hover img.def { opacity: 0; }
.achievement:hover img.hov { opacity: 1; animation: bob 1.4s ease-in-out infinite alternate; }
@keyframes bob { from { transform: translateY(-4px); } to { transform: translateY(-12px); } }

/* ---------- About + video ---------- */
.video-about {
  padding: 90px 40px;
  background: url("../images/sp-bg.jpg") center/cover no-repeat fixed;
}
.video-about .inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; min-height: 360px;
}
.about-color { background: #d9d9d9; border-right: 4px solid #fff; padding: 55px 50px; }
.about-color h3 { font-size: 22px; font-family: "Oswald", sans-serif; color: #353535; }
.about-color h1 {
  font-size: 30px; font-family: "Oswald", sans-serif; color: #353535;
  text-transform: uppercase; padding: 6px 0 18px;
}
.about-color p { font-size: 16px; color: #353535; font-family: "Montserrat", sans-serif; line-height: 1.7; }
.about-color .more {
  display: inline-block; padding-top: 22px; font-size: 22px;
  font-family: "Oswald", sans-serif; text-transform: uppercase; color: #353535;
}
.about-color .more:hover { color: var(--red); }
.video-color {
  background: #000; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff;
}
.video-color img { width: 55px; margin: 0 auto 10px; }
.video-color h1 { font-size: 28px; font-family: "Oswald", sans-serif; padding-top: 18px; }
.video-color p { font-size: 15px; font-family: "Oswald", sans-serif; text-transform: uppercase; opacity: .85; }

/* ---------- Featured ---------- */
.feature-wrap { padding: 30px 0 10px; }
.feature-wrap h1 {
  text-align: center; font-size: 34px; font-family: "Oswald", sans-serif;
  text-transform: uppercase; padding-bottom: 8px;
}
.feature-tabs { text-align: center; padding-bottom: 28px; font-family: "Bebas Neue", sans-serif; font-size: 26px; }
.feature-tabs button {
  background: none; border: 0; cursor: pointer; font-family: inherit; font-size: inherit; color: #000; padding: 0 8px;
}
.feature-tabs button.on { color: var(--red); }
.prod-row {
  max-width: 1300px; margin: 0 auto; padding: 0 15px 30px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.feature-main {
  background: #fff;
  border: 1px solid #ececec;
  padding: 16px 12px 20px;
  transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
  text-align: center;
  box-shadow: 0 4px 18px rgba(17, 17, 17, 0.04);
}
.feature-main:hover {
  border-color: var(--red);
  box-shadow: 0 14px 36px rgba(17, 17, 17, 0.12);
  transform: translateY(-3px);
}
.feature-main img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  background: linear-gradient(180deg, #f7f8fa 0%, #eef0f3 100%);
}
.feature-text { padding-top: 16px; }
.feature-text p { font-size: 15px; color: #000; line-height: 1.45; }
.feature-text p:first-child {
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.feature-text p:nth-child(2) { color: #888; font-size: 13px; letter-spacing: 0.3px; }

/* Product cards on listing */
.products-main {
  background: #fff; border: 4px solid #c1c1c1; padding-bottom: 18px;
  text-align: center; position: relative; overflow: hidden; transition: 0.4s; margin-bottom: 8px;
}
.products-main img { width: 100%; height: 300px; object-fit: contain; background: #fff; }
.products-main:hover { border-color: transparent; }
.products-main::after, .products-main::before {
  content: ""; position: absolute; height: 4px; width: 0; background: var(--red); transition: 0.45s;
}
.products-main::after { top: 0; left: 0; }
.products-main::before { bottom: 0; right: 0; }
.products-main:hover::after, .products-main:hover::before { width: 100%; }
.products-main-text { padding-top: 18px; }
.products-main-text h4, .products-main-text p { font-size: 16px; color: #000; padding-bottom: 4px; }

/* ---------- Instagram ---------- */
.insta-main-text { text-align: center; padding: 30px 0 16px; }
.insta-main-text h1 {
  font-size: 28px; font-family: "Oswald", sans-serif; text-transform: uppercase;
}
.insta-row { display: grid; grid-template-columns: repeat(5, 1fr); }
.insta-hover { position: relative; overflow: hidden; }
.insta-hover img { width: 100%; height: 220px; object-fit: cover; }
.insta-icon {
  position: absolute; inset: 0; background: rgba(0,0,0,.88);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: 0.4s; color: var(--red); font-size: 32px;
}
.insta-hover:hover .insta-icon { opacity: 1; }

/* ---------- Footer ---------- */
.footer-fluid { background: #000; padding: 55px 20px 20px; }
.footer-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.footer-main h3 {
  font-size: 22px; color: #fff; font-family: "Oswald", sans-serif;
  text-transform: uppercase; padding-bottom: 8px;
}
.footer-main ul { padding-top: 18px; }
.footer-main li { padding: 8px 0; }
.footer-main a { color: #fff; font-size: 15px; font-weight: 300; text-transform: capitalize; transition: 0.3s; }
.footer-main a:hover { color: var(--red); }
.soc a { display: flex; align-items: center; gap: 12px; }
.soc span {
  width: 26px; height: 26px; border-radius: 50%; background: #c6c6c6; color: #000;
  display: inline-flex; align-items: center; justify-content: center; font-size: 12px; transition: 0.3s;
}
.soc a:hover span { background: var(--red); color: #fff; }
.footer-main .meta { color: #fff; font-size: 14px; font-weight: 300; line-height: 1.9; }
.footer-main .meta i { font-size: 7px; margin-right: 8px; vertical-align: middle; }
.footer-end { background: #000; text-align: center; padding: 28px 15px 40px; color: #fff; font-weight: 300; font-size: 16px; border-top: 1px solid #181818; }

/* ---------- Inner pages ---------- */
.subbanner {
  background: #0b0d12 url("../images/banners/default.jpg") center/cover no-repeat;
  width: 100%;
  height: 28vw;
  min-height: 180px;
  max-height: 340px;
  display: flex;
  align-items: flex-end;
}
.subbanner.cat-football { background-image: url("../images/banners/football.jpg"); }
.subbanner.cat-baseball { background-image: url("../images/banners/baseball.jpg"); }
.subbanner.cat-basketball { background-image: url("../images/banners/basketball.jpg"); }
.subbanner.cat-hockey { background-image: url("../images/banners/hockey.jpg"); }
.subbanner.cat-rugby { background-image: url("../images/banners/rugby.jpg"); }
.subbanner.cat-soccer { background-image: url("../images/banners/soccer.jpg"); }
.subbanner.cat-casual { background-image: url("../images/banners/casual.jpg"); }
.subbanner.cat-fitness { background-image: url("../images/banners/fitness.jpg"); }
.subbanner .inner {
  width: 100%;
  background: linear-gradient(transparent, rgba(0,0,0,.55));
  padding: 36px 6% 10px;
}
.crumbs { color: #fff; font-size: 11px; letter-spacing: 0.3px; line-height: 1.3; }
.crumbs a { color: #fff; }
.crumbs a:hover { color: var(--red); }
.page-head {
  background: #1c1c1c; color: #fff; text-align: center; padding: 10px 15px; margin-bottom: 18px;
}
.page-head h1 {
  font-family: "Oswald", sans-serif; font-size: 20px; font-weight: 500; letter-spacing: 0.8px; text-transform: uppercase;
}

.page-wrap { max-width: 1400px; margin: 0 auto; padding: 10px 20px 60px; display: grid; grid-template-columns: 280px 1fr; gap: 28px; }
.side-cats { border: 1px solid #d2d2d2; }
.side-cats h3 { background: #ee2128; color: #fff; padding: 14px 16px; font-family: "Oswald", sans-serif; font-size: 18px; }
.acc-item { border-bottom: 1px solid #d2d2d2; }
.acc-item button {
  width: 100%; text-align: left; background: #fff; border: 0; padding: 14px 16px;
  font-family: "Oswald", sans-serif; font-size: 16px; cursor: pointer;
}
.acc-item button:hover, .acc-item button.on { color: var(--red); }
.acc-item .subs { display: none; padding: 0 10px 10px; }
.acc-item .subs.open { display: block; }
.acc-item .subs a { display: block; padding: 8px 10px; color: #222; border-bottom: 1px solid #eee; font-size: 14px; }
.acc-item .subs a:hover, .acc-item .subs a.on { color: var(--red); }

.pro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.content-page { max-width: 1100px; margin: 0 auto; padding: 10px 20px 70px; }
.content-page h2 { font-family: "Oswald", sans-serif; font-size: 22px; padding: 18px 0 8px; text-transform: uppercase; }
.content-page p, .content-page li { font-family: "Montserrat", sans-serif; font-size: 16px; line-height: 1.8; color: #333; }
.content-page ul.vals { padding-left: 18px; list-style: disc; }
.content-page ul.vals li { padding: 6px 0; }

/* Detail */
.detail-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 30px; padding: 10px 0 40px; }
.detail-img { background: #fff; border: 1px solid #eee; padding: 16px; }
.detail-img img { width: 100%; max-height: 560px; object-fit: contain; }
.detail-form { background: #252525; padding: 32px 36px; color: #fff; }
.detail-form h1 { color: var(--red); font-size: 26px; font-family: "Oswald", sans-serif; }
.detail-form h2 { font-size: 16px; font-weight: 400; padding: 10px 0 16px; }
.detail-form h3 { font-size: 18px; padding: 10px 0 6px; }
.detail-form p { font-size: 15px; opacity: .95; }
.detail-form label { display: block; margin-top: 14px; font-size: 15px; }
.detail-form select, .detail-form input[type="number"], .detail-form input[type="text"] {
  width: 160px; height: 42px; border: 1px solid #c5c5c5; padding: 0 10px; margin-top: 6px; background: #fff; color: #111;
}
.btn-red {
  background: var(--red); color: #fff !important; border: 0; padding: 10px 22px; border-radius: 4px;
  font-size: 16px; cursor: pointer; margin-top: 16px; font-family: "Oswald", sans-serif; text-transform: uppercase;
}
.btn-red:hover { background: #b01018; color: #fff; }
.btn-black {
  background: #000; color: #fff; border: 0; padding: 12px 28px; font-family: "Oswald", sans-serif;
  text-transform: uppercase; cursor: pointer; letter-spacing: .4px;
}
.btn-black:hover { background: var(--red); }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.form-grid .full { grid-column: 1 / -1; }
.form-horizontal input, .form-horizontal select, .form-horizontal textarea {
  width: 100%; border: 1px solid #c5c5c5; border-radius: 0; margin: 10px 0; padding: 12px 12px;
  font-family: "Oxygen", sans-serif; font-size: 15px;
}
.form-horizontal textarea { height: 160px; }
.form-horizontal input:focus, .form-horizontal select:focus, .form-horizontal textarea:focus {
  outline: 0; border-color: #000;
}

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-card { text-align: center; }
.contact-card img { height: 56px; width: auto; margin: 0 auto 18px; }
.contact-card p { font-size: 16px; line-height: 1.9; }
.contact-card a { color: var(--red); }

.news-item { padding: 10px 0 24px; border-bottom: 1px solid #eee; margin-bottom: 16px; }
.news-item h3 { font-family: "Oswald", sans-serif; font-size: 26px; text-transform: uppercase; padding-bottom: 10px; }
.news-item p { font-size: 15px; }

.cat-download {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.cat-dl {
  border: 1px solid #ddd; padding: 24px; text-align: center; transition: 0.3s;
}
.cat-dl:hover { border-color: var(--red); }
.cat-dl h4 { font-family: "Oswald", sans-serif; text-transform: uppercase; padding: 12px 0; }
.factory-hero img { width: 100%; max-height: 420px; object-fit: cover; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 24px; }
.step { border: 1px solid #ddd; padding: 22px 16px; text-align: center; }
.step b { display: block; font-family: "Oswald", sans-serif; font-size: 28px; color: var(--red); }
.step p { padding-top: 8px; font-size: 14px; }

.toast {
  position: fixed; bottom: 24px; right: 24px; background: #111; color: #fff;
  padding: 12px 18px; border-left: 4px solid var(--red); display: none; z-index: 3000;
  font-size: 14px;
}
.toast.show { display: block; }

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 2500;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover {
  transform: scale(1.08);
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
}
.wa-float span {
  position: absolute;
  right: 68px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.wa-float:hover span { opacity: 1; }

/* ---------- Responsive ---------- */
@media (min-width: 992px) {
  .hero-slide img {
    height: min(520px, 38vw);
    object-fit: cover;
    object-position: center center;
  }
}

@media (max-width: 1199px) {
  .ach-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
  .nav-desktop { display: none; }
  .hamburger {
    display: flex;
    width: 44px;
    height: 44px;
    padding: 10px 8px;
    flex-shrink: 0;
  }
  .header-fluid { padding: 0 10px; }
  .header-inner { min-height: 72px; gap: 8px; }
  .logo { flex: 0 1 auto; min-width: 0; }
  .logo img { height: 58px; max-width: 160px; object-fit: contain; }
  .header-tools { gap: 12px; flex-shrink: 0; }
  .pro-grid {
    grid-template-columns: 1fr !important;
    gap: 22px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
  .prod-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px;
    padding: 0 16px 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-wrap { grid-template-columns: 1fr; padding: 10px 12px 50px; }
  .video-about {
    padding: 0;
    background-attachment: scroll;
  }
  .video-about .inner { grid-template-columns: 1fr; min-height: 0; }
  .about-color { padding: 28px 16px; border-right: 0; }
  .video-color { padding: 44px 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .detail-grid, .contact-grid, .form-grid { grid-template-columns: 1fr; }
  .cat-wrap { padding: 8px 8px 16px; }
  .cat-row.top { grid-template-columns: 1fr; }
  .cat-row.bottom { grid-template-columns: 1fr 1fr; }
  .cat-box img { height: 180px; }
  .cat-label { font-size: 16px; padding: 14px 8px; }
  .cat-hover span { font-size: 15px; padding: 8px; }
  .insta-row { grid-template-columns: 1fr 1fr; }
  .insta-hover img { height: 160px; }
  .steps, .cat-download { grid-template-columns: 1fr 1fr; }
  .hero-slide img {
    width: 100%;
    height: min(52vw, 380px) !important;
    object-fit: cover;
    object-position: center 28%;
  }
  .hero-caption { padding: 28px 16px 28px; }
  .hero-caption h2 { font-size: 26px; }
  .hero-caption span { font-size: 11px; }
  .hero-dots { bottom: 8px; }
  .feature-wrap { padding: 18px 0 6px; }
  .feature-wrap h1 { font-size: 26px; }
  .feature-tabs { font-size: 20px; padding-bottom: 16px; }
  .feature-main {
    padding: 8px 8px 22px;
    border: 0;
    box-shadow: 0 10px 32px rgba(17, 17, 17, 0.1);
  }
  .feature-main:hover { transform: none; }
  .feature-main img {
    height: min(78vw, 500px);
    background: linear-gradient(180deg, #f8f9fb 0%, #eef1f4 100%);
  }
  .feature-text { padding: 16px 10px 4px; }
  .feature-text p:first-child { font-size: 20px; }
  .feature-wrap .cz-card-btn {
    margin-top: 14px;
    padding: 11px 22px;
    font-size: 14px;
  }
  .products-main img { height: 240px; }
  .search-bar input { font-size: 16px; height: 48px; padding: 0 16px; }
  .subbanner {
    height: 34vw;
    min-height: 150px;
    max-height: 220px;
  }
  .subbanner .inner { padding: 28px 12px 8px; }
  .crumbs { font-size: 10px; }
  .page-head { padding: 8px 10px; margin-bottom: 12px; }
  .page-head h1 { font-size: 15px; letter-spacing: 0.5px; }
  .detail-form { padding: 22px 16px; }
  .detail-form select, .detail-form input[type="number"], .detail-form input[type="text"] { width: 100%; max-width: 220px; }
  .content-page { padding: 8px 16px 70px; }
  .contact-card img { height: 48px; width: auto; margin: 0 auto 14px; }
  .factory-hero img { max-height: 220px; }
  .footer-fluid { padding: 36px 16px 16px; }
  .footer-end { padding: 20px 16px 80px; }
  .toast { right: 14px; bottom: 80px; }
  .cz-home-cta { flex-direction: column; align-items: flex-start; margin: 0 8px 16px; padding: 20px 16px; }
  .cz-home-cta h2 { font-size: 22px; }
}

/* ---------- Visual Customizer ---------- */
.cz-page { max-width: 1280px; margin: 0 auto; padding: 0 20px 70px; }
.cz-intro { font-family: "Montserrat", sans-serif; font-size: 16px; line-height: 1.7; color: #333; margin-bottom: 22px; }
.cz-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 28px; align-items: start; }
.cz-stage {
  background: linear-gradient(180deg, #eef1f5 0%, #d9dee6 100%);
  border: 1px solid #d5d5d5;
  min-height: 640px;
  position: sticky; top: 12px;
}
.cz-stage-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; background: #111; color: #fff; font-size: 13px; font-family: "Oswald", sans-serif; letter-spacing: .4px;
}
.cz-view-toggle { display: flex; gap: 6px; }
.cz-view-toggle button {
  background: transparent; color: #fff; border: 1px solid #444; padding: 6px 14px;
  font-family: "Oswald", sans-serif; text-transform: uppercase; cursor: pointer; font-size: 12px;
}
.cz-view-toggle button.on { background: var(--red); border-color: var(--red); }
.cz-preview { padding: 10px 20px 0; }
.cz-preview svg { width: 100%; max-height: 560px; display: block; }
.cz-hint { text-align: center; font-size: 12px; color: #555; padding: 8px 16px 16px; }
.cz-panel { background: #fff; border: 1px solid #e5e5e5; padding: 8px 18px 22px; }
.cz-block { padding: 16px 0; border-bottom: 1px solid #eee; }
.cz-block h3 { font-family: "Oswald", sans-serif; font-size: 16px; text-transform: uppercase; margin-bottom: 10px; }
.cz-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.cz-pill {
  border: 1px solid #ccc; background: #fff; padding: 8px 12px; cursor: pointer;
  font-family: "Oswald", sans-serif; font-size: 13px; text-transform: uppercase;
}
.cz-pill.on { background: #111; color: #fff; border-color: #111; }
.cz-lab { display: block; font-size: 12px; color: #666; margin: 10px 0 6px; text-transform: uppercase; letter-spacing: .4px; }
.cz-swatches { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }
.cz-swatch {
  width: 26px; height: 26px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; padding: 0;
}
.cz-swatch.on { border-color: #111; box-shadow: 0 0 0 2px #fff, 0 0 0 3px #111; }
.cz-custom-color {
  width: 26px; height: 26px; border-radius: 50%; overflow: hidden; border: 1px dashed #999;
  display: inline-flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer; position: relative;
}
.cz-custom-color input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.cz-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cz-fields label { font-size: 12px; color: #555; text-transform: uppercase; }
.cz-fields input, .cz-fields select {
  display: block; width: 100%; margin-top: 4px; height: 40px; border: 1px solid #c5c5c5; padding: 0 10px; font-size: 15px;
}
.cz-upload {
  display: flex; align-items: center; gap: 8px; margin-top: 12px; border: 1px dashed #bbb; padding: 12px;
  cursor: pointer; font-size: 14px;
}
.cz-upload input { display: none; }
.cz-link { background: none; border: 0; color: var(--red); cursor: pointer; margin-top: 8px; font-size: 13px; }
.cz-actions { display: flex; flex-direction: column; gap: 10px; padding-top: 16px; }
.cz-actions .btn-red, .cz-actions .btn-black { margin-top: 0; width: 100%; }
.cz-ghost { background: #fff; border: 1px solid #111; padding: 10px 18px; cursor: pointer; font-family: "Oswald", sans-serif; text-transform: uppercase; }
.cz-actions .btn-black i { margin-right: 6px; }
.cz-home-cta {
  max-width: 1300px; margin: 10px auto 20px; padding: 28px 30px;
  background: #111; color: #fff; display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.cz-home-cta h2 { font-family: "Oswald", sans-serif; text-transform: uppercase; font-size: 28px; }
.cz-home-cta p { font-size: 15px; opacity: .85; padding-top: 6px; }
.cz-home-cta .btn-red { margin: 0; white-space: nowrap; }
.cz-card-btn {
  display: inline-block; margin-top: 10px; background: #111; color: #fff !important;
  font-family: "Oswald", sans-serif; font-size: 13px; text-transform: uppercase;
  padding: 7px 14px; letter-spacing: .4px;
  position: relative; z-index: 5; pointer-events: auto;
}
.cz-card-btn:hover { background: var(--red); color: #fff !important; }
.products-main, .feature-main { pointer-events: auto; }
.products-main::after, .products-main::before { pointer-events: none; }
.cz-product {
  display: flex; align-items: center; gap: 12px; margin: 12px 16px 0;
  background: #fff; padding: 10px 12px; border: 1px solid #ddd;
}
.cz-product img { width: 52px; height: 52px; object-fit: contain; background: #f6f6f6; }
.cz-product b { display: block; font-family: "Oswald", sans-serif; font-size: 15px; }
.cz-product span { display: block; font-size: 12px; color: #666; }
.cz-product a { margin-left: auto; font-size: 12px; color: var(--red); text-transform: uppercase; font-family: "Oswald", sans-serif; white-space: nowrap; }
.cz-product-ico {
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  background: #111; color: #fff; font-size: 20px;
}
.d-custom-preview { padding: 0; background: linear-gradient(180deg, #eef1f5, #d9dee6); }
.d-custom-preview svg { width: 100%; max-height: 520px; }
.d-custom-views { justify-content: center; padding: 10px 0 4px; background: #111; }
.detail-img .d-custom-views button { color: #fff; }

@media (max-width: 991px) {
  .cz-layout { grid-template-columns: 1fr; }
  .cz-stage { position: relative; top: 0; min-height: 0; }
  .cz-preview svg { max-height: 420px; }
  .cz-fields { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
  .ach-grid, .pro-grid, .footer-grid, .cat-row.top-right { grid-template-columns: 1fr; }
  .cat-row.bottom { grid-template-columns: 1fr 1fr; }
  .logo img { height: 50px; max-width: 130px; }
  .header-inner { min-height: 64px; }
  .wa-float { width: 52px; height: 52px; font-size: 26px; right: 14px; bottom: 14px; }
  .our-text h1 { font-size: 20px; }
  .achievement-heading { font-size: 20px; padding-bottom: 22px; }
  .achievement { min-height: 0; padding: 18px 8px; }
  .achievement p { font-size: 13px; }
  .insta-row { grid-template-columns: 1fr 1fr; }
  .steps, .cat-download { grid-template-columns: 1fr; }
  .about-color h1 { font-size: 24px; }
  .about-color p { font-size: 14px; }
  .video-color h1 { font-size: 22px; }
  .cat-box img { height: 150px; }
  .cat-label { font-size: 13px; padding: 10px 6px; }

  .feature-wrap { padding: 12px 0 8px; }
  .feature-wrap h1 { font-size: 22px; letter-spacing: 0.6px; }
  .feature-tabs { font-size: 18px; padding-bottom: 18px; }
  .prod-row {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 14px 36px;
    max-width: 560px;
  }
  .feature-main {
    padding: 8px 8px 22px;
    border: 0;
    box-shadow: 0 10px 32px rgba(17, 17, 17, 0.1);
    background: #fff;
  }
  .feature-main:hover { transform: none; }
  .feature-main img {
    height: min(82vw, 520px);
    background: linear-gradient(180deg, #f8f9fb 0%, #eef1f4 100%);
  }
  .feature-text { padding: 18px 10px 4px; }
  .feature-text p:first-child { font-size: 20px; }
  .feature-text p:nth-child(2) { font-size: 14px; padding-top: 4px; }
  .feature-wrap .cz-card-btn {
    margin-top: 14px;
    padding: 11px 22px;
    font-size: 14px;
    letter-spacing: 0.6px;
  }
  .products-main img { height: 280px; }
}

/* ---------- 2026 catalogue additions ---------- */
.products-main-text .variant, .feature-text .variant { display:block; font-size:12px; color:#777; letter-spacing:.3px; margin:-2px 0 4px; }
.line-intro { max-width:1200px; margin:-6px auto 18px; padding:0 20px; color:#555; font-size:14px; line-height:1.7; text-align:center; }
.d-variant { font-size:14px; color:#f2f2f2; margin:-6px 0 14px; }
.d-variant .d-note { color:#b8b8b8; font-size:12px; }
.d-features { list-style:disc outside; margin:10px 0 18px 18px; padding:0; color:#f2f2f2; font-size:14px; line-height:1.8; }
.d-features li::marker { color:var(--red); }
.d-spec { width:100%; border-collapse:collapse; margin:0 0 18px; font-size:13px; }
.d-spec th { text-align:left; width:34%; padding:8px 10px; background:#f4f4f4; font-weight:600; color:#222; border:1px solid #3a3a3a; }
.d-spec td { padding:8px 10px; border:1px solid #3a3a3a; color:#ffffff; background:#1c1c1c; }
.subbanner { background-position: center 30%; }
.catalogue-wrap { max-width:900px; margin:0 auto 60px; padding:0 20px; text-align:center; }
.catalogue-wrap p { color:#555; line-height:1.8; margin-bottom:22px; }

/* ---------- home category cards v2 (bento) ---------- */
.cat-wrap--v2 { padding: 26px 20px 34px; background: #0f1113; }
.our-text--v2 { padding: 10px 0 22px; }
.our-text--v2 .our-text__kicker { display:block; font-size:12px; letter-spacing:3px; text-transform:uppercase; color:var(--red-hot); font-weight:600; margin-bottom:6px; }
.our-text--v2 h1 { color:#fff; font-size:34px; letter-spacing:1px; }
.our-text--v2 p { color:#9aa0a6; font-size:14px; margin:8px auto 0; max-width:560px; line-height:1.6; }
.cat-bento { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:250px; gap:12px; }
.cat-card { position:relative; display:block; overflow:hidden; border-radius:16px; background:#1a1d21; isolation:isolate; box-shadow:0 10px 30px rgba(0,0,0,.35); transition:transform .35s ease, box-shadow .35s ease; }
.cat-card--wide { grid-column: span 2; }
.cat-card img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 28%; display:block; transform:scale(1.02); transition:transform .7s cubic-bezier(.2,.7,.2,1), filter .5s ease; filter:saturate(.95); }
.cat-card__shade { position:absolute; inset:0; background:linear-gradient(180deg, rgba(10,12,14,0) 38%, rgba(10,12,14,.55) 70%, rgba(10,12,14,.92) 100%); transition:opacity .4s; }
.cat-card__body { position:absolute; left:0; right:0; bottom:0; padding:18px 20px 16px; display:flex; flex-direction:column; gap:3px; color:#fff; }
.cat-card__kicker { font-size:11px; letter-spacing:1.6px; text-transform:uppercase; color:#c7ccd1; font-weight:500; }
.cat-card__title { font-family:"Oswald",sans-serif; font-size:24px; line-height:1.1; text-transform:uppercase; letter-spacing:.5px; }
.cat-card__title::after { content:""; display:block; width:34px; height:3px; background:var(--red-hot); margin-top:8px; border-radius:2px; transition:width .35s ease; }
.cat-card__cta { font-size:12px; font-weight:600; letter-spacing:.6px; text-transform:uppercase; color:#fff; opacity:0; transform:translateY(6px); transition:opacity .3s ease, transform .3s ease; margin-top:6px; }
.cat-card__cta i { margin-left:6px; font-size:11px; transition:transform .3s; }
.cat-card:hover { transform:translateY(-4px); box-shadow:0 18px 40px rgba(0,0,0,.5); }
.cat-card:hover img { transform:scale(1.08); filter:saturate(1.05); }
.cat-card:hover .cat-card__title::after { width:64px; }
.cat-card:hover .cat-card__cta { opacity:1; transform:translateY(0); }
.cat-card:hover .cat-card__cta i { transform:translateX(4px); }
.cat-card:focus-visible { outline:3px solid var(--red-hot); outline-offset:3px; }
@media (max-width: 1024px) { .cat-bento { grid-template-columns:repeat(2,1fr); grid-auto-rows:220px; } .cat-card--wide { grid-column: span 2; } .cat-card__title { font-size:21px; } }
@media (max-width: 600px) { .cat-wrap--v2 { padding:22px 12px 26px; } .cat-bento { grid-template-columns:1fr 1fr; grid-auto-rows:170px; gap:8px; } .cat-card--wide { grid-column: span 2; grid-auto-rows:190px; } .cat-card { border-radius:12px; } .cat-card__body { padding:12px 12px 11px; } .cat-card__title { font-size:17px; } .cat-card__kicker { font-size:9px; letter-spacing:1.2px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; } .cat-card__cta { display:none; } .our-text--v2 h1 { font-size:26px; } }
