:root {
  --black: #050505;
  --lime: #a3e635;
  --cyan: #22d3ee;
  --pink: #f472b6;
  --yellow: #facc15;
  --line: rgba(255, 255, 255, 0.12);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #050505;
  color: #fff;
  line-height: 1.55;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1220px, calc(100% - 32px));
  margin: auto;
}
.announcement {
  background: #fff;
  color: #000;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 14px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-main,
.header-utility {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-utility {
  padding: 8px 0;
  color: #aaa;
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-main {
  padding: 14px 0;
}
.logo {
  height: 120px;
  width: auto;
  object-fit: contain;
}
.nav {
  display: flex;
  gap: 26px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
}
.nav a:hover {
  color: var(--lime);
}
.menu-btn {
  display: none;
  border: 0;
  border-radius: 16px;
  padding: 12px 16px;
  font-weight: 900;
  background: #fff;
  color: #000;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 18px;
  padding: 14px 24px;
  font-weight: 900;
  border: 0;
  cursor: pointer;
  transition: 0.25s;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(
    135deg,
    var(--lime),
    var(--cyan) 48%,
    var(--yellow)
  );
  color: #000;
  box-shadow: 0 14px 38px rgba(34, 211, 238, 0.2);
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary.is-active {
  background: linear-gradient(135deg, var(--pink), var(--yellow), var(--lime));
  transform: translateY(-2px) scale(1.02);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.btn-outline:hover,
.btn-outline:active,
.btn-outline.is-active {
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  color: #000;
  border-color: transparent;
}
.kicker {
  display: inline-flex;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.74rem;
  font-weight: 900;
  color: var(--lime);
  background: rgba(163, 230, 53, 0.1);
  border: 1px solid rgba(163, 230, 53, 0.25);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  margin-bottom: 16px;
}
.gradient-text {
  background: linear-gradient(
    90deg,
    var(--lime),
    var(--cyan),
    var(--pink),
    var(--yellow)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-hero {
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(163, 230, 53, 0.25),
      transparent 24%
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(236, 72, 153, 0.22),
      transparent 22%
    ),
    linear-gradient(135deg, #050505 0%, #111827 45%, #0f172a 100%);
  padding: 0;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
  min-height: 680px;
  /* padding: 20px 0; */
}
h1 {
  font-size: clamp(46px, 8vw, 104px);
  line-height: 0.93;
  font-weight: 1000;
  letter-spacing: -0.04em;
}
.lead {
  color: #d4d4d4;
  font-size: 18px;
  max-width: 720px;
  margin: 22px 0 30px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-product {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.hero-product:before {
  content: "";
  position: absolute;
  inset: 12%;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(65px);
  border-radius: 999px;
}
.hero-slider {
  position: relative;
  width: min(100%, 620px);
  height: clamp(360px, 46vw, 650px);
  border-radius: 30px;
  overflow: hidden;
}
.hero-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: clamp(12px, 2vw, 28px);
  opacity: 0;
  animation: heroSlideShow 18s infinite;
  filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.7));
}
.hero-slider img:nth-child(1) {
  animation-delay: 0s;
}
.hero-slider img:nth-child(2) {
  animation-delay: 2s;
}
.hero-slider img:nth-child(3) {
  animation-delay: 4s;
}
.hero-slider img:nth-child(4) {
  animation-delay: 6s;
}
.hero-slider img:nth-child(5) {
  animation-delay: 8s;
}
.hero-slider img:nth-child(6) {
  animation-delay: 10s;
}
.hero-slider img:nth-child(7) {
  animation-delay: 12s;
}
.hero-slider img:nth-child(8) {
  animation-delay: 14s;
}
.hero-slider img:nth-child(9) {
  animation-delay: 16s;
}
@keyframes heroSlideShow {
  0%,
  11% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  14%,
  100% {
    opacity: 0;
    transform: translateY(-8px) scale(1.01);
  }
}
.hero-product > img {
  position: relative;
  max-height: 650px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.7));
}
section {
  padding: 86px 0;
}
.white {
  background: #fff;
  color: #000;
}
.dark-soft {
  background: #09090b;
}
.section-title {
  text-align: center;
  margin-bottom: 52px;
}
.section-title h2 {
  font-size: clamp(34px, 5vw, 64px);
  /* line-height: 1.02; */
  font-weight: 1000;
}
.section-title p {
  color: #666;
  font-size: 18px;
  max-width: 760px;
  margin: 16px auto 0;
}
.grid {
  display: grid;
  gap: 22px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.card {
  border-radius: 28px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.card:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(34, 211, 238, 0.16),
      transparent 38%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(244, 114, 182, 0.14),
      transparent 36%
    );
  pointer-events: none;
}
.card > * {
  position: relative;
}
.card h3 {
  font-size: 24px;
  font-weight: 1000;
  margin-bottom: 10px;
}
.card p {
  color: #a3a3a3;
}
.accessory-enquiry {
  margin-top: 20px;
}
.accessory-enquiry i {
  font-size: 20px;
}
.category-card {
  border-radius: 28px;
  overflow: hidden;
  background: #f4f4f5;
  color: #000;
  transition: 0.25s;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}
.category-card:hover {
  transform: translateY(-5px);
}
.category-visual {
  height: 150px;
  background: #000;
}
.category-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.category-content {
  padding: 24px;
}
.category-content h3 {
  font-size: 26px;
  font-weight: 1000;
  margin-bottom: 6px;
}
.category-content p {
  color: #666;
  font-size: 14px;
  margin-bottom: 14px;
}
.product-card {
  background: #f4f4f5;
  border: 0;
  border-radius: 32px;
  overflow: hidden;
  text-align: left;
  cursor: pointer;
  color: #000;
  transition: 0.28s;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-8px);
}
.product-img {
  aspect-ratio: 4 / 3;
  background: #f4f4f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 14px 16px 0;
}
.thumbs div {
  height: 70px;
  /* background: #fff; */
  /* border: 1px solid #e5e7eb; */
  /* border-radius: 14px; */
  /* padding: 6px; */
}
.thumbs div.is-empty {
  visibility: hidden;
}
.thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
border-radius: 10px;
}
.product-body {
  padding: 28px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.overline {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #666;
  font-weight: 900;
  margin-bottom: 8px;
}
.product-title {
  font-size: 30px;
  line-height: 1.05;
  font-weight: 1000;
}
.price {
  font-weight: 1000;
  font-size: 18px;
  white-space: nowrap;
}
.tagline {
  font-weight: 800;
  font-style: italic;
  color: #374151;
  margin: 14px 0 8px;
}
.muted {
  color: #666;
}
.product-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
}
.pill {
  border: 1px solid #d1d5db;
  border-radius: 18px;
  padding: 14px 16px;
  font-weight: 900;
}
.filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 34px;
}
.filter-btn {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 900;
}
.filter-btn.active {
  background: #000;
  color: #fff;
}
.testimonials-section {
  position: relative;
}
.testimonials-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}
.testimonials-head h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  font-weight: 1000;
}
.testimonials-head p {
  color: #52525b;
  font-size: 18px;
  max-width: 680px;
}
.testimonial-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.72fr;
  gap: 22px;
  align-items: stretch;
}
.testimonial-feature,
.testimonial-card,
.testimonial-metrics {
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  color: #000;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}
.testimonial-feature {
  min-height: 420px;
  border-radius: 32px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 12% 10%, rgba(34, 211, 238, 0.22), transparent 32%),
    radial-gradient(circle at 90% 90%, rgba(244, 114, 182, 0.18), transparent 34%),
    #050505;
  color: #fff;
  overflow: hidden;
}
.quote-mark {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  color: #000;
  font-size: 22px;
}
.testimonial-feature p {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.16;
  font-weight: 900;
  margin: 34px 0;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.reviewer span {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000;
  font-weight: 1000;
}
.reviewer-photo {
  width: 92px;
  height: 92px;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}
.reviewer-with-photo {
  gap: 18px;
}
.reviewer strong,
.testimonial-card strong {
  display: block;
  font-size: 18px;
  font-weight: 1000;
}
.reviewer small,
.testimonial-card small {
  display: block;
  color: #71717a;
  font-weight: 800;
  margin-top: 3px;
}
.reviewer small {
  color: #cbd5e1;
}
.testimonial-stack {
  display: grid;
  gap: 22px;
}
.testimonial-card {
  border-radius: 28px;
  padding: 28px;
  display: flex;
  min-height: 199px;
  flex-direction: column;
}
.stars {
  display: flex;
  gap: 4px;
  color: #facc15;
  margin-bottom: 18px;
}
.testimonial-card p {
  color: #3f3f46;
  font-size: 16px;
  margin-bottom: 22px;
  flex: 1;
}
.testimonial-metrics {
  border-radius: 28px;
  padding: 10px;
  display: grid;
  gap: 10px;
  background: #09090b;
}
.testimonial-metrics div {
  border-radius: 22px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.testimonial-metrics strong {
  display: block;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  font-weight: 1000;
}
.testimonial-metrics span {
  display: block;
  color: #a1a1aa;
  font-size: 13px;
  font-weight: 800;
  margin-top: 9px;
}
.testimonial-carousel-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(34, 211, 238, 0.18), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(244, 114, 182, 0.16), transparent 26%),
    #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.carousel-shell {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 42px;
  /* align-items: center; */
}

