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

:root {
  --black: #000;
  --white: #fff;
  --surface: #f5f5f5;
  --gl: #e8e8e8;
  --gm: #6b6b6b;
  --gd: #333;
  --navy: #162040;
  --red: #cc0000;
  --fh: 'Barlow Condensed', sans-serif;
  --fb: 'Inter', sans-serif;
}

body {
  font-family: var(--fb);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden
}

a {
  text-decoration: none;
  color: inherit
}

/* ANNOUNCE */
.ann {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 9px 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase
}

/* NAV */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--gl);
  position: sticky;
  top: 0;
  z-index: 999
}

.nv {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.logo-main {
  font-family: var(--fh);
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: .02em;
}

.logo-main em {
  color: var(--red);
  font-style: normal;
  font-size: 12px;
  vertical-align: super;
  margin-left: 1px;
}

.logo-sub {
  font-family: var(--fb);
  font-size: 9px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: .25em;
  margin-top: -2px;
  text-transform: uppercase;
  opacity: 0.8;
}


.nl {
  display: flex;
  gap: 28px;
  list-style: none
}

.nl a {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--black);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s
}

.nl a:hover {
  border-color: var(--black);
  text-decoration: none
}

/* MEGA MENU */
.has-mega {
  position: static;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--white);
  border-top: 1px solid var(--gl);
  border-bottom: 2px solid var(--black);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-height: 80vh;
  overflow-y: auto;
}

.mega-inner::-webkit-scrollbar {
  width: 4px;
}

.mega-inner::-webkit-scrollbar-thumb {
  background: var(--gl);
  border-radius: 10px;
}

.mega-title {
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  color: var(--black);
  border-bottom: 1px solid var(--gl);
  padding-bottom: 8px;
  cursor: default;
}

.mega-title a {
  color: var(--black);
  text-decoration: none;
  cursor: pointer;
}

.mega-title a:hover {
  color: var(--red);
}

.mega-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-list a {
  font-size: 13px;
  color: var(--gm);
  transition: all 0.2s;
  font-weight: 500;
  display: block;
}

.mega-list a:hover {
  color: var(--black);
  transform: translateX(4px);
}


.nr {
  display: flex;
  align-items: center;
  gap: 16px
}

.ic {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  position: relative;
  color: var(--black)
}

.badge {
  position: absolute;
  top: -6px;
  right: -7px;
  background: var(--black);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

.btn-login {
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border: 1.5px solid var(--black);
  padding: 7px 20px;
  background: none;
  cursor: pointer;
  transition: all .2s
}

.btn-login:hover {
  background: var(--black);
  color: var(--white)
}

/* HERO VIDEO */
.hero {
  position: relative;
  height: 88vh;
  min-height: 560px;
  overflow: hidden;
  background: #060d1a;
  display: flex;
  align-items: flex-end
}

.hero-vid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.hero-vid iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
  transform: translate(-50%, -50%)
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 13, 26, .95) 0%, rgba(6, 13, 26, .55) 50%, rgba(6, 13, 26, .2) 100%)
}

.hero-body {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 80px;
  width: 100%
}

.hero-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px
}

.hero-tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--red)
}

.hero-h1 {
  font-family: var(--fh);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: .9;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -.01em
}

.hero-h1 span {
  display: block
}

.hero-h1 span.hl {
  color: var(--red)
}

.hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.btn-white {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 15px 32px;
  cursor: pointer;
  transition: all .2s
}

.btn-white:hover {
  background: var(--gl)
}

.btn-ghost {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .4);
  padding: 15px 32px;
  cursor: pointer;
  transition: all .2s
}

.btn-ghost:hover {
  border-color: var(--white)
}

.hero-scroll {
  position: absolute;
  right: 40px;
  bottom: 80px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: .4
}

.hero-scroll span {
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white)
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 48px;
  background: var(--white)
}

/* STATS BAR */
.stats {
  background: var(--black);
  padding: 24px 40px
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid rgba(255, 255, 255, .1);
  gap: 0
}

.stat {
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid rgba(255, 255, 255, .1)
}

.stat:last-child {
  border: none
}

.stat-num {
  font-family: var(--fh);
  font-size: 32px;
  font-weight: 800;
  color: var(--white)
}

.stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 4px
}

/* CATEGORIES */
.sec-cat {
  padding: 40px 40px 0;
  max-width: 1280px;
  margin: 0 auto
}

.cat-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none
}

.cat-scroll::-webkit-scrollbar {
  display: none
}

.cat {
  flex-shrink: 0;
  padding: 10px 22px;
  border: 1.5px solid var(--gl);
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  transition: all .2s;
  color: var(--gm)
}

