:root {
  --c-black: #070707;
  --c-surface: #111214;
  --c-surface-2: #18191c;
  --c-red: #d80a0a;
  --c-red-bright: #ff3131;
  --c-white: #f7f7f7;
  --c-gray-100: #e7e7e7;
  --c-gray-300: #b8b8b8;
  --c-gray-500: #858585;
  --c-border: #2a2a2c;
  --rad-sm: 8px;
  --rad-md: 14px;
  --rad-lg: 20px;
  --shadow-red: 0 18px 48px rgba(216, 10, 10, 0.2);
  --transition: 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--c-black);
  color: var(--c-gray-100);
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.28;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.07) 0.55px,
    transparent 0.55px
  );
  background-size: 5px 5px;
  mask-image: linear-gradient(to bottom, black, transparent 55%);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(7, 7, 7, 0.88);
  backdrop-filter: blur(16px);
}
.header-container,
.footer-container {
  width: min(100% - 32px, 1320px);
  margin: 0 auto;
}
.header-container {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: var(--c-white);
  line-height: 1;
  letter-spacing: -0.04em;
}
.brand-mark {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 31px;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.1em;
}
.brand-name {
  color: var(--c-red-bright);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.main-nav {
  display: none;
}
.header-whatsapp-btn,
.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  gap: 8px;
  padding: 9px 14px;
  border-radius: var(--rad-sm);
  color: #fff;
  background: #159a45;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  transition:
    transform var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}
.header-whatsapp-btn:hover,
.footer-whatsapp-btn:hover {
  background: #1aaf50;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(21, 154, 69, 0.25);
}

/* Hero */
.hero {
  position: relative;
  margin-top: 74px;
  overflow: hidden;
  border-bottom: 1px solid var(--c-border);
  background:
    radial-gradient(circle at 82% 12%, rgba(160, 0, 0, 0.47), transparent 33%),
    radial-gradient(
      circle at 70% 76%,
      rgba(216, 10, 10, 0.17),
      transparent 32%
    ),
    linear-gradient(112deg, #080808 0%, #0b0808 46%, #1e0606 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: 13%;
  width: 90%;
  height: 1px;
  transform: rotate(-11deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 49, 49, 0.85),
    transparent
  );
  box-shadow: 0 0 20px rgba(255, 49, 49, 0.55);
}
.hero-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 1320px);
  min-height: 460px;
  margin: 0 auto;
  padding: 54px 0 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  order: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-gray-300);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--c-red-bright);
  transform: skewX(-24deg);
}
.hero h1,
.catalog-heading h2 {
  margin: 13px 0 14px;
  color: var(--c-white);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.91;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 580px;
  font-size: clamp(2.4rem, 8vw, 4.2rem);
}
.hero h1 span {
  color: var(--c-red-bright);
}
.hero p {
  max-width: 430px;
  margin: 0;
  color: var(--c-gray-300);
  font-size: clamp(0.94rem, 2vw, 1.1rem);
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 27px;
  justify-content: center;
}
.hero-stock-btn,
.hero-whatsapp-btn,
.filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 9px;
  border-radius: var(--rad-sm);
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition:
    transform var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}
.hero-stock-btn {
  color: white;
  background: var(--c-red);
  box-shadow: 0 9px 24px rgba(216, 10, 10, 0.27);
}
.hero-stock-btn:hover {
  background: var(--c-red-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}
.hero-whatsapp-btn {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.22);
}
.hero-whatsapp-btn:hover {
  border-color: #21bd58;
  background: #159a45;
  transform: translateY(-2px);
}
.hero-art {
  position: relative;
  z-index: 1;
  width: min(60vw, 400px);
  height: min(60vw, 400px);
  opacity: 0.87;
  order: 1;
  margin-bottom: 20px;
}
.hero-glow {
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(255, 49, 49, 0.44);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(216, 10, 10, 0.36),
    rgba(216, 10, 10, 0.08) 43%,
    transparent 68%
  );
  box-shadow:
    0 0 80px rgba(216, 10, 10, 0.25),
    inset 0 0 60px rgba(216, 10, 10, 0.19);
}
.hero-brand-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../logo.jpeg") center / contain no-repeat;
  filter: saturate(0.78) contrast(1.14);
  mix-blend-mode: screen;
}
.hero-art-label {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.35);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.3rem, 3vw, 2.8rem);
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-art-label span {
  color: var(--c-red-bright);
}

