@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Manrope:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --font-headline: "Space Grotesk", sans-serif;
  --font-body: "Manrope", sans-serif;
  --font-label: "Inter", sans-serif;

  --color-background: #0e0e0e;
  --color-surface: #0e0e0e;
  --color-surface-container: #1a1919;
  --color-surface-container-low: #131313;
  --color-surface-container-highest: #262626;

  --color-primary: #00f0ff;
  --color-primary-container: #00eefc;
  --color-on-primary-container: #005359;

  --color-secondary: #ff51fa;
  --color-secondary-container: #a900a9;

  --color-on-surface-variant: #adaaaa;
  --color-outline-variant: #484847;
}

body {
  background-color: var(--color-background);
  color: white;
  font-family: var(--font-body);
  margin: 0;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

/* Container for max-width */
.container-xl {
  /* max-width: 1920px; */
  margin: 0 auto;
  /* padding: 0 48px; */
}

@media only screen and (max-width: 1023px) {
  .container-xl {
    padding: 0 24px;
  }
}

@media only screen and (max-width: 767px) {
  .container-xl {
    padding: 0 16px;
  }
}

@media only screen and (max-width: 479px) {
  .container-xl {
    padding: 0 16px;
  }
}

@charset "UTF-8";
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

input,
textarea,
select,
button {
  outline: none;
}

a {
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: #012c2c;
}

img {
  display: block;
  max-width: 100%;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

p,
h1,
h4,
h2,
h3 {
  margin: 0;
  /* line-height: 1.6; */
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-headline);
  margin: 0;
}

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

/* BEM CUSTOM STYLES */

/* Navigation */
.nav-activity {
  display: flex;
  align-items: center;
  gap: 26px;
}

@media only screen and (max-width: 1023px) {
  .nav-activity {
    gap: 18px;
  }
}

.nav-main__wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
}

.nav-top__container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 1023px) {
  .nav-top__container {
    padding: 17px 32px 15px;
  }
}

@media only screen and (max-width: 767px) {
  .nav-top__container {
    padding: 17px 20px 15px;
  }
}

@media only screen and (max-width: 479px) {
  .nav-top__container {
    padding: 15px 16px 12px;
  }
}

.brand-logo__text {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-primary);
  text-transform: uppercase;
  font-style: italic;
  font-family: var(--font-headline);
  letter-spacing: -0.05em;
  filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.3));
}

.nav-links__list {
  display: flex;
  gap: 48px;
}

@media only screen and (max-width: 63.9375em) {
  .nav-links__list {
    display: none;
  }
}

.nav-item__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 0 24px;
  
  text-transform: capitalize;
  font-family: var(--font-headline);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s;
  cursor: pointer;
}

.nav-item__link:hover {
  color: var(--color-primary);
}

.nav-item__link.active {
  background: #5dade2;
  color: #fff !important;
}

/* Dropdown Support */
.nav-item__dropdown-wrapper {
    position: relative;
}

.nav-dropdown__content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 1001;
}

.nav-item__dropdown-wrapper:hover .nav-dropdown__content {
    display: block;
}

.nav-dropdown__content .dropdown-item {
    padding: 15px 25px;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s;
}

.nav-dropdown__content .dropdown-item:hover {
    background: #f8f9fa;
    color: #5dade2;
    padding-left: 30px;
}

.nav-actions__group {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-search__container {
  position: relative;
  width: 280px;
}

@media only screen and (max-width: 767px) {
  .nav-search__container {
    width: 190px;
  }
}

.nav-search__input {
  width: 100%;
  padding: 9px 40px 9px 14px;
  color: white;

  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.05em;
  outline: none;

  background: #5b5b5bb8;
  border: none;
  border-radius: 4px;
}

@media only screen and (max-width: 767px) {
  .nav-search__input {
    padding: 8px 40px 8px 14px;
  }
}

.nav-search__input::placeholder {
  color: white;
  opacity: 1;
}

.nav-search__icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #acacac;
}