.cat:hover,
.cat.on {
  background: var(--black);
  color: var(--white);
  border-color: var(--black)
}

/* SECTION WRAPPER */
.sw {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 40px
}

.sh {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 36px
}

.st {
  font-family: var(--fh);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em
}

.sl {
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-bottom: 1px solid var(--black);
  padding-bottom: 1px
}

/* PRODUCT GRID */
.pg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.pg.pg-landing {
  grid-template-columns: repeat(4, 1fr);
}

.pc {
  cursor: pointer;
  transition: transform .25s, box-shadow .25s
}

.pc:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .1)
}

.pi {
  background: var(--surface);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.pi-ph {
  width: 65%;
  height: 65%;
  background: linear-gradient(135deg, #d5d5d5, #b8b8b8);
  display: flex;
  align-items: center;
  justify-content: center
}

.pi-ph svg {
  width: 48px;
  height: 48px;
  opacity: .3
}

.new-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px
}

.hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  opacity: 0
}

.pc:hover .hover-overlay {
  background: rgba(0, 0, 0, .04);
  opacity: 1
}

.pinfo {
  padding: 24px 20px 24px 20px;
}

.pbrand {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px
}

.pname {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.4
}

.pcat {
  font-size: 12px;
  color: var(--gm);
  margin-bottom: 16px
}

.pprice {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px
}

.pprice.lock {
  font-size: 12px;
  color: var(--gm);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px
}

.btn-card {
  width: 100%;
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 13px;
  cursor: pointer;
  transition: background .2s
}

.btn-card:hover {
  background: #1a1a1a
}

.btn-card.muted {
  background: var(--gl);
  color: var(--black)
}

.btn-card.muted:hover {
  background: #d0d0d0
}

/* CATEGORY GRID (Adidas Style) */
.cat-grid-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 40px 80px;
}

.cat-grid-header {
  font-family: var(--fh);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 32px;
}

.cg {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.cb {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--gl);
  transition: all 0.2s;
  color: var(--black);
  gap: 16px;
}

.cb:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.cb svg {
  width: 48px;
  height: 48px;
  transition: transform 0.3s;
}

.cb:hover svg {
  transform: translateY(-4px);
}

.cb-label {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* BRAND FEATURE */
.brand-sec {
  background: var(--surface);
  padding: 0
}

.brand-in {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px
}

.brand-left {
  padding: 80px 64px 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.brand-kicker {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gm);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px
}

.brand-kicker::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--red)
}

.brand-h {
  font-family: var(--fh);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: .95;
  margin-bottom: 20px
}

.brand-desc {
  font-size: 14px;
  color: var(--gd);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 400px
}

.brand-right {
  background: url('https://norr.com/wp-content/uploads/2019/07/CSC-gallery-06-1920x1080.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* PROCESS SECTION */
.process {
  padding: 80px 40px;
  max-width: 1280px;
  margin: 0 auto
}

.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 48px
}

.proc-item {
  border-top: 2px solid var(--black);
  padding-top: 24px
}

.proc-num {
  font-family: var(--fh);
  font-size: 40px;
  font-weight: 800;
  color: var(--gl);
  margin-bottom: 12px
}

.proc-title {
  font-family: var(--fh);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px
}

.proc-desc {
  font-size: 13px;
  color: var(--gm);
  line-height: 1.7
}

/* CLIENTS SECTION */
.clients-sec {
  padding: 40px 0 24px;
  border-top: 1px solid var(--gl);
  background: var(--white);
  overflow: hidden;
}

.clients-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  padding: 0 40px;
}

.clients-title {
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--gm);
  margin-bottom: 48px;
}

.marquee-wrap {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 100px;
  padding-right: 100px;
  animation: marquee 25s linear infinite;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: opacity 0.3s;
}

.marquee-track:hover {
  opacity: 0.8;
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.client-logo {
  font-family: var(--fh);
  font-size: 28px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: .05em;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* PROMO SLIDER */
.promo-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--black);
}

.promo-slides {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.promo-slides::-webkit-scrollbar {
  display: none;
}

.promo-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  padding: 120px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.promo-content {
  max-width: 800px;
  margin: 0 auto;
}

.promo-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.dot.active {
  background: var(--white);
}

/* NEWSLETTER CTA */
.newsletter-sec {
  background: var(--surface);
  color: var(--black);
  padding: 32px 40px;
}

.nl-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nl-text {
  font-family: var(--fb);
  font-size: 16px;
  color: var(--gd);
  margin: 0;
}

.nl-text strong {
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-right: 8px;
  color: var(--black);
}

.nl-form {
  display: flex;
  gap: 8px;
  width: 400px;
}

.nl-form input {
  flex: 1;
  padding: 16px 24px;
  border: 1px solid var(--gl);
  background: var(--white);
  color: var(--black);
  outline: none;
  font-family: var(--fb);
}

.nl-form input::placeholder {
  color: var(--gm);
}

.btn-black {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 15px 32px;
  cursor: pointer;
  transition: all .2s;
}

.btn-black:hover {
  background: var(--navy);
}

.cta-kicker {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 20px
}

.cta-h {
  font-family: var(--fh);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: .95;
  margin-bottom: 16px
}

.cta-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 40px;
  line-height: 1.6
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap
}

