.seo-page {
  min-width: 0;
  background: #fff;
}

.seo-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
}

.seo-header-inner {
  display: flex;
  width: min(1240px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.seo-logo {
  display: block;
  width: 210px;
  min-width: 160px;
}

.seo-logo img {
  width: 100%;
  height: auto;
}

.seo-header nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 800;
}

.seo-header nav a:hover,
.seo-footer a:hover {
  color: var(--red);
}

.seo-cart-link {
  display: inline-flex;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 6px;
  align-items: center;
  gap: 9px;
  background: var(--red);
  color: #fff;
}

.seo-header nav .seo-cart-link:hover {
  background: var(--red-dark);
  color: #fff;
}

.seo-cart-link b {
  display: grid;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 50%;
  place-items: center;
  background: #fff;
  color: var(--red);
  font-size: 10px;
}

.seo-main {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.seo-breadcrumb {
  display: flex;
  min-width: 0;
  padding: 18px 0;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.seo-breadcrumb a:hover {
  color: var(--red);
}

.seo-breadcrumb span {
  overflow: hidden;
  color: var(--ink);
  text-overflow: ellipsis;
}

.seo-breadcrumb i {
  font-style: normal;
}

.seo-back-link {
  display: inline-flex;
  margin: 4px 0 18px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.seo-back-button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  text-decoration: underline;
}

.seo-back-button:hover { color: var(--red); }

.static-product-detail {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.static-product-media {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 560px;
  padding: 58px 46px 32px;
  border-right: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #f7f9fb;
}

.static-product-media > span {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 5px 8px;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  background: #fff;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.static-product-media > img,
.product-zoom-trigger > img {
  width: auto;
  height: auto;
  max-width: min(100%, 520px);
  max-height: 460px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 16px 22px rgba(18, 35, 63, 0.1));
}

.product-zoom-trigger {
  position: relative;
  display: grid;
  width: min(100%, 560px);
  min-height: 390px;
  padding: 20px;
  border: 0;
  place-items: center;
  background: #fff;
  color: var(--navy);
  cursor: zoom-in;
}

.product-zoom-trigger > span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid var(--line-dark);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 18px rgba(18, 35, 63, 0.12);
  font-size: 10px;
  font-weight: 850;
}

.product-zoom-trigger > span img {
  width: 17px;
  height: 17px;
}

.product-zoom-trigger:hover > span,
.product-zoom-trigger:focus-visible > span {
  border-color: var(--red);
  color: var(--red);
}

.static-product-gallery {
  display: flex;
  width: min(100%, 560px);
  max-width: 100%;
  margin-top: 14px;
  padding: 2px;
  overflow-x: auto;
  gap: 8px;
  scrollbar-color: var(--line-dark) transparent;
}

.product-gallery-thumb {
  display: grid;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  padding: 4px;
  border: 1px solid var(--line-dark);
  border-radius: 5px;
  place-items: center;
  background: #fff;
  cursor: pointer;
}

.product-gallery-thumb:hover,
.product-gallery-thumb:focus-visible,
.product-gallery-thumb.is-active {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(200, 16, 46, 0.12);
}

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

.product-zoom-dialog {
  width: min(1120px, calc(100% - 32px));
  max-width: none;
  height: min(860px, calc(100dvh - 32px));
  max-height: none;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(8, 22, 45, 0.28);
}

.product-zoom-dialog::backdrop {
  background: rgba(9, 21, 40, 0.72);
}

.product-zoom-toolbar {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px 14px 22px;
  border-bottom: 1px solid var(--line);
}

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

.product-zoom-toolbar span {
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-zoom-toolbar strong {
  margin-top: 3px;
  color: var(--navy);
  font-size: 14px;
}

.product-zoom-toolbar button {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid var(--line-dark);
  border-radius: 5px;
  place-items: center;
  background: #fff;
  color: var(--navy);
}

.product-zoom-toolbar button:hover {
  border-color: var(--red);
  color: var(--red);
}

.product-zoom-toolbar button img {
  width: 20px;
  height: 20px;
}

.product-zoom-stage {
  display: grid;
  height: calc(100% - 72px);
  padding: 28px;
  overflow: auto;
  place-items: center;
  background: #f7f9fb;
}

.product-zoom-stage img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: none;
}

.static-product-media small {
  max-width: 500px;
  margin-top: 24px;
  color: #778296;
  font-size: 10px;
  text-align: center;
}

.bur-variant-catalog {
  margin-top: 34px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.bur-variant-catalog > header {
  max-width: 760px;
}

.bur-variant-catalog > header h2 {
  margin: 2px 0 8px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.bur-variant-catalog > header > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.bur-color-group {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.bur-color-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.bur-color-heading h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
}

.bur-color-heading small {
  margin-left: auto;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.bur-color-dot {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  border: 1px solid #9aa5b4;
  border-radius: 50%;
  background: #111827;
}

.bur-color-dot.is-blue { background: #0868d7; }
.bur-color-dot.is-green { background: #12864f; }
.bur-color-dot.is-red { background: #d7192d; }
.bur-color-dot.is-yellow { background: #f4c400; }

.bur-variant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 10px;
}

.bur-variant-card {
  display: grid;
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  place-items: center;
  background: #fff;
  color: var(--navy);
  text-align: center;
}

.bur-variant-card:hover,
.bur-variant-card:focus-visible,
.bur-variant-card.is-selected {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(200, 16, 46, 0.1);
}

.bur-variant-card img {
  width: 100%;
  height: 142px;
  object-fit: contain;
}

.bur-variant-card span {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 900;
}

.bur-variant-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.static-product-copy {
  min-width: 0;
  padding: 46px 50px 52px;
}

.static-product-copy h1,
.collection-hero h1,
.info-page h1 {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.13;
  letter-spacing: 0;
}

.static-product-copy .eyebrow a:hover {
  text-decoration: underline;
}

.static-status {
  display: flex;
  margin-top: 18px;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 12px;
}

.static-status strong {
  color: var(--green);
}

.static-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 14px 0 0;
  color: var(--navy);
}

.static-price span,
.static-price small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.static-price strong {
  color: var(--red);
  font-size: 24px;
}

.static-promotion {
  display: grid;
  gap: 4px;
  margin: 18px 0 0;
  padding: 16px 18px;
  border: 1px solid #f0b7c1;
  border-left: 4px solid var(--red);
  border-radius: 6px;
  background: #fff7f8;
}

.static-promotion span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.static-promotion strong {
  color: var(--navy);
  font-size: 19px;
}

.static-promotion p {
  margin: 2px 0 0;
  color: #4f5d72;
  font-size: 12px;
  line-height: 1.55;
}

.static-description {
  margin: 24px 0;
  color: #46536a;
  font-size: 16px;
  line-height: 1.75;
}

.static-specs {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 10px 18px;
  font-size: 12px;
}

.static-specs dt {
  color: var(--muted);
}

.static-specs dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--navy);
  font-weight: 800;
}

.static-configurator {
  margin-top: 24px;
}

.static-configurator h2 {
  margin: 2px 0 18px;
  color: var(--navy);
  font-size: 22px;
}

.seo-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.seo-option-grid label,
.static-quantity {
  display: grid;
  gap: 7px;
  color: #46536a;
  font-size: 11px;
  font-weight: 850;
}

.size-option-chart {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.size-option-chart legend {
  padding: 0;
  color: #46536a;
  font-size: 11px;
  font-weight: 850;
}

.size-option-chart-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
  gap: 8px;
  margin-top: 7px;
}

.size-option-chip {
  min-height: 46px;
  padding: 8px 6px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
}

.size-option-chip:hover {
  border-color: var(--red);
  background: var(--red-soft);
}

.size-option-chip:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--red) 30%, white);
  outline-offset: 2px;
}

.size-option-chip.is-selected {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.size-option-chart.has-error .size-option-chart-grid {
  padding: 5px;
  margin: 2px -5px -5px;
  border-radius: 6px;
  background: #fff0f2;
}

.size-option-chart-error {
  margin: 8px 0 0;
  color: #b42338;
  font-size: 12px;
  font-weight: 750;
}

.variant-quantity-matrix {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: #f8fafc;
}

.variant-matrix-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.variant-matrix-intro h3 {
  margin: 0;
  color: var(--navy);
  font-size: 16px;
}

.variant-matrix-intro p {
  margin: 4px 0 0;
  color: #59667b;
  font-size: 12px;
}

.variant-matrix-total {
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: auto 36px;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 4px 5px 4px 11px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: #fff;
  color: #46536a;
  font-size: 11px;
  font-weight: 800;
}

.variant-matrix-total strong {
  display: grid;
  place-items: center;
  width: 36px;
  height: 28px;
  border-radius: 4px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
}

.variant-quantity-matrix.has-selection .variant-matrix-total strong {
  background: var(--red);
}

.variant-matrix-scroll {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: #fff;
  scrollbar-gutter: stable;
}

.variant-matrix-scroll:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--red) 30%, white);
  outline-offset: 2px;
}

.variant-matrix-table {
  width: 100%;
  min-width: 590px;
  border-spacing: 0;
  table-layout: fixed;
  color: var(--navy);
  font-size: 12px;
  text-align: center;
}

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

.variant-matrix-table th,
.variant-matrix-table td {
  height: 54px;
  padding: 6px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.variant-matrix-table tr:last-child > * {
  border-bottom: 0;
}

.variant-matrix-table tr > *:last-child {
  border-right: 0;
}

.variant-matrix-table thead th {
  background: #eef2f7;
  font-weight: 850;
}

.variant-matrix-table thead th:first-child,
.variant-matrix-table tbody th {
  position: sticky;
  left: 0;
  z-index: 1;
  width: 88px;
  background: #f8fafc;
  box-shadow: 1px 0 0 var(--line);
}

.variant-matrix-table thead th:first-child {
  z-index: 2;
  line-height: 1.15;
}

.variant-matrix-table thead th:first-child span,
.variant-matrix-table thead th:first-child small {
  display: block;
}

.variant-matrix-table thead th:first-child small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.variant-matrix-table input {
  width: 56px;
  height: 40px;
  padding: 0 4px;
  border: 1px solid var(--line-dark);
  border-radius: 5px;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  text-align: center;
}

.variant-matrix-table input:hover {
  border-color: #8e9aab;
}

.variant-matrix-table input:focus {
  border-color: var(--red);
  outline: 3px solid color-mix(in srgb, var(--red) 24%, white);
  outline-offset: 1px;
}

.variant-matrix-table input:not(:placeholder-shown) {
  border-color: var(--red);
  background: var(--red-soft);
}

.variant-matrix-help {
  display: none;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.variant-matrix-error {
  margin: 10px 0 0;
  color: #b42338;
  font-size: 12px;
  font-weight: 800;
}

.variant-quantity-matrix.has-error {
  border-color: #d92d45;
  background: #fff7f8;
}

.seo-option-grid select {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 0 38px 0 13px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
}

.seo-no-options {
  padding: 14px 16px;
  border-left: 3px solid var(--red);
  background: var(--red-soft);
}

.seo-fixed-configuration {
  padding: 14px 16px;
  border-left: 3px solid var(--navy);
  background: #f3f6fa;
}

.seo-fixed-configuration strong,
.seo-card-price {
  color: var(--navy);
}

.seo-fixed-configuration p {
  margin: 4px 0 0;
  color: #59667b;
  font-size: 12px;
}

.seo-card-price {
  display: block;
  margin-top: 12px;
  font-size: 15px;
}

.seo-card-price small {
  color: var(--muted);
  font-size: 11px;
}

.seo-no-options strong {
  color: var(--navy);
}

.seo-no-options p {
  margin: 4px 0 0;
  color: #59667b;
  font-size: 12px;
}

.static-quantity {
  width: 150px;
  margin-top: 16px;
}

.static-quantity > span:last-child {
  display: grid;
  grid-template-columns: 40px 62px 40px;
}

.static-quantity button,
.static-quantity input {
  width: 100%;
  height: 44px;
  border: 1px solid var(--line-dark);
  background: #fff;
  text-align: center;
}

.static-quantity button:first-child {
  border-radius: 6px 0 0 6px;
}

.static-quantity button:last-child {
  border-radius: 0 6px 6px 0;
}

.static-quantity input {
  border-right: 0;
  border-left: 0;
}

.static-product-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 10px;
  margin-top: 14px;
}

.static-product-actions .button {
  min-height: 48px;
}

.static-cart-confirmation {
  display: grid;
  gap: 5px;
  margin-top: 12px;
  padding: 13px 14px;
  border: 1px solid #9dd8bd;
  border-left: 4px solid #08784d;
  border-radius: 6px;
  background: #f2fbf7;
  color: #314056;
  font-size: 12px;
}

.static-cart-confirmation[hidden] {
  display: none;
}

.static-cart-confirmation strong {
  color: #08784d;
  font-size: 14px;
}

.static-cart-confirmation span {
  overflow-wrap: anywhere;
}

.static-cart-confirmation div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 3px;
}

.static-cart-confirmation a {
  color: var(--navy);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.static-form-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.static-contact-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.static-contact-actions a {
  display: grid;
  min-height: 42px;
  padding: 8px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  place-items: center;
  grid-template-columns: 18px auto;
  justify-content: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.static-contact-actions img {
  width: 18px;
  height: 18px;
}

.static-contact-actions a.is-whatsapp {
  border-color: #a9dec0;
  color: #08783e;
}

.static-contact-actions a:hover {
  border-color: var(--red);
  color: var(--red);
}

.static-assurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 54px;
  border: 1px solid var(--line);
  border-top: 0;
}

.static-assurance div {
  min-width: 0;
  padding: 17px 20px;
  border-right: 1px solid var(--line);
}

.static-assurance div:last-child {
  border-right: 0;
}

.static-assurance strong,
.static-assurance span {
  display: block;
}

.static-assurance strong {
  color: var(--navy);
  font-size: 12px;
}

.static-assurance span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.static-related {
  margin: 0 0 68px;
}

.static-related > div:first-child {
  margin-bottom: 18px;
}

.static-related h2 {
  margin: 2px 0 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.static-related .seo-product-image {
  height: 210px;
  padding: 18px;
  background: #f8fafc;
}

.static-related .seo-product-card > div {
  min-height: 230px;
}

.static-related .seo-product-card h2 {
  font-size: 15px;
}

.collection-hero {
  display: grid;
  padding: 48px 0 36px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 40px;
  border-bottom: 1px solid var(--line);
}

.collection-hero > p,
.collection-hero h1 {
  grid-column: 1;
}

.collection-hero > p:last-of-type {
  max-width: 780px;
  margin: 12px 0 0;
  color: #59667b;
  font-size: 15px;
}

.collection-hero > div {
  grid-row: 1 / span 3;
  grid-column: 2;
  align-self: end;
  padding: 14px 18px;
  border-left: 3px solid var(--red);
  background: var(--soft);
}

.collection-hero > div strong,
.collection-hero > div span {
  display: block;
}

.collection-hero > div span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.collection-links {
  display: grid;
  gap: 10px;
  padding: 18px 0 4px;
  border-bottom: 1px solid var(--line);
}

.collection-links strong {
  color: var(--navy);
  font-size: 12px;
}

.collection-links div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.collection-links a {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--navy);
  font-size: 12px;
  font-weight: 750;
}

.collection-links a:hover {
  border-color: var(--red);
  color: var(--red);
}

.seo-alphabet {
  display: grid;
  grid-template-columns: repeat(26, minmax(26px, 1fr));
  gap: 4px;
  padding: 18px 0;
  overflow-x: auto;
}

.seo-alphabet a {
  display: grid;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 4px;
  place-items: center;
  background: #fff;
  color: var(--navy);
  font-size: 11px;
  font-weight: 850;
}

.seo-alphabet a:hover {
  border-color: var(--red);
  color: var(--red);
}

.seo-alphabet span {
  display: grid;
  min-height: 34px;
  border: 1px solid #edf0f4;
  border-radius: 4px;
  place-items: center;
  color: #b0b7c2;
  font-size: 11px;
  font-weight: 750;
}

.collection-toolbar {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 12px;
}

.collection-toolbar p {
  margin: 0;
}

.collection-toolbar a {
  color: var(--red);
  font-weight: 800;
}

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

.seo-product-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  flex-direction: column;
  background: #fff;
}

.seo-product-image {
  position: relative;
  display: grid;
  width: 100%;
  height: 230px;
  padding: 22px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  place-items: center;
  background: #f8fafc;
}

.seo-card-promo {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 5px 8px;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.seo-product-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.seo-product-card > div {
  display: flex;
  min-width: 0;
  min-height: 300px;
  padding: 16px;
  flex: 1;
  flex-direction: column;
}

.seo-product-card p {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.seo-product-card h2 {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.35;
}

.seo-product-card h2 a:hover {
  color: var(--red);
}

.seo-product-card span {
  margin-top: 14px;
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 11px;
}

.seo-product-card > div > strong {
  margin-top: auto;
  padding-top: 14px;
  color: var(--navy);
  font-size: 13px;
}

.seo-product-card > div > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px;
  gap: 7px;
  margin-top: 11px;
}

.seo-product-card .button {
  min-height: 42px;
  padding: 0 9px;
  font-size: 11px;
}

.seo-pagination {
  display: grid;
  grid-template-columns: minmax(100px, 1fr) auto minmax(100px, 1fr);
  gap: 20px;
  margin: 34px 0 60px;
  align-items: center;
}

.seo-pagination > a:last-child {
  justify-self: end;
}

.seo-pagination > a {
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
}

.seo-pagination div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.seo-pagination div a {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 4px;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
}

.seo-pagination div a.is-current {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.collection-disclaimer {
  margin: -28px 0 64px;
  padding: 18px 20px;
  border: 1px solid #f0c9d0;
  border-radius: 6px;
  background: var(--red-soft);
}

.collection-disclaimer p {
  margin: 5px 0 0;
  color: #5d6676;
  font-size: 12px;
}

.info-page {
  max-width: 980px;
  min-height: 62vh;
}

.info-page > article {
  padding: 42px 0 78px;
}

.info-page h1 {
  max-width: 760px;
}

.info-lede {
  max-width: 760px;
  margin: 18px 0 36px;
  color: #536176;
  font-size: 18px;
  line-height: 1.7;
}

.info-page section {
  max-width: 760px;
  padding-top: 8px;
}

.info-page section h2 {
  margin: 30px 0 8px;
  color: var(--navy);
  font-size: 21px;
}

.info-page section p {
  margin: 0;
  color: #536176;
  line-height: 1.75;
}

.info-page section a {
  color: var(--red);
  text-decoration: underline;
}

.info-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  gap: 10px;
}

.info-contact-grid a {
  display: grid;
  min-width: 0;
  min-height: 100px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  align-content: center;
  gap: 4px;
}

.info-contact-grid a:hover {
  border-color: var(--red);
}

.info-contact-grid span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.info-contact-grid strong {
  overflow-wrap: anywhere;
  color: var(--navy);
}

.info-contact-grid a.is-whatsapp {
  border-color: #bfe5d0;
  background: #f1fbf5;
}

.seo-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) 1fr 1fr;
  width: 100%;
  margin-top: 50px;
  padding: 44px max(20px, calc((100% - 1240px) / 2));
  border-top: 1px solid var(--line);
  gap: 50px;
  background: #f7f9fb;
}