.nav-icons__group {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-icon__item {
  color: var(--color-on-surface-variant);
  cursor: pointer;
  transition: color 0.3s;
}

.nav-icon__item:hover {
  color: var(--color-primary);
}

.nav-menu {
  border: 0;
  font-size: 25px;
  color: #fff;
  background-color: transparent;
  display: none;
}

@media only screen and (max-width: 63.9375em) {
  .nav-menu {
    display: flex;
  }
}

/* Hero Section */
.hero-slider__wrapper {
  padding: 69px 0px 0px;
  background: var(--color-background);
}

@media only screen and (max-width: 63.9375em) {
  .hero-slider__wrapper {
    padding: 61px 0px 0px;
  }
}

.hero-slide__container {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 500px;
  background: #000;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@media only screen and (max-width: 1023px) {
  .hero-slide__container {
    aspect-ratio: 16 / 9;
    min-height: 350px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-slide__container {
    aspect-ratio: 4 / 3;
    min-height: 280px;
  }
}

@media only screen and (max-width: 479px) {
  .hero-slide__container {
    aspect-ratio: 16 / 9;
    min-height: 200px;
  }
}

.hero-image__ui {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-overlay__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
}

.hero-content__group {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 80px;
  max-width: 650px;
  z-index: 10;
}

@media only screen and (max-width: 1023px) {
  .hero-content__group {
    left: 48px;
    max-width: 500px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-content__group {
    left: 24px;
    max-width: 100%;
    padding-right: 24px;
  }
}

@media only screen and (max-width: 479px) {
  .hero-content__group {
    left: 16px;
    padding-right: 16px;
    top: 50%;
  }
}

.hero-subtitle__label {
  color: var(--color-primary);
  font-family: var(--font-headline);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 12px;
  margin-bottom: 20px;
}

.hero-title__text {
  font-size: 80px;
  font-weight: 900;
  font-style: italic;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 32px;
}

@media only screen and (max-width: 1023px) {
  .hero-title__text {
    font-size: 56px;
    margin-bottom: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-title__text {
    font-size: 40px;
    margin-bottom: 16px;
  }
}

@media only screen and (max-width: 479px) {
  .hero-title__text {
    font-size: 28px;
    margin-bottom: 12px;
  }
}

.hero-desc__paragraph {
  color: var(--color-on-surface-variant);
  font-size: 18px;
  margin-bottom: 48px;
  max-width: 500px;
}

@media only screen and (max-width: 1023px) {
  .hero-desc__paragraph {
    font-size: 15px;
    margin-bottom: 32px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-desc__paragraph {
    font-size: 13px;
    margin-bottom: 20px;
  }
}

.btn-primary__action {
  background: var(--color-primary);
  color: #000;
  padding: 18px 40px;
  border: none;
  font-family: var(--font-headline);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}

@media only screen and (max-width: 767px) {
  .btn-primary__action {
    padding: 14px 28px;
    font-size: 12px;
  }
}

@media only screen and (max-width: 479px) {
  .btn-primary__action {
    padding: 12px 20px;
    font-size: 11px;
  }
}

.btn-primary__action:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
}

/* Advantage Stats */
.advantage-stats__section {
  max-width: 1920px;
  margin: 0 auto;
  padding: 40px 48px 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card__item {
  background: var(--color-surface-container-low);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px;
  text-align: center;
  transition: all 0.4s;
}

.stat-card__item:hover {
  background: var(--color-surface-container);
  border-color: var(--color-primary);
  transform: translateY(-10px);
}

.stat-value__text {
  display: block;
  font-size: 48px;
  font-weight: 900;
  font-style: italic;
  font-family: var(--font-headline);
  color: white;
  margin-bottom: 8px;
}

.stat-label__description {
  color: var(--color-on-surface-variant);
  font-family: var(--font-label);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.2em;
}

/* Category Assembly (The "Store" grid with sidebar) */
.category-assembly__wrapper {
  max-width: 1920px;
  margin: 0 auto 100px;
  padding: 0 48px;
}

.assembly-header__group {
  margin-bottom: 60px;
}

.assembly-grid__container {
  display: flex;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-nav__sidebar {
  width: 320px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.side-nav__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  padding: 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-headline);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--color-on-surface-variant);
  transition: all 0.3s;
}

.side-nav__item--active {
  background: var(--color-primary);
  color: #000;
}

.product-feed__content {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
}

.feed-item__card {
  background: #050505;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.5s;
}

.feed-item__card:hover {
  background: #0a0a0a;
}

.feed-image__ui {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  margin-bottom: 32px;
  filter: brightness(1.2);
}

.feed-name__title {
  font-size: 20px;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* Excellence Section */
.excellence-manufacturing__wrapper {
  background: var(--color-surface-container-low);
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}

.excellence-content__grid {
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.excellence-info__panel h2 {
  font-size: 64px;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  line-height: 1;
  margin-bottom: 40px;
}

.excellence-stats__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

/* Showcase Grid */
.showcase-featured__section {
  padding: 100px 48px;
}

.showcase-masonry__layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.showcase-brick__item {
  aspect-ratio: 1/1.2;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.showcase-brick__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s;
}

.showcase-brick__item:hover img {
  transform: scale(1.1);
}

/* Advantage Section BEM */
.advantage-main__section {
  padding: 120px 0px;
  background: var(--color-background);
  /* max-width: 1920px; */
  margin: 0 auto;
}

@media only screen and (max-width: 1023px) {
  .advantage-main__section {
    padding: 80px 0px;
  }
}

@media only screen and (max-width: 767px) {
  .advantage-main__section {
    padding: 60px 0px;
  }
}

@media only screen and (max-width: 479px) {
  .advantage-main__section {
    padding: 40px 0px;
  }
}

.advantage-header__group {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

@media only screen and (max-width: 1023px) {
  .advantage-header__group {
    flex-direction: column;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .advantage-header__group {
    margin-bottom: 30px;
  }
}

.advantage-title__text {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 16px;
}

@media only screen and (max-width: 1023px) {
  .advantage-title__text {
    font-size: 36px;
  }
}

@media only screen and (max-width: 767px) {
  .advantage-title__text {
    font-size: 28px;
  }
}

@media only screen and (max-width: 479px) {
  .advantage-title__text {
    font-size: 24px;
  }
}

.advantage-title__desc {
  color: var(--color-on-surface-variant);
  max-width: 70%;
  font-size: 15px;
}

@media only screen and (max-width: 63.9375em) {
  .advantage-title__desc {
    max-width: 100%;
  }
}

.advantage-tagline__label {
  color: var(--color-on-surface-variant);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

@media only screen and (max-width: 63.9375em) {
  .advantage-tagline__label {
    width: 100%;
    margin-top: 12px;
  }
}

.advantage-middle__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  /* margin-bottom: 100px; */
}

@media only screen and (max-width: 1023px) {
  .advantage-middle__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .advantage-middle__grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

.advantage-hq__poster {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.advantage-hq__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.advantage-hq__label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--color-primary);
  color: black;
  padding: 4px 12px;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.advantage-stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media only screen and (max-width: 767px) {
  .advantage-stats__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.stat-box__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;

  border: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--color-surface-container-low);
  transition: border-color 0.3s;
}

@media only screen and (max-width: 767px) {
  .stat-box__item {
    gap: 16px;
    padding: 16px;
  }
}

@media only screen and (max-width: 479px) {
  .stat-box__item {
    gap: 12px;
    padding: 12px;
  }
}

.stat-box__item:hover {
  border-color: var(--color-primary);
}

.stat-icon__wrapper {
  color: var(--color-primary);
  --sizeIcon: 48px;
  min-width: var(--sizeIcon);
  width: var(--sizeIcon);
  height: var(--sizeIcon);
  font-size: 24px;

  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(0, 240, 255, 0.05);
}

.stat-content__info {
  width: 100%;
}

.stat-content__info .value {
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  display: block;
}

@media only screen and (max-width: 767px) {
  .stat-content__info .value {
    font-size: 24px;
  }
}

@media only screen and (max-width: 479px) {
  .stat-content__info .value {
    font-size: 20px;
  }
}

.stat-content__info .label {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--color-on-surface-variant);
  letter-spacing: 0.1em;
}

.advantage-quote__block {
  margin-top: 36px;
  padding-left: 26px;
  border-left: 2px solid var(--color-primary);
}

.advantage-quote__text {
  font-size: 15px;
  color: var(--color-on-surface-variant);
  line-height: 1.6;
  font-style: italic;
}

.advantage-bottom__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

@media only screen and (max-width: 1023px) {
  .advantage-bottom__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .advantage-bottom__row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.feature-pill__column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media only screen and (max-width: 767px) {
  .feature-pill__column {
    gap: 16px;
  }
}

.feature-pill__icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid rgba(0, 240, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.feature-pill__title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.feature-pill__desc {
  font-size: 12px;
  color: var(--color-on-surface-variant);
  line-height: 1.6;
}

/* Industrial Gallery BEM */
.industrial-gallery__section {
  padding: 0 0px 120px;
}

@media only screen and (max-width: 1023px) {
  .industrial-gallery__section {
    padding: 0 0px 80px;
  }
}

@media only screen and (max-width: 767px) {
  .industrial-gallery__section {
    padding: 0 0px 60px;
  }
}

.industrial-gallery__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 auto;
}

@media only screen and (max-width: 1023px) {
  .industrial-gallery__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .industrial-gallery__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.industrial-card__item {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #111;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@media only screen and (max-width: 767px) {
  .industrial-card__item {
    aspect-ratio: 16 / 9;
  }
}

@media only screen and (max-width: 479px) {
  .industrial-card__item {
    aspect-ratio: 4 / 3;
  }
}

.industrial-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.industrial-card__item:hover .industrial-card__image {
  opacity: 0.8;
  filter: grayscale(0%);
  transform: scale(1.05);
}

.industrial-card__label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 8px;
  border-radius: 2px;
}

/* Ecosystem Refined Grid BEM */
.ecosystem-main__wrapper {
  margin: 0 auto 70px;
}

@media only screen and (max-width: 1023px) {
  .ecosystem-main__wrapper {
    margin: 0 auto 50px;
  }
}

@media only screen and (max-width: 767px) {
  .ecosystem-main__wrapper {
    margin: 0 auto 40px;
  }
}

.ecosystem-container__outer {
  display: flex;
  background: #000;
  border: 4px solid #111;
  min-height: 800px;
}

@media only screen and (max-width: 1023px) {
  .ecosystem-container__outer {
    flex-direction: column;
    min-height: auto;
  }
}

@media only screen and (max-width: 767px) {
  .ecosystem-container__outer {
    border: none;
  }
}

.ecosystem-sidebar__nav {
  width: 280px;
  border-right: 1px solid #222;
  display: flex;
  flex-direction: column;
}

@media only screen and (max-width: 1023px) {
  .ecosystem-sidebar__nav {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #222;
    flex-direction: row;
    overflow-x: auto;
  }
}

@media only screen and (max-width: 767px) {
  /* .ecosystem-sidebar__nav {
    flex-direction: column;
    border-bottom: none;
  } */
}

.ecosystem-nav__item {
  height: 60px;
  display: flex;
  align-items: center;
  padding-left: 26px;

  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  /* letter-spacing: 0.1em; */

  color: #666;
  border-bottom: 1px solid #111;
  transition: all 0.3s;
  cursor: pointer;
}

@media only screen and (max-width: 1023px) {
  .ecosystem-nav__item {
    height: auto;
    padding: 10px 24px;
    flex-shrink: 0;
  }
}

.ecosystem-nav__item:hover {
  color: #fff;
  background: #0a0a0a;
}

.ecosystem-nav__item.active {
  color: #000;
  background: var(--color-primary);
}

.ecosystem-nav__item--active:hover {
  background: var(--color-primary-container);
  color: #000;
}

.ecosystem-feed__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;

  flex: 1;
  padding: 40px 50px;
}

@media only screen and (max-width: 1023px) {
  .ecosystem-feed__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 30px 24px;
  }
}

@media only screen and (max-width: 767px) {
  .ecosystem-feed__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 24px 14px;
  }
}

.ecosystem-product__info {
  width: 100%;
  padding: 10px 20px 20px;
}

@media only screen and (max-width: 767px) {
  .ecosystem-product__info {
    padding: 10px 14px 20px;
  }
}

.ecosystem-product__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ecosystem-product__frame {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;

  background: #0a0a0a;
  border: 4px solid white;
  transition: transform 0.4s;
}

.ecosystem-product__frame img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ecosystem-product__card:hover .ecosystem-product__frame {
  transform: translateY(-6px);
}

/* .ecosystem-product__image {
  width: 100%;
  height: 100%;

} */

.ecosystem-product__name {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 16px;

  color: white;
  text-transform: uppercase;
  /* letter-spacing: 0.25em; */
}

/* Manufacturing Excellence (Refined) BEM */
.excellence-section {
  padding: 90px 0px;
}

@media only screen and (max-width: 1023px) {
  .excellence-section {
    padding: 70px 0px;
  }
}

@media only screen and (max-width: 767px) {
  .excellence-section {
    padding: 50px 0px;
  }
}

.excellence-section__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin: 0 auto;
}

@media only screen and (max-width: 1023px) {
  .excellence-section__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.excellence-header__title {
  color: var(--color-primary);
  font-size: 56px;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  line-height: 1;
  margin-bottom: 32px;
}

@media only screen and (max-width: 1023px) {
  .excellence-header__title {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .excellence-header__title {
    font-size: 32px;
    margin-bottom: 10px;
  }
}

.excellence-header__desc {
  color: var(--color-on-surface-variant);
  font-size: 18px;
  line-height: 1.6;
  max-width: 500px;
}

@media only screen and (max-width: 767px) {
  .excellence-header__desc {
    font-size: 15px;
  }
}

.excellence-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 60px;
}

@media only screen and (max-width: 767px) {
  .excellence-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
  }
}

.excellence-stat__item .value {
  font-size: 48px;
  font-weight: 900;
  font-family: var(--font-headline);
  display: block;
}

@media only screen and (max-width: 767px) {
  .excellence-stat__item .value {
    font-size: 40px;
  }
}

.excellence-stat__item .label {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--color-primary);
  /* letter-spacing: 0.2em; */
  font-weight: 700;
}

.excellence-image__side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.excellence-quote__overlay {
  font-size: 15px;
  font-style: italic;
  color: var(--color-on-surface-variant);

  padding: 26px 32px;
  line-height: 1.5;
  background: rgba(0, 240, 255, 0.05);
  border-left: 2px solid var(--color-primary);
}

/* Product Showcase Grid BEM */
.showcase-main__section {
  padding: 120px 48px;
  max-width: 1920px;
  margin: 0 auto;
}

@media only screen and (max-width: 1023px) {
  .showcase-main__section {
    padding: 80px 32px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase-main__section {
    padding: 60px 20px;
  }
}

@media only screen and (max-width: 479px) {
  .showcase-main__section {
    padding: 40px 16px;
  }
}

.showcase-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 400px);
  gap: 20px;
}

@media only screen and (max-width: 1023px) {
  .showcase-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase-masonry {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }
}

@media only screen and (max-width: 479px) {
  .showcase-masonry {
    gap: 8px;
  }
}

.showcase-tile {
  position: relative;
  overflow: hidden;
  background: #111;
  border-radius: 4px;
}

@media only screen and (max-width: 767px) {
  .showcase-tile {
    min-height: 280px;
  }
}

@media only screen and (max-width: 479px) {
  .showcase-tile {
    min-height: 240px;
  }
}

.showcase-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-tile:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.showcase-tile__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
}

.showcase-tile__title {
  font-size: 24px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
}

@media only screen and (max-width: 1023px) {
  .showcase-tile__title {
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase-tile__title {
    font-size: 16px;
  }
}

.showcase-tile__tag {
  color: var(--color-primary);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 8px;
  display: block;
}

.showcase-tile--large {
  grid-row: span 2;
}

.showcase-tile--cta {
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

/* Showcase Section Header Responsive */
.showcase-main__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 20px;
}

@media only screen and (max-width: 1023px) {
  .showcase-main__header {
    margin-bottom: 40px;
    gap: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase-main__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
  }
}

.showcase-main__title {
  font-size: 56px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
}

@media only screen and (max-width: 1023px) {
  .showcase-main__title {
    font-size: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase-main__title {
    font-size: 32px;
  }
}

@media only screen and (max-width: 479px) {
  .showcase-main__title {
    font-size: 24px;
  }
}

.showcase-main__desc {
  color: var(--color-on-surface-variant);
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 10px;
}

/* Showcase tile content responsive padding */
.showcase-tile__content {
  padding: 40px;
}

@media only screen and (max-width: 767px) {
  .showcase-tile__content {
    padding: 30px;
  }
}

@media only screen and (max-width: 479px) {
  .showcase-tile__content {
    padding: 20px;
  }
}

/* Category Spotlight / Product Display */
.category-spotlight__block {
    margin-bottom: 120px;
    position: relative;
}

.category-spotlight__block:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(123, 31, 162, 0.2), transparent);
}

.spotlight-main__title {
    background: linear-gradient(to right, #fff, #555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-product__card {
    transition: transform 0.5s ease;
}

.hero-product__card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary) !important;
}