/* FOOTER */
footer {
  background: #060d1a;
  padding: 64px 40px 32px
}

.fi {
  max-width: 1280px;
  margin: 0 auto
}

.fg {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px
}

.flogo {
  font-family: var(--fh);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px
}

.fdesc {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 260px
}

.fwa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: var(--white);
  padding: 11px 22px;
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em
}

.fh2 {
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 18px
}

.fl {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.fl a {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  transition: color .2s
}

.fl a:hover {
  color: var(--white)
}

.fb {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.fc {
  font-size: 12px;
  color: rgba(255, 255, 255, .25)
}

.ft {
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .2)
}

/* =========================================
       CATALOG PAGE STYLES
       ========================================= */
.cat-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 40px 80px;
}

.cat-header {
  margin-bottom: 40px;
  border-bottom: 2px solid var(--black);
  padding-bottom: 24px;
}

.cat-h1 {
  font-family: var(--fh);
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cat-desc {
  font-size: 15px;
  color: var(--gm);
}

.cat-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
}

.cat-sidebar {
  border-right: 1px solid var(--gl);
  padding-right: 24px;
}

.filter-box {
  margin-bottom: 32px;
}

.f-title {
  font-family: var(--fh);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--black);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.f-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.f-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  cursor: pointer;
  color: var(--gd);
}

.f-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--black);
  cursor: pointer;
}

.cat-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cat-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: var(--surface);
  padding: 16px 24px;
}

.cat-search {
  display: flex;
  flex: 1;
  max-width: 400px;
}

.cat-search input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--gl);
  outline: none;
  font-family: var(--fb);
}

.cat-search button {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 0 24px;
  font-family: var(--fh);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}

.cat-search button:hover {
  background: var(--navy);
}

.cat-sort select {
  padding: 12px 16px;
  border: 1px solid var(--gl);
  outline: none;
  font-family: var(--fb);
  background: var(--white);
  min-width: 200px;
  cursor: pointer;
}

.cat-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.pg-btn {
  padding: 8px 16px;
  border: 1px solid var(--gl);
  background: var(--white);
  font-family: var(--fh);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
}

.pg-btn.active,
.pg-btn:hover:not(:disabled) {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* Accordion Sidebar */
.f-item {
  margin-bottom: 4px;
}

.f-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.f-row span {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  font-family: var(--fh);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.f-toggle {
  font-family: monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  width: 24px;
  text-align: center;
  cursor: pointer;
  user-select: none;
}

.f-sub {
  display: none;
  background: #f5f5f5;
  padding: 10px 0 10px 15px;
  border-left: 2px solid var(--black);
}

.f-sub-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 13px;
  color: var(--gd);
  cursor: pointer;
}

.f-item.open .f-sub {
  display: block;
}

/* Catalog Promo Slider */
.cat-promo {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  margin-bottom: 40px;
}

.cat-promo--bottom {
  margin-bottom: 0;
}

.cp-slides {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cp-slide {
  flex: 0 0 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 40px;
}

.cp-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 60%;
}

.cp-kicker {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  opacity: 0.8;
  font-weight: 700;
}

.cp-h {
  font-family: var(--fh);
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
}

.cp-btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--white);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s;
}

.cp-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
}

/* =========================================
       PRODUCT DETAIL STYLES
       ========================================= */
.p-detail {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px;
}

.p-grid {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 64px;
  margin-bottom: 64px;
}

.p-main-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--surface);
  border: 1px solid var(--gl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.p-main-img img,
.p-main-img iframe {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: none;
}

.p-main-img img {
  width: 85%;
  height: 85%;
  mix-blend-mode: multiply;
}

.p-main-img.is-video img {
  display: none;
}

.p-main-img:not(.is-video) iframe {
  display: none;
}

.p-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.p-thumb {
  width: 80px;
  height: 80px;
  border: 1px solid var(--gl);
  cursor: pointer;
  transition: border .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.p-thumb img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.p-thumb.video-thumb {
  position: relative;
  background: var(--black);
}

.p-name {
  font-family: var(--fh);
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}

.p-price-box {
  padding: 24px;
  background: var(--surface);
  margin-bottom: 32px;
  border-left: 4px solid var(--black);
}

.p-price-val {
  font-family: var(--fh);
  font-size: 32px;
  font-weight: 800;
  color: var(--black);
}

.p-tabs {
  border-top: 1px solid var(--gl);
  margin-top: 32px;
}

.p-tab-nav {
  display: flex;
  gap: 40px;
  border-bottom: 1px solid var(--gl);
}

.p-tab-link {
  padding: 24px 0;
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gm);
  cursor: pointer;
  position: relative;
}

.p-tab-link.active {
  color: var(--black);
}

.p-tab-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--black);
}

