:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #111111;
  --muted: #5c5c5c;
  --border: #e8e8e8;
  --primary: #c41e3a;
  --primary-hover: #9e1830;
  --accent: #c41e3a;
  --black: #0a0a0a;
  --radius-card: 8px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
  --font-heading: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --maxw: 1400px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-heading);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

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

a:hover {
  text-decoration: underline;
}

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

.container {
  width: min(100% - 2rem, var(--maxw));
  margin-inline: auto;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}

.logo {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.logo:hover {
  text-decoration: none;
  opacity: 0.95;
}

.logo-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: min(200px, 50vw);
  object-fit: contain;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.nav-center {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--primary);
  text-decoration: none;
  border-bottom-color: var(--primary);
}

.nav-link-contact {
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.4rem 0.85rem !important;
}

.nav-link-contact:hover,
.nav-link-contact.is-active {
  border-color: var(--primary);
  background: #fff5f6;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.35rem 0;
  cursor: pointer;
}

.nav-dropdown.is-active .nav-dropdown-toggle,
.nav-dropdown-toggle:hover,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.nav-caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.nav-dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 11rem;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 60;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.is-active {
  background: #fafafa;
  color: var(--primary);
  text-decoration: none;
}

.nav-dropdown-empty {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav {
  display: flex;
  gap: 1.25rem;
}

.nav a {
  font-weight: 500;
  color: var(--muted);
}

.nav a:hover,
.nav a.is-active {
  color: var(--primary);
  text-decoration: none;
}

.nav a.is-active {
  box-shadow: inset 0 -2px 0 var(--accent);
}

.site-main {
  flex: 1;
}

.hero-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: #1a1a1a;
  border-bottom: 1px solid var(--border);
}

.hero-slider-track {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 3 / 1;
  min-height: 180px;
  max-height: min(640px, 42vw);
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
  cursor: grab;
  user-select: none;
}

.hero-slider-track.is-dragging {
  cursor: grabbing;
  touch-action: none;
}

.hero-slider-strip {
  display: flex;
  height: 100%;
  will-change: transform;
  transition: transform 0.55s ease;
}

.hero-slider-strip.is-dragging {
  transition: none;
}

.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: 100%;
  overflow: hidden;
  background: #1a1a1a;
}

.hero-slide-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-slider-track {
    aspect-ratio: 3 / 1;
    min-height: 0;
    max-height: none;
    height: auto;
  }

  .hero-slide img {
    object-fit: contain;
    object-position: center;
  }
}

.hero-slide-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f3efe8 0%, #e8e0d4 100%);
  color: var(--muted);
  text-align: center;
  padding: 2rem;
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  gap: 0.5rem;
  transform: translateX(-50%);
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-slider-dot.is-active {
  background: #fff;
  transform: scale(1.1);
}

.section-actions {
  margin-top: 2rem;
  text-align: center;
}

.page-banner-lead {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.page-banner {
  background: #ffffff;
  color: var(--text);
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.page-banner-title {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
}

.section-title {
  margin: 0 0 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
}

.section-tight {
  padding: 1.25rem 0 1rem;
}

.section {
  padding: 2rem 0 3rem;
}

.empty-state {
  text-align: center;
  color: var(--muted);
  padding: 3rem 1rem;
}

.product-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 960px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.1rem;
  }
}

.product-grid--featured {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.product-grid--featured .product-card {
  flex: 0 1 calc(50% - 0.425rem);
  max-width: calc(50% - 0.425rem);
}

@media (min-width: 640px) {
  .product-grid--featured .product-card {
    flex: 0 1 calc(33.333% - 0.67rem);
    max-width: calc(33.333% - 0.67rem);
  }
}

@media (min-width: 960px) {
  .product-grid--featured .product-card {
    flex: 0 1 calc(25% - 0.825rem);
    max-width: calc(25% - 0.825rem);
  }
}

@media (min-width: 1200px) {
  .product-grid--featured {
    gap: 1.1rem;
  }

  .product-grid--featured .product-card {
    flex: 0 1 calc(20% - 0.88rem);
    max-width: calc(20% - 0.88rem);
  }
}

.product-card {
  margin: 0;
}

.product-card-link {
  display: block;
  background: var(--surface);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  color: inherit;
  height: 100%;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.product-card-link:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(20, 24, 36, 0.12);
}

.product-card-image-wrap {
  aspect-ratio: 4 / 3;
  background: #eef0f4;
  position: relative;
  overflow: hidden;
}

.product-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-card-slider-track {
  width: 100%;
  height: 100%;
  overflow: hidden;
  touch-action: pan-y;
}

.product-card-slider-strip {
  display: flex;
  height: 100%;
  will-change: transform;
}

.product-card-slider-strip.is-dragging {
  cursor: grabbing;
}

.product-card-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.product-card-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text, #1a1d24);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(20, 24, 36, 0.18);
  opacity: 0;
  transition: opacity 0.15s ease, background 0.15s ease;
}