.glowing-accents {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(123, 31, 162, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.product-mini__card {
    border: 1px solid #1a1a1a;
    transition: all 0.3s;
}

.product-mini__card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.mini-card__image img {
    transition: transform 0.3s;
}

.product-mini__card:hover .mini-card__image img {
    transform: scale(1.05);
}

.category-cta__box {
    position: relative;
    overflow: hidden;
}

.category-cta__box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to left, rgba(123, 31, 162, 0.05), transparent);
}

@media (max-width: 991px) {
    .hero-product__card {
        min-height: auto !important;
        padding: 3rem !important;
    }
    .hero-product__card img {
        position: relative !important;
        right: 0 !important;
        bottom: 0 !important;
        height: auto !important;
        width: 100% !important;
        margin-top: 2rem;
    }
}

/* Header Modern Redesign */
.header-main {
    height: 80px;
    background: #000;
    border-bottom: 1px solid #111;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main .nav-link {
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    padding: 0 1.5rem !important;
    height: 80px;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    text-transform: capitalize;
}

.header-main .nav-link:hover {
    color: var(--color-primary) !important;
}

.active-blue {
    background: #5dade2 !important; /* Matches the light blue in the screenshot */
    color: #fff !important;
}

/* Dropdown Hover Logic */
.dropdown-hover:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
}