.p-tab-content {
  padding: 40px 0;
  display: none;
}

.p-tab-content.active {
  display: block;
}

/* =========================================
       CART PAGE STYLES
       ========================================= */
.cart-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gl);
}

.qty-control {
  display: flex;
  border: 1px solid var(--gl);
  width: max-content;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #E0E0E0;
  background: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  border-radius: 4px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: #F8F9FA;
  border-color: #162040;
  color: #162040;
}

.qty-input {
  width: 60px;
  text-align: center;
  padding: 6px;
  font-weight: 600;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.qty-input:focus {
  border-color: #162040;
}

/* =========================================
       CATALOG PAGE STYLES
       ========================================= */
.cat-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 40px 80px;
}

.cat-header {
  margin-bottom: 40px;
  border-bottom: 2px solid var(--black);
  padding-bottom: 24px;
}

.cat-h1 {
  font-family: var(--fh);
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cat-desc {
  font-size: 15px;
  color: var(--gm);
}

.cat-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
}

.cat-sidebar {
  border-right: 1px solid var(--gl);
  padding-right: 24px;
}

.filter-box {
  margin-bottom: 32px;
}

.f-title {
  font-family: var(--fh);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--black);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.f-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.f-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  cursor: pointer;
  color: var(--gd);
}

.f-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--black);
  cursor: pointer;
}

.cat-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cat-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: var(--surface);
  padding: 16px 24px;
}

.cat-search {
  display: flex;
  flex: 1;
  max-width: 400px;
}

.cat-search input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--gl);
  outline: none;
  font-family: var(--fb);
}

.cat-search button {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 0 24px;
  font-family: var(--fh);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}

.cat-search button:hover {
  background: var(--navy);
}

.cat-sort select {
  padding: 12px 16px;
  border: 1px solid var(--gl);
  outline: none;
  font-family: var(--fb);
  background: var(--white);
  min-width: 200px;
  cursor: pointer;
}

.cat-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.pg-btn {
  padding: 8px 16px;
  border: 1px solid var(--gl);
  background: var(--white);
  font-family: var(--fh);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
}

.pg-btn.active,
.pg-btn:hover:not(:disabled) {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.pg-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Accordion Sidebar */
.f-item {
  margin-bottom: 4px;
}

.f-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.f-row span {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  font-family: var(--fh);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.f-toggle {
  font-family: monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  width: 24px;
  text-align: center;
  cursor: pointer;
  user-select: none;
}

.f-sub {
  display: none;
  background: #f5f5f5;
  padding: 10px 0 10px 15px;
  border-left: 2px solid var(--black);
}

.f-sub-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 13px;
  color: var(--gd);
  cursor: pointer;
}

.f-sub-item:hover {
  color: var(--black);
}

.f-sub-item input {
  width: 14px;
  height: 14px;
  accent-color: var(--black);
  cursor: pointer;
}

.f-item.open .f-sub {
  display: block;
}

/* Small Promo Slider */
.cat-promo {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  margin-bottom: 40px;
}

.cp-slides {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cp-slide {
  flex: 0 0 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 40px;
}

.cp-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 60%;
}

.cp-kicker {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  opacity: 0.8;
  font-weight: 700;
}

.cp-h {
  font-family: var(--fh);
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
}

.cp-btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--white);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s;
}

.cp-btn:hover {
  background: var(--black);
  color: var(--white);
}

.cp-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
}

/* FEATURED COMPACT */
.cat-featured {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px dashed var(--gl);
}

.cf-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cf-title {
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: 0.02em;
}

.cf-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid var(--black);
  padding-bottom: 2px;
}

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

.cf-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  padding: 16px;
  transition: all .2s;
  cursor: pointer;
  border: 1px solid transparent;
}

.cf-card:hover {
  border-color: var(--black);
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cf-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.cf-n {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
  display: block;
}

.cf-d {
  font-size: 12px;
  color: var(--gm);
  line-height: 1.4;
}

/* Refined Catalog Grid Styles */
.cat-main .pg {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cat-main .pc {
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}

.cat-main .pc:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .1);
}

