:root {
  --page-width: 1200px;
  --brand: #2b257b;
  --brand-deep: #18256b;
  --brand-dark: #071331;
  --ice: #dff1ff;
  --ice-light: #eaf7ff;
  --white: #ffffff;
  --text: #2b257b;
  --body-text: #333333;
  --muted: #6b7280;
  --accent: #e30613;
  --border: rgba(43, 37, 123, 0.16);
  --shadow: 0 24px 58px rgba(43, 37, 123, 0.17);
}

* {
  box-sizing: border-box;
}

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

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

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

.product-page {
  width: 100%;
  overflow: hidden;
}

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

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

.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(--white);
  background: var(--brand);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

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

.brand-header {
  position: relative;
  display: flex;
  gap: 40px;
  align-items: flex-end;
  justify-content: space-between;
  width: calc(100% - 40px);
  max-width: calc(var(--page-width) - 40px);
  margin: 0 auto;
  overflow: hidden;
  padding: 58px 54px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 15%, rgba(223, 241, 255, 0.24), transparent 30%),
    linear-gradient(135deg, var(--brand-dark), var(--brand));
  border-radius: 30px;
}

.brand-kicker,
.section-label {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.brand-kicker {
  color: var(--ice);
}

.brand-name {
  margin: 2px 0 0;
  font-size: clamp(56px, 8vw, 92px);
  font-weight: 900;
  letter-spacing: -4px;
  line-height: 0.95;
}

.brand-message {
  max-width: 430px;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.product-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 38px;
  align-items: stretch;
  max-width: var(--page-width);
  margin: 64px auto 38px;
  padding: 0 20px;
}

.product-photo,
.product-data,
.product-description,
.delivery-content {
  background: var(--white);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.product-photo {
  display: flex;
  min-height: 500px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 32px;
}

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

.product-data {
  padding: 44px;
  border-top: 6px solid var(--brand);
}

.section-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--brand);
}

h1,
h2 {
  margin-top: 0;
  color: var(--text);
  line-height: 1.08;
}

h1 {
  margin-bottom: 32px;
  font-size: clamp(34px, 4.5vw, 54px);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(28px, 3.5vw, 42px);
  text-transform: uppercase;
}

.product-table {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
}

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

.product-table th,
.product-table td {
  padding: 15px 16px;
  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: 38%;
  color: var(--brand);
  background: var(--ice-light);
  font-weight: 800;
}

.product-table td {
  overflow-wrap: anywhere;
  background: var(--white);
}

.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(--white);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.shop-intro h2 {
  margin-bottom: 18px;
  text-transform: none;
}

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

.shop-link {
  display: inline-flex;
  padding: 11px 18px;
  color: var(--white);
  background: var(--brand);
  border-radius: 10px;
  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;
  padding: 19px;
  background: var(--ice-light);
  border: 1px solid var(--border);
  border-radius: 14px;
}

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

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

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

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

.shipping-provider {
  display: flex;
  gap: 16px;
  align-items: center;
}

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

.product-description {
  max-width: calc(var(--page-width) - 40px);
  margin: 0 auto 38px;
  padding: 52px;
  border-top: 6px solid var(--brand);
}

.description-text {
  color: var(--body-text);
  font-size: 18px;
  line-height: 1.75;
  overflow-wrap: anywhere;
  white-space: pre-line;
}

.delivery-content {
  max-width: calc(var(--page-width) - 40px);
  margin: 0 auto 64px;
  padding: 52px;
  color: var(--white);
  background: var(--brand);
}

.delivery-content .section-label {
  color: var(--ice);
}

.delivery-content h2 {
  color: var(--white);
}

.delivery-list {
  font-size: 18px;
}

.delivery-list > ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery-list > ul > li {
  position: relative;
  padding: 14px 18px 14px 54px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
}

.delivery-list > ul > li::before {
  position: absolute;
  top: 13px;
  left: 16px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--brand);
  background: var(--white);
  border-radius: 50%;
  content: "✓";
  font-size: 16px;
  font-weight: 900;
}

.site-footer {
  padding: 42px 20px;
  color: var(--white);
  background: var(--brand);
  text-align: center;
}

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

.product-table tr:has(td:empty),
.product-description:has(.description-text:empty),
.delivery-content:has(.delivery-list:empty) {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .logo,
  .usp-item,
  .product-photo,
  .product-data,
  .product-description,
  .delivery-content,
  .shop-section,
  .shop-benefits article,
  .shop-link,
  .product-photo img,
  .product-table th,
  .product-table td {
    transition: transform 180ms ease, box-shadow 180ms ease,
      color 180ms ease, background-color 180ms ease;
  }

  .logo:hover,
  .usp-item:hover,
  .shop-benefits article:hover {
    transform: translateY(-3px);
  }

  .shop-link:hover {
    transform: translateY(-2px);
    background: var(--brand-deep);
  }

  .product-photo:hover,
  .product-data:hover,
  .product-description:hover,
  .delivery-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 68px rgba(43, 37, 123, 0.24);
  }

  .product-photo:hover img {
    transform: scale(1.025);
  }

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

  .product-table tbody tr:hover > td {
    color: var(--text);
    background: var(--ice-light);
  }
}

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

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

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

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

  .product-photo {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 560px) {
  .site-header,
  .brand-header,
  .shop-section,
  .product-overview {
    padding-right: 16px;
    padding-left: 16px;
  }

  .logo {
    max-width: 250px;
  }

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

  .brand-header {
    gap: 22px;
    width: calc(100% - 32px);
    padding-top: 42px;
    padding-bottom: 42px;
    border-radius: 22px;
  }

  .brand-name {
    letter-spacing: -2px;
  }

  .brand-message {
    font-size: 17px;
  }

  .product-overview {
    gap: 24px;
    margin-top: 42px;
    margin-bottom: 24px;
  }

  .product-photo,
  .product-data,
  .product-description,
  .delivery-content,
  .shop-section {
    border-radius: 18px;
  }

  .shop-section {
    gap: 28px;
    width: calc(100% - 32px);
    margin-top: 28px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

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

  .product-photo,
  .product-data {
    padding: 22px;
  }

  .product-description,
  .delivery-content {
    width: calc(100% - 32px);
    padding: 30px 24px;
  }

  .product-description {
    margin-bottom: 24px;
  }

  .delivery-content {
    margin-bottom: 42px;
  }

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

  .description-text,
  .delivery-list {
    font-size: 16px;
  }

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