.header-main .dropdown-menu {
    border-radius: 0 0 4px 4px;
    min-width: 200px;
    background: #fff;
}

.header-main .dropdown-item {
    font-weight: 500;
    color: #333;
    font-size: 13px;
    transition: all 0.2s;
}

.header-main .dropdown-item:hover {
    background: #f8f9fa;
    color: #5dade2;
    padding-left: 1.8rem;
}

.navbar-brand {
    letter-spacing: 0.1em;
}

@media (max-width: 991px) {
    .header-main {
        height: auto;
    }
    .header-main .nav-link {
        height: 50px;
        padding: 0 1rem !important;
    }
}

/* Showcase CTA tile responsive */
.showcase-tile--cta {
  min-height: 280px;
}

@media only screen and (max-width: 767px) {
  .showcase-tile--cta {
    min-height: 240px;
    padding: 30px;
  }
}

@media only screen and (max-width: 479px) {
  .showcase-tile--cta {
    min-height: 200px;
    padding: 20px;
  }
}

.showcase-tile--cta h3 {
  font-size: 20px;
}

@media only screen and (max-width: 767px) {
  .showcase-tile--cta h3 {
    font-size: 16px;
  }
}

@media only screen and (max-width: 479px) {
  .showcase-tile--cta h3 {
    font-size: 14px;
  }
}

