
    :root {
      --ua-blue: #0057b7;
      --ua-yellow: #ffd700;
      --panel: rgba(255,255,255,0.055);
      --panel-strong: rgba(255,255,255,0.075);
      --panel-border: rgba(255,255,255,0.12);
      --text: #eef2f7;
      --muted: #a9b4c2;
      --green: #25D366;
      --shadow: 0 18px 50px rgba(0,0,0,0.28);
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: Inter, Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top center, rgba(0,87,183,0.18), transparent 35%),
        linear-gradient(135deg, #0f1318, #1a1f26 55%, #11161b);
      display: flex;
      justify-content: center;
      align-items: flex-start;
      padding: 24px;
    }

    .card {
      width: 100%;
      max-width: 980px;
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(255,255,255,0.04);
      backdrop-filter: blur(10px);
      box-shadow: var(--shadow);
      padding: 0;
      overflow: hidden;
    }

    .topbar {
      height: 6px;
      background: linear-gradient(90deg, var(--ua-blue), var(--ua-yellow));
    }

    .inner {
      padding: 42px;
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .hero {
      /*text-align: center;*/
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .eyebrow {
      align-self: center;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.04);
      color: var(--ua-yellow);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      display: none !important;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--ua-blue);
      box-shadow: 0 0 16px rgba(0,87,183,0.9);
    }

    h1 {
      margin: 0;
      /*font-size: clamp(40px, 7vw, 58px);*/
      line-height: 1;
      letter-spacing: 0.01em;
    }

    .hero-meta {
      display: flex;
      /*justify-content: center;*/
      gap: 10px;
      flex-wrap: wrap;
    }

    .hero-pill {
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.04);
      color: var(--muted);
      font-size: 12px;
    }

    .subtitle {
      /*text-align: center;*/
      color: var(--muted);
      line-height: 1.7;
      max-width: 760px;
      /*margin: 0 auto;*/
      font-size: 16px;
    }

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

    .section h2 {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--ua-yellow);
      margin: 0;
    }

    .grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .panel {
      padding: 20px;
      border-radius: 16px;
      background: var(--panel);
      border: 1px solid var(--panel-border);
      font-size: 14px;
      line-height: 1.7;
      transition: all 0.2s ease;
    }

    .panel:hover {
      border-color: rgba(255,255,255,0.2);
      background: var(--panel-strong);
    }

    .panel-title {
      font-size: 15px;
      font-weight: 700;
      margin: 0 0 10px;
      color: var(--text);
    }

    .panel-subtitle {
      display: block;
      color: var(--muted);
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .address {
      white-space: normal;
    }

    .address div + div {
      margin-top: 2px;
    }

    .notice {
      font-size: 15px;
      color: var(--text);
    }

    .notice strong {
      color: var(--text);
    }

    .supply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

    .mini-list {
      display: grid;
      gap: 8px;
      margin-top: 12px;
      color: var(--muted);
      font-size: 13px;
    }

    .mini-list div strong {
      color: var(--text);
      font-weight: 600;
    }

    .pills {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .pill {
      padding: 7px 11px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.15);
      background: rgba(255,255,255,0.03);
      font-size: 12px;
      color: var(--text);
    }

    .product-card {
      padding: 22px;
      border-radius: 18px;
      background: var(--panel);
      border: 1px solid var(--panel-border);
      display: flex;
      flex-direction: column;
      gap: 14px;
      transition: all 0.2s ease;
    }

    .product-card:hover {
      border-color: rgba(255,255,255,0.22);
      background: var(--panel-strong);
    }

    .product-top {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .product-name {
      font-size: 20px;
      font-weight: 700;
      line-height: 1.2;
    }

    .product-cas {
      color: var(--muted);
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
.product-price {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: fit-content;
  margin-top: 4px;
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 215, 0, 0.22);
  background: rgba(255, 215, 0, 0.08);
  color: var(--text);
  font-size: 13px;
  line-height: 1;
}

.product-price span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-price strong {
  color: var(--ua-yellow);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
    .product-desc {
      color: var(--text);
      line-height: 1.7;
      font-size: 14px;
    }

    .specs {
      display: grid;
      gap: 8px;
      font-size: 13px;
      color: var(--muted);
    }

    .specs div strong {
      color: var(--text);
      font-weight: 600;
      margin-right: 6px;
    }

    .footer {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 20px;
      flex-wrap: wrap;
      padding-top: 6px;
    }

    .footer-copy {
      color: var(--muted);
      line-height: 1.7;
      font-size: 13px;
    }

    .footer-copy strong {
      display: block;
      color: var(--text);
      font-size: 15px;
      margin-bottom: 4px;
    }

    .contact {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .btn {
      padding: 9px 13px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.2);
      text-decoration: none;
      color: var(--text);
      font-size: 13px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,255,255,0.03);
    }

    .btn.whatsapp {
      background: rgba(37, 211, 102, 0.16);
      border-color: rgba(37, 211, 102, 0.28);
    }
    .inquire-btn {
        margin-top: 10px;
  justify-content: center;
  width: 100%;
  font-weight: 700;
  background: rgba(37, 211, 102, 0.16);
  border-color: rgba(37, 211, 102, 0.32);
}

.inquire-btn:hover {
  background: rgba(37, 211, 102, 0.24);
  border-color: rgba(37, 211, 102, 0.45);
}

    

    @media (max-width: 780px) {
      .inner {
        padding: 28px 20px;
      }

      .grid,
      .supply-grid,
      .product-grid {
        grid-template-columns: 1fr;
      }

      .footer {
        align-items: flex-start;
      }
    }
    


/* Product photo popup button */
.photo-btn {
  margin-top: 10px;
  justify-content: center;
  width: 100%;
  font-weight: 700;
  cursor: pointer;
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.14);
}

.photo-btn:hover {
  background: rgba(255, 215, 0, 0.10);
  border-color: rgba(255, 215, 0, 0.28);
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.product-modal.is-open {
  display: flex;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.70);
  backdrop-filter: blur(8px);
}

.product-modal-content {
  position: relative;
  z-index: 2;
  width: min(860px, 100%);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(0,87,183,0.18), transparent 35%),
    linear-gradient(135deg, #171c22, #101419);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 24px 80px rgba(0,0,0,0.55);
}

.product-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.42);
  color: #fff;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.product-modal-close:hover {
  background: rgba(255,255,255,0.10);
}

