/** Shopify CDN: Minification failed

Line 17:40 Unexpected "*"

**/
/* ═══════════════════════════════════
   Ochsenleder — Produkt Template CSS
   ═══════════════════════════════════ */

/* ── PAGE BACKGROUND ── */
body.page-product-ox,
body.page-product-ox .gradient,
body.page-product-ox #MainContent,
body.page-product-ox .main-content,
body.page-product-ox main,
body.page-product-ox .shopify-section,
body.page-product-ox .section-template--*,
body.page-product-ox [class*="section-template"] { background: #FAF7F3 !important; }

/* ── BREADCRUMB ── */
.ox-breadcrumb {
  max-width: 1280px; margin: 0 auto;
  padding: 1rem 2.5rem;
  font-size: 0.75rem; letter-spacing: 0.04em;
  color: var(--text-muted);
}
.ox-breadcrumb a { color: var(--text-muted); text-decoration: none; }
.ox-breadcrumb a:hover { color: var(--primary); }
.ox-breadcrumb .sep { margin: 0 0.4rem; }

/* ── PRODUCT WRAP ── */
.ox-product-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 860px) {
  .ox-product-wrap { grid-template-columns: 1fr; padding: 0 1.25rem 2rem; }
}

/* ── GALLERY ── */
.ox-gallery-main {
  width: 100%;
  overflow: hidden; background: var(--white);
  cursor: zoom-in; margin-bottom: 0.65rem;
}
.ox-gallery-main img {
  width: 100%; height: auto;
  object-fit: contain; display: block;
  transition: transform 0.5s ease;
}
.ox-gallery-main:hover img { transform: scale(1.05); }

.ox-gallery-thumbs-wrap {
  display: flex; align-items: center; gap: 0;
}
.ox-thumb-arrow {
  width: 32px; height: 32px;
  display: none; align-items: center; justify-content: center;
  background: none; border: 1px solid var(--border);
  font-size: 1rem; color: var(--primary);
  cursor: pointer; flex-shrink: 0;
  transition: background 0.2s;
}
.ox-thumb-arrow:hover { background: var(--bg-alt); }
.ox-gallery-thumbs {
  display: flex; gap: 0.5rem;
  overflow: hidden; flex: 1;
}
.ox-thumb {
  width: calc(20% - 0.4rem); flex-shrink: 0;
  aspect-ratio: 1 / 1; overflow: hidden;
  cursor: pointer; opacity: 0.5;
  border: 2px solid transparent;
  transition: opacity 0.25s, border-color 0.25s;
}
.ox-thumb:hover { opacity: 0.8; }
.ox-thumb.active { opacity: 1; border-color: var(--brass); }
.ox-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── PRODUCT INFO ── */
.ox-product-info { padding-top: 0.5rem; }
.ox-product-eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 0.5rem;
}
.ox-product-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300; color: var(--primary);
  line-height: 1.15; margin-bottom: 0.35rem;
}
.ox-product-sub {
  font-family: var(--ff-sans);
  font-size: 0.82rem; color: var(--text-muted);
  letter-spacing: 0.03em; margin-bottom: 1.5rem;
}
.ox-product-price {
  font-family: var(--ff-display);
  font-size: 1.75rem; font-weight: 400;
  color: var(--primary); margin-bottom: 0.15rem;
}
.ox-product-price-note {
  font-family: var(--ff-sans);
  font-size: 0.78rem; color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ── COLOR SWATCHES ── */
.ox-field-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 0.35rem; }
.ox-swatch-name { font-size: 0.82rem; color: var(--text-muted); font-style: italic; }
.ox-swatches { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0.15rem 0; }
.ox-swatch {
  width: 30px; height: 30px;
  border: 2px solid transparent;
  outline: 2px solid transparent;
  cursor: pointer; padding: 0;
  transition: outline-color 0.15s, border-color 0.15s;
}
.ox-swatch:hover { outline-color: var(--brass); outline-offset: 2px; }
.ox-swatch.active { border-color: #fff; outline-color: var(--primary); outline-offset: 2px; }

/* ── FORM FIELDS ── */
.ox-field { margin-bottom: 1.25rem; }
.ox-field-label {
  font-family: var(--ff-sans);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--primary);
}
.ox-field-row {
  display: flex; align-items: stretch; height: 3rem;
}
.ox-field-row input[type="number"],
.ox-field-row input[type="text"] {
  flex: 1; padding: 0 1rem;
  border: 1px solid var(--border);
  font-family: var(--ff-sans);
  font-size: 0.92rem; color: var(--text);
  background: #fff;
  box-sizing: border-box;
  height: 100%;
  -moz-appearance: textfield;
}
.ox-field-row input::-webkit-outer-spin-button,
.ox-field-row input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.ox-field-row input:focus { outline: none; border-color: var(--brass); }
.ox-field-btn {
  background: none;
  border: 1px solid var(--border); border-left: none;
  font-family: var(--ff-sans);
  font-size: 0.73rem; color: var(--brass);
  width: 148px; cursor: pointer;
  white-space: nowrap; letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.ox-field-btn:hover {
  background: var(--brass); color: #fff; border-color: var(--brass);
}
.ox-field-note {
  font-size: 0.75rem; color: var(--text-muted); margin-top: 0.35rem;
}
.ox-required-star {
  color: #c0392b; font-weight: 700; margin-left: 2px; font-size: 1em;
}
.ox-pflichtfeld-note {
  font-size: 0.75rem; color: var(--text-muted);
  margin-top: 0.75rem; line-height: 1.5; text-align: center;
}

/* Roter Rand nach Interaktion ohne gültigen Wert */
#oxLaenge:user-invalid,
#oxLaenge.ox-touched:invalid {
  border-color: #c0392b;
  background: #fff8f8;
}
#oxMessenConfirm:user-invalid,
#oxMessenConfirm.ox-touched:invalid {
  outline: 2px solid #c0392b;
  outline-offset: 2px;
}