.showcase-tile--cta p {
  font-size: 11px;
  margin: 8px 0 0 0;
}

@media only screen and (max-width: 479px) {
  .showcase-tile--cta p {
    font-size: 10px;
  }
}

.showcase-tile--large {
  grid-row: span 2;
}

@media only screen and (max-width: 767px) {
  .showcase-tile--large {
    grid-row: span 1;
  }
}

/* Complementary Swiper Carousel */
.complementary-section {
  padding: 80px 0;
  position: relative;
}

.complementary-header {
  margin-bottom: 40px;
  padding: 0 24px;
}

.complementary-tag {
  color: var(--color-primary);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  /* letter-spacing: 0.4em; */
  display: block;
  margin-bottom: 10px;
}

.complementary-title {
  font-size: 32px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  margin: 0;
}

.complementary-swiper {
  overflow: hidden;
  /* padding: 0 24px; */
}

.complementary-swiper-wrap {
  position: relative;
}

.complementary-swiper .swiper-wrapper {
  display: flex;
}

.complementary-swiper .swiper-slide {
  height: auto;
}

.complementary-swiper__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 10, 0.92);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.complementary-swiper__button::after {
  display: none;
}

.complementary-swiper__button:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.complementary-swiper__button--prev {
  left: 0;
}

.complementary-swiper__button--next {
  right: 0;
}

.complementary-swiper__pagination {
  display: none;
  position: static;
  margin-top: 18px;
  text-align: center;
}

.complementary-swiper__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.25);
  opacity: 1;
}

.complementary-swiper__pagination .swiper-pagination-bullet-active {
  background: var(--color-primary);
}

.ecosystem-product__card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.ecosystem-product__card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.1);
}

.product-card-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 100%;
  background: #000;
}

.product-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ecosystem-product__title {
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
  .ecosystem-product__title {
    font-size: 15px;
  }
}

.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

@media only screen and (max-width: 767px) {
  .product-card-footer {
    flex-direction: column;
  }
}

.product-price {
  color: var(--color-primary);
  font-weight: 800;
  font-size: 20px;
}

@media only screen and (max-width: 767px) {
  .product-price {
    width: 100%;
    font-size: 18px;
  }
}

.product-add-btn {
  background: none;
  border: none;
  color: #444;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;

  cursor: pointer;
  padding: 7px 14px 5px;
  border-radius: 4px;
  transition: all 0.2s ease;
  background-color: var(--color-primary);
}

.product-add-btn:hover {
  color: #000;
}

@media only screen and (max-width: 1023px) {
  .complementary-section {
    padding: 72px 0;
  }

  .complementary-title {
    font-size: 26px;
  }
}

@media only screen and (max-width: 767px) {
  .product-add-btn {
    display: flex;
    margin-left: auto;
    margin-top: 10px;
  }

  .complementary-section {
    padding: 60px 0;
  }

  .complementary-header,
  .complementary-swiper {
    padding: 0 16px;
  }

  .complementary-swiper__button {
    display: none;
  }

  .complementary-swiper__pagination {
    display: block;
  }

  .complementary-title {
    font-size: 22px;
  }
}

@media only screen and (max-width: 479px) {
  .complementary-section {
    padding: 40px 0;
  }

  .complementary-header {
    margin-bottom: 24px;
  }

  .complementary-title {
    font-size: 20px;
  }

  .complementary-swiper {
    padding: 0 12px;
  }
}

/* Ready Section (Refined) BEM */
.cta-ready {
  position: relative;
  padding: 90px 0px;
}

@media only screen and (max-width: 1023px) {
  .cta-ready {
    padding: 70px 0px;
  }
}

@media only screen and (max-width: 767px) {
  .cta-ready {
    padding: 50px 0px;
  }
}

.cta-ready::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;

  width: 300px;
  height: 2px;
  transform: translateX(-50%);
  background: var(--color-primary);
}

