:root {
  --page-width: 1240px;
  --background: #111111;
  --surface: #1f1f1f;
  --surface-light: #2b2b2b;
  --border: #3a3a3a;
  --text: #ffffff;
  --muted: #d6d6d6;
  --accent: #e30613;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  color: var(--text);
  background: var(--background);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

.wiper-page {
  width: 100%;
  overflow: hidden;
  background: var(--background);
}

.site-header {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 24px 20px;
  border-bottom: 1px solid var(--border);
}

.logo {
  width: 260px;
  max-width: 100%;
  height: auto;
  padding: 10px 14px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(43, 37, 123, 0.14);
  object-fit: contain;
}

.usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.usp-item {
  display: flex;
  align-items: center;
  padding: 9px 14px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.usp-icon {
  width: 30px;
  height: 30px;
  margin-right: 8px;
  padding: 4px;
  background: #ffffff;
  border-radius: 50%;
  object-fit: contain;
}

.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 70px 20px;
  background: radial-gradient(circle at top left, #3a3a3a 0%, var(--background) 55%);
}

.product-photo,
.product-details,
.technology-banner,
.feature-card {
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.product-photo {
  display: flex;
  aspect-ratio: 1 / 1;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
  background: #ffffff;
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-details {
  padding: 30px;
  background: linear-gradient(135deg, #1a1a1a 0%, var(--surface-light) 100%);
  border-top: 5px solid var(--accent);
}

.eyebrow,
.section-label {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 16px;
}

.product-details h1,
.feature-copy h2 {
  color: var(--text);
  line-height: 1.1;
  text-transform: uppercase;
}

.product-details h1 {
  margin: 0 0 24px;
  font-size: 42px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.product-meta li {
  flex: 1 1 130px;
  padding: 12px 14px;
  background: var(--accent);
  border-radius: 12px;
}

.product-meta span,
.product-meta strong {
  display: block;
}

.product-meta span {
  margin-bottom: 2px;
  font-size: 12px;
  opacity: 0.85;
  text-transform: uppercase;
}

.product-meta strong {
  font-size: 15px;
}

.product-table {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.product-table table {
  width: 100%;
  border-collapse: collapse;
}

.product-table th,
.product-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.product-table tr:last-child th,
.product-table tr:last-child td {
  border-bottom: 0;
}

.product-table th {
  width: 42%;
  color: var(--text);
  background: #181818;
  font-weight: 700;
}

.product-table td {
  color: var(--muted);
  background: var(--surface);
}

.technology-banner {
  position: relative;
  max-width: calc(var(--page-width) - 40px);
  margin: 0 auto 70px;
  overflow: hidden;
  padding: 18px;
  background: var(--surface);
  border-top: 5px solid var(--accent);
}

.technology-banner .section-label {
  display: inline-block;
  margin: 0 0 16px;
  padding: 9px 18px;
  color: var(--text);
  background: var(--accent);
  border-radius: 999px;
  font-size: 14px;
}

.technology-banner img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.feature-list {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 20px 70px;
}

.feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
  margin-bottom: 42px;
  overflow: hidden;
  padding: 28px;
  background: var(--surface);
  border-top: 5px solid var(--accent);
}

.feature-card:nth-child(even) .feature-image {
  order: 2;
}

.feature-image {
  overflow: hidden;
  background: #ffffff;
  border-radius: 14px;
}

.feature-image img {
  width: 100%;
  height: auto;
}

.section-label {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 14px;
}

.feature-copy h2 {
  margin: 0 0 22px;
  font-size: 36px;
}

.feature-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.feature-copy .feature-highlights {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
}

.shop-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  max-width: calc(var(--page-width) - 40px);
  margin: 42px auto;
  padding: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 5px solid var(--accent);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.shop-intro h2 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 36px;
  line-height: 1.1;
}

.shop-intro p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 17px;
}

.shop-link {
  display: inline-flex;
  padding: 11px 18px;
  color: #ffffff;
  background: var(--accent);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.shop-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.shop-benefits article {
  display: flex;
  gap: 16px;
  align-items: center;
  min-width: 0;
  padding: 19px;
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.shop-benefits strong,
.shop-benefits span {
  display: block;
}

.shop-benefits strong {
  color: var(--text);
  font-size: 16px;
}

.shop-benefits span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
}

.benefit-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  padding: 8px;
  background: #ffffff;
  border-radius: 50%;
  object-fit: contain;
}

.shipping-provider img {
  width: 112px;
  height: auto;
  max-height: none;
  flex: 0 0 auto;
  object-fit: contain;
}

.service-phone {
  display: inline-block;
  margin-top: 5px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  padding: 24px 20px;
  color: var(--text);
  background: var(--accent);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-weight: 700;
}

@media (hover: hover) and (pointer: fine) {
  .logo,
  .usp-item,
  .product-meta li,
  .product-photo,
  .product-details,
  .technology-banner,
  .feature-card,
  .shop-section,
  .shop-benefits article,
  .shop-link,
  .product-photo img,
  .technology-banner img,
  .feature-image img,
  .product-table th,
  .product-table td {
    transition: transform 180ms ease, box-shadow 180ms ease,
      color 180ms ease, background-color 180ms ease;
  }

  .logo:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  }

  .usp-item:hover,
  .product-meta li:hover,
  .shop-benefits article:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.32);
  }

  .shop-link:hover {
    transform: translateY(-2px);
    background: #b8000b;
  }

  .product-photo:hover,
  .product-details:hover,
  .technology-banner:hover,
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.58);
  }

  .product-photo:hover img,
  .technology-banner:hover img,
  .feature-card:hover .feature-image img {
    transform: scale(1.025);
  }

  .product-table tbody tr:hover > th {
    color: #ffffff;
    background: var(--accent);
    box-shadow: inset 4px 0 0 #ffffff;
  }

  .product-table tbody tr:hover > td {
    color: #ffffff;
    background: var(--surface-light);
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .usp-list {
    justify-content: flex-start;
  }

  .product-hero,
  .feature-card,
  .shop-section {
    grid-template-columns: 1fr;
  }

  .feature-card:nth-child(even) .feature-image {
    order: 0;
  }
}

@media (max-width: 560px) {
  .site-header,
  .product-hero,
  .feature-list {
    padding-right: 16px;
    padding-left: 16px;
  }

  .product-hero {
    gap: 24px;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .shop-section {
    gap: 28px;
    width: calc(100% - 32px);
    margin: 28px auto 42px;
    padding: 30px 16px;
    border-radius: 14px;
  }

  .shop-benefits {
    grid-template-columns: 1fr;
  }

  .shipping-provider {
    flex-wrap: wrap;
  }

  .logo {
    max-width: 250px;
    height: auto;
  }

  .usp-list {
    display: grid;
    width: 100%;
  }

  .usp-item {
    white-space: normal;
  }

  .product-photo,
  .product-details,
  .feature-card {
    border-radius: 14px;
  }

  .product-details,
  .feature-card {
    padding: 20px;
  }

  .product-details h1 {
    font-size: 32px;
  }

  .technology-banner {
    margin-right: 16px;
    margin-bottom: 42px;
    margin-left: 16px;
    padding: 12px;
  }

  .feature-list {
    padding-bottom: 42px;
  }

  .feature-card {
    gap: 24px;
    margin-bottom: 28px;
  }

  .feature-copy h2 {
    font-size: 27px;
  }

  .feature-copy p {
    font-size: 16px;
  }

  .product-table th,
  .product-table td {
    padding: 9px;
    font-size: 14px;
  }
}