.ox-messen-confirm {
  display: flex; align-items: flex-start; gap: 0.5rem;
  margin-top: 0.75rem; cursor: pointer;
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.5;
}
.ox-messen-confirm input[type="checkbox"] {
  margin-top: 0.15rem; flex-shrink: 0;
  width: 16px; height: 16px; accent-color: var(--brass); cursor: pointer;
}

/* Checkbox row — gleicher Look wie Input-Zeile */
.ox-field-checkbox-inner {
  flex: 1; display: flex; align-items: center; gap: 0.75rem;
  padding: 0 1rem;
  border: 1px solid var(--border);
  background: #fff;
  box-sizing: border-box;
  height: 100%;
}
.ox-field-checkbox-inner input[type="checkbox"] {
  width: 1.1rem; height: 1.1rem;
  accent-color: var(--brass); cursor: pointer; flex-shrink: 0;
}
.ox-field-checkbox-inner label {
  font-size: 0.92rem; color: var(--text); cursor: pointer;
}

/* ── ADD TO CART ── */
.ox-btn-cart {
  width: 100%;
  background: var(--primary); color: var(--primary-fg);
  border: none; padding: 1.1rem 2rem;
  font-family: var(--ff-sans);
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s;
  margin-top: 0.5rem;
}
.ox-btn-cart:hover { background: #1a0e07; }

/* ── DIVIDER ── */
.ox-divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── ACCORDIONS ── */
.ox-accordion-section {
  max-width: 1400px; margin: 0 auto; padding: 2rem 2.5rem 0;
}
.ox-accordion-header-row { padding: 2.5rem 0 1.5rem; }
.ox-accordion-header-row h2 {
  font-family: var(--ff-display);
  font-size: 1.85rem; font-weight: 400; color: var(--primary);
}
.ox-accordion-item { border-top: 1px solid var(--border); }
.ox-accordion-item:last-child {
  border-bottom: 1px solid var(--border); margin-bottom: 3.5rem;
}
.ox-accordion-trigger {
  width: 100%; background: none; border: none;
  padding: 1.25rem 0; display: flex;
  align-items: center; justify-content: space-between;
  cursor: pointer; text-align: left;
}
.ox-accordion-trigger-text {
  font-family: var(--ff-sans);
  font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--primary);
}
.ox-accordion-icon {
  width: 24px; height: 24px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1rem; color: var(--primary);
  transition: background 0.2s;
}
.ox-accordion-item.open .ox-accordion-icon {
  background: var(--primary); color: var(--primary-fg);
  border-color: var(--primary);
}
.ox-accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.ox-accordion-body-inner {
  padding: 0.6rem 0 2rem;
  font-size: 0.95rem; line-height: 1.9; color: var(--text);
}
.ox-accordion-item.open .ox-accordion-body { max-height: none; }
.ox-acc-text p + p { margin-top: 1rem; }
.ox-acc-text h1, .ox-acc-text h2, .ox-acc-text h3,
.ox-acc-text h4, .ox-acc-text h5, .ox-acc-text h6 {
  font-family: var(--ff-sans);
  font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--primary); margin: 1.5rem 0 0.6rem;
}