.cta-ready__wrapper {
  text-align: center;
  background: #0e0e0e;
  position: relative;
}

.cta-title__text {
  font-size: 72px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1023px) {
  .cta-title__text {
    font-size: 48px;
  }
}

@media only screen and (max-width: 767px) {
  .cta-title__text {
    font-size: 36px;
  }
}

@media only screen and (max-width: 479px) {
  .cta-title__text {
    font-size: 28px;
  }
}

.cta-ready__desc {
  color: var(--color-on-surface-variant);
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.6;
}

@media only screen and (max-width: 767px) {
  .cta-ready__desc {
    font-size: 13px;
    line-height: 1.5;
  }
}

@media only screen and (max-width: 479px) {
  .cta-ready__desc {
    font-size: 12px;
  }
}

.cta-input__container {
  max-width: 600px;
  margin: 60px auto 0;
  display: flex;
  background: #151515;
  /* padding: 8px; */
  border-radius: 4px;
  flex-direction: row;
}

@media only screen and (max-width: 767px) {
  .cta-input__container {
    max-width: 100%;
    margin: 40px auto 0;
    flex-direction: column;
  }
}

@media only screen and (max-width: 479px) {
  .cta-input__container {
    margin: 24px auto 0;
  }
}

.cta-input__field {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 24px;
  color: white;
  font-family: var(--font-label);
  outline: none;
}

.cta-submit__button {
  background: var(--color-primary);
  color: black;
  border: none;
  padding: 0 40px;
  font-family: var(--font-headline);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

@media only screen and (max-width: 767px) {
  .cta-submit__button {
    padding: 16px 24px;
    width: 100%;
  }
}

.cta-submit__button:hover {
  background: white;
}

/* Product Detail Page BEM */
.product-detail__page {
  padding: 96px 0px 0px;
  max-width: 1920px;
  margin: 0 auto;
}

.breadcrumb__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  font-family: var(--font-label);
  font-size: 12px;
  text-transform: uppercase;
  /* letter-spacing: 0.2em; */
  color: var(--color-on-surface-variant);
}

.breadcrumb__nav span {
  color: var(--color-primary);
}

.detail-main__layout {
  display: flex;
  /* grid-template-columns: 1.2fr 1fr; */
  gap: 50px;
  margin-bottom: 100px;
}

.detail-main__img {
  position: relative;
  padding-top: 100%;
  width: 100%;
  overflow: hidden;
}

.detail-main__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-container__wrapper {
  display: flex;
  gap: 20px;
  width: 54%;
  flex-direction: row-reverse;
}

.gallery-thumbs__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-thumb__item {
  width: 80px;
  height: 80px;
  background: #0a0a0a;
  border: 1px solid #222;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s;
}

.gallery-thumb__item--active {
  border-color: var(--color-primary);
}

.gallery-main__frame {
  flex: 1;
  background: #0a0a0a;
  border: 1px solid #111;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
}

.gallery-main__frame img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.gallery-container__wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gallery-main-swiper {
  width: 100%;
}
.gallery-main-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* .gallery-main-swiper .swiper-slide img {
  max-width: 100%;
  max-height: 520px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
} */
.gallery-thumbs-swiper {
  height: 100%;
  box-sizing: border-box;
}
.gallery-thumbs-swiper .swiper-slide {
  width: 80px;
  height: 80px;
  opacity: 0.6;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-thumbs-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.gallery-thumbs-swiper .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid var(--color-primary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}
.gallery-thumbs-swiper .swiper-slide {
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}
.gallery-thumbs-swiper .swiper-slide-thumb-active {
  transform: scale(1.02);
}
@media (min-width: 768px) {
  .gallery-container__wrapper {
    flex-direction: row-reverse;
    gap: 24px;
    align-items: flex-start;
  }
  .gallery-main-swiper {
    flex: 1;
  }
  .gallery-thumbs-swiper .swiper-slide {
    height: 80px;
  }
}

@media (max-width: 1023px) {
  .gallery-thumbs-swiper {
    width: 100%;
  }
}

.detail-info__column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-badge__label {
  display: inline-block;
  background: rgba(255, 81, 250, 0.1);
  color: var(--color-secondary);
  font-size: 9px;
  font-weight: 900;
  width: fit-content;
  padding: 4px 10px;
  text-transform: uppercase;
  /* letter-spacing: 0.1em; */
  border-radius: 2px;
  margin-bottom: 16px;
}

.info-title__heading {
  font-size: 56px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 24px;
}

.info-price__row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-top: 8px;
  margin-bottom: 40px;
}

.info-price__current {
  font-size: 40px;
  font-weight: 900;
  color: var(--color-primary);
  font-family: var(--font-headline);
}

.info-price__old {
  font-size: 20px;
  color: #444;
  text-decoration: line-through;
}

.features-grid__layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}

.feature-box__item {
  background: #0d0d0d;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 1px solid #1a1a1a;
}

.feature-box__item i {
  font-size: 28px;
}

.feature-box__item span {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: #777777;
}

.detail-actions__group {
  display: flex;
  gap: 16px;
}

.btn-add__primary {
  flex: 1;
  background: var(--color-primary);
  color: #000;
  height: 64px;
  border: none;
  font-family: var(--font-headline);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}

.btn-quote__outline {
  width: 240px;
  background: transparent;
  border: 1px solid #333;
  color: white;
  font-family: var(--font-headline);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-quote__outline:hover {
  background: white;
  color: black;
}

/* Specs Bento BEM */
.specs-bento__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  /* margin-bottom: 120px; */
}