.product-card-nav:hover {
  background: #fff;
}

.product-card-slider:hover .product-card-nav,
.product-card-slider:focus-within .product-card-nav {
  opacity: 1;
}

.product-card-nav-prev {
  left: 0.4rem;
}

.product-card-nav-next {
  right: 0.4rem;
}

@media (hover: none) {
  .product-card-nav {
    opacity: 0.9;
  }
}

.product-card-body {
  padding: 0.75rem 0.85rem 0.9rem;
}

.product-card-brand {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.product-card-title {
  margin: 0.2rem 0 0.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
}

.product-card-meta {
  font-size: 0.85rem;
  color: var(--muted);
}

.product-card-price {
  margin: 0.65rem 0 0;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
}

.product-card-cta {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

.product-card.is-out-of-stock .product-card-image-wrap img,
.product-card.is-out-of-stock .product-card-slide img,
.pdp.is-out-of-stock .pdp-main img,
.pdp.is-out-of-stock .pdp-thumb img {
  filter: grayscale(100%);
  opacity: 0.72;
}

.product-card-badge {
  position: absolute;
  left: 0.5rem;
  bottom: 0.5rem;
  padding: 0.25rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(30, 34, 42, 0.82);
  border-radius: 4px;
}

.product-card.is-out-of-stock .product-card-link:hover {
  transform: none;
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.breadcrumb a {
  color: var(--muted);
}

.pdp {
  display: grid;
  gap: 1.25rem 1rem;
  padding-bottom: 2rem;
}

.pdp-gallery,
.pdp-buy,
.pdp-desc {
  min-width: 0;
}

.pdp-gallery {
  width: 100%;
}

@media (min-width: 900px) {
  .pdp {
    grid-template-columns: 45fr 20fr 35fr;
    align-items: start;
  }

  .pdp:not(:has(.pdp-desc)) {
    grid-template-columns: 45fr 55fr;
  }
}

.pdp-desc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 1.25rem 1.35rem;
  max-width: none;
}

.pdp-desc-title {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.pdp-desc-body {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.pdp-desc-scroll {
  position: relative;
  min-height: 0;
}

.pdp-desc.is-collapsed .pdp-desc-scroll {
  overflow: hidden;
}

.pdp-desc-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3.75rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--surface) 78%);
  pointer-events: none;
}

.pdp-desc-toggle {
  align-self: stretch;
  margin-top: 0.65rem;
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
  font-size: 0.84rem;
  text-align: center;
}

.pdp-desc .pdp-long {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
}

.pdp-desc .pdp-long p {
  margin: 0 0 0.95rem;
}

.pdp-desc .pdp-long p:last-child {
  margin-bottom: 0;
}

.pdp-desc .pdp-long .pdp-subhead {
  margin: 1.35rem 0 0.55rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}

.pdp-desc .pdp-long .pdp-subhead:first-child {
  margin-top: 0;
}

.pdp-desc .pdp-long .pdp-list {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.pdp-desc .pdp-long .pdp-list > li {
  position: relative;
  margin: 0 0 0.55rem;
  padding-left: 1.15rem;
}

.pdp-desc .pdp-long .pdp-list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--primary);
}

.pdp-desc .pdp-long .pdp-list > li.pdp-detail-row {
  display: grid;
  grid-template-columns: minmax(5.5rem, 7.25rem) 1fr;
  gap: 0.35rem 0.85rem;
  padding-left: 0;
  margin-bottom: 0.65rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}

.pdp-desc .pdp-long .pdp-list > li.pdp-detail-row::before {
  display: none;
}