/* Search */
.search-panel {
  position: relative;
  z-index: 3;
  width: min(100% - 32px, 1320px);
  margin: -6px auto 0;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--rad-md);
  background: rgba(12, 12, 13, 0.94);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.26);
}
.search-panel-label {
  display: block;
  margin: 0 0 8px 2px;
  color: var(--c-gray-100);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.filter-bar {
  display: grid;
  gap: 8px;
}
.filter-input,
.filter-select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--c-border);
  border-radius: var(--rad-sm);
  outline: none;
  color: var(--c-white);
  background: #151517;
  font-size: 14px;
  transition:
    border-color var(--transition),
    background var(--transition);
}
.filter-input::placeholder {
  color: var(--c-gray-500);
}
.filter-select option {
  color: var(--c-white);
  background: #151517;
}
.filter-input:focus,
.filter-select:focus {
  border-color: var(--c-red-bright);
  background: #18181b;
}
.filter-btn {
  width: 100%;
  border: 0;
  color: #fff;
  background: var(--c-red);
  cursor: pointer;
}
.filter-btn:hover {
  background: var(--c-red-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

/* Catalog */
.catalog-container {
  width: min(100% - 32px, 1320px);
  margin: 0 auto;
  padding: 62px 0 74px;
}
.catalog-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.catalog-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 7vw, 3.45rem);
}
.catalog-heading p {
  max-width: 320px;
  margin: 0;
  color: var(--c-gray-500);
  font-size: 13px;
}
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* Cards */
.card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--c-border);
  border-radius: var(--rad-md);
  background: linear-gradient(142deg, var(--c-surface-2), var(--c-surface));
  cursor: pointer;
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}
.card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 3px;
  background: var(--c-red);
  transition: width var(--transition);
}
.card:hover {
  border-color: rgba(255, 49, 49, 0.65);
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}
.card:hover::after {
  width: 100%;
}
.card-img-wrapper {
  position: relative;
  flex: none;
  width: 100%;
  padding-top: 58%;
  min-height: 0;
  overflow: hidden;
  background: #161719;
}
.card-img-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 18, 20, 0.5) 0%,
    transparent 55%
  );
  pointer-events: none;
}
.card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}
.card:hover .card-img {
  transform: scale(1.07);
}
.card-no-photo {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--c-gray-500);
  font-size: 12px;
}
.card-body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px;
}
.card-title {
  margin-bottom: 12px;
  color: var(--c-white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.55rem, 5.3vw, 2rem);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}
.card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-bottom: 15px;
  color: var(--c-gray-300);
  font-size: 11px;
}
.card-specs span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.card-price {
  color: var(--c-white);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.btn-view {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 6px;
  color: white;
  background: var(--c-red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--transition);
}
.card:hover .btn-view {
  background: var(--c-red-bright);
}

/* Loading and empty states */
.skeleton {
  display: flex;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid var(--c-border);
  border-radius: var(--rad-md);
  background: var(--c-surface);
}
.skeleton-img {
  width: 45%;
  min-height: 230px;
}
.skeleton-img,
.skeleton-line {
  background: linear-gradient(90deg, #171719 25%, #242427 50%, #171719 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
.skeleton-body {
  flex: 1;
  padding: 26px 16px;
}
.skeleton-line {
  height: 13px;
  margin-bottom: 12px;
  border-radius: 3px;
}
.skeleton-line.short {
  width: 54%;
}
.skeleton-line.price {
  width: 66%;
  height: 21px;
  margin-top: 42px;
}
@keyframes shimmer {
  to {
    background-position: -200% 0;
  }
}
.empty-state {
  grid-column: 1 / -1;
  padding: 72px 20px;
  border: 1px dashed var(--c-border);
  border-radius: var(--rad-md);
  color: var(--c-gray-500);
  text-align: center;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(7px);
  transition: opacity var(--transition);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(100%, 960px);
  max-height: 92vh;
  overflow-y: auto;
  border: 1px solid var(--c-border);
  border-radius: var(--rad-lg);
  background: var(--c-surface);
  transform: translateY(12px);
  transition: transform var(--transition);
}
.modal-overlay.active .modal-content {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 20;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  font-size: 24px;
  cursor: pointer;
  transition: background var(--transition);
}
.modal-close:hover {
  background: var(--c-red);
}
.modal-gallery {
  display: flex;
  flex: 1.1;
  flex-direction: column;
  min-height: 270px;
  background: #0c0c0d;
}
.gallery-main {
  position: relative;
  flex: 1;
  min-height: 260px;
  overflow: hidden;
  background: #17181a;
}
.gallery-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  color: var(--c-gray-500);
  font-size: 13px;
}
.gallery-placeholder.show {
  display: grid;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: white;
  background: rgba(0, 0, 0, 0.67);
  font-size: 25px;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background var(--transition);
}
.gallery-arrow:hover {
  background: var(--c-red);
}
.gallery-arrow.left {
  left: 10px;
}
.gallery-arrow.right {
  right: 10px;
}
.gallery-arrow.hidden {
  display: none;
}
.gallery-counter {
  position: absolute;
  bottom: 10px;
  left: 50%;
  padding: 3px 9px;
  border-radius: 100px;
  color: white;
  background: rgba(0, 0, 0, 0.65);
  font-size: 11px;
  font-weight: 700;
  transform: translateX(-50%);
}
.gallery-thumbs {
  display: flex;
  gap: 6px;
  padding: 8px;
  overflow-x: auto;
  background: #0c0c0d;
}
.gallery-thumb {
  width: 58px;
  height: 43px;
  flex: 0 0 auto;
  border: 2px solid transparent;
  border-radius: 5px;
  object-fit: cover;
  opacity: 0.6;
  cursor: pointer;
}
.gallery-thumb.active {
  border-color: var(--c-red-bright);
  opacity: 1;
}
.modal-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 22px;
}
.modal-title {
  margin: 0 0 8px;
  color: var(--c-white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}
.modal-price {
  margin-bottom: 22px;
  color: var(--c-red-bright);
  font-size: 1.7rem;
  font-weight: 800;
}
.modal-specs {
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}
.modal-specs li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--c-gray-300);
  font-size: 13px;
}
.modal-specs li span:last-child {
  color: white;
  font-weight: 700;
}
.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: auto;
  padding: 12px;
  border-radius: var(--rad-sm);
  color: white;
  background: #159a45;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  transition:
    transform var(--transition),
    background var(--transition);
}
.btn-whatsapp:hover {
  background: #1aaf50;
  transform: translateY(-2px);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--c-border);
  background: #0b0b0c;
}
.footer-container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 30px 0;
}
.footer-brand {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
}
.footer-brand p {
  flex-basis: 100%;
  margin: 6px 0 0;
  color: var(--c-gray-500);
  font-size: 12px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  color: var(--c-gray-300);
  font-size: 12px;
}