.cat-main .pi {
  background: var(--surface);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cat-main .pi img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.cat-main .pinfo {
  padding: 24px 20px 24px 20px;
}

.cat-main .pbrand {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.cat-main .pname {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.4;
}

.cat-main .pcat {
  font-size: 12px;
  color: var(--gm);
  margin-bottom: 16px;
}

.cat-main .pprice {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
}

.cat-main .pprice.lock {
  font-size: 12px;
  color: var(--gm);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}

.cat-main .btn-card {
  width: 100%;
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 13px;
  cursor: pointer;
  transition: background .2s;
}

.cat-main .btn-card:hover {
  background: #1a1a1a;
}

.cat-main .btn-card.muted {
  background: var(--gl);
  color: var(--black);
}

/* =========================================
   PIXEL-PERFECT CATALOG OVERRIDES
   ========================================= */
.cat-page {
  max-width: 1280px !important;
  margin: 0 auto;
  padding: 40px 40px 80px !important;
  background: #fff;
}

.cat-header {
  margin-bottom: 40px !important;
  border-bottom: 2px solid #000;
  padding-bottom: 24px;
}

.cat-h1 {
  font-family: var(--fh);
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #000;
  letter-spacing: -1px;
}

.cat-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.cat-layout {
  display: grid !important;
  grid-template-columns: 260px 1fr !important;
  gap: 48px !important;
  margin-top: 48px;
}

/* Sidebar Titles */
.f-title {
  font-family: var(--fh) !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  border-bottom: 1px solid #000 !important;
  padding-bottom: 12px !important;
  margin-bottom: 20px !important;
  color: #000 !important;
}

/* Product Grid */
.cat-main .pg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cat-main .pc {
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}

.cat-main .pc:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .1);
}

/* Product Image Box */
.cat-main .pi {
  background: var(--surface);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cat-main .pi img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* Product Info Area */
.cat-main .pinfo {
  padding: 24px 20px 24px 20px;
}

.cat-main .pbrand {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.cat-main .pname {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.4;
}

.cat-main .pcat {
  font-size: 12px;
  color: var(--gm);
  margin-bottom: 16px;
}

.cat-main .pprice {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
}

.cat-main .pprice.lock {
  font-size: 12px;
  color: var(--gm);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}

/* Card Buttons */
.cat-main .btn-card {
  width: 100%;
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 13px;
  cursor: pointer;
  transition: background .2s;
}

.cat-main .btn-card:hover {
  background: #1a1a1a;
}

.cat-main .btn-card.muted {
  background: var(--gl);
  color: var(--black);
}

.cat-main .btn-card.muted:hover {
  background: #d0d0d0;
}

/* Pagination Style (Fixing Bullet List Issue) */
.cat-pagination {
  display: flex !important;
  justify-content: center !important;
  margin-top: 64px !important;
  width: 100% !important;
}

.cat-pagination nav {
  display: block !important;
}

.cat-pagination ul,
.cat-pagination li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  gap: 8px !important;
}

.cat-pagination nav span,
.cat-pagination nav a,
.pg-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 10px 20px !important;
  border: 1px solid #ddd !important;
  background: #fff !important;
  font-family: var(--fh) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  color: #000 !important;
  font-size: 13px !important;
  line-height: 1 !important;
}

.cat-pagination .active,
.cat-pagination nav span[aria-current="page"],
.cat-pagination nav a:hover {
  background: #000 !important;
  color: #fff !important;
  border-color: #000 !important;
}

.cat-pagination .disabled,
.cat-pagination nav span[aria-disabled="true"] {
  opacity: 0.3 !important;
  cursor: not-allowed !important;
}

.cat-pagination .active,
.cat-pagination nav span[aria-current="page"],
.cat-pagination nav a:hover {
  background: var(--black) !important;
  color: var(--white) !important;
  border-color: var(--black) !important;
}

/* ABOUT PAGE */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-color: var(--black);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-vid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 56.25vw;
    min-height: 60vh;
    min-width: 106.66vh;
    pointer-events: none;
    z-index: 0;
}

.about-hero-vid iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.about-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 40px;
}