/* Specs table */
.ox-specs-table { width: 100%; border-collapse: collapse; margin-top: 0.75rem; font-size: 0.9rem; }
.ox-specs-table tr { border-bottom: 1px solid var(--border); }
.ox-specs-table td { padding: 0.7rem 0; }
.ox-specs-table td:first-child { color: var(--text-muted); width: 40%; }
.ox-table-link { color: var(--brass); text-decoration: none; border-bottom: 1px solid var(--brass); }
.ox-table-link:hover { color: var(--brass-deep); border-color: var(--brass-deep); }

/* ── ECHTES LEDER SECTION ── */
.ox-leder-section { background: var(--bg-alt); }
.ox-leder-inner {
  max-width: 900px; margin: 0 auto; padding: 4.5rem 2.5rem;
}
.ox-leder-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--brass);
  margin-bottom: 0.75rem; text-align: center;
}
.ox-leder-heading {
  font-family: var(--ff-display);
  font-size: 2.1rem; font-weight: 400;
  color: var(--primary); line-height: 1.2;
  margin-bottom: 2rem; text-align: center;
}
.ox-leder-text {
  column-count: 2; column-gap: 3.5rem;
  font-size: 0.95rem; line-height: 1.9; color: var(--text);
}
.ox-leder-text p + p { margin-top: 1rem; }
@media (max-width: 640px) { .ox-leder-text { column-count: 1; } }

/* ── UPSELL ── */
.ox-upsell-wrap {
  max-width: 1280px; margin: 0 auto; padding: 4.5rem 2.5rem;
}
.ox-upsell-heading {
  font-family: var(--ff-display);
  font-size: 1.85rem; font-weight: 400;
  color: var(--primary); margin-bottom: 2rem;
}
.ox-upsell-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
@media (max-width: 640px) { .ox-upsell-grid { grid-template-columns: 1fr; } }
.ox-upsell-card { text-decoration: none; color: inherit; display: block; }
.ox-upsell-img {
  width: 100%; aspect-ratio: 4/3;
  overflow: hidden; background: var(--bg); margin-bottom: 0.85rem;
}
.ox-upsell-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s ease; display: block;
}
.ox-upsell-card:hover .ox-upsell-img img { transform: scale(1.04); }
.ox-upsell-name {
  font-family: var(--ff-display);
  font-size: 1.2rem; color: var(--primary); margin-bottom: 0.2rem;
}
.ox-upsell-sub {
  font-size: 0.8rem; color: var(--text-muted);
  letter-spacing: 0.03em; margin-bottom: 0.4rem;
}
.ox-upsell-price { font-size: 1rem; color: var(--text); font-weight: 500; }

/* ── GALLERY ARROWS ── */
.ox-gallery-main { position: relative; }
.ox-gallery-arrow {
  display: none; position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.88); border: 1px solid var(--border);
  font-size: 1.6rem; color: var(--primary); cursor: pointer;
  transition: background 0.2s, color 0.2s; z-index: 2; line-height: 1;
}
.ox-gallery-arrow:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.ox-gallery-arrow--prev { left: 0.75rem; }
.ox-gallery-arrow--next { right: 0.75rem; }