@media screen and (min-width : 768px) {
  .carousel-copy {
    margin-top: 30px;
  }
}

.carousel-copy h2 {
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.3;
  font-weight: 1000;
}
.carousel-copy p {
  color: #cbd5e1;
  font-size: 18px;
  max-width: 520px;
  margin-top: 18px;
}
.testimonial-carousel {
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}
.testimonial-track {
  display: flex;
  transition: transform 0.42s ease;
}
.testimonial-slide {
  min-width: 100%;
  padding: clamp(30px, 5vw, 58px);
}
.testimonial-slide .stars {
  margin-bottom: 28px;
}
.testimonial-slide p {
  color: #fff;
  font-size: clamp(15px, 1.45vw, 21px);
  line-height: 1.48;
  font-weight: 800;
  margin-bottom: 28px;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 clamp(24px, 4vw, 46px) clamp(24px, 4vw, 38px);
}
.carousel-arrow {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.carousel-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
  transition: 0.2s ease;
}
.carousel-dot.active {
  width: 34px;
  background: linear-gradient(90deg, var(--lime), var(--cyan), var(--pink));
}
.table-wrap {
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
}
table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  background: #000;
}
th {
  background: #fff;
  color: #000;
  text-align: left;
  padding: 18px;
  font-weight: 1000;
}
td {
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #d4d4d4;
}
td:first-child {
  color: #fff;
  font-weight: 1000;
}
.contact-form-section {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.form-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: clamp(22px, 4vw, 40px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}
.contact-form {
  max-width: 920px;
  margin: auto;
}
.form-heading {
  margin-bottom: 28px;
}
.form-heading .kicker {
  margin-bottom: 12px;
}
.form-heading h2 {
  color: #050505;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.02;
  font-weight: 1000;
}
.form-heading p {
  color: #64748b;
  margin-top: 10px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.field {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}
.field label {
  color: #111827;
  font-size: 13px;
  font-weight: 900;
}
input:not([type="radio"]):not([type="checkbox"]),
select,
textarea {
  width: 100%;
  border: 1px solid #dbe3ef;
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  background: #f8fafc;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
input:not([type="radio"]):not([type="checkbox"]):focus,
select:focus,
textarea:focus {
  background: #fff;
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.14);
}
textarea {
  min-height: 104px;
  resize: vertical;
}
.reseller-box {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 20px;
  margin-top: 22px;
}
.reseller-box h3 {
  color: #111827;
  font-size: 18px;
  font-weight: 1000;
}
.reseller-box .muted {
  margin: 4px 0 14px;
}
.customer-type-field {
  margin-top: 22px;
}
.customer-type-grid,
.radio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.radio-card {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  background: #f8fafc;
  border: 1px solid #dbe3ef;
  border-radius: 14px;
  padding: 12px 14px;
  color: #111827;
  font-weight: 800;
  cursor: pointer;
}
.radio-card input {
  width: 16px;
  height: 16px;
  accent-color: #050505;
  flex: 0 0 auto;
}
.radio-card:has(input:checked) {
  border-color: #050505;
  background: #eefdf3;
}
.form-submit-btn {
  width: 100%;
  margin-top: 20px;
}
.form-status {
  min-height: 22px;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
  margin-top: 12px;
  text-align: center;
}
.form-status.success {
  color: #15803d;
}
.form-status.error {
  color: #b91c1c;
}
.footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 54px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 34px;
  margin-bottom: 36px;
}
.footer h4 {
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.footer a,
.footer p {
  display: block;
  color: #888;
  font-size: 14px;
  margin-bottom: 10px;
}
.footer a:hover {
  color: var(--lime);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 26px;
  gap: 18px;
}
.floating-socials {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floating-social {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.floating-social:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
}
.floating-social i {
  font-size: 30px;
  line-height: 1;
}
.floating-wa {
  background: linear-gradient(135deg, var(--lime), #22c55e);
  color: #000;
}
.floating-instagram {
  background: radial-gradient(circle at 30% 110%, #feda75 0 18%, #fa7e1e 34%, #d62976 56%, #962fbf 76%, #4f5bd5 100%);
  color: #fff;
}
.mobile-bar {
  display: none;
}
.detail-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 48px;
  align-items: start;
}
.breadcrumb {
  color: #aaa;
  font-weight: 800;
  margin-bottom: 26px;
  display: inline-flex;
}
.gallery {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #020617;
  border-radius: 32px;
  /* padding: 24px; */
}
.gallery-main {
  position: relative;
  height: 455px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 20px; */
  overflow: hidden;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 0;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.gallery-arrow i {
  font-size: 18px;
  line-height: 1;
}
.gallery-arrow.prev {
  left: 5px;
}
.gallery-arrow.next {
  right: 5px;
}
.gallery-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-top: 16px;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  touch-action: pan-x;
}
.gallery-thumbs::-webkit-scrollbar {
  display: none;
}
.gallery-thumbs.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}
.gallery-thumb {
  min-width: 92px;
  flex: 0 0 92px;
  height: 92px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #020617;
  /* padding: 8px; */
  cursor: pointer;
}
/* .gallery-thumb.active {
  background: #fff;
} */
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}
.spec-table {
  background: #f4f4f5;
  color: #000;
  border-radius: 28px;
  overflow: hidden;
}
.spec-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  padding: 18px;
  border-bottom: 1px solid #e5e7eb;
}
.highlight-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: linear-gradient(90deg, #ecfccb, #ecfeff);
  border: 1px solid #d9f99d;
  border-radius: 18px;
  padding: 18px;
}
.highlight-row strong:first-child {
  background: #000;
  color: #fff;
  border-radius: 999px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
}
@media (max-width: 1024px) {
  .header-utility {
    display: none;
  }
  .nav {
    display: none;
  }
  .nav.open {
    display: flex;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 84px;
    flex-direction: column;
    align-items: flex-start;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 24px;
  }
  .menu-btn {
    display: inline-flex;
  }
  .hero-grid,
  .detail-grid,
  .testimonials-head {
    grid-template-columns: 100%;
  }
  .testimonial-layout {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial-feature {
    grid-column: 1 / -1;
    min-height: 360px;
  }
  .testimonial-metrics {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }
  .carousel-shell {
    grid-template-columns: 1fr;
  }
  .grid-4,
  .grid-3,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.header-actions .menu-btn{
    margin-left: 10px;
}

@media (max-width: 680px) {
  .announcement {
    font-size: 10px;
  }
  .logo {
    height: 100px;
  }
  .header-actions .btn {
    display: none;
  }
  .hero-grid {
    min-height: auto;
    padding: 56px 0;
  }
  .hero-slider {
    width: 100%;
    height: clamp(300px, 82vw, 430px);
    border-radius: 22px;
  }
  .hero-slider img {
    padding: 14px;
  }
  section {
    padding: 62px 0;
  }
  h1 {
    letter-spacing: -0.03em;
  }
  .grid-4,
  .grid-3,
  .grid-2,
  .footer-grid,
  .form-grid,
  .customer-type-grid,
  .radio-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-head {
    gap: 10px;
    margin-bottom: 24px;
  }
  .testimonial-layout,
  .testimonial-stack,
  .testimonial-metrics {
    grid-template-columns: 1fr;
  }
  .testimonial-feature {
    min-height: auto;
    padding: 28px;
  }
  .testimonial-feature p {
    font-size: 24px;
    margin: 26px 0;
  }
  .testimonial-card {
    min-height: auto;
  }
  .carousel-shell {
    gap: 26px;
  }
  .testimonial-slide p {
    font-size: 18px;
  }
  .reviewer-photo {
    width: 76px;
    height: 76px;
  }
  .carousel-controls {
    padding-left: 22px;
    padding-right: 22px;
  }
  .product-meta,
  .product-actions,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }
  .product-img {
    aspect-ratio: 1 / 1;
  }
  .gallery-main {
    height: 420px;
  }
  .form-box {
    padding: 24px;
    border-radius: 28px;
  }
  .mobile-bar {
    display: grid;
    position: fixed;
    z-index: 1002;
    bottom: 0;
    left: 0;
    right: 0;
    grid-template-columns: repeat(3, 1fr);
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    font-weight: 1000;
  }
  .mobile-bar a {
    padding: 14px 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }
  .mobile-bar a:last-child {
    background: #fff;
    color: #000;
    border-right: 0;
  }
  .floating-socials {
    bottom: 72px;
  }
  .spec-row {
    grid-template-columns: 1fr;
  }
}