.seo-footer .seo-logo {
  width: 190px;
}

.seo-footer p {
  max-width: 330px;
  color: var(--muted);
  font-size: 12px;
}

.seo-footer > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}

.seo-footer strong {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 12px;
  text-transform: uppercase;
}

.seo-footer a {
  overflow-wrap: anywhere;
  color: #4e5b70;
  font-size: 12px;
}

.seo-contact-dock {
  position: fixed;
  top: 50%;
  right: 10px;
  bottom: auto;
  z-index: 45;
  display: flex;
  width: 70px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  flex-direction: column;
  transform: translateY(-50%);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.seo-contact-dock a {
  display: grid;
  min-width: 0;
  width: 100%;
  min-height: 58px;
  padding: 7px 4px;
  border-bottom: 1px solid var(--line);
  place-items: center;
  align-content: center;
  gap: 4px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 850;
}

.seo-contact-dock img {
  width: 21px;
  height: 21px;
}

.seo-contact-dock a:last-child {
  border-bottom: 0;
}

.seo-contact-dock a.contact-dock-primary {
  background: var(--red);
  color: #fff;
}

.seo-contact-dock a.contact-dock-primary img {
  filter: brightness(0) invert(1);
}

.seo-contact-dock a.contact-dock-primary:hover {
  background: var(--red-dark);
  color: #fff;
}

.seo-contact-dock a.is-whatsapp {
  background: #fff;
  color: #08783e;
}

.seo-contact-dock a.is-whatsapp:hover {
  background: #effbf4;
  color: #065f32;
}

@media (max-width: 960px) {
  .seo-header nav a:not(.seo-cart-link):not(:nth-last-child(2)) {
    display: none;
  }

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

  .static-product-media {
    min-height: 430px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-zoom-trigger > img {
    max-height: 340px;
  }

  .product-zoom-trigger {
    min-height: 340px;
  }

  .product-gallery-thumb {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }

  .seo-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .seo-contact-dock {
    top: auto;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    width: auto;
    flex-direction: row;
    transform: none;
  }

  .seo-contact-dock a {
    width: 46px;
    min-height: 46px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .seo-contact-dock a:last-child {
    border-right: 0;
  }

  .seo-contact-dock span {
    display: none;
  }
}

@media (max-width: 720px) {
  .seo-header-inner,
  .seo-main {
    width: calc(100% - 28px);
  }

  .seo-logo {
    width: 170px;
  }

  .seo-header nav {
    gap: 10px;
  }

  .static-product-media {
    min-height: 360px;
    padding: 48px 22px 24px;
  }

  .product-zoom-trigger > img {
    width: 100%;
    height: auto;
    max-height: 270px;
  }

  .product-zoom-trigger {
    min-height: 280px;
    padding: 14px;
  }

  .static-product-gallery {
    margin-top: 10px;
  }

  .product-gallery-thumb {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  .product-zoom-trigger > span {
    right: 8px;
    bottom: 8px;
  }

  .product-zoom-dialog {
    width: calc(100% - 20px);
    height: calc(100dvh - 20px);
  }

  .product-zoom-toolbar {
    padding-left: 16px;
  }

  .product-zoom-stage {
    padding: 14px;
  }

  .static-product-copy {
    padding: 30px 20px 36px;
  }

  .static-product-copy h1,
  .collection-hero h1,
  .info-page h1 {
    font-size: 32px;
  }

  .seo-option-grid,
  .static-product-actions,
  .static-contact-actions,
  .static-assurance,
  .collection-hero,
  .seo-footer {
    grid-template-columns: 1fr;
  }

  .variant-quantity-matrix {
    margin-right: -6px;
    margin-left: -6px;
    padding: 13px 10px;
  }

  .variant-matrix-intro {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .variant-matrix-total {
    align-self: flex-start;
  }

  .variant-matrix-table {
    min-width: 540px;
  }

  .variant-matrix-table th,
  .variant-matrix-table td {
    height: 50px;
    padding: 4px;
  }

  .variant-matrix-table input {
    width: 52px;
    height: 38px;
  }

  .variant-matrix-help {
    display: block;
  }

  .static-assurance div,
  .static-assurance div:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .static-assurance div:last-child {
    border-bottom: 0;
  }

  .collection-hero > p,
  .collection-hero h1,
  .collection-hero > div {
    grid-row: auto;
    grid-column: 1;
  }

  .collection-hero > div {
    margin-top: 15px;
  }

  .seo-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .seo-product-image {
    height: 180px;
    padding: 16px;
  }

  .seo-product-card > div {
    min-height: 280px;
    padding: 13px;
  }

  .seo-product-card > div > div {
    grid-template-columns: 1fr;
  }

  .seo-product-card h2 {
    font-size: 14px;
  }

  .seo-pagination {
    grid-template-columns: 1fr 1fr;
  }

  .seo-pagination div {
    grid-row: 2;
    grid-column: 1 / -1;
  }

  .info-contact-grid,
  .seo-footer {
    grid-template-columns: 1fr;
  }

  .seo-footer {
    gap: 28px;
    padding-bottom: 44px;
  }

}

@media (max-width: 430px) {
  .seo-header-inner {
    gap: 10px;
  }

  .seo-logo {
    width: 145px;
    min-width: 0;
  }

  .seo-cart-link {
    min-height: 40px;
    padding: 0 11px;
  }

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

  .seo-product-image {
    height: 230px;
  }

  .seo-product-card > div {
    min-height: 250px;
  }

  .static-specs {
    grid-template-columns: 90px minmax(0, 1fr);
  }
}

.contact-form-section { margin: 32px 0; padding: 28px 0; border-top: 1px solid #d9dee5; border-bottom: 1px solid #d9dee5; }
.contact-inquiry-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.contact-field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.contact-field label { font-weight: 700; font-size: 14px; }
.contact-field input, .contact-field select, .contact-field textarea { width: 100%; min-width: 0; min-height: 48px; border: 1px solid #aeb8c6; border-radius: 6px; background: #fff; color: #182338; padding: 12px; font: inherit; box-sizing: border-box; }
.contact-field textarea { resize: vertical; }
.contact-field :focus-visible, .contact-consent input:focus-visible { outline: 3px solid #2a7a94; outline-offset: 2px; }
.contact-full { grid-column: 1 / -1; }
.contact-note { margin: 0; font-size: 14px; color: #536175; }
.contact-consent { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; line-height: 1.6; }
.contact-consent input { flex: 0 0 20px; width: 20px; height: 20px; margin-top: 2px; }
.contact-bot-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.contact-receipt { margin: 0; padding: 16px; border-left: 4px solid #238051; background: #f0f7f3; overflow-wrap: anywhere; }
.contact-receipt.is-error { border-color: #c8102e; background: #fff1f3; }
.contact-inquiry-form button:disabled { opacity: .65; cursor: wait; }
.info-contact-grid strong { overflow-wrap: anywhere; }
.seo-pagination > div { display: flex; flex-wrap: wrap; gap: 6px; }
@media (max-width: 600px) { .contact-inquiry-form { grid-template-columns: minmax(0, 1fr); gap: 16px; } }

.bur-offer-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.bur-offer-panel > div {
  display: grid;
  gap: 3px;
  padding: 14px 16px;
}

.bur-offer-panel > div + div { border-left: 1px solid var(--line); }
.bur-offer-panel span { color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.bur-offer-panel strong { color: var(--navy); font-size: 16px; line-height: 1.25; }
.bur-offer-panel small { color: var(--muted); font-size: 11px; line-height: 1.45; }
.bur-offer-panel .bur-offer-feature { grid-column: 1 / -1; border-top: 1px solid #efb6bf; border-left: 0; background: #fff4f6; }
.bur-offer-panel .bur-offer-feature span, .bur-offer-panel .bur-offer-feature strong { color: var(--red); }

.bur-coating-note {
  margin: 0 0 20px;
  padding: 16px 18px;
  border-left: 4px solid var(--navy);
  background: #f4f7fb;
}

.bur-coating-note strong { color: var(--navy); font-size: 14px; }
.bur-coating-note p { margin: 5px 0 8px; color: #46536a; font-size: 12px; line-height: 1.6; }
.bur-coating-note a { color: var(--red); font-size: 12px; font-weight: 850; text-decoration: underline; text-underline-offset: 3px; }

.diamond-bur-finder-page { padding-bottom: 84px; }

.diamond-bur-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr);
  min-height: 430px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
}

.diamond-bur-hero > div:first-child { align-self: center; padding: 64px 70px; }
.diamond-bur-hero .eyebrow { color: #f58a9a; }
.diamond-bur-hero h1 { max-width: 760px; margin: 8px 0 18px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(40px, 6vw, 70px); line-height: 1.02; letter-spacing: -.035em; }
.diamond-bur-hero > div:first-child > p:last-of-type { max-width: 670px; margin: 0; color: #ced7e5; font-size: 17px; line-height: 1.7; }
.diamond-bur-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.diamond-bur-hero-actions .button-secondary { border-color: #6f7f98; background: transparent; color: #fff; }

.diamond-bur-promise { display: flex; flex-direction: column; justify-content: center; padding: 44px; background: var(--red); }
.diamond-bur-promise span { font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.diamond-bur-promise strong { margin-top: 14px; font-size: clamp(30px, 4vw, 46px); line-height: 1.05; }
.diamond-bur-promise p { margin: 16px 0 0; color: #ffe3e7; line-height: 1.55; }

.diamond-bur-band-strip { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); margin: 22px 0 0; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; background: #fff; }
.diamond-bur-band-strip a { display: grid; gap: 3px; min-height: 138px; padding: 20px; color: var(--navy); }
.diamond-bur-band-strip a + a { border-left: 1px solid var(--line); }
.diamond-bur-band-strip a:hover { background: #f6f8fb; }
.diamond-bur-band-strip button { display: grid; gap: 3px; min-height: 138px; border: 0; border-radius: 0; padding: 20px; background: #fff; color: var(--navy); text-align: left; font: inherit; cursor: pointer; }
.diamond-bur-band-strip button + button { border-left: 1px solid var(--line); }
.diamond-bur-band-strip button:hover, .diamond-bur-band-strip button[aria-pressed="true"] { background: #eef8fc; }
.diamond-bur-band-strip button[aria-pressed="true"] { box-shadow: inset 0 -4px 0 var(--red); }
@media (max-width: 1000px) { .diamond-bur-band-strip button + button { border-left: 0; } .diamond-bur-band-strip button { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); } }
.diamond-bur-band-strip i { width: 30px; height: 5px; margin-bottom: 9px; background: var(--navy); }
.diamond-bur-band-strip i.is-blue { background: #1769c2; }
.diamond-bur-band-strip i.is-green { background: #12864f; }
.diamond-bur-band-strip i.is-red { background: #d7192d; }
.diamond-bur-band-strip i.is-yellow { background: #d5a900; }
.diamond-bur-band-strip span { color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.diamond-bur-band-strip strong { font-size: 15px; }
.diamond-bur-band-strip small { color: var(--muted); font-size: 11px; }

.diamond-bur-quality { display: grid; grid-template-columns: 150px minmax(0, 1fr); align-items: center; gap: 36px; margin: 54px 0; padding: 36px 42px; border: 1px solid var(--line); background: #fff; }
.diamond-bur-quality > div:first-child { display: grid; place-items: center; width: 120px; height: 120px; border: 2px solid var(--navy); color: var(--red); font-family: Georgia, "Times New Roman", serif; font-size: 42px; font-weight: 800; }
.diamond-bur-quality h2 { margin: 4px 0 8px; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: clamp(28px, 4vw, 42px); line-height: 1.15; }
.diamond-bur-quality p:last-child { max-width: 780px; margin: 0; color: #536175; line-height: 1.7; }

.diamond-bur-finder { scroll-margin-top: 24px; }
.diamond-bur-finder-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 18px; }
.diamond-bur-finder-heading h2 { margin: 4px 0 0; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: clamp(30px, 4vw, 46px); }
.diamond-bur-finder-heading > strong { color: var(--red); font-size: 13px; }

.diamond-bur-toolbar { display: grid; grid-template-columns: minmax(220px, 1.7fr) repeat(2, minmax(170px, 1fr)) auto; align-items: end; gap: 10px; padding: 16px; border: 1px solid var(--line); background: #f4f6f9; }
.diamond-bur-toolbar label { display: grid; gap: 6px; color: #46536a; font-size: 10px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.diamond-bur-toolbar input, .diamond-bur-toolbar select { width: 100%; min-height: 44px; border: 1px solid #aeb8c6; border-radius: 4px; background: #fff; color: var(--navy); padding: 0 12px; font: inherit; text-transform: none; }
.diamond-bur-toolbar input:focus-visible, .diamond-bur-toolbar select:focus-visible { outline: 3px solid #2a7a94; outline-offset: 2px; }
.diamond-bur-toolbar .button { min-height: 44px; }

.diamond-bur-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 18px; }
.diamond-bur-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-top: 4px solid var(--bur-band); background: #fff; box-shadow: 0 8px 24px rgba(20, 35, 61, .06); }
.diamond-bur-photo { display: grid; place-items: center; height: 210px; padding: 12px; border-bottom: 1px solid var(--line); background: #f8f9fb; }
.diamond-bur-photo img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.diamond-bur-card-copy { display: grid; gap: 9px; padding: 18px; }
.diamond-bur-band { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.diamond-bur-band i { width: 18px; height: 4px; background: var(--bur-band); }
.diamond-bur-card h2 { margin: 0; color: var(--navy); font-size: 21px; }
.diamond-bur-card p { min-height: 36px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.diamond-bur-card-copy > strong { color: var(--red); font-size: 18px; }
.diamond-bur-card-copy > strong small { color: var(--muted); font-size: 10px; font-weight: 750; }
.diamond-bur-card .button { margin-top: 3px; }
.diamond-bur-empty { grid-column: 1 / -1; margin: 0; padding: 36px; border: 1px dashed #aeb8c6; color: var(--muted); text-align: center; }

.diamond-bur-custom { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 54px; padding: 34px 38px; border-left: 5px solid var(--red); background: var(--navy); color: #fff; }
.diamond-bur-custom h2 { margin: 4px 0 8px; font-family: Georgia, "Times New Roman", serif; font-size: 34px; }
.diamond-bur-custom p:last-child { max-width: 720px; margin: 0; color: #ced7e5; line-height: 1.65; }
.diamond-bur-custom > div:last-child { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.diamond-bur-custom .button-secondary { border-color: #74849c; background: transparent; color: #fff; }

@media (max-width: 1000px) {
  .diamond-bur-hero { grid-template-columns: 1fr; }
  .diamond-bur-hero > div:first-child { padding: 50px; }
  .diamond-bur-promise { min-height: 210px; }
  .diamond-bur-band-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .diamond-bur-band-strip a + a { border-left: 0; }
  .diamond-bur-band-strip a { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .diamond-bur-toolbar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .diamond-bur-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .bur-offer-panel { grid-template-columns: 1fr; }
  .bur-offer-panel > div + div { border-top: 1px solid var(--line); border-left: 0; }
  .diamond-bur-hero > div:first-child, .diamond-bur-promise { padding: 34px 24px; }
  .diamond-bur-band-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .diamond-bur-quality { grid-template-columns: 1fr; padding: 28px 24px; }
  .diamond-bur-quality > div:first-child { width: 88px; height: 88px; font-size: 32px; }
  .diamond-bur-finder-heading { align-items: start; flex-direction: column; gap: 8px; }
  .diamond-bur-toolbar { grid-template-columns: 1fr; }
  .diamond-bur-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .diamond-bur-custom { align-items: flex-start; flex-direction: column; padding: 28px 24px; }
  .diamond-bur-custom > div:last-child { justify-content: flex-start; }
}

@media (max-width: 460px) {
  .diamond-bur-band-strip, .diamond-bur-grid { grid-template-columns: 1fr; }
  .diamond-bur-photo { height: 235px; }
}

/* Diamond bur offer and finder refinements */
.diamond-bur-hero { grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr); min-height: 0; gap: 30px; padding: clamp(28px, 4vw, 54px); border: 1px solid #b9dbea; border-radius: 10px; background: #e8f6fd; color: var(--navy); }
.diamond-bur-hero > div:first-child { padding: 0; }
.diamond-bur-hero .eyebrow { color: var(--red); }
.diamond-bur-hero h1 { max-width: 700px; margin: 8px 0 16px; font-size: clamp(38px, 5.2vw, 62px); }
.diamond-bur-hero > div:first-child > p { max-width: 650px; margin: 0; color: #455b73; font-size: 17px; line-height: 1.65; }
.diamond-bur-offer-copy { margin-top: 16px !important; padding: 13px 15px; border-left: 4px solid var(--red); background: #fff; color: var(--navy) !important; font-size: 15px !important; }
.diamond-bur-hero-actions { margin-top: 22px; }
.diamond-bur-hero-actions .button-secondary { border-color: #9db5c7; background: #fff; color: var(--navy); }
.diamond-bur-deal { padding: 26px; border: 1px solid #cadbe6; border-radius: 8px; background: #fff; box-shadow: 0 14px 28px rgba(21, 52, 83, .10); }
.diamond-bur-deal h2 { margin: 4px 0 8px; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: clamp(27px, 3vw, 36px); line-height: 1.1; }
.diamond-bur-deal > p:not(.eyebrow):not(.diamond-bur-deal-summary) { margin: 0; color: #536175; font-size: 14px; line-height: 1.55; }
.diamond-bur-deal-fields { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; margin-top: 18px; }
.diamond-bur-deal-fields label { display: grid; gap: 6px; color: #46536a; font-size: 10px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.diamond-bur-deal-fields select { width: 100%; min-height: 43px; border: 1px solid #aeb8c6; border-radius: 4px; background: #fff; color: var(--navy); padding: 0 8px; font: inherit; font-size: 13px; text-transform: none; }
.diamond-bur-deal-fields select:focus-visible { outline: 3px solid #2a7a94; outline-offset: 2px; }
.diamond-bur-deal-summary { margin: 15px 0; padding: 12px 13px; border-radius: 4px; background: #eef8fc; color: #183d5c; font-size: 13px; font-weight: 750; line-height: 1.5; }
.diamond-bur-deal-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.diamond-bur-deal-actions .button-secondary { border-color: #a8bbca; background: #fff; color: var(--navy); }
.diamond-bur-toolbar { border-color: #c7dfeb; background: #f1f9fd; }
.diamond-bur-suggestions { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 12px 0 0; }
.diamond-bur-suggestions > span { margin-right: 2px; color: #536175; font-size: 11px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.diamond-bur-suggestions button { min-height: 32px; border: 1px solid #bfd9e7; border-radius: 999px; background: #f4fbfe; color: #183d5c; padding: 4px 12px; font: inherit; font-size: 12px; font-weight: 800; cursor: pointer; }
.diamond-bur-suggestions button:hover { border-color: #75acc7; background: #e0f2fb; }
@media (max-width: 1000px) { .diamond-bur-hero { grid-template-columns: 1fr; } }
@media (max-width: 720px) { .diamond-bur-hero { padding: 28px 20px; } .diamond-bur-deal-fields { grid-template-columns: 1fr; } }
.professional-use-notice { margin: 18px 0; border: 1px solid rgba(200,16,46,.28); border-left: 5px solid #c8102e; border-radius: 14px; background: #fff6f7; padding: 16px 18px; color: #331116; }
.professional-use-notice strong { display: block; color: #9f0d25; font-size: .96rem; margin-bottom: 5px; }
.professional-use-notice p { margin: 0; line-height: 1.58; }
.professional-use-notice a { color: #9f0d25; font-weight: 800; }
.professional-use-notice.consumer-label-notice { border-color: rgba(0,116,133,.26); border-left-color: #007485; background: #f2fbfc; color: #12363b; }
.professional-use-notice.consumer-label-notice strong, .professional-use-notice.consumer-label-notice a { color: #00616f; }
.cart-promotion-note { color: #9f0d25; font-weight: 700; }