/* ── LIGHTBOX ── */
.ox-lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.93); z-index: 9999;
  align-items: center; justify-content: center; cursor: zoom-out;
}
.ox-lightbox.open { display: flex; }
.ox-lightbox-img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain; display: block; cursor: default;
}
.ox-lightbox-close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  color: rgba(255,255,255,0.75); font-size: 2rem;
  background: none; border: none; cursor: pointer; font-weight: 300; z-index: 2;
}
.ox-lightbox-close:hover { color: #fff; }
.ox-lightbox-nav {
  display: flex; position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  font-size: 2rem; color: rgba(255,255,255,0.85); cursor: pointer;
  transition: background 0.2s, color 0.2s; z-index: 2; line-height: 1;
}
.ox-lightbox-nav:hover { background: rgba(255,255,255,0.25); color: #fff; }
.ox-lightbox-nav--prev { left: 1.5rem; }
.ox-lightbox-nav--next { right: 1.5rem; }

/* ── MESSEN POPUP ── */
.ox-messen-popup {
  display: none; position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,0.75);
  align-items: center; justify-content: center; padding: 1.5rem;
  overflow-y: auto;
}
.ox-messen-popup.open { display: flex; }
.ox-messen-popup__box {
  background: #fff; max-width: 780px; width: 100%;
  padding: 2.25rem 2.5rem 2rem; position: relative; margin: auto;
}
.ox-messen-popup__close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; font-size: 1.4rem;
  color: var(--text-muted); cursor: pointer;
}
.ox-messen-popup__eyebrow {
  font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brass); margin-bottom: 0.45rem;
}
.ox-messen-popup h3 {
  font-family: var(--ff-display);
  font-size: 1.75rem; font-weight: 400; color: var(--primary);
  margin-bottom: 0.5rem;
}
.ox-messen-popup__img { width: 100%; display: block; }
.ox-messen-steps {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.1rem 2.5rem; margin-top: 0.7rem;
}
@media (max-width: 640px) { .ox-messen-steps { grid-template-columns: 1fr; } }
.ox-messen-step { display: flex; gap: 0.9rem; align-items: flex-start; }
.ox-messen-step__num {
  font-family: var(--ff-display);
  font-size: 2.4rem; font-weight: 300; color: var(--brass);
  line-height: 1; flex-shrink: 0; min-width: 1.6rem;
}
.ox-messen-step__text { font-size: 0.92rem; line-height: 1.65; color: var(--text); }
.ox-messen-step__text b {
  display: block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 0.25rem;
}
.ox-messen-warn {
  margin-top: 1.1rem;
  border: 1.5px solid #c0392b; background: #fff8f7; border-radius: 3px;
  padding: 0.9rem 1.1rem; font-size: 0.92rem; line-height: 1.65; color: var(--text);
}
.ox-messen-warn__title {
  display: block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #c0392b; margin-bottom: 0.35rem;
}
.ox-messen-note {
  margin-top: 0.75rem; background: var(--bg);
  border-left: 3px solid var(--brass);
  padding: 0.875rem 1rem; font-size: 0.92rem;
  line-height: 1.65; color: var(--text);
}

/* ── INITIALEN POPUP ── */
.ox-initials-popup {
  display: none; position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,0.75);
  align-items: center; justify-content: center; padding: 1.5rem;
}
.ox-initials-popup.open { display: flex; }
.ox-initials-popup__box {
  background: #fff; max-width: 1100px; width: 100%;
  padding: 2.5rem; position: relative;
}
.ox-initials-popup__close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  background: none; border: none; font-size: 1.6rem;
  color: var(--text-muted); cursor: pointer;
}
.ox-initials-popup__eyebrow {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--brass); margin-bottom: 0.5rem;
}
.ox-initials-popup h3 {
  font-family: var(--ff-display);
  font-size: 1.8rem; font-weight: 400; color: var(--primary);
  margin-bottom: 0.6rem;
}
.ox-initials-popup__desc {
  font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.5rem;
}
.ox-initials-popup__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
.ox-initials-popup__img { width: 100%; aspect-ratio: 3/2; object-fit: cover; object-position: center 40%; display: block; }
.ox-schriftzug-img { width: 100%; max-width: 560px; margin: 0 auto; display: block; aspect-ratio: 16/7; object-fit: cover; object-position: 35% 55%; }
.ox-initials-popup__note { font-size: 0.8rem; color: var(--text-muted); margin-top: 1rem; font-style: italic; }