.pdp-desc .pdp-long .pdp-list > li.pdp-detail-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.pdp-desc .pdp-long .pdp-detail-row {
  display: grid;
  grid-template-columns: minmax(5.5rem, 7.25rem) 1fr;
  gap: 0.35rem 0.85rem;
  align-items: baseline;
  margin-bottom: 0.65rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}

.pdp-desc .pdp-long .pdp-detail-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.pdp-desc .pdp-long .pdp-detail-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.pdp-desc .pdp-long .pdp-detail-value {
  color: var(--text);
}

.pdp-desc .pdp-long strong {
  font-weight: 700;
  color: var(--text);
}

@media (max-width: 520px) {
  .pdp-desc .pdp-long .pdp-detail-row,
  .pdp-desc .pdp-long .pdp-list > li.pdp-detail-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}

.pdp-benefits {
  padding: 0 0 1.5rem;
}

.pdp-benefits-list {
  list-style: none;
  margin: 0;
  padding: 1.1rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.pdp-benefits-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.pdp-benefits-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-benefits-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pdp-benefits-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.pdp-benefits-text strong {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

.pdp-benefits-text span {
  font-size: 0.82rem;
  line-height: 1.25;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .pdp-benefits-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .pdp-benefits-list {
    grid-template-columns: 1fr 1fr;
    padding: 1rem;
    gap: 1rem;
  }
}

@media (max-width: 420px) {
  .pdp-benefits-list {
    grid-template-columns: 1fr;
  }
}

.pdp-similar-section {
  padding-bottom: 2rem;
}

.pdp-similar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.pdp-similar-section .pdp-similar-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
}

.pdp-similar-section .pdp-similar-more {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  text-align: right;
}

.pdp-similar-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.pdp-similar-card {
  flex: 1 1 140px;
  max-width: 200px;
  min-width: 130px;
}

.pdp-similar-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  color: inherit;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pdp-similar-card-link:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(20, 24, 36, 0.12);
}

.pdp-similar-card-image {
  aspect-ratio: 2 / 1;
  background: #eef0f4;
  overflow: hidden;
}

.pdp-similar-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-similar-card.is-out-of-stock .pdp-similar-card-image img {
  filter: grayscale(100%);
  opacity: 0.72;
}

.pdp-similar-card-body {
  padding: 0.65rem 0.75rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.pdp-similar-card-model {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pdp-similar-card-price {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
}

.pdp-main-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
  max-width: none;
}

.pdp-main,
.pdp-main-trigger {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  max-width: none;
  aspect-ratio: 2 / 1;
  background: var(--surface);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: block;
  cursor: zoom-in;
}

.pdp-main-trigger {
  appearance: none;
  font: inherit;
  color: inherit;
}

.pdp-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

.pdp-thumbs-outer {
  position: relative;
  margin-top: 0.75rem;
}

.pdp-gallery-extras {
  margin-top: 0;
  display: grid;
  grid-template-columns: minmax(5.75rem, 0.34fr) minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  column-gap: 0.65rem;
  row-gap: 0.35rem;
  align-items: stretch;
}

.pdp-gallery-divider {
  grid-column: 1 / -1;
  grid-row: 1;
  border: 0;
  border-top: 1px solid var(--border);
  margin: 0;
  padding: 5px 0;
  height: 0;
}

.pdp-extra-title {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  text-align: center;
}

.pdp-extra-title-shipping {
  grid-column: 1;
  grid-row: 2;
}

.pdp-extra-title-gifts {
  grid-column: 2;
  grid-row: 2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pdp-extra-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--surface);
  padding: 0.6rem 0.65rem;
  min-height: 0;
}

.pdp-extra-shipping {
  grid-column: 1;
  grid-row: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  text-align: center;
}

.pdp-extra-gifts {
  grid-column: 2;
  grid-row: 3;
  display: flex;
  align-items: stretch;
}

.pdp-extra-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  color: #8a8a8a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-extra-icon-shipping {
  width: 1.75rem;
  height: 1.75rem;
}

.pdp-extra-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pdp-extra-text {
  font-size: 0.68rem;
  line-height: 1.3;
  color: var(--muted);
}

.pdp-extra-gifts-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem 0.55rem;
  align-items: center;
}

.pdp-extra-gift {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-align: center;
  font-size: 0.72rem;
  line-height: 1.25;
  color: var(--muted);
}