.about-panel__card {
  background: #0a0a0a;
  border-left: 2px solid var(--color-secondary);
  padding: 48px;
}

.specs-panel__title {
  margin-bottom: 8px;
}

.specs-panel__card {
  background: #161616;
  padding: 40px;
}

.spec-row__item {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #222;
  font-size: 16px;
}

.spec-row__label {
  color: #555;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 800;
  /* letter-spacing: 0.1em; */
}

.spec-row__value {
  font-family: var(--font-headline);
  font-weight: 700;
}

.product-description {
  line-height: 1.5;
}

@media only screen and (max-width: 1023px) {
  .detail-main__layout {
    flex-direction: column;
    margin-bottom: 72px;
  }

  .gallery-container__wrapper {
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }

  .feature-box__item {
    justify-content: flex-start;
  }

  .feature-box__item span {
    font-size: 14px;
  }

  .gallery-thumbs__list {
    flex-direction: row;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-thumb__item {
    width: 72px;
    height: 72px;
    flex: 0 0 auto;
  }

  .gallery-main__frame {
    padding: 40px;
    min-height: 420px;
  }

  .info-title__heading {
    font-size: 44px;
  }

  .info-price__current {
    font-size: 34px;
  }

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

  .specs-bento__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 0px;
  }

  .about-panel__card,
  .specs-panel__card {
    padding: 20px 26px;
  }

  .detail-actions__group {
    flex-wrap: wrap;
  }

  .btn-quote__outline {
    width: auto;
    min-width: 220px;
  }
}

@media only screen and (max-width: 767px) {
  .detail-main__layout {
    gap: 36px;
    margin-bottom: 56px;
  }

  .gallery-main__frame {
    padding: 24px;
    min-height: 320px;
  }

  .gallery-thumb__item {
    width: 64px;
    height: 64px;
    padding: 8px;
  }

  .info-title__heading {
    font-size: 34px;
    margin-bottom: 18px;
  }

  .info-price__row {
    flex-wrap: wrap;
    gap: 12px;

    margin-bottom: 28px;
  }

  .info-price__current {
    font-size: 28px;
  }

  .features-grid__layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 36px;
  }

  .feature-box__item {
    padding: 16px;
    flex-direction: row;
    justify-content: center;
  }

  .detail-actions__group {
    flex-direction: column;
  }

  .btn-add__primary,
  .btn-quote__outline {
    width: 100%;
    min-width: 100%;
  }

  .about-panel__card,
  .specs-panel__card {
    padding: 28px 20px;
  }

  .specs-bento__grid {
    margin-bottom: 72px;
  }

  .spec-row__item {
    gap: 12px;
  }

  .spec-row__value {
    text-align: right;
  }
}

@media only screen and (max-width: 479px) {
  .detail-main__layout {
    gap: 28px;
    margin-bottom: 48px;
  }

  .gallery-main__frame {
    padding: 18px;
    min-height: 260px;
  }

  .gallery-thumb__item {
    width: 56px;
    height: 56px;
  }

  .info-title__heading {
    font-size: 28px;
  }

  .info-price__current {
    font-size: 24px;
  }

  .product-description {
    font-size: 15px;
    line-height: 1.7;
  }

  .specs-section__title,
  .specs-panel__title {
    font-size: 18px;
  }

  .about-features__list li {
    gap: 10px;
    font-size: 14px;
    line-height: 1.6;
  }

  .spec-row__item {
    font-size: 12px;
  }

  .complementary-title {
    font-size: 18px;
  }

  .complementary-swiper {
    padding: 0 12px;
  }
}

.footer {
  background-color: #181818;
  padding: 100px 0px 40px;
}

@media only screen and (max-width: 1023px) {
  .footer {
    padding: 80px 0px 30px;
  }
}

@media only screen and (max-width: 767px) {
  .footer {
    padding: 60px 0px 24px;
  }
}

.footer-top__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 80px;
  margin: 0 auto 80px;
}