.about-hero-content h1 {
    font-family: var(--fh);
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    margin: 0 0 10px 0;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.about-hero-content p {
    font-family: var(--fb);
    font-size: 16px;
    color: var(--gl);
    max-width: 600px;
    line-height: 1.6;
}

.about-section {
    padding: 80px 40px;
    max-width: 1280px;
    margin: 0 auto;
}

.about-heading {
    font-family: var(--fh);
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.about-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    font-family: var(--fb);
    font-size: 15px;
    color: var(--gd);
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 16px;
}

.btn-outline-black {
    display: inline-block;
    border: 2px solid var(--black);
    color: var(--black);
    font-family: var(--fh);
    font-weight: 700;
    font-size: 16px;
    padding: 12px 24px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-black:hover {
    background-color: var(--black);
    color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.value-card {
    background: var(--surface);
    padding: 32px 24px;
    border-radius: 0px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-icon {
    font-size: 32px;
    color: var(--black);
    margin-bottom: 20px;
}

.value-title {
    font-family: var(--fh);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--black);
}

.value-desc {
    font-family: var(--fb);
    font-size: 14px;
    color: var(--gm);
    line-height: 1.5;
}

.about-cta {
    background: var(--black);
    padding: 80px 40px;
    text-align: center;
    color: var(--white);
}

.about-cta h2 {
    font-family: var(--fh);
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-cta p {
    font-family: var(--fb);
    font-size: 16px;
    color: var(--gl);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-solid-white {
    display: inline-block;
    background: var(--white);
    color: var(--black);
    font-family: var(--fh);
    font-weight: 700;
    font-size: 16px;
    padding: 14px 32px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-solid-white:hover {
    background: var(--gl);
    color: var(--black);
}

.btn-outline-white {
    display: inline-block;
    border: 2px solid var(--white);
    color: var(--white);
    font-family: var(--fh);
    font-weight: 700;
    font-size: 16px;
    padding: 12px 32px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    margin-left: 16px;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--black);
}

.trust-strip {
    background: var(--surface);
    border-bottom: 1px solid var(--gl);
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--fh);
    font-weight: 700;
    font-size: 15px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-item i {
    font-size: 20px;
    color: var(--red);
}

.industry-strip {
    background-color: var(--black);
    padding: 24px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    overflow: hidden;
}

.ind-item {
    font-family: var(--fh);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.ind-dot {
    width: 6px;
    height: 6px;
    background-color: var(--red);
    border-radius: 50%;
}

.principal-showcase {
    padding: 100px 40px 70px 40px;
    background-color: var(--white);
}

.principal-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.principal-badge {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    font-family: var(--fb);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 12px;
    margin-bottom: 24px;
}

.principal-title {
    font-family: var(--fh);
    font-size: 56px;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.principal-title span {
    color: var(--red);
}

.principal-desc {
    font-family: var(--fb);
    font-size: 16px;
    color: var(--gm);
    line-height: 1.6;
    margin-bottom: 32px;
}

.principal-visual {
    background: var(--white);
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--gl);
    position: relative;
}

.principal-visual::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid var(--red);
    z-index: 0;
}

.principal-logo {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .principal-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .principal-visual {
        padding: 40px;
    }

    .about-grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-hero-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .btn-outline-white {
        margin-left: 0;
        margin-top: 16px;
    }

    .about-hero-content {
        padding: 40px 24px;
    }

    .about-section {
        padding: 60px 24px;
    }

    .trust-strip {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

.about-kicker {
    color: var(--red);
    font-family: var(--fh);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.about-checklist {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    font-family: var(--fb);
    font-size: 15px;
    color: var(--gd);
}

.about-checklist li {
    margin-bottom: 12px;
}

.about-checklist i {
    color: var(--red);
    margin-right: 12px;
}

.image-wrapper {
    position: relative;
    padding-bottom: 20px;
    padding-right: 20px;
}

.image-offset-frame {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90%;
    height: 90%;
    border: 4px solid var(--red);
    z-index: 1;
}

.image-accent-box {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background-color: var(--black);
    z-index: 3;
}

.principal-stats {
    display: flex;
    gap: 40px;
}

.stat-box {
    border-left: 3px solid var(--red);
    padding-left: 16px;
}

.stat-box.black {
    border-left-color: var(--black);
}

.stat-box h4 {
    font-family: var(--fh);
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 4px 0;
    color: var(--black);
}

.stat-box p {
    font-family: var(--fb);
    font-size: 13px;
    color: var(--gm);
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
}

.member-highlight {
    background-color: var(--black);
    color: var(--white);
}

.member-highlight .brand-kicker {
    color: var(--gm);
}

.member-highlight .brand-h {
    color: var(--white);
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: var(--fh);
    font-weight: 800;
    text-transform: uppercase;
}

.member-highlight .brand-h span {
    color: var(--red);
}

.member-highlight .brand-desc {
    color: var(--gl);
}

.btn-white-solid {
    display: inline-block;
    background: var(--white);
    color: var(--black);
    padding: 12px 24px;
    text-transform: uppercase;
    font-family: var(--fh);
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-white-solid:hover {
    background: var(--gl);
}

.about-heading.center {
    text-align: center;
}
/* =========================================
   PRODUCT DETAIL — MISSING CLASSES
   ========================================= */
.p-gallery { display: flex; flex-direction: column; gap: 24px; }

.p-gallery-pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 16px; }

.p-gallery-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gl); cursor: pointer; transition: all 0.3s; }
.p-gallery-dot.active { background: var(--black); width: 24px; border-radius: 4px; }
.p-gallery-dot:hover { background: var(--gm); }

.p-main-img.is-video::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; cursor: default; }

.p-thumb:hover, .p-thumb.active { border-color: var(--black); }
.p-thumb.video-thumb img { opacity: 0.6; }
.p-thumb.video-thumb::after { content: '▶'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: var(--white); background: rgba(0,0,0,0.6); width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; padding-left: 2px; }

.p-tab-nav { overflow-x: auto; scrollbar-width: none; }
.p-tab-nav::-webkit-scrollbar { display: none; }
.p-tab-link { white-space: nowrap; }

.p-info { position: sticky; top: 100px; }
.p-meta { font-size: 12px; color: var(--gm); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .05em; display: flex; gap: 12px; }
.p-brand-tag { font-family: var(--fh); font-weight: 800; color: var(--black); border-bottom: 2px solid var(--black); padding-bottom: 2px; }
.p-cat-tag { display: inline-block; padding: 4px 12px; background: var(--surface); font-size: 11px; font-weight: 700; text-transform: uppercase; margin-bottom: 24px; color: var(--black); }
.p-price-label { font-size: 12px; color: var(--gm); text-transform: uppercase; margin-bottom: 4px; font-weight: 600; }
.p-price-lock { font-size: 14px; color: var(--gd); font-weight: 600; display: flex; align-items: center; gap: 8px; }
.p-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.p-qty { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.p-qty-input { width: 80px; padding: 12px; border: 1px solid var(--gl); text-align: center; font-family: var(--fb); font-weight: 700; }

.p-key-specs { list-style: none; padding: 24px 0; border-top: 1px solid var(--gl); margin: 0; }
.p-key-specs li { font-size: 13px; color: var(--gd); margin-bottom: 10px; display: flex; justify-content: space-between; }
.p-key-specs li span { font-weight: 700; color: var(--black); }

.spec-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.spec-table tr { border-bottom: 1px solid var(--gl); }
.spec-table td { padding: 16px 0; font-size: 14px; color: var(--gd); }
.spec-table td:first-child { width: 30%; font-weight: 700; color: var(--black); text-transform: uppercase; font-size: 12px; letter-spacing: .05em; }

.download-card { display: flex; align-items: center; gap: 20px; padding: 24px; border: 1px solid var(--gl); margin-bottom: 16px; transition: border .2s; }
.download-card:hover { border-color: var(--black); }
.dl-icon { width: 48px; height: 48px; background: var(--surface); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.dl-info { flex: 1; }
.dl-name { font-family: var(--fh); font-size: 15px; font-weight: 700; text-transform: uppercase; margin-bottom: 4px; }
.dl-meta { font-size: 12px; color: var(--gm); }
.btn-dl { padding: 10px 20px; border: 1px solid var(--black); font-family: var(--fh); font-size: 11px; font-weight: 700; text-transform: uppercase; text-decoration: none; color: var(--black); display: inline-block; cursor: pointer; }
.btn-dl:hover { background: var(--black); color: var(--white); text-decoration: none; }

.auth-notice { padding: 16px; background: var(--surface); text-align: center; border: 1px solid var(--gl); margin-bottom: 16px; }
.auth-notice i { font-size: 24px; color: var(--gm); display: block; margin-bottom: 8px; }
.auth-notice strong { font-family: var(--fh); font-size: 16px; text-transform: uppercase; color: var(--black); display: block; margin-bottom: 4px; }
.auth-notice p { font-size: 13px; color: var(--gd); }
.auth-notice a { color: var(--black); text-decoration: underline; font-weight: 600; }

@media (max-width: 991px) {
  .p-detail { padding: 20px; }
  .p-grid { grid-template-columns: 1fr; gap: 32px; }
  .p-name { font-size: 32px; }
}

/* =========================================
   CART PAGE — MISSING CLASSES
   ========================================= */
.cart-header { margin-bottom: 40px; }
.cart-header h1 { font-family: var(--fh); font-size: 36px; font-weight: 700; text-transform: uppercase; margin: 0; letter-spacing: 0.5px; }

.cart-layout { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }
@media (max-width: 968px) { .cart-layout { grid-template-columns: 1fr; } }

.cart-table-wrapper { background: #fff; border: 1px solid #E8E8E8; border-radius: 8px; overflow: hidden; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table thead { background: #F8F9FA; }
.cart-table th { padding: 14px 16px; font-size: 11px; font-weight: 700; text-transform: uppercase; color: #666; letter-spacing: 0.5px; border-bottom: 2px solid #E8E8E8; white-space: nowrap; }
.cart-table td { padding: 16px; font-size: 14px; border-bottom: 1px solid #F0F0F0; vertical-align: middle; }
.cart-table tbody tr:last-child td { border-bottom: none; }
.cart-table tbody tr:hover { background-color: #FAFBFC; }

.product-info { display: flex; gap: 20px; align-items: center; }
.product-image { width: 72px; height: 72px; object-fit: contain; border: 1px solid #E8E8E8; padding: 8px; background: #FAFBFC; border-radius: 4px; flex-shrink: 0; }
.product-image-placeholder { width: 72px; height: 72px; background: #F8F9FA; display: flex; align-items: center; justify-content: center; border: 1px solid #E8E8E8; border-radius: 4px; color: #ccc; font-size: 20px; flex-shrink: 0; }
.product-details h4 { font-size: 14px; font-weight: 600; margin: 0 0 4px 0; line-height: 1.4; }
.product-details h4 a { color: #000; text-decoration: none; transition: color 0.2s; }
.product-details h4 a:hover { color: #162040; }
.product-sku { font-size: 12px; color: #999; margin-top: 2px; }

.qty-controls { display: flex; align-items: center; justify-content: center; gap: 8px; }

.price { font-weight: 600; color: #333; white-space: nowrap; }
.subtotal { font-weight: 700; color: #162040; font-size: 15px; white-space: nowrap; }

.btn-remove { width: 36px; height: 36px; background: #fff; border: 1px solid #E0E0E0; color: #CC0000; cursor: pointer; border-radius: 4px; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
.btn-remove:hover { background: #CC0000; color: #fff; border-color: #CC0000; }

.summary-box { background: #fff; border: 1px solid #E8E8E8; border-radius: 8px; padding: 28px; position: sticky; top: 100px; }
.summary-title { font-family: var(--fh); font-size: 20px; font-weight: 700; text-transform: uppercase; margin: 0 0 20px 0; padding-bottom: 16px; border-bottom: 2px solid #E8E8E8; letter-spacing: 0.5px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 14px; color: #666; }
.summary-row-value { font-weight: 600; color: #000; }
.summary-total { display: flex; justify-content: space-between; margin: 20px 0 24px; padding-top: 16px; border-top: 2px dashed #E8E8E8; font-size: 18px; font-weight: 800; }
.summary-total-value { color: #162040; font-size: 20px; }

.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #666; margin-bottom: 8px; }
.form-textarea { width: 100%; padding: 12px; border: 1px solid #E0E0E0; font-family: var(--fb); font-size: 13px; outline: none; background: #fff; transition: border-color 0.2s; border-radius: 4px; resize: vertical; }
.form-textarea:focus { border-color: #162040; }

.btn-group { display: flex; gap: 12px; margin-bottom: 16px; }
.btn { font-family: var(--fh); font-size: 13px; font-weight: 700; text-transform: uppercase; padding: 14px 20px; cursor: pointer; transition: all 0.2s; border: none; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 4px; letter-spacing: 0.5px; flex: 1; }
.btn-primary { background: #162040; color: #fff; }
.btn-primary:hover { background: #0d1428; transform: translateY(-1px); box-shadow: 0 4px 8px rgba(22, 32, 64, 0.2); }
.btn-secondary { background: transparent; border: 2px solid #162040; color: #162040; }
.btn-secondary:hover { background: #162040; color: #fff; }

.info-box { margin-top: 16px; font-size: 11px; color: #666; text-align: center; line-height: 1.6; padding: 16px; background: #F8F9FA; border-radius: 4px; border: 1px solid #E8E8E8; }
.info-box i { color: #162040; margin-bottom: 8px; font-size: 16px; display: block; }

.empty-state { text-align: center; padding: 100px 20px; background: #fff; border: 1px solid #E8E8E8; border-radius: 8px; }
.empty-state i { font-size: 80px; color: #E0E0E0; margin-bottom: 24px; display: block; }
.empty-state h3 { font-family: var(--fh); font-size: 28px; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; }
.empty-state p { color: #666; margin-bottom: 32px; font-size: 15px; }
.empty-state .btn { display: inline-flex; }

/* =========================================
   PRODUCTS PAGE — MISSING CLASSES
   ========================================= */
.f-view-all { border-bottom: 2px solid var(--gl); margin-bottom: 8px; }
.f-view-all .f-row { cursor: pointer; transition: background-color 0.2s; }
.f-view-all .f-row:hover { background-color: var(--surface); }