.pdp-extra-gift .pdp-extra-icon {
  width: 1.75rem;
  height: 1.75rem;
}

@media (max-width: 640px) {
  .pdp-gallery-extras {
    grid-template-columns: minmax(5.5rem, 0.42fr) minmax(0, 1fr);
    column-gap: 0.5rem;
  }

  .pdp-extra-title-gifts {
    white-space: normal;
  }

  .pdp-extra-gift {
    font-size: 0.68rem;
  }

  .pdp-extra-gift .pdp-extra-icon {
    width: 1.6rem;
    height: 1.6rem;
  }
}

@media (max-width: 420px) {
  .pdp-gallery-extras {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
  }

  .pdp-gallery-divider {
    grid-column: 1;
    grid-row: 1;
  }

  .pdp-extra-title-shipping,
  .pdp-extra-shipping {
    grid-column: 1;
  }

  .pdp-extra-title-shipping {
    grid-row: 2;
  }

  .pdp-extra-shipping {
    grid-row: 3;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    gap: 0.45rem;
  }

  .pdp-extra-title-gifts {
    grid-column: 1;
    grid-row: 4;
  }

  .pdp-extra-gifts {
    grid-column: 1;
    grid-row: 5;
  }

  .pdp-extra-text {
    font-size: 0.72rem;
  }
}

.pdp-thumbs-scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.pdp-thumbs-scroll .pdp-thumb-nav {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.pdp-thumbs-track {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  display: flex;
  justify-content: center;
}

.pdp-thumbs {
  display: flex;
  gap: 0.5rem;
  padding: 2px 0;
  flex-wrap: nowrap;
  width: max-content;
  margin-inline: auto;
  justify-content: center;
}

.pdp-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: var(--surface);
  cursor: pointer;
  overflow: hidden;
  width: 96px;
  height: auto;
  aspect-ratio: 2 / 1;
  flex-shrink: 0;
}

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pdp-thumb.is-active,
.pdp-thumb:hover {
  border-color: var(--accent);
}

.pdp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(8, 10, 14, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 4rem;
  touch-action: pan-x pan-y pinch-zoom;
}

.pdp-lightbox[hidden] {
  display: none !important;
}

body.pdp-lightbox-open {
  overflow: auto;
}

.pdp-lightbox-stage {
  width: min(92vw, 1100px);
  height: min(72vh, 680px);
  max-width: min(96vw, 1400px);
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: pan-x pan-y pinch-zoom;
  cursor: grab;
  user-select: none;
}

.pdp-lightbox-stage.is-dragging {
  cursor: grabbing;
  touch-action: none;
}

.pdp-lightbox-frame {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: var(--radius-card);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  will-change: transform;
}

.pdp-lightbox-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  user-select: none;
  display: block;
  background: #ffffff;
}