.modal-image {
  min-height: 380px;
  background:
    linear-gradient(135deg, #2a2f36, #1b1f24);
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-info {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.modal-info h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
}

.modal-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.modal-specs {
  display: grid;
  gap: 9px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--muted);
  font-size: 13px;
}

.modal-specs strong {
  color: var(--text);
}

.modal-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 780px) {
  .product-modal-content {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-image {
    min-height: 230px;
  }

  .modal-info {
    padding: 24px;
  }
}

  

/* Added header, SEO and local-preview enhancements */

html { scroll-behavior: smooth; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 18px;
  border-bottom: 1px solid rgba(15,19,24,0.08);
  background: #ffffff;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 1 auto;
  min-width: 0;
}

.brand-logo-image {
  display: block;
  width: min(100%, 255px);
  max-width: 255px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.main-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  color: #25314d;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--ua-blue);
  background: rgba(0,87,183,0.08);
  border-color: rgba(0,87,183,0.14);
}

.main-nav a.nav-highlight {
  color: var(--ua-blue);
  background: rgba(0,87,183,0.10);
  border-color: rgba(0,87,183,0.18);
}

.seo-intro {
  color: var(--muted);
  line-height: 1.7;
  max-width: 760px;
  /*margin: 0 auto;*/
  font-size: 15px;
}

.breadcrumbs {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: -12px;
}

.breadcrumbs a {
  color: var(--text);
  text-decoration: none;
}

.tracking-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 14px;
}

.tracking-form input {
  width: 100%;
  padding: 11px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.18);
  color: var(--text);
  font: inherit;
  font-size: 13px;
}

.obfuscated-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
}

.obfuscated-email::before {
  content: "info" "@" "zzkhim.com";
}

@media (max-width: 780px) {
  .site-header {
    padding: 10px 14px;
    flex-direction: column;
    align-items: center;
  }

  .brand {
    justify-content: center;
    width: 100%;
  }

  .brand-logo-image {
    max-width: 210px;
  }

  .main-nav {
    justify-content: center;
    width: 100%;
  }

  .main-nav a {
    padding: 8px 10px;
    font-size: 12px;
  }

  .tracking-form {
    grid-template-columns: 1fr;
  }
}
.product-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(135deg, rgba(0,87,183,0.18), rgba(255,215,0,0.07)),
    rgba(255,255,255,0.055);
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s ease;
}

.product-cta-panel:hover {
  border-color: rgba(255,215,0,0.28);
  background:
    linear-gradient(135deg, rgba(0,87,183,0.26), rgba(255,215,0,0.11)),
    rgba(255,255,255,0.075);
  transform: translateY(-1px);
}

.product-cta-panel strong {
  display: block;
  color: var(--text);
  font-size: 15px;
  margin-bottom: 4px;
}

.product-cta-panel small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.product-cta-arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #11161b;
  background: var(--ua-yellow);
  font-size: 18px;
  font-weight: 800;
}

@media (max-width: 780px) {
  .product-cta-panel {
    align-items: flex-start;
  }
}
.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto;
}

.product-photo-panel {
  background: #ffffff;
  border: 1px solid rgba(20, 30, 40, 0.10);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-photo-panel img {
  width: 100%;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

.product-detail-layout .product-card {
  height: 100%;
}

@media (max-width: 760px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .product-photo-panel {
    order: -1;
  }
}
.product-card .email.inquire-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(190, 205, 225, 0.28);
  color: #f4f7fb;
  margin-top: 10px;
  width: 100%;
  justify-content: center;
}

.product-card .email.inquire-btn:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 216, 0, 0.55);
  color: #ffffff;
}
.product-card {
  display: flex;
  flex-direction: column;
}

.product-card-content {
  flex: 1;
}

.product-actions {
  margin-top: auto;
  padding-top: 10px;
  display: grid;
  gap: 10px;
}

.product-actions .btn {
  width: 100%;
  justify-content: center;
}

.product-card .email.inquire-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(190, 205, 225, 0.28);
  color: #f4f7fb;
}

.product-card .email.inquire-btn:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 216, 0, 0.55);
  color: #ffffff;
}
.product-photo-zoom {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  position: relative;
  display: block;
}

.product-photo-zoom img {
  display: block;
  width: 100%;
  border-radius: 14px;
}

.zoom-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.68);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  pointer-events: none;
}

.image-modal .product-modal-content {
  max-width: 920px;
  width: min(92vw, 920px);
  padding: 14px;
}

.image-modal-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-modal-photo {
  display: block;
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 12px;
}