@media (min-width: 480px) and (max-width: 639px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}
@media (min-width: 640px) {
  .header-container,
  .footer-container,
  .hero-shell,
  .search-panel,
  .catalog-container {
    width: min(100% - 48px, 1320px);
  }
  .hero-shell {
    min-height: 500px;
    padding: 70px 0 42px;
  }
  .hero-art {
    right: -42px;
    bottom: -72px;
    width: 85vw;
    height: 85vw;
  }
  .filter-bar {
    grid-template-columns: minmax(0, 1.4fr) minmax(160px, 0.8fr) auto;
  }
  .filter-btn {
    width: auto;
    min-width: 150px;
  }
  .catalog-heading {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }
  .catalog-heading p {
    text-align: right;
  }
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .card {
    display: block;
  }
  .card-img-wrapper {
    padding-top: 61%;
  }
  .card-img-wrapper::after {
    background: linear-gradient(to top, rgba(17, 18, 20, 0.5), transparent 55%);
  }
  .card-body {
    min-height: 166px;
    padding: 18px;
  }
  .card-footer {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 42px);
    margin-left: auto;
    margin-right: 28px;
  }
  .main-nav a {
    position: relative;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--c-gray-300);
    font-size: 13px;
    font-weight: 600;
    transition: color var(--transition);
  }
  .main-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--c-red-bright);
    transform: scaleX(0);
    transition: transform var(--transition);
  }
  .main-nav a:hover,
  .main-nav a.active {
    color: var(--c-white);
  }
  .main-nav a:hover::after,
  .main-nav a.active::after {
    transform: scaleX(1);
  }
  .hero-shell {
    min-height: 530px;
  }
  .hero-art {
    right: -16px;
    bottom: -103px;
    width: 70vw;
    height: 70vw;
  }
  .modal-content {
    flex-direction: row;
  }
  .modal-gallery {
    min-height: 490px;
  }
  .modal-info {
    padding: 38px 32px;
  }
}

@media (min-width: 1024px) {
  .header-container,
  .footer-container,
  .hero-shell,
  .search-panel,
  .catalog-container {
    width: min(100% - 64px, 1320px);
  }
  .hero-shell {
    min-height: 550px;
    padding: 74px 0 55px;
  }
  .hero h1 {
    max-width: 560px;
  }
  .hero-art {
    right: 0;
    width: 51vw;
    height: 51vw;
  }
  .search-panel {
    margin-top: -28px;
    padding: 16px;
  }
  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ── Header Actions ───────────────────────────────────────────────── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-socials {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Social Buttons */
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--c-gray-300);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    color var(--transition),
    background var(--transition),
    transform var(--transition);
  flex-shrink: 0;
}
.social-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}
.social-btn--lg {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-direction: column;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
}
.social-btn--lg span {
  font-size: 9px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Hamburger Button */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--rad-sm);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: background var(--transition);
}
.hamburger-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}
.hamburger-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--c-gray-100);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.hamburger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}
.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(80vw, 300px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px;
  background: var(--c-surface);
  border-left: 1px solid var(--c-border);
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.mobile-nav-overlay.open .mobile-nav {
  transform: translateX(0);
}
.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.mobile-nav-close {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--c-gray-300);
  background: transparent;
  font-size: 16px;
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition);
}
.mobile-nav-close:hover {
  background: var(--c-red);
  color: #fff;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 12px;
  border-radius: var(--rad-sm);
  color: var(--c-gray-300);
  font-size: 15px;
  font-weight: 600;
  transition:
    color var(--transition),
    background var(--transition);
}
.mobile-nav-link:hover {
  color: var(--c-white);
  background: rgba(255, 255, 255, 0.07);
}
.mobile-nav-divider {
  height: 1px;
  background: var(--c-border);
  margin: 8px 0;
}
.mobile-nav-socials {
  display: flex;
  gap: 10px;
  padding: 0 4px;
}
.mobile-nav-wa {
  margin-top: auto;
}