@media only screen and (max-width: 1023px) {
  .footer-top__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-top__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-title {
  color: var(--color-primary);
  font-size: 15px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom__copyright {
  font-size: 13px;
  color: rgb(138, 138, 138);
}

.footer-brand__title {
  font-size: 24px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-brand__desc {
  color: var(--color-on-surface-variant);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.footer-brand__socials {
  display: flex;
  gap: 20px;
  color: var(--color-on-surface-variant);
}

.footer-brand__socials i {
  font-size: 18px;
}

.footer-links__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-link__item {
  color: var(--color-on-surface-variant);
  font-size: 14px;
  transition: color 0.3s;
}

.footer-link__item:hover {
  color: white;
}

/* Product Listing Page Refinements */
.product-list__page {
  padding: 160px 80px 120px;
  max-width: 1920px;
  margin: 0 auto;
}

.listing-grid__layout {
  display: flex;
  gap: 50px;
  padding-bottom: 100px;
}

.filter-products__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

/* Sidebar Refinement */
.filter-sidebar__container {
  width: 280px;
  flex-shrink: 0;
}

.filter-offcanvas__panel {
  background: #111;
  color: #fff;
}

.filter-offcanvas__header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.filter-offcanvas__title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.filter-offcanvas__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.filter-offcanvas__sort {
  display: flex;
}

.feed-sort__select--full {
  width: 100%;
}

.feed-filter__button {
  display: none;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(248, 248, 248, 0.08);
  background: #2e2e2e;
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.filter-group__header {
  color: #555;
  font-size: 14px;
  text-transform: uppercase;
  /* letter-spacing: 0.25em; */
  font-weight: 800;
  margin-bottom: 20px;
  display: block;
}

.filter-option__list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.filter-option__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-label);
  font-size: 14px;
  color: var(--color-on-surface-variant);
  cursor: pointer;
  transition: color 0.3s;
}

.filter-option__item:hover,
.filter-option__item--active {
  color: var(--color-primary);
}

.filter-count__badge {
  background: #1a1a1a;
  color: #333;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 2px;
  font-family: var(--font-headline);
}

.filter-option__item--active .filter-count__badge {
  background: var(--color-on-primary-container);
  color: var(--color-primary);
}

/* Custom Checkbox */
.checkbox-field__wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  /* margin-bottom: 16px; */
  font-size: 14px;
  color: var(--color-on-surface-variant);
}

.checkbox-field__input {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #333;
  border-radius: 2px;
  background: #0a0a0a;
  position: relative;
  cursor: pointer;
}

.checkbox-field__input:checked {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.checkbox-field__input:checked::after {
  content: "✔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: black;
  font-size: 10px;
}

/* Product Card Grid Item Refinement */
.product-card__container {
  background: #111;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.4s;
}

.product-card__container:hover {
  background: #151515;
  border-color: rgba(0, 240, 255, 0.1);
}

.card-visual__box {
  background: #000;
  aspect-ratio: 1/1;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
}

.card-visual__box::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 2px;
  background: var(--color-primary);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
}

.card-title__heading {
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.card-meta__tags {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.card-tag__pill {
  border-left: 2px solid var(--color-primary);
  background: rgba(255, 255, 255, 0.03);
  padding: 4px 10px;
  font-size: 9px;
  font-family: var(--font-label);
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.card-action__row {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-price__label {
  font-size: 24px;
  font-weight: 900;
  font-style: italic;
  color: var(--color-primary);
}

.card-view__button {
  background: var(--color-primary);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
  color: black;
  border: none;
  padding: 10px 24px;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  cursor: pointer;
}

/* Feed Header */
.feed-header__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.feed-title__main {
  font-size: 50px;
  font-weight: 900;
  margin-bottom: 12px;
}

.feed-sort__group {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  color: #444;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.feed-sort__select {
  background: #111;
  border: none;
  color: white;
  padding: 8px 16px;
  font-family: var(--font-label);
  font-size: 12px;
  border-radius: 4px;
}

.filter-group__section--offcanvas .filter-group__header {
  color: #d6d6d6;
  margin-bottom: 16px;
}

.filter-group__section--offcanvas .filter-option__item,
.filter-group__section--offcanvas .checkbox-field__wrapper {
  color: rgba(255, 255, 255, 0.82);
}

.filter-group__section--offcanvas .filter-count__badge {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
}

.filter-group__section--offcanvas .filter-option__item--active .filter-count__badge {
  background: var(--color-primary);
  color: #000;
}

@media (max-width: 1023px) {
  .listing-grid__layout {
    display: block;
    padding-bottom: 80px;
  }

  .filter-sidebar__desktop {
    display: none;
  }

  .feed-header__top {
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
    flex-wrap: wrap;
  }

  .feed-filter__button {
    display: inline-flex;
  }

  .feed-sort__desktop {
    display: none;
  }

  .feed-sort__group {
    width: 100%;
    justify-content: space-between;
  }

  .filter-products__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .product-list__page {
    padding: 130px 20px 80px;
  }

  .feed-title__main {
    font-size: 34px;
  }

  .feed-filter__button {
    width: fit-content;
    justify-content: center;
  }

  .feed-sort__group {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-products__grid {
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-offcanvas__panel {
    width: min(92vw, 420px);
  }
}

@media (max-width: 479px) {
  .product-card__container,
  .ecosystem-product__card {
    padding: 0px;
  }

  .feed-title__main {
    font-size: 28px;
  }

  .feed-header__top {
    margin-bottom: 22px;
  }
}

.header-offcanvas {
  background-color: #1a1a1a;
}

.header-offcanvas__close.btn-close {
  background: transparent
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3E%3C/svg%3E")
    center/1em auto no-repeat !important;
}

.header-offcanvas__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 20px;
}

.header-offcanvas__body .nav-item__link {
  padding: 10px 0;
  align-items: flex-start;
}

.header-offcanvas__body .nav-item__link.active::after {
  bottom: 0px;
  width: 100px;
}

.general-content * {
  /* // all: revert; */
  margin: revert;
  font-size: 16px;
  padding: revert;
  list-style-type: revert;
  display: revert;
  color: revert;
  text-decoration: revert;
  line-height: 1.7;
  /* // line-height: revert; */
  font-family: $font-main, sans-serif !important;
}

.breadcrumb__nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   Home Page Structural Updates (Matching LovingCool)
   ========================================================================== */

/* Hero Slider */
.hero-slider__section {
    height: 90vh;
    background: #000;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(75deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    z-index: 1;
}

.hero-content__wrapper {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    font-style: italic;
}

.hero-tagline {
    letter-spacing: 0.3em;
    font-size: 0.9rem;
}

/* Category Grid */
.category-card__item:hover img {
    transform: scale(1.1);
}

.category-overlay {
    transition: background 0.3s ease;
}

.category-card__item:hover .category-overlay {
    background: linear-gradient(to top, rgba(123, 31, 162, 0.8), transparent) !important;
}

/* Hot Sale Section */
.swiper-nav-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #fff;
}

.swiper-nav-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.product-card__modern {
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
}

.product-image__wrapper {
    background: #000;
    border-radius: 4px;
    padding: 10px;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .hero-slider__section {
        height: 70vh;
    }
    .hero-title {
        font-size: 2.5rem;
    }
}