.pdp-lightbox-nav,
.pdp-lightbox-close {
  position: absolute;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.pdp-lightbox-nav:hover,
.pdp-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.pdp-lightbox-close {
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  font-size: 1.75rem;
  line-height: 1;
}

.pdp-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

.pdp-lightbox-nav[hidden] {
  display: none !important;
}

.pdp-lightbox-prev {
  left: 1rem;
}

.pdp-lightbox-next {
  right: 1rem;
}

.pdp-lightbox-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.pdp-nav {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-nav:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.pdp-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.pdp-buy {
  background: var(--surface);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  padding: 0.95rem 0.85rem;
  box-shadow: var(--shadow-card);
}

.pdp-buy-head {
  text-align: center;
  margin-bottom: 0.85rem;
}

.pdp-brand {
  margin: 0 0 0.3rem;
  font-size: clamp(0.82rem, 1.4vw, 0.98rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  line-height: 1.3;
}

.pdp-title {
  margin: 0;
  font-size: clamp(0.82rem, 1.4vw, 0.98rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--muted);
  text-transform: none;
}

.pdp-specs {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pdp-specs li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.45rem 0;
  font-size: 0.8rem;
}

.pdp-specs span {
  color: var(--muted);
}

.pdp-price {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
}

.pdp-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pdp-buy .btn {
  padding: 0.55rem 0.65rem;
  font-size: 0.8rem;
}

.pdp-buy .trust-strip {
  margin-top: 1rem;
  padding-top: 0.85rem;
  grid-template-columns: 1fr;
  gap: 0.4rem;
  font-size: 0.76rem;
  text-align: center;
}

.pdp-buy .trust-strip li {
  text-align: center;
}

.pdp-stock-msg {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-hover);
  color: #fff;
}

.btn-primary.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-secondary.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
}

.btn-ghost:hover {
  color: var(--primary);
}

.trust-strip {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  font-size: 0.78rem;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 520px) {
  .trust-strip {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .pdp-buy .trust-strip {
    text-align: center;
  }

  .pdp-buy .trust-strip li {
    text-align: center;
  }
}

.prose {
  max-width: 720px;
}

.prose h1 {
  margin-top: 0;
}

.prose .lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.prose .lead strong,
.prose .pdp-long strong {
  font-weight: 700;
  color: var(--text, #141824);
}

.pdp-long {
  margin-top: 0.75rem;
}

.site-footer {
  background: var(--black);
  color: #f0f0f0;
  border-top: 3px solid var(--primary);
  margin-top: auto;
  padding: 1.75rem 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
}

.footer-muted {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: #b8b8b8;
}

.contact-page {
  max-width: 960px;
}

.contact-header h1 {
  margin-top: 0;
}

.contact-header .lead {
  margin-top: 0.35rem;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 1.5rem;
  align-items: start;
}

.contact-card {
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.contact-card + .contact-card {
  margin-top: 1rem;
}

.contact-card h2 {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-value {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-link-btn {
  margin-top: 0.85rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.contact-map {
  min-height: 320px;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1da851;
  color: #fff;
}

.btn-whatsapp.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map {
    order: -1;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo contact"
      "menu menu";
  }

  .logo {
    grid-area: logo;
  }

  .nav-center {
    grid-area: menu;
    justify-self: stretch;
    justify-content: center;
    padding-top: 0.65rem;
    border-top: 1px solid var(--border);
  }

  .nav-right {
    grid-area: contact;
  }
}

/* AI ile dene */
.pdp-actions .try-on {
  width: 100%;
}

.try-on-trigger {
  width: 100%;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

.try-on-beta {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.08);
  vertical-align: middle;
}

body.try-on-open,
html.try-on-open {
  overflow: hidden !important;
}

.try-on-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.try-on-modal.is-open {
  display: flex !important;
}

.try-on-modal[hidden]:not(.is-open) {
  display: none !important;
}

.try-on-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 14, 0.72);
}

.try-on-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  max-height: min(92vh, 720px);
  max-height: min(92dvh, 720px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--surface);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 1.25rem 1.15rem 1.15rem;
  box-sizing: border-box;
}

.try-on-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.try-on-close:hover {
  color: var(--text);
  background: #f3f3f3;
}

.try-on-title {
  margin: 0 2rem 0.35rem 0;
  font-size: 1.1rem;
}

.try-on-lead {
  margin: 0 0 1rem;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.45;
}

.try-on-consent {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--muted);
  margin-bottom: 1rem;
}

.try-on-consent input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.try-on-scene-label {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.try-on-scene-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem;
  margin-bottom: 1rem;
}

@media (min-width: 480px) {
  .try-on-scene-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.try-on-scene-btn {
  position: relative;
  min-height: 4.6rem;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
  color: #fff;
  font-size: 0.76rem;
  font-family: inherit;
  cursor: pointer;
  touch-action: manipulation;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.try-on-scene-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
}

.try-on-scene-btn-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.35rem;
  z-index: 1;
  padding: 0 0.35rem;
  font-weight: 600;
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.65);
}

.try-on-scene-btn.is-selected {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(196, 30, 58, 0.35);
}

.try-on-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.try-on-actions .btn {
  flex: 1 1 auto;
}

.try-on-upload-label {
  cursor: pointer;
  margin: 0;
}

.try-on-camera-wrap {
  position: relative;
  width: 100%;
  max-height: 52vh;
  aspect-ratio: 3 / 4;
  background: #111;
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 0.65rem;
}

.try-on-video,
.try-on-preview,
.try-on-result {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.try-on-face-guide {
  position: absolute;
  inset: 12% 18%;
  border: 2px dashed rgba(255, 255, 255, 0.55);
  border-radius: 50% / 42%;
  pointer-events: none;
}

.try-on-hint,
.try-on-disclaimer {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

.try-on-preview-wrap,
.try-on-result-wrap {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #f3f3f3;
  margin-bottom: 0.75rem;
  border: 1px solid var(--border);
}

.try-on-loading {
  text-align: center;
  padding: 2rem 0.5rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.try-on-spinner {
  width: 2.25rem;
  height: 2.25rem;
  margin: 0 auto 0.85rem;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: try-on-spin 0.8s linear infinite;
}

@keyframes try-on-spin {
  to {
    transform: rotate(360deg);
  }
}

.try-on-error {
  margin: 0.85rem 0 0;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  background: #fff0f2;
  color: #9e1830;
  font-size: 0.82rem;
  line-height: 1.4;
}

.try-on-error[hidden] {
  display: none !important;
}

.try-on-privacy-note {
  margin: 0 0 0.85rem;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  background: #f4f6f8;
  color: var(--text-muted, #5a6470);
  font-size: 0.78rem;
  line-height: 1.45;
}

.try-on-dock {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 12050;
  display: flex;
  align-items: stretch;
  max-width: min(92vw, 320px);
  pointer-events: none;
}

.try-on-dock[hidden] {
  display: none !important;
}

.try-on-dock > * {
  pointer-events: auto;
}

.try-on-dock-tab {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  border: 0;
  border-radius: 10px 0 0 10px;
  padding: 0.85rem 0.55rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.12);
}

.try-on-dock-panel {
  width: min(78vw, 280px);
  background: #fff;
  border: 1px solid var(--border);
  border-right: 0;
  border-radius: 12px 0 0 12px;
  padding: 0.85rem;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.12);
  max-height: min(80vh, 520px);
  overflow: auto;
}

.try-on-dock-panel[hidden] {
  display: none !important;
}

.try-on-dock.is-open .try-on-dock-tab {
  border-radius: 0;
}

.try-on-dock-close {
  position: absolute;
  top: 0.35rem;
  right: 0.45rem;
  border: 0;
  background: transparent;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted, #666);
}

.try-on-dock-panel {
  position: relative;
}

.try-on-dock-title {
  margin: 0 1.5rem 0.65rem 0;
  font-size: 0.92rem;
  font-weight: 700;
}

.try-on-dock-image-link {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.65rem;
}

.try-on-dock-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.try-on-dock-download {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 0.65rem;
}

.try-on-dock-privacy {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--text-muted, #5a6470);
}

.try-on-dock-loading {
  text-align: center;
  padding: 1rem 0.25rem;
}

.try-on-dock-loading p {
  margin: 0;
  font-size: 0.82rem;
}

@media (max-width: 640px) {
  .try-on-dock {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    transform: none;
    max-width: none;
    flex-direction: column-reverse;
    align-items: flex-end;
  }

  .try-on-dock-tab {
    writing-mode: horizontal-tb;
    transform: none;
    border-radius: 10px 10px 0 0;
    width: auto;
    margin-right: 0.75rem;
  }

  .try-on-dock-panel {
    width: 100%;
    border-right: 1px solid var(--border);
    border-radius: 12px 12px 0 0;
    max-height: 55vh;
  }
}

/* Sipariş / Shopier checkout */
.checkout-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.checkout-summary,
.checkout-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.checkout-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0 0 1rem;
}

.checkout-summary img {
  border-radius: var(--radius-card);
  margin-bottom: 1rem;
  width: 100%;
  max-width: 320px;
  object-fit: contain;
  background: #f7f7f7;
}

.checkout-summary h1 {
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.checkout-price {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.checkout-note,
.checkout-legal {
  color: var(--muted);
  font-size: 0.92rem;
}

.checkout-form h2 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
}

.checkout-form label {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

.checkout-form input,
.checkout-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font: inherit;
}

.checkout-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.checkout-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.checkout-errors {
  background: #fff5f5;
  border: 1px solid #f5c2c2;
  color: #9e1830;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.checkout-errors p {
  margin: 0.25rem 0;
}

.checkout-redirect {
  text-align: center;
  padding: 2rem 0;
}

.checkout-result {
  max-width: 640px;
}

.checkout-success,
.checkout-fail {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.checkout-success h1,
.checkout-fail h1 {
  margin-top: 0;
}

@media (max-width: 768px) {
  .checkout-page {
    grid-template-columns: 1fr;
  }

  .checkout-grid-2 {
    grid-template-columns: 1fr;
  }
}