/* Benefits Bar */
.benefits-bar {
  background: #0d0d0e;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.benefits-container {
  width: min(100% - 32px, 1320px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--c-border);
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 16px;
  background: #0d0d0e;
}
.benefit-icon {
  font-size: 22px;
  flex-shrink: 0;
}
.benefit-text {
  color: var(--c-gray-300);
  font-size: 12px;
  line-height: 1.4;
}
.benefit-text strong {
  display: block;
  color: var(--c-white);
  font-weight: 700;
}

/* Highlights Section */
.highlights-section {
  background: linear-gradient(180deg, #0a0a0b 0%, var(--c-black) 100%);
  padding: 48px 0;
}
.highlights-wrapper {
  width: min(100% - 32px, 1320px);
  margin: 0 auto;
}
.highlights-header {
  margin-bottom: 24px;
}
.highlights-header h2 {
  margin: 10px 0 0;
  color: var(--c-white);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.91;
  text-transform: uppercase;
}
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.highlight-card {
  display: flex;
  overflow: hidden;
  border: 1px solid var(--c-border);
  border-radius: var(--rad-md);
  background: linear-gradient(135deg, var(--c-surface-2), var(--c-surface));
  cursor: pointer;
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  min-height: 110px;
}
.highlight-card:hover {
  border-color: rgba(255, 49, 49, 0.6);
  transform: translateY(-3px);
  box-shadow: var(--shadow-red);
}
.hl-img-wrapper {
  position: relative;
  flex: 0 0 38%;
  max-width: 160px;
  overflow: hidden;
  background: #161719;
}
.hl-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}
.highlight-card:hover .hl-img {
  transform: scale(1.07);
}
.hl-no-photo {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--c-gray-500);
  font-size: 11px;
}
.hl-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge--new {
  background: #0d6e33;
  color: #4dff8a;
}
.badge--used {
  background: #7a3d00;
  color: #ffad4d;
}
.hl-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px 16px;
}
.hl-title {
  color: var(--c-white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.1rem, 4vw, 1.5rem);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hl-specs {
  display: flex;
  gap: 10px;
  color: var(--c-gray-500);
  font-size: 11px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.hl-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.hl-price {
  color: var(--c-white);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.hl-btn {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: 6px;
  color: white;
  background: #159a45;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background var(--transition);
}
.hl-btn:hover {
  background: #1aaf50;
}

/* Card Badge (main grid) */
.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  padding: 3px 9px;
  border-radius: 5px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Footer Updates */
.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 36px 0;
  width: min(100% - 32px, 1320px);
  margin: 0 auto;
}
.footer-info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--c-gray-300);
  font-size: 13px;
  line-height: 1.5;
}
.footer-info-row a {
  color: var(--c-gray-300);
  transition: color var(--transition);
}
.footer-info-row a:hover {
  color: var(--c-white);
}
.footer-info-icon {
  flex-shrink: 0;
  font-size: 16px;
  margin-top: 1px;
}
.footer-social-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-social-label {
  margin: 0;
  color: var(--c-gray-500);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-social-row {
  display: flex;
  gap: 10px;
}
.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding: 16px 0;
  text-align: center;
  color: var(--c-gray-500);
  font-size: 11px;
  width: min(100% - 32px, 1320px);
  margin: 0 auto;
}
.footer-bottom p {
  margin: 0;
}

/* Responsive: desktop nav hides hamburger */
@media (min-width: 768px) {
  .hamburger-btn {
    display: none;
  }
  .mobile-nav-overlay {
    display: none;
  }
  .header-whatsapp-btn {
    font-size: 12px;
  }
}
@media (min-width: 640px) {
  .benefits-container {
    grid-template-columns: repeat(4, 1fr);
  }
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
  .footer-social-col {
    align-items: flex-start;
  }
}
@media (min-width: 1024px) {
  .highlights-wrapper {
    width: min(100% - 64px, 1320px);
  }
}
