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

:root {
  --black:  #0c0c0e;
  --dark-gray: #1e1e24;
  --gray-text: #6b6d7c;
  --light-gray: #f4f5f8;
  --border-color: #e2e4e9;
  --white:  #ffffff;
  --emerald: #00b67a;
  --emerald-light: #e6f8f2;
  --gold: #d4af37;
  --gold-gradient: linear-gradient(135deg, #b8860b 0%, #d4af37 50%, #ffd700 100%);
  --success: #00b67a;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

body.body-scroll-lock {
  overflow: hidden !important;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
button { cursor: pointer; color: inherit; }
img { display: block; max-width: 100%; height: auto; }

.header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  height: 100px;
  transition: all 0.3s ease;
}

.headerInner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.menuBtn {
  display: none;
  width: 44px; height: 44px;
  background: none; border: none;
  position: relative;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background .15s;
  align-items: center;
  justify-content: center;
}
.menuBtn:hover { background: var(--light-gray); }
.menuBtnLines { width: 22px; height: 14px; position: relative; }
.menuBtnLine {
  height: 2px; width: 22px;
  background: var(--black);
  border-radius: 2px;
  position: absolute; left: 0;
  top: 50%;
  margin-top: -1px;
  transform-origin: center center;
  transition: transform .28s cubic-bezier(.4,0,.2,1);
}
.menuBtnLine:nth-child(1) { transform: translateY(-4px); }
.menuBtnLine:nth-child(2) { transform: translateY(4px); }
.menuBtn.open .menuBtnLine:nth-child(1) { transform: translateY(0) rotate(45deg); }
.menuBtn.open .menuBtnLine:nth-child(2) { transform: translateY(0) rotate(-45deg); }

@media (max-width: 768px) {
  input, select, textarea,
  .formInput, .formSelect, .input {
    font-size: 16px !important;
  }
}

.headerLogo {
  display: flex;
  align-items: center;
}
.headerLogo img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
}

.desktopNav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navTab {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  opacity: 0.8;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  background: none;
  border: none;
}
.navTab:hover { opacity: 1; color: var(--black); }
.navTab.active { opacity: 1; color: var(--black); border-bottom-color: var(--black); }

.headerRight {
  display: flex;
  align-items: center;
  gap: 8px;
}
.headerIconLink {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #374151;
  border-radius: 50%;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  cursor: pointer;
  position: relative;
  text-decoration: none;
}
.headerIconLink:hover {
  background: #f1f5f9;
  color: var(--emerald);
  transform: translateY(-1px);
}
.headerIconLink svg {
  width: 22px;
  height: 22px;
  display: block;
}
.headerCartBadge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--emerald);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  padding: 1.5px 5px;
  border-radius: 10px;
  line-height: 1;
}
.userLoggedDot {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  background: var(--emerald);
  border-radius: 50%;
  border: 1.5px solid #fff;
  display: none;
}
.userLoggedDot.active {
  display: block;
}

.btnCtaHeader {
  font-family: var(--font-display);
  background: var(--black);
  color: var(--white);
  border: none;
  font-size: 13px;
  font-weight: 700;
  height: 42px;
  padding: 0 20px;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btnCtaHeader:hover {
  background: var(--emerald);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,96,57,0.15);
}

.mobileDrawer {
  position: fixed;
  top: 70px; left: 0; right: 0;
  bottom: 0;
  max-height: calc(100dvh - 70px);
  background: var(--white);
  z-index: 299;
  transform: translateY(-110%);
  visibility: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: transform .35s cubic-bezier(.4,0,.2,1), visibility .35s;
  box-shadow: var(--shadow-lg);
}
.mobileDrawer.open {
  transform: translateY(0);
  visibility: visible;
}
.mobileDrawerInner {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobileNavLink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  border-bottom: 1px solid var(--border-color);
  transition: color .15s;
}
.mobileNavLink:last-of-type { border-bottom: none; }
.mobileNavLink:hover, .mobileNavLink.active { color: var(--black); }
.mobileNavArrow { font-size: 14px; color: var(--gray-text); }
.mobileNavGroup { border-bottom:1px solid var(--border-color); }
.mobileNavGroup .mobileNavLink { width:100%; border:0; background:transparent; text-align:left; }
.mobileNavChevron { font-size:20px; line-height:1; color:var(--gray-text); transition:transform .22s ease; }
.mobileNavGroup.open .mobileNavChevron { transform:rotate(180deg); }
.mobileNavSubmenu { max-height:0; overflow:hidden; opacity:0; transition:max-height .25s ease,opacity .2s ease,padding .25s ease; }
.mobileNavGroup.open .mobileNavSubmenu { max-height:180px; opacity:1; padding-bottom:10px; }
.mobileNavSubLink { display:flex; align-items:center; justify-content:space-between; padding:12px 12px 12px 22px; border-radius:8px; color:var(--gray-text); font:650 16px var(--font-display); }
.mobileNavSubLink:hover,.mobileNavSubLink.active { color:var(--emerald); background:var(--emerald-light); }

.viewSection {
  display: none;
  animation: fadeIn 0.4s ease forwards;
  margin-bottom: 28px;
}
.viewSection.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.wrap { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.section { padding: 0px 0; }

.sectionHead {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 24px;
}
.sectionKicker {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--emerald);
  margin-bottom: 12px;
}
.sectionTitle {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.sectionSub {
  font-size: 15px;
  color: var(--gray-text);
}

.pageIntro {
  background: radial-gradient(circle at top right, rgba(0,96,57,0.03) 0%, rgba(255,255,255,0) 60%);
  padding: 0;
}
.pageIntroTop {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}
.pageIntroTitle {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.05;
}
.pageIntroTitleRow {
  display: flex;
  align-items: flex-end;
  gap: 26px;
  flex-wrap: wrap;
}
.pageIntroSub {
  font-size: 15px;
  color: var(--gray-text);
  margin: 0;
}
.pageIntroSubRow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 10px;
  width: fit-content;
  flex-wrap: wrap;
}
.pageIntroStats {
  display: flex;
  gap: 32px;
  flex-shrink: 0;
}
.piStat { text-align: right; }
.piStatNum {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
}
.piStatLabel {
  font-size: 11px;
  color: var(--gray-text);
  margin-top: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tpStars { color: #00b67a; letter-spacing: 1.5px; }

.filterBar {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 24px 0 0;
}
.filterBar::-webkit-scrollbar { display: none; }
.filterPill {
  white-space: nowrap;
  height: 42px;
  padding: 0 20px;
  border: 1px solid var(--border-color);
  background: var(--white);
  border-radius: 99px;
  font-size: 13px; font-weight: 600;
  color: var(--black);
  cursor: pointer;
  transition: all .2s ease;
  flex-shrink: 0;
}
.filterPill:hover { border-color: var(--black); }
.filterPill.active { background: var(--black); color: var(--white); border-color: var(--black); }

.watchGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.watchCard {
  background: var(--white);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.watchCard:hover {
  transform: translateY(-4px);
  border-color: rgba(12,12,14,0.22);
  box-shadow: var(--shadow-sm);
}
.watchCardImg {
  aspect-ratio: 3 / 3.15;
  overflow: hidden;
  position: relative;
  background: transparent;
  border-radius: var(--radius-md);
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.watchCardImg img {
  width: 82%;
  height: 100%;
  object-fit: contain;
  transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}
.watchCard:hover .watchCardImg img { transform: scale(1.06); }
.wcNav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.92); border: 1px solid rgba(15,23,42,0.10);
  color: #0f172a; display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transition: opacity .15s ease, background .15s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12); z-index: 3; padding: 0;
}
.wcNav svg { width: 16px; height: 16px; }
.wcNav.wcPrev { left: 8px; }
.wcNav.wcNext { right: 8px; }
.wcNav:hover { background: #fff; }
.watchCardImg:hover .wcNav { opacity: 1; }
.wcDots {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 3; pointer-events: none;
}
.wcDot { width: 6px; height: 6px; border-radius: 50%; background: rgba(15,23,42,0.22); transition: background .15s; }
.wcDot.active { background: rgba(15,23,42,0.75); }
.watchCardShipping {
  display: flex; align-items: center; gap: 6px;
  font-size: 11.5px; color: var(--emerald); font-weight: 600; margin-top: 6px;
}
.watchCardShipping svg { width: 13px; height: 13px; flex-shrink: 0; }
@media (hover: none) { .watchCardImg .wcNav { opacity: 1; } }

.watchStatus {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-display);
  font-size: 9px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  padding: 5px 10px; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  z-index: 4;
}
.watchStatus.available { background: var(--success); color: #fff; }
.watchStatus.sold      { background: #dc2626; color: #fff; }
.watchStatus.reserved  {
  background: var(--black);
  color: #fff;
  -webkit-text-fill-color: #fff;
  appearance: none;
  -webkit-appearance: none;
}
.statusImageOverlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: rgba(12, 12, 14, 0.12);
  border-radius: inherit;
}
.statusImageOverlay.sold {
  background: rgba(12, 12, 14, 0.22);
}
.watchCard.status-reserved .watchCardImg img,
.watchCard.status-sold .watchCardImg img {
  filter: saturate(.9);
}
.watchCard.status-sold .watchCardImg img {
  filter: saturate(.65) brightness(.9);
}
.watchCard.status-reserved .watchCardImg,
.watchCard.status-sold .watchCardImg { border-radius:7px 7px 0 0; }
.detailsImageWrap .statusImageOverlay { border-radius:var(--radius-md); }

.watchCardBody {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 12px 18px;
}
.watchCardBrand {
  font-family: var(--font-display);
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--emerald); margin-bottom: 4px;
}
.watchCardModel {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 800;
  letter-spacing: -.02em; line-height: 1.2;
}
.watchCardRef   { font-size: 12.5px; color: var(--gray-text); margin-top: 3px; }
.watchCardFooter {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--light-gray);
}
.watchCardPrice {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1;
  white-space: nowrap;
}
.watchCardActions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.watchSeeAllCard {
  width: fit-content;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--black);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0 0 7px;
  margin: 0;
  cursor: pointer;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.watchSeeAllCard:hover {
  color: var(--emerald);
  transform: translateX(2px);
  box-shadow: none;
}
.watchSeeAllIcon {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 0;
  display: grid;
  place-items: center;
  margin-bottom: 0;
  flex-shrink: 0;
}
.watchSeeAllTitle {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0;
  white-space: nowrap;
}
.watchSeeAllText {
  display: none;
}
@media (max-width: 720px) {
  .pageIntroTitleRow {
    align-items: flex-start;
    gap: 12px;
  }
  .watchSeeAllCard {
    width: fit-content;
    justify-content: center;
  }
}
.homeProductsSection {
  padding-top: 20px;
  padding-bottom: 34px;
}
.productToolbar {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}
#filterBarBrand {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
  overflow: visible;
  flex-wrap: wrap;
}
.productSearchBox {
  position: relative;
}
.productSearchBox svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  color: var(--gray-text);
  pointer-events: none;
}
.productSearchBox input {
  padding-left: 38px;
}
@media (max-width: 720px) {
  .productToolbar { grid-template-columns: 1fr; }
}
.watchCardBtn {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1px solid var(--success);
  background: var(--success);
  display: grid; place-items: center;
  color: var(--white);
  transition: all .2s ease;
  flex-shrink: 0;
}
.watchCardBtn:hover {
  background: #1da851; border-color: #1da851;
  transform: scale(1.05);
}
.watchCardBtn svg { width: 16px; height: 16px; fill: currentColor; }

.reviewsSection {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  margin-bottom: 60px;
}
.reviewsHead {
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; margin-bottom: 40px; flex-wrap: wrap;
}
.reviewsScoreBlock { display: flex; align-items: center; gap: 14px; }
.reviewsScoreStars { color: #00b67a; font-size: 24px; letter-spacing: 2px; }
.reviewsScoreText  { font-size: 13.5px; color: var(--black); line-height: 1.4; }

.reviewsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.reviewCard {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all .2s ease;
}
.reviewCard:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.reviewStars {
  display: inline-flex;
  background: #00b67a;
  padding: 3px 6px;
  border-radius: 4px;
  color: #fff;
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.chronoScoreStars { color: #bd9a5f; font-size: 24px; letter-spacing: 2px; }
.chronoReviewStars {
  display: inline-flex;
  background: #bd9a5f;
  padding: 3px 6px;
  border-radius: 4px;
  color: #fff;
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.reviewTitle {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  margin-bottom: 8px;
}
.reviewText {
  font-size: 13.5px;
  color: var(--gray-text);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.reviewMeta {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--light-gray);
}
.reviewAvatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--emerald); color: var(--white);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 800;
  flex-shrink: 0;
}
.reviewAuthor { font-weight: 700; }
.reviewVerified {
  display: inline-flex; align-items: center; gap: 3px;
  margin-left: auto;
  font-weight: 700;
  color: #00b67a;
}
.reviewVerified svg { width: 12px; height: 12px; }

.reviewsFootCta a {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--black);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  transition: all .2s ease;
  margin-top: 30px;
}
.reviewsFootCta a:hover { background: var(--black); color: var(--white); }

.trustBar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-bottom: 40px;
}
.trustItem {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
}
.trustItem:hover {
  border-color: var(--black);
  box-shadow: var(--shadow-sm);
}
.trustIcon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
  background: var(--emerald-light);
  color: var(--emerald);
}
.trustIcon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }
.trustTitle { font-family: var(--font-display); font-size: 14px; font-weight: 800; }
.trustSub   { font-size: 12.5px; color: var(--gray-text); margin-top: 4px; }

.wizardCard {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.wizardHeader {
  background: var(--light-gray);
  padding: 30px 40px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wizardTitle { font-family: var(--font-display); font-size: 20px; font-weight: 800; }
.wizardStepsBadge {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  background: var(--emerald-light);
  color: var(--emerald);
  padding: 4px 10px;
  border-radius: 99px;
}

.wizardProgress {
  height: 4px;
  background: var(--border-color);
  width: 100%;
}
.wizardProgressBar {
  height: 100%;
  background: var(--gold-gradient);
  width: 25%;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.wizardBody { padding: 40px; }

.wizardStep { display: none; }
.wizardStep.active { display: block; animation: fadeIn 0.3s ease; }

.formGroup { margin-bottom: 24px; }
.formGroup:last-of-type { margin-bottom: 0; }
.formLabel {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}
.formSelect, .formInput, .formTextarea {
  width: 100%;
  height: 38px;
  padding: 0 12px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 13.5px;
  color: var(--black);
  outline: none;
  transition: all 0.2s ease;
}
.formSelect {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f2937' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding: 0 28px 0 12px;
  text-align: center;
  text-align-last: center;
}
.formSelect:focus, .formInput:focus, .formTextarea:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(0,96,57,0.08);
}
.formSelect:disabled {
  background: var(--light-gray);
  cursor: not-allowed;
  opacity: 0.6;
}
.formTextarea {
  height: 100px;
  padding: 12px 16px;
  resize: vertical;
}

.condGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.condCard {
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.condCard:hover { border-color: var(--black); }
.condCard.active {
  border-color: var(--emerald);
  background: var(--emerald-light);
}
.condName { font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.condDesc { font-size: 12px; color: var(--gray-text); margin-top: 2px; }

.aptTimeSlotBtn {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  border: 1.5px solid var(--border-color);
  background: #fff;
  color: var(--black);
  cursor: pointer;
  transition: all 0.2s ease;
}
.aptTimeSlotBtn:hover:not(:disabled) {
  border-color: var(--black);
}
.aptTimeSlotBtn.selected {
  background: var(--black) !important;
  color: var(--white) !important;
  border-color: var(--black) !important;
}
.aptTimeSlotBtn:disabled {
  background: #f1f5f9 !important;
  border-color: #e2e8f0 !important;
  color: #94a3b8 !important;
  cursor: not-allowed !important;
}

.wizardFoot {
  padding: 0 40px 40px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.btnWizard {
  font-family: var(--font-display);
  font-weight: 700;
  height: 42px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.btnWizardBack {
  background: var(--light-gray);
  color: var(--black);
  border: none;
}
.btnWizardBack:hover { background: var(--border-color); }
.btnWizardNext, .btnWizardSubmit {
  background: var(--black);
  color: var(--white);
  border: none;
  margin-left: auto;
}
.btnWizardNext:hover, .btnWizardSubmit:hover { background: var(--emerald); }

.wizardSuccess {
  text-align: center;
  padding: 40px 20px;
}
.successIcon {
  width: 64px; height: 64px;
  background: var(--emerald-light);
  color: var(--emerald);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 24px;
}
.successIcon svg { width: 32px; height: 32px; stroke: currentColor; fill: none; }
.successTitle { font-family: var(--font-display); font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.successText { color: var(--gray-text); max-width: 420px; margin: 0 auto 24px; }

.chartsLayout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 30px;
  align-items: start;
}

.chartsFilterCard {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.chartContainerCard {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.chartGridStats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}
.chartStatBox {
  background: var(--light-gray);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
}
.chartStatLabel { font-size: 11px; font-weight: 600; text-transform: uppercase; color: var(--gray-text); letter-spacing: 0.05em; }
.chartStatVal   { font-family: var(--font-display); font-size: 20px; font-weight: 800; margin-top: 4px; }

.chartSvgArea {
  position: relative;
  width: 100%;
  height: 320px;
  margin-top: 20px;
}
.chartSvg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.pdpMarketChartCard {
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 18px 16px 8px;
  background: var(--white);
}
.pdpMarketChartCard .chartSvgArea { margin-top: 0; }

@media (max-width: 768px) {
  .chartSvgArea { height: 210px; margin-top: 14px; touch-action: none; }
}
.chartTooltip {
  position: absolute;
  background: var(--black); color: var(--white);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 12px; pointer-events: none;
  z-index: 10;
  box-shadow: var(--shadow-md);
  display: none;
  white-space: nowrap;
  width: max-content;
}
.timeframeBtn {
  background: var(--light-gray);
  border: 1px solid var(--border-color);
  color: var(--black);
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}
.timeframeBtn:hover, .timeframeBtn.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.aboutGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.aboutImage {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contactGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contactInfoCard {
  background: var(--light-gray);
  border-radius: var(--radius-md);
  padding: 40px;
}
.contactInfoItem {
  margin-bottom: 24px;
}
.contactInfoItem:last-child { margin-bottom: 0; }
.contactInfoLabel { font-family: var(--font-display); font-weight: 700; font-size: 12px; text-transform: uppercase; color: var(--emerald); letter-spacing: 0.05em; margin-bottom: 6px; }
.contactInfoValue { font-size: 14.5px; }
.withdrawalFormGrid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.footer {
  background: #050505;
  color: var(--white);
  padding: 0 0 26px;
  border-top: 1px solid #1f1f23;
}
.footerLegacy { display:none; }
.footerTemplateCta {
  min-height:170px; padding:34px 38px; margin-bottom:38px;
  display:grid; grid-template-columns:minmax(330px,1fr) auto; align-items:center; gap:24px; padding-right:292px;
  position:relative; overflow:hidden;
  background:#050606;
  border:1px solid rgba(255,255,255,.09); border-radius:0 0 16px 16px;
}
.footerTemplateCta::after { content:""; position:absolute; inset:0; background:linear-gradient(90deg,rgba(5,6,6,.99) 0%,rgba(5,6,6,.96) 67%,rgba(5,6,6,.28) 100%); pointer-events:none; }
.footerTemplateCta > * { position:relative; z-index:2; }
.footerTemplateCta h2 { font:800 clamp(25px,2.2vw,30px) var(--font-display); margin-bottom:8px; white-space:nowrap; }
.footerTemplateCta p { color:#b8c1bd; font-size:13px; max-width:590px; }
.footerTemplateCtaActions { display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }
.footerTemplateCta .seoBtnSecondary { color:#fff; border-color:rgba(255,255,255,.68); }
.footerTemplateCta .seoBtn { min-height:42px; padding:0 15px; font-size:12px; }
.footerTemplateCta .seoBtn svg { width:15px; height:15px; margin-right:7px; flex:0 0 auto; }
.footerTemplateCta .footerConsultButton svg { color:var(--emerald); }
.footerTemplateCtaWatch { position:absolute; right:22px; top:0; z-index:2; width:250px; height:100%; object-fit:contain; object-position:center; filter:drop-shadow(0 18px 24px rgba(0,0,0,.4)); }
.footerTemplateGrid { display:grid; grid-template-columns:1.55fr repeat(5,1fr) 1.25fr; gap:28px; padding:0 12px 36px; }
.footerTemplateGrid h3 { font:800 12px var(--font-display); margin-bottom:14px; color:#fff; }
.footerTemplateGrid nav { display:grid; gap:8px; }
.footerTemplateGrid button,.footerTemplateGrid nav a,.footerTemplateBottom button,.footerTemplateBottom a { appearance:none; border:0; padding:0; background:none; color:#aeb4b1; font:500 11.5px var(--font-body); text-align:left; cursor:pointer; text-decoration:none; }
.footerTemplateGrid button:hover,.footerTemplateGrid nav a:hover,.footerTemplateBottom button:hover,.footerTemplateBottom a:hover { color:var(--emerald); }
.footerTemplateLogo { display:inline-flex; margin-bottom:12px; }
.footerTemplateLogo img { width:105px; filter:invert(1) grayscale(1) brightness(3); }
.footerBrandBlock p { color:#aeb4b1; font-size:11.5px; line-height:1.55; max-width:180px; }
.footerTemplateSocials { display:flex; gap:8px; margin-top:15px; }
.footerTemplateSocials a { width:28px; height:28px; border:1px solid rgba(255,255,255,.22); border-radius:50%; display:grid; place-items:center; color:#fff; }
.footerTemplateSocials svg { width:22px; height:22px; display:block; border-radius:5px; }
.footerSafety ul { list-style:none; display:grid; gap:7px; color:#b9c1bd; font-size:11.5px; }
.footerSafety li::before { content:'✓'; color:var(--emerald); margin-right:7px; }
.footerTemplateBottom { border-top:1px solid #262a28; padding:22px 12px 0; display:flex; align-items:center; justify-content:space-between; gap:20px; color:#737a77; font-size:10.5px; }
.footerTemplateBottom nav { display:flex; gap:18px; flex-wrap:wrap; }
@media (max-width:1100px) { .footerTemplateGrid{grid-template-columns:repeat(4,1fr)}.footerBrandBlock{grid-column:span 2}.footerTemplateCta{grid-template-columns:1fr;padding-right:260px}.footerTemplateCta h2{white-space:normal}.footerTemplateCtaActions{justify-content:flex-start}.footerTemplateCtaWatch{width:220px} }
@media (max-width:700px) { .footerTemplateGrid{grid-template-columns:1fr 1fr;gap:30px 20px}.footerBrandBlock{grid-column:1/-1}.footerTemplateCta{padding:30px 24px;grid-template-columns:1fr}.footerTemplateCtaWatch{right:-70px;top:auto;bottom:-45px;width:210px;height:210px;opacity:.35}.footerTemplateCtaActions{padding-right:40px}.footerTemplateBottom{align-items:flex-start;flex-direction:column}.footerTemplateBottom nav{gap:12px 16px} }
.footerGrid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr 1.2fr;
  gap: 40px; margin-bottom: 50px;
}

.footerDesc { font-size: 13.5px; color: #d1d5db; line-height: 1.7; max-width: 260px; }
.footerAddr { font-size: 12px; color: #a0a2b1; margin-top: 12px; }
.footerColTitle { font-family: var(--font-display); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 20px; color: var(--white); }
.footerLinks { display: grid; gap: 10px; }
.footerLinks a { font-size: 13.5px; color: #d1d5db; transition: color .2s; cursor: pointer; }
.footerLinks a:hover { color: var(--emerald); }
.footerPaymentIcons {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  margin-top: 10px;
}
.paymentIconWrap {
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
}
.paymentIconWrap:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.28);
}
.paymentIconWrap svg {
  height: 22px;
  width: auto;
  display: block;
  border-radius: 3px;
}
.footerSocials { display: flex; gap: 12px; margin-top: 12px; }
.footerWithdrawalBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 18px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  color: #d1d5db;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s, border-color .2s, background .2s, transform .2s;
}
.footerWithdrawalBtn:hover {
  color: var(--white);
  border-color: rgba(0,182,122,0.55);
  background: rgba(0,182,122,0.1);
  transform: translateY(-1px);
}
.footerBottom {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid #1f1f23;
  font-size: 12px; color: #a0a2b1;
  gap: 16px; flex-wrap: wrap;
}
.footerLegalLinks { display: flex; gap: 20px; }
.footerLegalLinks a { cursor: pointer; color: #a0a2b1; transition: color .2s; }
.footerLegalLinks a:hover { color: var(--white); }

.footerNewsletter {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
  padding: 28px 0; margin-top: 8px;
  border-top: 1px solid #1f1f23;
}
.footerNewsletterForm { display: flex; gap: 10px; flex: 1; max-width: 440px; min-width: 260px; }
.footerNewsletterForm input {
  flex: 1; min-width: 0; padding: 12px 16px; border-radius: 10px;
  border: 1px solid #2a2a30; background: #16161a; color: #fff;
  font-size: 14px; outline: none; transition: border-color .2s;
}
.footerNewsletterForm input:focus { border-color: var(--emerald); }
.footerNewsletterForm input::placeholder { color: #6b6d7c; }
.footerNewsletterForm button {
  padding: 12px 22px; border-radius: 10px; border: none;
  background: var(--emerald); color: #fff; font-weight: 700; font-size: 14px;
  cursor: pointer; white-space: nowrap; transition: filter .2s;
}
.footerNewsletterForm button:hover { filter: brightness(1.08); }
.footerNewsletterForm button:disabled { opacity: .6; cursor: default; }
.footerNewsletterMsg { font-size: 13px; margin-top: 10px; min-height: 18px; }
@media (max-width: 640px) {
  .footerNewsletterForm { max-width: none; width: 100%; }
}

.modalBackdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(12,12,14,0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modalBackdrop.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.96) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modalHead {
  padding: 24px 32px;
  border-bottom: 1px solid var(--border-color);
  display: flex; align-items: center; justify-content: space-between;
}
.modalTitle { font-family: var(--font-display); font-size: 18px; font-weight: 800; }
.modalClose {
  background: none; border: none;
  width: 40px; height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 30px; line-height: 1;
  padding: 0;
  color: var(--gray-text, #6b6d7c);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.modalClose:hover { background: var(--light-gray); color: #0b0f19; }
.modalBody {
  padding: 32px;
  overflow-y: auto;
  font-size: 14px;
  line-height: 1.7;
}
.modalBody h3 { font-family: var(--font-display); font-size: 16px; margin: 20px 0 8px; }
.modalBody p { margin-bottom: 12px; color: var(--gray-text); }
.modalBody ul { margin-bottom: 12px; padding-left: 20px; color: var(--gray-text); }

.cookieBanner {
  position: fixed;
  bottom: 24px; right: 24px;
  max-width: 400px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  z-index: 400;
  display: none;
  animation: fadeIn 0.4s ease forwards;
}
.cookieBanner.show { display: block; }
.cookieTitle { font-family: var(--font-display); font-size: 15px; font-weight: 800; margin-bottom: 8px; }
.cookieText { font-size: 12.5px; color: var(--gray-text); line-height: 1.6; margin-bottom: 16px; }
.cookieBtns { display: flex; gap: 8px; }
.btnCookie {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 700;
  height: 38px;
  font-size: 12px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.btnCookieAccept { background: var(--black); color: var(--white); border: none; }
.btnCookieAccept:hover { background: var(--emerald); }
.btnCookieDecline { background: var(--light-gray); color: var(--black); border: none; }
.btnCookieDecline:hover { background: var(--border-color); }

.imageUploadDropzone {
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  background: var(--light-gray);
  cursor: pointer;
  transition: all 0.2s ease;
}
.imageUploadDropzone:hover, .imageUploadDropzone.dragover {
  border-color: var(--emerald);
  background: var(--emerald-light);
}
.imageUploadDropzone.validationError {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,.1);
}
.formValidationMessage {
  margin-top: 8px;
  color: #b91c1c;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.4;
}
.formValidationMessage:empty { display: none; }

.wizardSummaryCard {
  max-width: 620px;
  margin: 0 auto 24px;
  padding: 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--light-gray);
  text-align: left;
}
.wizardSummaryTitle {
  margin-bottom: 14px;
  color: var(--black);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
}
.wizardSummaryGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
}
.wizardSummaryItem {
  min-width: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}
.wizardSummaryItem span,
.wizardSummaryItem strong { display: block; }
.wizardSummaryItem span {
  margin-bottom: 3px;
  color: var(--gray-text);
  font-size: 12px;
  font-weight: 650;
}
.wizardSummaryItem strong {
  color: var(--black);
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}
.wizardSummaryItemWide { grid-column: 1 / -1; }
.dropzoneText {
  font-size: 13.5px;
  color: var(--gray-text);
  font-weight: 500;
}
.imagePreviewGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
  gap: 10px;
}
.imagePreviewItem {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--light-gray);
}
.imagePreviewItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.imagePreviewItem .removeBtn {
  position: absolute;
  top: 3px; right: 3px;
  background: rgba(12, 12, 14, 0.7);
  color: #fff;
  border: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 0.1s;
}
.imagePreviewItem .removeBtn:hover {
  background: #dc2626;
}
.popularChartsGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 580px;
  margin: 0 auto;
}
.popularChartCard {
  border: 1.5px solid var(--border-color);
  padding: 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.popularChartCard:hover {
  border-color: var(--black);
  background: var(--light-gray);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.popularChartCard strong {
  font-family: var(--font-display);
  font-size: 13.5px;
  display: block;
  color: var(--black);
}
.popularChartCard span {
  font-size: 11.5px;
  color: var(--gray-text);
  display: block;
  margin-top: 2px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 1100px) {
  .watchGrid { grid-template-columns: repeat(3, 1fr); }
  .chartsLayout { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .menuBtn { display: flex; }
  .desktopNav { display: none; }
  .headerRight .btnCtaHeader { display: none; }
  .aboutGrid { grid-template-columns: 1fr; gap: 30px; }
  .contactGrid { grid-template-columns: 1fr; gap: 30px; }
  .footerGrid { grid-template-columns: 1fr 1fr; }
  .trustBar { grid-template-columns: 1fr 1fr; }
  .watchGrid { grid-template-columns: repeat(2, 1fr); }

  .header {
    height: 70px;
  }
  .headerInner {
    position:relative;
  }
  .headerLogo {
    position:absolute;
    top:50%;
    left:50%;
    z-index:2;
    transform:translate(-50%,-50%);
  }
  .headerLogo img {
    height: 72px;
    width: auto;
    max-width:108px;
    object-fit: contain;
  }

  .pageIntroTop {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .pageIntroTitleRow {
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .pageIntroTitle {
    font-size: 24px !important;
    white-space: nowrap;
  }

  .pageIntroStats {
    justify-content: space-between;
    gap: 16px;
    width: 100%;
  }
  .piStat {
    text-align: center;
    flex: 1;
  }
  .piStatNum {
    font-size: 20px;
  }
  .piStatLabel {
    font-size: 9px;
  }
}
@media (max-width: 600px) {
  .headerInner { padding: 0 16px; }
  .wrap { padding: 0 16px; }
  .reviewsGrid { grid-template-columns: 1fr; }
  .trustBar { grid-template-columns: 1fr; }
  .footerGrid { grid-template-columns: 1fr; }
  .withdrawalFormGrid2 { grid-template-columns: 1fr; }
  .wizardBody { padding: 24px; }
  .wizardFoot { padding: 0 24px 24px; }
  .condGrid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .watchGrid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .chartGridStats { grid-template-columns: 1fr; }

  .watchCardBody { padding: 0 11px 14px; }
  .watchCardBrand { font-size: 9px; letter-spacing: .1em; }
  .watchCardModel {
    font-size: 13.5px;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 34px;
  }
  .watchCardRef { font-size: 11px; margin-top: 2px; }
  .watchCardFooter { gap: 6px; margin-top: 8px; padding-top: 8px; }
  .watchCardPrice { font-size: 14px; }

  .pageIntroTitle { font-size: 21px !important; }
  .pageIntroStats { gap: 10px; }
  .piStatNum { font-size: 18px; }
}
@media (max-width: 400px) {
  .headerInner { padding: 0 12px; }
  .headerRight { gap: 2px; }
  .headerIconLink { width: 36px; height: 36px; }
  .headerLogo img { max-width: 88px; height: 56px; }
  .menuBtn { width: 38px; height: 38px; }
}

#view-charts .chartsLayout {
  grid-template-columns: 1fr;
}

.wizardGrid3Col, .chartsRow3Col {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 16px;
}
.wizardGrid2Col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.chartsRow4Col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .wizardGrid3Col, .chartsRow3Col, .wizardGrid2Col, .chartsRow4Col {
    grid-template-columns: 1fr !important;
  }
}

.cartBadge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--emerald);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--white);
}

.userLoggedDot { position: absolute; top: -2px; right: -2px; width: 9px; height: 9px; background: var(--emerald); border-radius: 50%; border: 1.5px solid var(--white); display: none; }
.userLoggedDot.visible { display: block; }

.authOverlay { position: fixed; inset: 0; background: rgba(12,12,14,0.55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 2000; display: none; align-items: center; justify-content: center; opacity: 0; pointer-events: none; }
.authOverlay.open { display: flex; opacity: 1; pointer-events: all; }
.authModal { background: var(--white); border-radius: 20px; padding: 40px 36px; width: 100%; max-width: 420px; box-shadow: 0 24px 80px rgba(0,0,0,0.18); transform: translateY(16px) scale(0.97); transition: transform 0.25s ease; position: relative; margin: 16px; }
.authOverlay.open .authModal { transform: translateY(0) scale(1); }
.authModalClose { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; background: var(--light-gray); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gray-text); cursor: pointer; transition: all 0.2s; }
.authModalClose:hover { background: var(--border-color); color: var(--black); }
.authModalLogoWrap { text-align: center; margin-bottom: 24px; }
.authModalLogoWrap img { height: 92px; width: auto; display: block; margin: 0 auto; }
.authTabs { display: flex; background: var(--light-gray); border-radius: 10px; padding: 4px; margin-bottom: 24px; }
.authTab { flex: 1; padding: 9px; border: none; background: transparent; border-radius: 8px; font-size: 14px; font-weight: 600; color: var(--gray-text); cursor: pointer; transition: all 0.2s; }
.authTab.active { background: var(--white); color: var(--black); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.authForm { display: none; }
.authForm.active { display: block; }
.authRow { display: flex; gap: 12px; }
.authRow .authField { flex: 1; min-width: 0; }
.authField { margin-bottom: 14px; }
.authField label { display: block; font-size: 11px; font-weight: 700; color: var(--gray-text); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.authField input { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border-color); border-radius: 10px; font-size: 14px; background: var(--white); color: var(--black); transition: border-color 0.2s; outline: none; }
.authField input:focus { border-color: var(--emerald); }
.authSubmitBtn { width: 100%; padding: 14px; background: var(--black); color: var(--white); border: none; border-radius: 12px; font-family: var(--font-display); font-size: 15px; font-weight: 700; cursor: pointer; margin-top: 6px; transition: all 0.2s; }
.authSubmitBtn:hover { background: var(--emerald); transform: translateY(-1px); }
.authError { color: #e53e3e; font-size: 13px; margin-top: 10px; text-align: center; min-height: 18px; }

.accountHeader { display: flex; align-items: center; gap: 20px; padding: 0 0 32px; border-bottom: 1.5px solid var(--border-color); margin-bottom: 36px; }
.accountAvatar { width: 68px; height: 68px; border-radius: 50%; background: linear-gradient(135deg, #0c0c0e 0%, #3a3a45 100%); display: flex; align-items: center; justify-content: center; color: var(--white); font-family: var(--font-display); font-size: 24px; font-weight: 800; flex-shrink: 0; }
.accountName { font-family: var(--font-display); font-size: 24px; font-weight: 800; letter-spacing: -0.02em; }
.accountEmail { font-size: 14px; color: var(--gray-text); margin-top: 2px; }
.accountLogoutBtn { margin-left: auto; padding: 10px 20px; background: var(--light-gray); color: var(--gray-text); border: none; border-radius: 10px; font-weight: 600; font-size: 14px; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.accountLogoutBtn:hover { background: #fee2e2; color: #e53e3e; }
.accountGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
@media (max-width: 720px) { .accountGrid { grid-template-columns: 1fr; } }
.accountCard { background: var(--white); border: 1.5px solid var(--border-color); border-radius: 16px; padding: 24px; }
.accountCardTitle { font-family: var(--font-display); font-size: 15px; font-weight: 800; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; color: var(--black); }
.accountCardTitle svg { color: var(--emerald); flex-shrink: 0; }
.accountProfileField { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.accountProfileField .fullWidth { grid-column: 1 / -1; }
@media (max-width: 640px) { .accountProfileField { grid-template-columns: 1fr; } .accountProfileField .fullWidth { grid-column: auto; } }
.accountProfileField .pfItem { display: flex; flex-direction: column; gap: 5px; }
.accountProfileField .pfItem label { font-size: 12px; font-weight: 600; color: var(--gray-text); }
.accountProfileField input { width: 100%; padding: 10px 14px; border: 1.5px solid var(--border-color); border-radius: 10px; font-size: 14px; outline: none; transition: border-color 0.2s; background: var(--white); color: var(--black); }
.accountProfileField input:focus { border-color: var(--emerald); }
.accountProfileField input:disabled { background: var(--light-gray); color: var(--gray-text); }
.accountSaveBtn { width: 100%; padding: 11px; background: var(--black); color: var(--white); border: none; border-radius: 10px; font-weight: 700; font-size: 14px; cursor: pointer; margin-top: 4px; transition: all 0.2s; }
.accountSaveBtn:hover { background: var(--emerald); }
.accountOrdersTable { width: 100%; border-collapse: collapse; font-size: 14px; }
.accountOrdersTable th { text-align: left; font-size: 11px; font-weight: 800; color: var(--gray-text); text-transform: uppercase; letter-spacing: 0.05em; padding: 0 12px 12px 0; border-bottom: 1px solid var(--border-color); }
.accountOrdersTable td { padding: 14px 12px 14px 0; border-bottom: 1px solid var(--light-gray); vertical-align: middle; }
.accountOrdersTable tr:last-child td { border-bottom: none; }
.orderStatusBadge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.orderStatusBadge.paid { background: #e6f8f2; color: var(--emerald); }
.orderStatusBadge.pending { background: #fef9e7; color: #c59d00; }
.orderStatusBadge.shipped { background: #ebf5fb; color: #2980b9; }
.accountEmptyOrders { text-align: center; padding: 40px 20px; color: var(--gray-text); }
.accountEmptyOrders svg { margin: 0 auto 14px; opacity: 0.25; }
.accountEmptyOrders p { font-size: 15px; font-weight: 500; }

.cartDrawerOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cartDrawerOverlay.open {
  opacity: 1;
  visibility: visible;
}
.cartDrawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.cartDrawerOverlay.open .cartDrawer {
  transform: translateX(0);
}
.cartDrawerHeader {
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cartDrawerTitle {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.cartDrawerClose {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-text);
  display: grid;
  place-items: center;
  padding: 4px;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}
.cartDrawerClose:hover {
  background: var(--light-gray);
  color: var(--black);
}
.cartDrawerBody {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cartEmptyState {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gray-text);
  text-align: center;
  padding: 40px 20px;
}
.cartEmptyTitle {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
}
.cartEmptyBtn {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.cartEmptyBtn:hover {
  transform: scale(1.03);
}
.cartItem {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-gray);
}
.cartItemImg {
  width: 70px;
  height: 90px;
  background: transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cartItemImg img {
  width: 85%;
  height: 85%;
  object-fit: contain;
}
.cartItemDetails {
  flex: 1;
}
.cartItemBrand {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--emerald);
  margin-bottom: 2px;
}
.cartItemModel {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}
.cartItemRef {
  font-size: 12px;
  color: var(--gray-text);
  margin-top: 2px;
}
.cartItemPrice {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  margin-top: 6px;
}
.cartItemRemove {
  background: none;
  border: none;
  cursor: pointer;
  color: #757575;
  display: grid;
  place-items: center;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.cartItemRemove:hover {
  background: #fde8e8;
  color: #e02424;
}
.cartDrawerFooter {
  padding: 24px;
  border-top: 1px solid var(--border-color);
  background: var(--white);
  flex-shrink: 0;
}
.cartSubtotalRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.cartSubtotalLabel {
  font-size: 14px;
  color: var(--gray-text);
  font-weight: 500;
}
.cartSubtotalValue {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
}
.cartCheckoutBtn {
  width: 100%;
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cartCheckoutBtn:hover {
  background: var(--emerald);
  transform: translateY(-2px);
}

.watchCardCartBtn {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background: var(--white);
  display: grid; place-items: center;
  color: var(--black);
  transition: all .2s ease;
  flex-shrink: 0;
  cursor: pointer;
}
.watchCardCartBtn:hover {
  border-color: var(--black);
  background: var(--light-gray);
  transform: scale(1.05);
}
.watchCardCartBtn svg { width: 16px; height: 16px; }

.checkoutGrid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
  margin-top: 32px;
}
@media (max-width: 991px) {
  .checkoutGrid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.checkoutSection {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 32px;
  margin-bottom: 24px;
}
.checkoutSectionTitle {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--light-gray);
}
.formRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 576px) {
  .formRow {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.paymentSelector {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.paymentOption {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
}
.paymentOption:hover {
  border-color: var(--black);
  background: var(--white);
}
.paymentOption.active {
  border-color: var(--black);
  background: var(--white);
}
.paymentOption input[type="radio"] {
  display: none;
}
.paymentOptionLabel {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
}
.paymentDetails {
  display: none;
  margin-top: 16px;
  padding: 16px;
  background: var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.5;
}
.paymentDetails.active {
  display: block;
}
.wireBankDetails {
  font-family: monospace;
  background: var(--white);
  padding: 12px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  margin-top: 8px;
  font-size: 12px;
  color: var(--black);
}
.checkoutSummary {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 32px;
  position: sticky;
  top: 124px;
}
.checkoutSummaryItem {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--light-gray);
}
.checkoutSummaryItem img {
  width: 50px;
  height: 65px;
  object-fit: contain;
  background: transparent;
  border-radius: var(--radius-sm);
}
.checkoutSummaryDetails {
  flex: 1;
}
.checkoutSummaryModel {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  line-height: 1.2;
}
.checkoutSummaryPrice {
  font-weight: 700;
  font-size: 13px;
  color: var(--gray-text);
  margin-top: 2px;
}
.checkoutRow {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}
.checkoutRow.total {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--black);
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  margin-top: 16px;
}

.simulatedPaymentOverlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  z-index: 2000;
}
.simulatedPaymentBox {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.detailsGrid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
  column-gap: 28px;
  row-gap: 0;
  align-items: start;
  margin-top: 0;
}
.productDetailsLoadingMedia,
.productDetailsLoadingCopy i {
  background: linear-gradient(100deg, #eef1ef 20%, #f8faf9 40%, #eef1ef 60%);
  background-size: 220% 100%;
  animation: productDetailsLoading 1.25s ease-in-out infinite;
}
.productDetailsLoadingMedia { min-height: 520px; border-radius: 16px; }
.productDetailsLoadingCopy { display: flex; flex-direction: column; gap: 16px; padding-top: 10px; }
.productDetailsLoadingCopy span { color: var(--gray-text); font-size: 14px; }
.productDetailsLoadingCopy i { display: block; height: 18px; border-radius: 999px; }
.productDetailsLoadingCopy i:nth-of-type(1) { width: 42%; height: 34px; }
.productDetailsLoadingCopy i:nth-of-type(2) { width: 68%; }
.productDetailsLoadingCopy i:nth-of-type(3) { width: 34%; height: 28px; margin-top: 14px; }
.productDetailsLoadingCopy i:nth-of-type(4) { width: 82%; }
@keyframes productDetailsLoading { to { background-position: -220% 0; } }
.pdpSection { margin-top: 56px; }
.pdpSectionTitle { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--black); margin-bottom: 6px; }
.pdpSectionSub { color: var(--gray-text); font-size: 14px; margin-bottom: 24px; }
.secGrid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.secCard {
  border: 1px solid var(--border-color); border-radius: 14px;
  padding: 26px 22px; text-align: center; background: var(--white);
}
.secCardIcon {
  width: 46px; height: 46px; margin: 0 auto 16px; color: var(--emerald);
  display: flex; align-items: center; justify-content: center;
}
.secCardIcon svg { width: 40px; height: 40px; }
.secCardTitle { font-size: 16px; font-weight: 800; color: var(--black); margin-bottom: 10px; }
.secCardText { font-size: 13.5px; line-height: 1.6; color: var(--gray-text); }
@media (max-width: 860px) { .secGrid { grid-template-columns: 1fr; } }
.faqList { max-width: 820px; margin: 0 auto; }
.faqItem {
  border: 1px solid var(--border-color); border-radius: 14px;
  margin-bottom: 12px; background: var(--white); overflow: hidden;
}
.faqItem[open] { border-color: rgba(0,182,122,0.35); }
.faqQ {
  list-style: none; cursor: pointer; padding: 20px 24px;
  font-size: 16px; font-weight: 700; color: var(--black);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faqQ::-webkit-details-marker { display: none; }
.faqChevron {
  flex-shrink: 0; width: 22px; height: 22px; color: var(--emerald);
  transition: transform .2s ease;
}
.faqItem[open] .faqChevron { transform: rotate(180deg); }
.faqA {
  padding: 0 24px 22px; font-size: 14.5px; line-height: 1.7; color: var(--gray-text);
}
.sellInfoGrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.sellInfoCard { border: 1px solid var(--border-color); border-radius: 16px; padding: 26px 26px; background: var(--white); }
.sellInfoCard .sic-icon { width: 44px; height: 44px; border-radius: 11px; background: rgba(0,182,122,0.10); color: var(--emerald); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.sellInfoCard .sic-icon svg { width: 23px; height: 23px; }
.sellInfoCard h3 { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--black); margin: 0 0 10px; }
.sellInfoCard p { font-size: 14.5px; line-height: 1.7; color: var(--gray-text); margin: 0; }
@media (max-width: 760px) { .sellInfoGrid { grid-template-columns: 1fr; } }
.wpediaTool {
  border: 1px solid var(--border-color); border-radius: 18px; overflow: visible;
  background: var(--white); margin-bottom: 56px;
}
.wpediaToolHead { border-radius: 18px 18px 0 0; }
.wpediaControls .custom-select-container.open { z-index: 30; }
.wpediaControls .custom-select-options {
  left: 0; transform: scaleY(.97); width: 100%; min-width: 100%; max-width: none;
  max-height: min(300px, 48vh); overflow-y: scroll; overscroll-behavior: contain;
  background: #fff; border-color: #cbd5e1; box-shadow: 0 16px 38px rgba(15,23,42,.18);
  scrollbar-width: auto; scrollbar-color: #94a3b8 #f1f5f9;
}
.wpediaControls .custom-select-container.open .custom-select-options { transform: scaleY(1); }
.wpediaControls .custom-select-options::-webkit-scrollbar { width: 10px; }
.wpediaControls .custom-select-options::-webkit-scrollbar-track { background: #f1f5f9; border-radius: 0 12px 12px 0; }
.wpediaControls .custom-select-options::-webkit-scrollbar-thumb { background: #94a3b8; border: 2px solid #f1f5f9; border-radius: 999px; }
.wpediaControls .custom-select-option { min-height: 42px; display: flex; align-items: center; background: #fff; line-height: 1.35; }
.wpediaControls .custom-select-option:hover,
.wpediaControls .custom-select-option.selected { background: #f1f5f9; }
.wpediaToolHead { padding: 26px 28px 20px; border-bottom: 1px solid var(--border-color); }
.wpediaToolHead h3 { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--black); margin: 0 0 6px; }
.wpediaToolHead p { font-size: 14px; color: var(--gray-text); margin: 0; }
.wpediaToolGrid { display: grid; grid-template-columns: 320px 1fr; gap: 0; }
.wpediaControls { padding: 26px 28px; border-right: 1px solid var(--border-color); }
.wpediaControls label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--gray-text); margin: 0 0 8px; }
.wpediaControls label:not(:first-child) { margin-top: 18px; }
.wpediaResult { padding: 22px 28px; }
.wpResultRow { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--border-color); font-size: 14px; }
.wpResultRow:last-child { border-bottom: none; }
.wpResultLabel { color: var(--gray-text); }
.wpResultValue { font-weight: 700; color: var(--black); text-align: right; }
.wpResultBig { font-size: 26px; font-weight: 800; color: var(--emerald); }
.wpediaArticles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.wpediaArticle { border: 1px solid var(--border-color); border-radius: 16px; overflow: hidden; background: var(--white); }
.wpediaArticle summary {
  list-style: none; cursor: pointer; padding: 22px 24px;
  display: flex; align-items: flex-start; gap: 14px;
}
.wpediaArticle summary::-webkit-details-marker { display: none; }
.wpediaArticleIcon { width: 40px; height: 40px; border-radius: 10px; background: rgba(0,182,122,0.10); color: var(--emerald); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wpediaArticleIcon svg { width: 22px; height: 22px; }
.wpediaArticleTitle { font-family: var(--font-display); font-size: 17px; font-weight: 800; color: var(--black); }
.wpediaArticleKicker { font-size: 12px; color: var(--gray-text); margin-top: 2px; }
.wpediaArticleBody { padding: 0 24px 24px 78px; font-size: 14px; line-height: 1.7; color: var(--gray-text); }
.wpediaArticleBody p { margin: 0 0 12px; }
@media (max-width: 860px) {
  .wpediaToolGrid { grid-template-columns: 1fr; }
  .wpediaControls { border-right: none; border-bottom: 1px solid var(--border-color); }
  .wpediaArticles { grid-template-columns: 1fr; }
  .wpediaArticleBody { padding-left: 24px; }
}
@media (max-width: 768px) {
  .detailsGrid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
  .detailsMediaColumn,
  .detailsMeta {
    min-width: 0;
    width: 100%;
  }
  .detailsImageWrap {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1;
  }
  .detailsImageWrap img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: none;
    object-fit: contain;
  }
  .detailsThumbs {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .detailsMeta {
    padding-top: 0;
  }
}
.detailsImageWrap {
  background: transparent;
  border-radius: var(--radius-md);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.detailsImageWrap {
  cursor: zoom-in;
}
.detailsImageWrap img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 640px;
  object-fit: contain;
  transition: transform 0.25s ease;
  will-change: transform;
}
@media (max-width: 768px) {
  .detailsImageWrap img {
    max-height: 420px;
  }
}
.pdpArrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: 1px solid var(--border-color);
  color: var(--black); cursor: pointer; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.18s ease, background 0.18s ease;
  box-shadow: 0 3px 12px rgba(0,0,0,0.12);
}
.detailsImageWrap:hover .pdpArrow { opacity: 1; }
.pdpArrow:hover { background: #fff; }
.pdpArrow svg { width: 20px; height: 20px; }
.pdpArrowLeft { left: 14px; }
.pdpArrowRight { right: 14px; }
@media (hover: none) { .pdpArrow { opacity: 1; } }
.detailsMeta {
  display: flex;
  flex-direction: column;
  padding-top: 0;
}
.detailsHeadingLine {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--black);
}
.detailsBrand {
  font: inherit;
  text-transform: none;
  color: var(--black);
  margin-bottom: 0;
}
.detailsTitle {
  font: inherit;
  color: var(--black);
  margin-bottom: 0;
}
.detailsSubtitle {
  font-size: 13px;
  color: var(--gray-text);
  margin-bottom: 12px;
}
.detailsPrice {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
  padding-bottom: 0;
  border-bottom: 0;
}
.detailsShippingNote {
  font-size: 12.5px;
  color: var(--gray-text);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}
.detailsActions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.btnDetailsCart {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 12px 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.2s;
}
.btnDetailsCart:hover {
  background: var(--emerald);
  transform: translateY(-2px);
}
.btnDetailsWa {
  background: var(--success);
  color: var(--white);
  border: none;
  padding: 12px 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.2s;
}
.btnDetailsWa:hover {
  background: #1da851;
  transform: translateY(-2px);
}
.btnDetailsAppointment {
  background: var(--white);
  color: var(--black);
  border: 1.5px solid var(--black);
  padding: 12px 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.btnDetailsAppointment:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}
.detailsSpecs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--border-color);
  padding-top: 12px;
}
.specRow {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--light-gray);
}
.specRow:last-child {
  border-bottom: none;
}
.specLabel {
  color: var(--gray-text);
  font-weight: 500;
}
.specValue {
  font-weight: 700;
  color: var(--black);
}
.badgeValue {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
}
.detailsMediaColumn {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.detailsThumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  min-width: 0;
  max-width: 100%;
}
.detailsThumbs::-webkit-scrollbar { height: 6px; }
.detailsThumbs::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 999px; }
.detailsThumb {
  flex: 0 0 74px;
  width: 74px;
  aspect-ratio: 1;
  scroll-snap-align: start;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: transparent;
  padding: 4px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color .2s, transform .2s;
}
.detailsThumb:hover,
.detailsThumb.active {
  border-color: var(--black);
  transform: translateY(-1px);
}
.detailsThumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.detailsDescription {
  width: 100%;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--gray-text);
  margin-bottom: 14px;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}
.detailsDescription strong {
  color: var(--black);
}
.detailsStockLine {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}
.detailsStockDot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--emerald);
  display: inline-block;
}
.detailsStockDot.reserved { background: var(--black); }
.pdpStatusLabel {
  top: 18px;
  left: 18px;
  font-size: 10px;
  padding: 7px 12px;
}
.detailsStockDot.sold { background: #dc2626; }
.estimateLayout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
#view-estimate {
  padding-bottom: 180px;
}
.estimateFormGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 720px) { .estimateFormGrid { grid-template-columns: 1fr; } }
.badgeValue.available { background: var(--emerald-light); color: var(--emerald); }
.badgeValue.sold { background: #fde8e8; color: #e02424; }
.badgeValue.reserved {
  background: #f1f1f1;
  color: var(--black);
  -webkit-text-fill-color: var(--black);
}

.knowledgeHeader {
  text-align: center;
  max-width: 800px;
  margin: 0px auto 48px auto;
}
.knowledgeGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .knowledgeGrid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.knowledgeCard {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.knowledgeCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 182, 122, 0.3);
}
.braceletVisual {
  --steel-line: rgba(51,65,85,0.52);
  --steel-shadow: rgba(15,23,42,0.18);
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 20px 0;
  min-height: 126px;
  padding: 22px 18px;
  border: 1px solid rgba(148,163,184,0.34);
  border-radius: var(--radius-sm);
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,0.82), rgba(255,255,255,0) 36%),
    linear-gradient(145deg, #f8fafc 0%, #edf0f4 45%, #dfe4ea 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.86), 0 14px 26px rgba(15,23,42,0.07);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
}
.braceletSide {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 2px;
  filter: drop-shadow(0 10px 12px rgba(15,23,42,0.11));
}
.braceletSideLeft { margin-right: -1px; }
.braceletSideRight { margin-left: -1px; }
.braceletEndLink,
.braceletFullLink,
.braceletHalfLink,
.braceletClasp {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex: 0 0 auto;
  height: 64px;
  padding: 5px;
  border: 1px solid var(--steel-line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0) 28%),
    linear-gradient(90deg, #798491 0%, #f5f7f9 22%, #aeb7c2 50%, #f9fafb 76%, #737f8e 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -9px 15px rgba(15,23,42,0.16),
    0 2px 2px rgba(255,255,255,0.48);
}
.braceletFullLink { width: 42px; border-radius: 6px; }
.braceletHalfLink {
  width: 27px;
  border-radius: 6px;
  border-color: rgba(0,182,122,0.42);
}
.braceletEndLink {
  width: 50px;
  border-radius: 12px 7px 7px 12px;
  transform: perspective(260px) rotateY(-8deg);
}
.braceletSideRight .braceletEndLink {
  border-radius: 7px 12px 12px 7px;
  transform: perspective(260px) rotateY(8deg);
}
.braceletEndLink::before,
.braceletEndLink::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6f7a88, #ffffff 48%, #596273);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 1px 2px rgba(15,23,42,0.18);
}
.braceletEndLink::before { top: -5px; }
.braceletEndLink::after { bottom: -5px; }
.braceletOuterSegment,
.braceletCenterSegment {
  position: relative;
  min-width: 0;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.82), inset 0 -1px 2px rgba(15,23,42,0.18);
}
.braceletOuterSegment {
  flex: 1 1 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.1) 0 1px, rgba(71,85,105,0.12) 1px 3px),
    linear-gradient(180deg, #f4f6f8 0%, #b7c0cb 44%, #707d8c 100%);
}
.braceletCenterSegment {
  flex: 1.08 1 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.16) 21%, rgba(255,255,255,0.72) 50%, rgba(71,85,105,0.28) 69%, rgba(255,255,255,0.9) 100%),
    linear-gradient(180deg, #ffffff 0%, #d3dbe3 44%, #8793a2 100%);
}
.braceletOuterSegment + .braceletCenterSegment,
.braceletCenterSegment + .braceletOuterSegment,
.braceletCenterSegment + .braceletCenterSegment {
  margin-left: 3px;
}
.braceletScrew {
  position: absolute;
  left: 50%;
  bottom: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(51,65,85,0.72);
  background: radial-gradient(circle at 35% 30%, #ffffff 0 18%, #c3cbd5 35%, #647184 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72), 0 1px 1px rgba(15,23,42,0.24);
  transform: translateX(-50%);
}
.braceletScrew::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 50%;
  height: 1px;
  background: rgba(30,41,59,0.78);
  transform: rotate(-12deg);
}
.braceletClasp {
  width: 94px;
  height: 74px;
  padding: 7px 9px;
  z-index: 2;
  border-radius: 13px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.05) 32%),
    linear-gradient(90deg, #6e7a88 0%, #f8fafc 28%, #cfd7df 50%, #ffffff 72%, #6f7a88 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    inset 0 -12px 20px rgba(15,23,42,0.18),
    0 11px 18px rgba(15,23,42,0.16);
}
.braceletClasp::before,
.braceletClasp::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  width: 9px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f8fafc, #8d98a7 58%, #5f6b7a);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}
.braceletClasp::before { left: -5px; }
.braceletClasp::after { right: -5px; }
.braceletClaspBlade {
  position: relative;
  width: 100%;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.88), rgba(255,255,255,0.12) 30%, rgba(255,255,255,0.78) 62%, rgba(71,85,105,0.25)),
    linear-gradient(180deg, #f8fafc 0%, #d4dce4 48%, #8894a3 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), inset 0 -2px 5px rgba(15,23,42,0.2);
}
.braceletClaspBlade::before {
  content: "";
  position: absolute;
  inset: 11px 18px auto;
  height: 15px;
  border-radius: 50% 50% 45% 45%;
  border-top: 3px solid rgba(72,84,98,0.72);
  opacity: .72;
}
.braceletClaspBlade::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 10px;
  height: 2px;
  border-radius: 999px;
  background: rgba(51,65,85,0.32);
  box-shadow: 0 -23px 0 rgba(255,255,255,0.36);
}
.braceletVisual.oyster .braceletEndLink,
.braceletVisual.oyster .braceletFullLink,
.braceletVisual.oyster .braceletHalfLink { gap: 3px; }
.braceletVisual.oyster .braceletCenterSegment {
  flex: 1.42 1 0;
  border-radius: 4px;
}
.braceletVisual.oyster .braceletEndLink .braceletCenterSegment { flex: 1.1 1 0; }
.braceletVisual.jubilee .braceletEndLink,
.braceletVisual.jubilee .braceletFullLink,
.braceletVisual.jubilee .braceletHalfLink {
  height: 66px;
  padding: 4px;
  border-radius: 10px;
}
.braceletVisual.jubilee .braceletEndLink { width: 48px; }
.braceletVisual.jubilee .braceletFullLink { width: 39px; }
.braceletVisual.jubilee .braceletHalfLink { width: 25px; }
.braceletVisual.jubilee .braceletOuterSegment {
  flex: 1.15 1 0;
  border-radius: 8px;
}
.braceletVisual.jubilee .braceletCenterSegment {
  flex: .72 1 0;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.94), rgba(255,255,255,0.18) 31%, rgba(255,255,255,0.86) 58%, rgba(71,85,105,0.26) 100%),
    linear-gradient(180deg, #ffffff 0%, #d8dee6 42%, #8d98a7 100%);
}
.braceletVisual.jubilee .braceletOuterSegment + .braceletCenterSegment,
.braceletVisual.jubilee .braceletCenterSegment + .braceletOuterSegment,
.braceletVisual.jubilee .braceletCenterSegment + .braceletCenterSegment { margin-left: 2px; }
.braceletVisual.jubilee .braceletScrew {
  width: 7px;
  height: 7px;
  bottom: 6px;
}
@media (max-width: 600px) {
  .braceletVisual {
    justify-content: flex-start;
    padding: 18px 12px;
  }
  .braceletFullLink { width: 38px; }
  .braceletHalfLink { width: 24px; }
  .braceletEndLink { width: 44px; }
  .braceletClasp { width: 82px; height: 68px; }
  .braceletVisual.jubilee .braceletFullLink { width: 35px; }
  .braceletVisual.jubilee .braceletHalfLink { width: 23px; }
  .braceletVisual.jubilee .braceletEndLink { width: 43px; }
}
.accordionGroup {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.knowledgeAccordion {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.knowledgeAccordion[open] {
  border-color: var(--emerald);
  box-shadow: var(--shadow-sm);
}
.knowledgeAccordion summary {
  padding: 18px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--black);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.knowledgeAccordion summary::-webkit-details-marker {
  display: none;
}
.knowledgeAccordion summary::after {
  content: '+';
  font-size: 20px;
  color: var(--gray-text);
  transition: transform 0.2s ease;
}
.knowledgeAccordion[open] summary::after {
  content: '−';
  color: var(--emerald);
}
.knowledgeAccordionContent {
  padding: 0 24px 24px 24px;
  border-top: 1px solid var(--light-gray);
  color: var(--gray-text);
  font-size: 14px;
  line-height: 1.6;
}
.knowledgeAccordionContent p {
  margin-bottom: 12px;
}
.knowledgeAccordionContent p:last-child {
  margin-bottom: 0;
}
.knowledgeAccordionContent ol, .knowledgeAccordionContent ul {
  margin-left: 20px;
  margin-bottom: 12px;
}
.knowledgeAccordionContent li {
  margin-bottom: 6px;
}

.bezelSelector {
  display: flex;
  gap: 6px;
  margin: 20px 0;
  background: var(--light-gray);
  padding: 6px;
  border-radius: var(--radius-md);
}
.bezelBtn {
  flex: 1;
  background: none;
  border: none;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: var(--gray-text);
  transition: all 0.2s ease;
  text-align: center;
}
.bezelBtn:hover {
  color: var(--black);
  background: rgba(0,0,0,0.03);
}
.bezelBtn.active {
  background: var(--white);
  color: var(--emerald);
  box-shadow: var(--shadow-sm);
}
.bezelInstructionPanel {
  display: none;
  padding: 20px;
  background: var(--light-gray);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--emerald);
  margin-top: 16px;
  animation: fadeIn 0.3s ease;
}
.bezelInstructionPanel.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.gmtTimeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}
.gmtStep {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.gmtStepNum {
  width: 32px;
  height: 32px;
  background: var(--emerald-light);
  color: var(--emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
  flex-shrink: 0;
  font-size: 14px;
}
.gmtStepContent {
  padding-top: 4px;
}
.gmtStepTitle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
  margin-bottom: 4px;
}
.gmtStepDesc {
  font-size: 13px;
  color: var(--gray-text);
}

.dbContainer {
  margin-top: 0px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 48px;
}
.dbSelectorRow {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.dbSelectorCol {
  flex: 1;
  min-width: 200px;
}
.dbSelectorCol label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--black);
  margin-bottom: 8px;
  display: block;
}
.dbBraceletsToggle {
  display: flex;
  gap: 8px;
  background: var(--light-gray);
  padding: 4px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  height: 42px;
  align-items: center;
}
.dbToggleBtn {
  flex: 1;
  height: 100%;
  background: none;
  border: none;
  border-radius: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--gray-text);
  transition: all 0.2s ease;
  cursor: pointer;
}
.dbToggleBtn.active {
  background: var(--white);
  color: var(--emerald);
  box-shadow: var(--shadow-sm);
}
.dbToggleBtn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.dbSpecTable {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  margin-bottom: 32px;
}
.dbSpecTable th, .dbSpecTable td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
}
.dbSpecTable th {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--black);
  background: var(--light-gray);
}
.dbSpecTable td {
  color: var(--gray-text);
}
.dbSpecTable tr:last-child td {
  border-bottom: none;
}
.dbSpecTable strong {
  color: var(--black);
}

.visualizerMap {
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.8), rgba(255,255,255,0) 42%),
    linear-gradient(145deg, #f8fafc 0%, #edf0f4 48%, #dfe4ea 100%);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  overflow-x: auto;
  border: 1px solid rgba(148,163,184,0.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.86);
}
.visualizerMap > div {
  width: max-content !important;
  min-width: max-content;
}
.braceletMapRow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  position: relative;
  min-width: max-content;
  padding: 10px 4px;
}
.mapSide {
  display: flex;
  align-items: center;
  gap: 2px;
  filter: drop-shadow(0 9px 10px rgba(15,23,42,0.1));
}
.mapSideLeft { margin-right: -1px; }
.mapSideRight { margin-left: -1px; }
.mapSegment {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mapLink {
  --map-link-width: 34px;
  width: var(--map-link-width);
  height: 52px;
  padding: 4px;
  border: 1px solid rgba(51,65,85,0.48);
  border-radius: 6px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0) 28%),
    linear-gradient(90deg, #7b8796 0%, #f5f7f9 22%, #aeb7c2 50%, #f9fafb 76%, #717d8b 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -7px 12px rgba(15,23,42,0.15),
    0 2px 2px rgba(255,255,255,0.5);
  color: transparent;
  overflow: visible;
}
.mapLink.oyster-link,
.mapLink.jubilee-link {
  width: var(--map-link-width);
}
.mapLink.end-link {
  width: 42px;
  height: 58px;
  border-radius: 11px 6px 6px 11px;
  transform: perspective(240px) rotateY(-7deg);
}
.mapSideRight .mapLink.end-link {
  border-radius: 6px 11px 11px 6px;
  transform: perspective(240px) rotateY(7deg);
}
.mapLink.end-link::before,
.mapLink.end-link::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6f7a88, #ffffff 48%, #596273);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72), 0 1px 2px rgba(15,23,42,0.18);
}
.mapLink.end-link::before { top: -5px; }
.mapLink.end-link::after { bottom: -5px; }
.mapLink.half-link {
  width: 23px;
}
.mapLink.screw-link {
  border-color: rgba(5,150,105,0.48);
}
.mapLink.screw-link::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(5,95,70,0.72);
  right: 5px;
  bottom: 6px;
  background: radial-gradient(circle at 35% 30%, #ffffff 0 18%, #c3cbd5 35%, #647184 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72), 0 1px 1px rgba(15,23,42,0.24);
}
.mapLink.screw-link::before {
  content: "";
  position: absolute;
  right: 7px;
  bottom: 9px;
  width: 4px;
  height: 1px;
  background: rgba(30,41,59,0.8);
  transform: rotate(-12deg);
  z-index: 2;
}
.mapLink .mapOuterSegment,
.mapLink .mapCenterSegment {
  position: relative;
  min-width: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.82), inset 0 -1px 2px rgba(15,23,42,0.18);
}
.mapLink .mapOuterSegment {
  flex: 1 1 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.1) 0 1px, rgba(71,85,105,0.12) 1px 3px),
    linear-gradient(180deg, #f4f6f8 0%, #b7c0cb 44%, #707d8c 100%);
}
.mapLink .mapCenterSegment {
  flex: 1.08 1 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.15) 21%, rgba(255,255,255,0.72) 50%, rgba(71,85,105,0.28) 69%, rgba(255,255,255,0.9) 100%),
    linear-gradient(180deg, #ffffff 0%, #d3dbe3 44%, #8793a2 100%);
}
.mapLink .mapOuterSegment + .mapCenterSegment,
.mapLink .mapCenterSegment + .mapOuterSegment,
.mapLink .mapCenterSegment + .mapCenterSegment {
  margin-left: 2px;
}
.mapLink.oyster-link .mapCenterSegment {
  flex: 1.38 1 0;
}
.mapLink.jubilee-link .mapOuterSegment {
  flex: 1.12 1 0;
  border-radius: 7px;
}
.mapLink.jubilee-link .mapCenterSegment {
  flex: .72 1 0;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.94), rgba(255,255,255,0.18) 31%, rgba(255,255,255,0.86) 58%, rgba(71,85,105,0.26) 100%),
    linear-gradient(180deg, #ffffff 0%, #d8dee6 42%, #8d98a7 100%);
}
.mapSideLabel {
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gray-text);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  white-space: nowrap;
}
.mapOysterflexStrap {
  height: 48px;
  background: linear-gradient(to bottom, #1e293b, #0f172a);
  border: 1px solid #020617;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.4);
}
.mapOysterflexStrap.left-strap {
  width: 150px;
  border-radius: 2px 6px 6px 2px;
}
.mapOysterflexStrap.right-strap {
  width: 110px;
  border-radius: 6px 2px 2px 6px;
}
.mapOysterflexStrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.oysterflexCushions {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  pointer-events: none;
  opacity: 0.15;
}
.oysterflexCushions span {
  width: 1px;
  height: 100%;
  background-color: var(--white);
}
.strapLabel {
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}
.mapLink.end-link.oysterflex-end {
  background: linear-gradient(to bottom, #475569, #1e293b);
  border-color: #0f172a;
}
.mapClasp {
  width: 92px;
  height: 68px;
  padding: 7px 9px;
  border: 1px solid rgba(51,65,85,0.56);
  border-radius: 13px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin: 0 4px;
  position: relative;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.05) 32%),
    linear-gradient(90deg, #6e7a88 0%, #f8fafc 28%, #cfd7df 50%, #ffffff 72%, #6f7a88 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    inset 0 -11px 18px rgba(15,23,42,0.18),
    0 11px 18px rgba(15,23,42,0.16);
  color: transparent;
}
.mapClasp::before,
.mapClasp::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  width: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f8fafc, #8d98a7 58%, #5f6b7a);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}
.mapClasp::before { left: -5px; }
.mapClasp::after { right: -5px; }
.mapClaspBlade {
  position: relative;
  width: 100%;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.88), rgba(255,255,255,0.12) 30%, rgba(255,255,255,0.78) 62%, rgba(71,85,105,0.25)),
    linear-gradient(180deg, #f8fafc 0%, #d4dce4 48%, #8894a3 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), inset 0 -2px 5px rgba(15,23,42,0.2);
}
.mapClaspBlade::before {
  content: "";
  position: absolute;
  inset: 10px 18px auto;
  height: 14px;
  border-radius: 50% 50% 45% 45%;
  border-top: 3px solid rgba(72,84,98,0.72);
  opacity: .72;
}
.mapClaspBlade::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 10px;
  height: 2px;
  border-radius: 999px;
  background: rgba(51,65,85,0.32);
  box-shadow: 0 -21px 0 rgba(255,255,255,0.36);
}
.mapClaspLogo { display: none; }
.mapLegend {
  align-self: center;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 12px;
  color: var(--gray-text);
  margin-top: 8px;
}
.legendItem {
  display: flex;
  align-items: center;
  gap: 8px;
}
.legendColor {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(51,65,85,0.48);
}
.legendColor.fixed {
  background: linear-gradient(180deg, #f4f6f8 0%, #b7c0cb 44%, #707d8c 100%);
}
.legendColor.screw {
  border-color: rgba(5,150,105,0.48);
  background: linear-gradient(180deg, #f4f6f8 0%, #b7c0cb 44%, #707d8c 100%);
  position: relative;
}
.legendColor.screw::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid rgba(5,95,70,0.72);
  right: 2px;
  bottom: 2px;
  background: radial-gradient(circle at 35% 30%, #ffffff 0 18%, #c3cbd5 35%, #647184 100%);
}
.legendColor.clasp {
  background: linear-gradient(90deg, #6e7a88 0%, #f8fafc 35%, #6f7a88 100%);
  border-color: rgba(51,65,85,0.56);
}
.linkSideLabel {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-text);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.custom-select-container {
  position: relative;
  width: 100%;
}
.custom-select-trigger {
  width: 100%;
  height: 38px;
  padding: 0 28px 0 12px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 13.5px;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
  position: relative;
  user-select: none;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.custom-select-trigger::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f2937' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  transition: transform 0.2s ease;
}
.custom-select-container.open .custom-select-trigger::after {
  transform: translateY(-50%) rotate(180deg);
}
.custom-select-container.open .custom-select-trigger {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(0,96,57,0.08);
}
.custom-select-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) scaleY(0.95);
  width: max-content;
  min-width: 100%;
  max-width: 320px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  display: none;
  max-height: 250px;
  overflow-y: auto;
  opacity: 0;
  transform-origin: top;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.custom-select-container.open .custom-select-options {
  display: block;
  opacity: 1;
  transform: translateX(-50%) scaleY(1);
}
.custom-select-options.custom-select-options-portal {
  position:fixed;
  top:0;
  left:0;
  width:auto;
  min-width:0;
  max-width:none;
  z-index:100000;
  transform:translateY(-4px) scaleY(.98);
  overscroll-behavior:contain;
  touch-action:pan-y;
  -webkit-overflow-scrolling:touch;
}
.custom-select-options.custom-select-options-portal.open {
  display:block;
  opacity:1;
  transform:translateY(0) scaleY(1);
}
.custom-select-option {
  padding: 10px 16px 10px 32px;
  font-size: 13.5px;
  color: var(--black);
  cursor: pointer;
  transition: background 0.15s ease;
  text-align: left;
  user-select: none;
  position: relative;
}
.custom-select-option:hover {
  background: var(--light-gray);
  color: var(--black);
}
.custom-select-option.selected {
  font-weight: 600;
}
.custom-select-option.selected::before {
  content: '✓';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  color: currentColor;
}

.seoSection { padding: 88px 0; }
.seoSection + .seoSection { border-top: 1px solid var(--border-color); }
.homeHero { padding: 52px 0 28px; }
.homeHeroGrid { display:grid; grid-template-columns: 1.02fr .98fr; min-height:510px; border-radius:var(--radius-lg); overflow:hidden; background:var(--black); color:var(--white); }
.homeHeroCopy { padding:clamp(46px,6vw,82px); display:flex; flex-direction:column; justify-content:center; }
.homeHeroCopy .sectionKicker { color:#7fe0bd; }
.homeHeroTitle { font-family:var(--font-display); font-size:clamp(38px,4.4vw,56px); line-height:1.02; letter-spacing:-.045em; margin:0 0 22px; }
.homeHeroText { color:rgba(255,255,255,.72); font-size:16px; max-width:590px; margin-bottom:30px; }
.homeHeroActions,.seoCtaActions { display:flex; gap:12px; flex-wrap:wrap; }
.seoBtn { min-height:48px; padding:0 22px; border-radius:var(--radius-sm); display:inline-flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:750; font-size:14px; border:1px solid transparent; cursor:pointer; }
.seoBtnPrimary { background:var(--emerald); color:#fff; }
.seoBtnPrimary:hover { background:#009b68; }
.seoBtnSecondary { background:transparent; color:inherit; border-color:currentColor; }
.homeHeroMedia { position:relative; min-height:430px; }
.homeHeroMedia img { width:100%; height:100%; object-fit:cover; object-position:52% center; }
.homeHeroMedia::after { content:""; position:absolute; inset:0; background:linear-gradient(90deg,var(--black),transparent 35%); }
.homeTrustStrip { margin-top:18px; border:1px solid var(--border-color); border-radius:14px; display:grid; grid-template-columns:repeat(5,1fr); overflow:hidden; background:#fff; }
.homeTrustFact { min-height:86px; padding:18px 14px; text-align:left; border-right:1px solid var(--border-color); font-size:12px; color:var(--gray-text); display:flex; align-items:center; justify-content:center; gap:12px; }
.homeTrustFact:last-child { border-right:0; }
.homeTrustFact strong { display:block; color:var(--black); font-size:14px; margin-bottom:2px; line-height:1.15; }
.homeTrustFact span { display:block; }
.homeTrustIcon { width:38px; height:38px; flex:0 0 38px; display:grid!important; place-items:center; color:var(--emerald); }
.homeTrustIcon svg { width:30px; height:30px; }
.homeTrustIcon.homeTrustIconStar svg { width:28px; height:28px; }
.homeTrustIcon.homeTrustIconChrono { color:#d79b49; }
.homeTrustContent { min-width:0; display:flex!important; flex-direction:column; align-items:flex-start; justify-content:center; }
.homeTrustContent strong,.homeTrustContent > span { white-space:nowrap; }
.homeTrustStars { color:#bd9a5f!important; letter-spacing:1px; }
.homeSectionHead { display:flex; align-items:end; justify-content:space-between; gap:24px; margin-bottom:34px; }
.homeSectionHead .sectionTitle { margin-bottom:0; }
.homeSectionHead .sectionSub { max-width:560px; }
.homeUspGrid { display:grid; grid-template-columns:repeat(6,1fr); gap:12px; }
.homeUspCard { border:1px solid var(--border-color); border-radius:14px; padding:24px 16px; text-align:center; background:#fff; }
.homeUspIcon { width:38px; height:38px; display:grid; place-items:center; margin:0 auto 14px; border-radius:50%; background:var(--emerald-light); color:var(--emerald); font-size:18px; font-weight:800; }
.homeUspIcon svg { width:20px; height:20px; }
.homeUspCard strong { font-size:13px; }
.homeSplit { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.homeSplitCard { min-height:310px; padding:44px; border-radius:var(--radius-lg); border:1px solid var(--border-color); display:flex; flex-direction:column; justify-content:flex-end; background:linear-gradient(145deg,#f7f8fa,#fff); }
.homeSplitCard.dark { background:var(--black); color:#fff; border-color:var(--black); }
.homeSplitCard h2 { font-family:var(--font-display); font-size:clamp(28px,3vw,40px); margin-bottom:12px; }
.homeSplitCard p { color:var(--gray-text); max-width:460px; margin-bottom:24px; }
.homeSplitCard.dark p { color:rgba(255,255,255,.66); }
.homeSteps { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; counter-reset:steps; }
.homeStep { counter-increment:steps; border-top:2px solid var(--black); padding:24px 8px 0 0; }
.homeStep::before { content:"0" counter(steps); display:block; font:800 12px var(--font-display); color:var(--emerald); margin-bottom:18px; }
.homeStep h3 { font-family:var(--font-display); font-size:18px; margin-bottom:8px; }
.homeStep p { color:var(--gray-text); font-size:13.5px; }
.homeInstagram { display:grid; grid-template-columns:.85fr 1.15fr; border-radius:var(--radius-lg); overflow:hidden; background:#f6f3ef; }
.homeInstagramCopy { padding:54px; display:flex; flex-direction:column; justify-content:center; }
.homeInstagramCopy h2 { font-family:var(--font-display); font-size:clamp(30px,4vw,48px); line-height:1.05; margin:12px 0 18px; }
.homeInstagramImage img { width:100%; height:100%; min-height:370px; object-fit:cover; }
.homeArticleGrid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.homeArticleCard { appearance:none; -webkit-appearance:none; border:1px solid var(--border-color); border-radius:14px; padding:26px; min-height:200px; display:flex; flex-direction:column; transition:.2s; color:var(--black); font:inherit; }
.homeArticleCard:hover { transform:translateY(-3px); box-shadow:var(--shadow-md); }
.homeArticleCard span { color:var(--emerald); font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.homeArticleCard h3 { color:var(--black); font-family:var(--font-display); font-size:19px; margin:15px 0 10px; }
.homeArticleCard p { color:var(--gray-text); font-size:13px; }
.homeFinalCta { border-radius:var(--radius-lg); background:var(--black); color:#fff; padding:58px; display:flex; align-items:center; justify-content:space-between; gap:30px; }
.homeFinalCta h2 { font-family:var(--font-display); font-size:clamp(28px,4vw,46px); max-width:650px; line-height:1.08; }
.navDropdown { position:relative; }
.navDropdownMenu { display:none; position:absolute; top:100%; left:50%; transform:translateX(-50%); min-width:180px; padding:8px; border:1px solid var(--border-color); border-radius:10px; background:#fff; box-shadow:var(--shadow-md); }
.navDropdown:not(.suppressHover):hover .navDropdownMenu,.navDropdown.open .navDropdownMenu { display:block; }
.navDropdownMenu button,.navDropdownMenu a { display:block; width:100%; border:0; background:none; padding:10px 12px; text-align:left; border-radius:6px; font-weight:600; color:var(--black); text-decoration:none; }
.navDropdownMenu button:hover,.navDropdownMenu a:hover { background:var(--light-gray); }
.seoArticle { max-width:900px; margin:0 auto; padding:40px 0 100px; }
.seoArticleHero { display:grid; grid-template-columns:1fr 1fr; border-radius:var(--radius-lg); overflow:hidden; background:var(--black); color:#fff; margin-bottom:58px; }
.seoArticleHeroCopy { padding:clamp(34px,5vw,64px); background:#050505; }
.seoArticleHeroCopy h1 { font-family:var(--font-display); font-size:clamp(34px,5vw,54px); line-height:1.05; letter-spacing:-.035em; margin-top:15px; }
.seoArticleHero img { width:100%; height:100%; min-height:420px; object-fit:cover; }
.seoArticleBody { max-width:760px; margin:0 auto; font-size:16px; line-height:1.8; }
.seoArticleBody h2 { font-family:var(--font-display); font-size:clamp(27px,4vw,38px); line-height:1.15; margin:70px 0 20px; }
.seoArticleBody h3 { font-family:var(--font-display); font-size:22px; margin:40px 0 12px; }
.seoArticleBody p,.seoArticleBody ul { margin-bottom:20px; }
.seoArticleBody ul { padding-left:22px; }
.articleCta,.articleNote { border:1px solid rgba(0,182,122,.28); background:var(--emerald-light); border-radius:16px; padding:30px; margin:36px 0; }
.articleCta h2,.articleNote h3 { margin:0 0 12px; }
.articleCompare { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin:30px 0; }
.articleCompare > div { border:1px solid var(--border-color); border-radius:14px; padding:24px; }
.articleCompare h3 { margin:0 0 14px; }
.articleSteps { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.articleStep { border:1px solid var(--border-color); border-radius:14px; padding:24px; }
.articleStep h3 { margin:0 0 10px; }
.pdpTrustRating { display:flex; gap:14px; flex-wrap:wrap; font-size:12px; font-weight:700; margin:4px 0 15px; }
.pdpTrustRating span { color:#bd9a5f; }
.pdpMicroTrust { display:grid; grid-template-columns:repeat(2,1fr); gap:7px 12px; padding:14px 0; margin:2px 0 12px; border-top:1px solid var(--border-color); border-bottom:1px solid var(--border-color); font-size:12px; font-weight:700; }
.pdpMicroTrust span::before { content:'✓'; color:var(--emerald); margin-right:6px; }
.pdpContentGrid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.pdpContentCard { border:1px solid var(--border-color); border-radius:14px; padding:26px; }
.pdpContentCard h3 { font-family:var(--font-display); font-size:20px; margin-bottom:12px; }
.pdpContentCard p,.pdpContentCard li { color:var(--gray-text); font-size:14px; line-height:1.7; }
.pdpContentCard ul { padding-left:20px; }
.pdpTechGrid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.pdpTechTile { background:var(--light-gray); border-radius:10px; padding:16px; }
.pdpTechTile span { display:block; color:var(--gray-text); font-size:11px; text-transform:uppercase; letter-spacing:.05em; }
.pdpTechTile strong { display:block; margin-top:5px; }
.detailsMeta { display:flex; flex-direction:column; }
.detailsActions { order:1; }
.detailsSpecs { order:2; }
.detailsDescription { order:3; margin-top:18px; }
.btnDetailsWa { order:1; }
.btnDetailsAppointment { order:2; }
.btnDetailsCart { order:3; }

#view-buy { background:linear-gradient(180deg,#fff 0,#fafbfc 38%,#fff 100%); }
#view-buy .seoSection { padding:36px 0; border-top:0; }
#view-buy .homeHero { padding:18px 0 0; }
#view-buy .homeHeroGrid { grid-template-columns:1.04fr .96fr; min-height:500px; position:relative; }
#view-buy .homeHeroCopy { padding:58px 54px 92px; z-index:2; }
#view-buy .homeHeroTitle { font-size:clamp(38px,4.4vw,62px); max-width:720px; }
#view-buy .homeHeroText { max-width:610px; font-size:16px; }
.homeHeroBenefits { display:grid; grid-template-columns:repeat(4,max-content); gap:16px; margin-top:34px; color:#fff; font-size:11px; font-weight:700; white-space:nowrap; }
.homeHeroBenefits span { color:#dce4e0; display:inline-flex; align-items:center; gap:6px; }
.homeHeroBenefits svg { width:14px; height:14px; color:#7fe0bd; flex:0 0 auto; }
#view-buy .homeHeroMedia { background:#070908; overflow:hidden; display:flex; align-items:center; justify-content:center; position:relative; }
#view-buy .homeHeroMedia img { max-width:88%; max-height:480px; width:auto; height:auto; object-fit:contain; object-position:center; filter:none; transition:transform 0.3s ease; }
#view-buy .homeHeroMedia::after { background:linear-gradient(90deg,var(--black) 0,rgba(12,12,14,.72) 12%,transparent 55%); pointer-events:none; }
#view-buy .homeTrustStrip { position:relative; z-index:4; margin:-28px 44px 0; box-shadow:0 12px 34px rgba(15,23,42,.09); }
#view-buy .homeTrustFact { padding:18px 12px; }
#view-buy .homeTrustFact strong { font-size:16px; }
#view-buy .homeSectionHead { margin-bottom:22px; }
#view-buy .homeSectionHead .sectionTitle { font-size:clamp(24px,3vw,32px); }
#view-buy .homeUspGrid { gap:10px; }
#view-buy .homeUspCard { padding:22px 14px; min-height:196px; }
#view-buy .homeUspCard strong { display:block; font-size:13px; margin-bottom:8px; }
#view-buy .homeUspCard p { color:var(--gray-text); font-size:11.5px; line-height:1.5; }
#view-buy .homeSplit { gap:18px; }
#view-buy .homeSplitCard { position:relative; overflow:hidden; min-height:260px; padding:36px; justify-content:center; }
.homeSplitContent { width:52%; position:relative; z-index:2; }
#view-buy .homeSplitCard h2 { font-size:27px; }
#view-buy .homeSplitWatchFrame { position:absolute; top:12px; right:12px; bottom:12px; width:44%; overflow:hidden; display:flex; align-items:center; justify-content:flex-end; pointer-events:none; }
#view-buy .homeSplitWatchFrame img { max-width:100%; max-height:100%; width:auto; height:auto; object-fit:contain; object-position:center right; transition:transform 0.3s ease; }
#view-buy #homeSellWatch, #view-buy #homeBuyWatch { transform:scale(1.04); }
#view-buy .homeSplitCard:hover #homeSellWatch, #view-buy .homeSplitCard:hover #homeBuyWatch { transform:scale(1.08); }
#view-buy .homeSplitCard.dark::after { content:""; position:absolute; inset:0; background:linear-gradient(90deg,var(--black) 0,var(--black) 48%,transparent 78%); z-index:1; }
#view-buy .homeSplitCard:not(.dark) { background:#fff; }
#view-buy .homeSplitCard:not(.dark)::after { display:none; }
#view-buy .pageIntro { background:transparent; padding:22px 0 0; }
#view-buy .pageIntroTop { align-items:center; padding-bottom:16px; }
#view-buy .pageIntroTop > div,#view-buy .pageIntroTitleRow { width:100%; }
#view-buy .pageIntroTitleRow { justify-content:space-between; align-items:center; }
#view-buy .pageIntroTitleRow .watchSeeAllCard { margin-left:auto; }
#view-buy .pageIntroTitle { font-size:27px; }
#view-buy .homeProductsSection { padding:0 0 24px; }
#view-buy #watchGrid { grid-template-columns:repeat(4,1fr); gap:18px; }
.homeModelCard { border:1px solid var(--border-color); border-radius:12px; background:#fff; padding:16px 14px 18px; min-width:0; text-align:center; transition:.2s; }
.homeModelCard:hover { transform:translateY(-3px); box-shadow:var(--shadow-md); border-color:rgba(0,182,122,.3); }
.homeModelCard img { width:100%; aspect-ratio:1/1.04; object-fit:contain; margin-bottom:12px; }
.homeModelCard strong { display:block; font:800 17px var(--font-display); }
.homeModelCard span { display:block; color:var(--gray-text); font-size:13px; line-height:1.45; margin-top:5px; }
#view-buy .homeSteps { gap:10px; }
#view-buy .homeStep { border:1px solid var(--border-color); border-radius:10px; background:#fff; padding:22px; min-height:132px; }
#view-buy .homeStep::before { display:none; }
#view-buy .homeStep h3 { font-size:15px; }
#view-buy .homeStep p { font-size:12px; }
.homeReviewsSection { background:#f7f8fa; }
.homeReviewsGrid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.homeReviewColumn:nth-child(1) { order:2; }
.homeReviewColumn:nth-child(2) { order:1; }
#view-buy .homeReviewColumn .reviewsSection { height:100%; margin:0!important; padding:24px 18px; border:1px solid var(--border-color); background:#fff; }
#view-buy .homeReviewColumn .reviewsHead { margin-bottom:22px; gap:12px; }
#view-buy .homeReviewColumn .reviewsTitle { font-size:22px!important; }
#view-buy .homeReviewColumn .reviewsScoreBlock { align-items:flex-start; }
#view-buy .homeReviewColumn .reviewsScoreStars,#view-buy .homeReviewColumn .chronoScoreStars { font-size:18px; }
#view-buy .homeReviewColumn .reviewsGrid { grid-template-columns:repeat(3,1fr); gap:8px; }
#view-buy .homeReviewColumn .reviewCard { padding:14px 12px; }
#view-buy .homeReviewColumn .reviewTitle { font-size:12px; }
#view-buy .homeReviewColumn .reviewText { font-size:10.5px; line-height:1.45; }
#view-buy .homeReviewColumn .reviewMeta { font-size:9px; gap:6px; }
#view-buy .homeReviewColumn .reviewAvatar { width:24px; height:24px; font-size:8px; }
#view-buy > .wrap > .trustBar { display:none; }
#view-buy .homeInstagram { grid-template-columns:28% 72%; background:#fff; border:1px solid var(--border-color); }
#view-buy .homeInstagramCopy { padding:32px; }
#view-buy .homeInstagramCopy h2 { font-size:25px; }
.instagramFollowBtn { gap:8px; color:var(--black)!important; }
.instagramFollowBtn svg { width:17px; height:17px; flex:0 0 auto; }
.homeInstagramFeed { display:grid; grid-template-columns:repeat(5,1fr); gap:6px; padding:6px; }
.homeInstagramFeed a { position:relative; border-radius:9px; overflow:hidden; min-width:0; background:var(--light-gray); }
.homeInstagramFeed a::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 65%,rgba(0,0,0,.22)); opacity:0; transition:.2s; }
.homeInstagramFeed a:hover::after { opacity:1; }
.homeInstagramFeed img { width:100%; height:100%; min-height:220px; object-fit:cover; }
#view-buy .homeArticleGrid { gap:12px; }
#view-buy .homeArticleCard { position:relative; padding:142px 18px 18px; min-height:270px; text-align:left; background:#fff; overflow:hidden; }
#view-buy .homeArticleCard::before { content:""; position:absolute; inset:0 0 auto; height:126px; background:var(--article-image,linear-gradient(145deg,#101513,#202b27)) center/cover no-repeat; border-bottom:1px solid var(--border-color); }
#view-buy .homeArticleCard h3 { font-size:16px; margin:10px 0 6px; }
#view-buy .homeArticleCard p { font-size:11.5px; }
#view-buy .homeFinalCta { padding:38px 44px; background:linear-gradient(100deg,#0b1612,#10251d 65%,#0c0c0e); }
#view-buy .homeFinalCta h2 { font-size:30px; }
#view-buy .homeLegacyFinalCta { display:none; }
@media (max-width:1100px) { .desktopNav{gap:18px}.homeUspGrid{grid-template-columns:repeat(3,1fr)}.homeArticleGrid{grid-template-columns:repeat(2,1fr)} }
@media (max-width:1100px) { #view-buy #watchGrid{grid-template-columns:repeat(4,1fr)}.homeReviewsGrid{grid-template-columns:1fr}.homeReviewColumn:nth-child(1),.homeReviewColumn:nth-child(2){order:initial} }
@media (max-width:860px) { .homeHeroGrid,.homeInstagram,.seoArticleHero{grid-template-columns:1fr}#view-buy .homeHeroGrid{grid-template-columns:1fr}.homeTrustStrip{grid-template-columns:1fr 1fr}.homeTrustFact{border-bottom:1px solid var(--border-color)}.homeSplit,.articleSteps,.pdpContentGrid{grid-template-columns:1fr}.homeSteps{grid-template-columns:1fr 1fr}.homeFinalCta{align-items:flex-start;flex-direction:column}.pdpTechGrid{grid-template-columns:1fr 1fr}#view-buy .homeHeroCopy{padding-bottom:44px}#view-buy .homeTrustStrip{margin:-18px 18px 0}.homeInstagramFeed{grid-template-columns:repeat(3,1fr)}.homeInstagramFeed a:nth-child(n+4){display:none} }
@media (max-width:600px) { .seoSection{padding:62px 0}.homeHero{padding-top:16px}.homeHeroCopy,.homeInstagramCopy,.homeFinalCta{padding:30px 24px}.homeUspGrid,.homeArticleGrid,.homeSteps,.articleCompare{grid-template-columns:1fr}.homeSectionHead{align-items:flex-start;flex-direction:column}.homeTrustStrip{grid-template-columns:1fr}.homeTrustFact{border-right:0;justify-content:flex-start;padding-left:22px}.pdpTechGrid{grid-template-columns:1fr}.seoArticleHero img{min-height:280px}.pageIntroTitleRow{flex-wrap:wrap!important;justify-content:flex-start}.pageIntroTitle{white-space:normal!important;flex:1 1 100%}.pageIntroTitleRow .watchSeeAllCard{margin-top:10px}#view-buy .pageIntroTitleRow .watchSeeAllCard{margin-left:0}#view-buy .homeHeroCopy{padding:34px 24px 40px}.homeHeroBenefits{grid-template-columns:repeat(2,max-content);gap:10px 16px;margin-top:24px;white-space:normal}.homeHeroBenefits span{font-size:10px}#view-buy .homeTrustStrip{margin:-14px 8px 0}#view-buy .homeSplitCard{min-height:240px;padding:28px}.homeSplitContent{width:58%}#view-buy .homeSplitWatchFrame{top:10px;right:8px;bottom:10px;width:42%}#view-buy #watchGrid{grid-template-columns:repeat(2,1fr)}.homeInstagramFeed{grid-template-columns:repeat(2,1fr)}.homeInstagramFeed a:nth-child(n+3){display:none}.homeInstagramFeed img{min-height:190px}#view-buy .homeReviewColumn .reviewsGrid{grid-template-columns:1fr} }

body { font-size:16.5px; line-height:1.68; }
.sectionSub,.homeHeroText,.seoArticleBody,.faqA,.sellInfoCard p,.wpediaArticleBody { font-size:16px; line-height:1.75; }
.sectionKicker { font-size:13px; }
.sectionTitle { line-height:1.12; }
.seoBtn,.btnCtaHeader,.btnDetailsCart,.btnDetailsWa,.btnDetailsAppointment,
.cartCheckoutBtn,.cartEmptyBtn,.authSubmitBtn { font-size:15px; font-weight:750; }
.seoBtn { min-height:52px; padding:0 25px; }
.formLabel,.wpediaControls label { font-size:13px; }
.formInput,.formSelect,.formTextarea { font-size:15px; }

.desktopNav { gap:24px; }
.navTab { position:relative; font-size:15.5px; font-weight:700; opacity:.88; padding:12px 6px; border:0; border-radius:7px; }
.navTab::after { content:""; position:absolute; left:7px; right:7px; bottom:5px; height:2px; border-radius:2px; background:var(--emerald); transform:scaleX(0); transform-origin:center; transition:transform .22s ease; }
.navTab:hover { color:var(--emerald); background:transparent; opacity:1; }
.navTab.active,.navTab.active:hover { color:var(--emerald); background:transparent; opacity:1; }
.navTab:hover::after,.navTab.active::after { transform:scaleX(1); }
.headerRight .btnCtaHeader { background:var(--emerald); color:#fff; font-size:15px; min-width:166px; }
.headerRight .btnCtaHeader:hover { background:#009b68; box-shadow:0 7px 18px rgba(0,182,122,.25); }
.navDropdownMenu button,.navDropdownMenu a { font-size:14.5px; }
.navDropdownMenu button.active,.navDropdownMenu a.active { color:var(--emerald); background:var(--emerald-light); }

.watchStatus.reserved,.watchStatus.sold,.pdpStatusLabel {
  top:50%; left:50%; right:auto; transform:translate(-50%,-50%);
  font-size:clamp(16px,1.7vw,23px); line-height:1; letter-spacing:.08em;
  padding:12px 20px; border-radius:8px; white-space:nowrap;
  box-shadow:0 8px 26px rgba(0,0,0,.24);
}
.watchSeeAllCard,.watchSeeAllCard .watchSeeAllTitle { color:var(--emerald); }
.watchSeeAllCard:hover { color:#008f60; }

#view-buy .homeHeroText { font-size:17px; line-height:1.72; }
.homeHeroBenefits { font-size:13px; gap:18px; }
#view-buy .homeTrustFact { font-size:13.5px; }
#view-buy .homeTrustFact strong { font-size:17px; }
#view-buy .homeTrustStrip { min-height:112px; }
#view-buy .homeTrustFact { min-height:112px; padding:22px 18px; gap:15px; }
#view-buy .homeTrustIcon { width:46px; height:46px; flex-basis:46px; }
#view-buy .homeTrustIcon svg { width:38px; height:38px; }
#view-buy .homeTrustIconStar { color:var(--emerald); }
#view-buy .homeTrustIconWatch { color:var(--black); }
#view-buy .homeTrustFact strong { font-size:22px; letter-spacing:-.02em; }
#view-buy .homeTrustContent > span { font-size:13.5px; }
.homeTrustChronoWord { color:#111827!important; font-size:21px!important; letter-spacing:-.04em!important; }
.homeTrustChronoWord span { display:inline!important; color:#d79b49; }
.homeTrustChronoFact { padding:8px 14px!important; }
.homeTrustChronoImage { width:auto; height:96px; max-width:100%; object-fit:contain; }
#view-buy .homeTrustFactStacked { flex-direction:column; gap:5px; text-align:center; }
#view-buy .homeTrustFactStacked .homeTrustIcon { width:36px; height:36px; flex-basis:36px; }
#view-buy .homeTrustFactStacked .homeTrustIcon svg { width:31px; height:31px; }
#view-buy .homeTrustFactStacked .homeTrustContent { align-items:center; text-align:center; }
#view-buy .homeUspCard strong { font-size:15px; }
#view-buy .homeUspCard p { font-size:13.5px; line-height:1.62; }
#view-buy .homeStep { position:relative; overflow:hidden; color:#fff; background:#0c0c0e; border-color:#0c0c0e; padding:26px 24px; min-height:205px; display:flex; flex-direction:column; }
#view-buy .homeStep::after { content:""; position:absolute; width:120px; height:120px; right:-54px; bottom:-64px; border-radius:50%; background:rgba(0,182,122,.12); }
.homeStepIcon { width:48px; height:48px; display:grid; place-items:center; margin-bottom:24px; border-radius:12px; color:#65ddb4; background:rgba(0,182,122,.14); border:1px solid rgba(101,221,180,.25); }
.homeStepIcon svg { width:25px; height:25px; }
#view-buy .homeStep h3 { position:relative; z-index:1; font-size:18px; }
#view-buy .homeStep p { position:relative; z-index:1; color:rgba(255,255,255,.68); font-size:14.5px; line-height:1.65; }
.scrollReveal { opacity:0; transform:translateY(22px); transition:opacity .65s ease,transform .65s cubic-bezier(.22,1,.36,1); }
.scrollReveal.isVisible { opacity:1; transform:translateY(0); }
@media (prefers-reduced-motion:reduce) { .scrollReveal { opacity:1; transform:none; transition:none; } }
.homeModelCard strong { font-size:17px; }
.homeModelCard span { font-size:13px; line-height:1.5; }
#view-buy .homeArticleCard h3 { font-size:18px; }
#view-buy .homeArticleCard p { font-size:14px; line-height:1.62; }

.homeReviewsGrid { grid-template-columns:1fr; gap:28px; }
.homeReviewColumn:nth-child(1) { order:2; }
.homeReviewColumn:nth-child(2) { order:1; }
#view-buy .homeReviewColumn .reviewsTitle { font-size:clamp(26px,3vw,36px)!important; }
#view-buy .homeReviewColumn .reviewTitle { font-size:15px; }
#view-buy .homeReviewColumn .reviewText { font-size:13.5px; line-height:1.62; }
#view-buy .homeReviewColumn .reviewMeta { font-size:11.5px; }

#view-buy .homeInstagram { grid-template-columns:30% 70%; background:#f7f7f8; border:0; padding:18px; gap:4px; }
#view-buy .homeInstagramCopy { padding:34px 28px; align-items:flex-start; }
.instagramBrand { display:flex; align-items:center; gap:10px; font:800 22px var(--font-display); margin-bottom:22px; }
.instagramBrandIcon { width:34px; height:34px; display:grid; place-items:center; border-radius:9px; color:#fff; background:linear-gradient(135deg,#f9ce34,#ee2a7b 52%,#6228d7); }
.instagramBrandIcon svg { width:23px; height:23px; }
#view-buy .homeInstagramCopy h2 { font-size:clamp(27px,2.5vw,36px); line-height:1.1; margin:0 0 16px; }
.instagramProfileLink { display:inline-flex; gap:12px; align-items:center; margin-top:22px; color:var(--black); font:750 15px var(--font-display); border-bottom:1px solid currentColor; padding-bottom:3px; }
.instagramProfileLink:hover { color:var(--emerald); }
.homeInstagramFeed { align-items:stretch; }
.homeInstagramFeed img { min-height:260px; }

.footerTemplateCta { min-height:230px; margin-bottom:48px; padding:40px 230px 40px 8px; grid-template-columns:minmax(0,1fr); row-gap:30px; background:transparent; border:0; border-radius:0; }
.footerTemplateCta::after { display:none; }
.footerTemplateCta > div:first-child { min-width:0; max-width:820px; }
.footerTemplateCta h2 { font-size:clamp(30px,3vw,40px); white-space:normal; max-width:100%; overflow-wrap:break-word; line-height:1.08; }
.footerTemplateCta p { font-size:15px; line-height:1.7; max-width:620px; }
.footerTemplateCtaActions { justify-content:flex-start; align-content:center; gap:14px; flex-wrap:nowrap; }
.footerTemplateCta .seoBtn { min-height:48px; padding:0 18px; font-size:14px; }
.footerTemplateCtaWatch { width:210px; right:4px; }
.footerTemplateGrid h3 { font-size:14px; }
.footerTemplateGrid button,.footerTemplateBottom button,.footerBrandBlock p,.footerSafety ul { font-size:13px; line-height:1.6; }
.footerTemplateBottom { font-size:12px; }
.footerTemplateBottom nav { align-items:center; }
.footerTemplateBottom nav > a,
.footerTemplateBottom nav > button {
  display:inline-flex;
  align-items:center;
  min-height:22px;
  margin:0;
  font-size:13px;
  line-height:1;
  vertical-align:middle;
}
.footerTemplateWithdrawalBtn {
  margin-top:18px;
  color:#d1d5db;
}

.legalPage {
  background:#f5f6f6;
  padding:clamp(34px,5vw,74px) 0 clamp(72px,8vw,120px);
  color:var(--black);
}
.legalWrap { max-width:1080px; }
.legalHero {
  padding:clamp(28px,4.5vw,52px) clamp(22px,5vw,62px);
  border-radius:20px 20px 0 0;
  background:#090b0a;
  color:#fff;
}
.legalHero .sectionKicker { color:var(--emerald); margin-bottom:14px; }
.legalHero h1 {
  margin:0 0 12px;
  max-width:850px;
  font:800 clamp(34px,5.2vw,64px)/1.04 var(--font-display);
  letter-spacing:-.025em;
}
.legalHero p { margin:0; max-width:720px; color:#c5cbc8; font-size:clamp(16px,2vw,20px); line-height:1.55; }
.legalHero span { display:block; margin-top:20px; color:#8f9793; font-size:13px; }
.legalCard {
  padding:clamp(28px,5vw,64px);
  border:1px solid #e1e4e3;
  border-top:0;
  border-radius:0 0 20px 20px;
  background:#fff;
  box-shadow:0 22px 55px rgba(19,27,23,.07);
}
.legalToc {
  display:flex;
  align-items:center;
  gap:12px 22px;
  flex-wrap:wrap;
  margin:0 0 48px;
  padding:18px 20px;
  border:1px solid #dfe5e2;
  border-radius:12px;
  background:#f8faf9;
  font-size:14px;
}
.legalToc strong { color:#111; }
.legalToc a { color:#4f5b56; border-bottom:1px solid transparent; }
.legalToc a:hover { color:var(--emerald); border-bottom-color:currentColor; }
.legalCard section { max-width:820px; scroll-margin-top:120px; }
.legalCard section + section { margin-top:44px; padding-top:42px; border-top:1px solid #e7e9e8; }
.legalCard h2 { margin:0 0 18px; font:800 clamp(23px,3vw,31px)/1.18 var(--font-display); letter-spacing:-.015em; }
.legalCard h3 { margin:26px 0 12px; font:800 19px/1.3 var(--font-display); }
.legalCard p,.legalCard li,.legalCard address { color:#49514d; font-size:16px; line-height:1.78; }
.legalCard p { margin:0 0 16px; }
.legalCard address { margin:18px 0; padding:20px 22px; border-left:3px solid var(--emerald); background:#f5f9f7; font-style:normal; }
.legalCard a { color:#008d66; font-weight:700; text-decoration:underline; text-underline-offset:3px; }
.legalNotice,.legalFormSample { margin:22px 0; padding:22px 24px; border-radius:12px; background:#eef8f4; color:#304139; font-size:15.5px; line-height:1.7; }
.legalFormSample { border:1px solid #dbe6e1; background:#fafcfb; }
.legalFormSample p:last-child { margin-bottom:0; }
.legalAction {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  margin-top:8px;
  padding:0 22px;
  border-radius:8px;
  background:var(--emerald);
  color:#fff!important;
  font:800 15px var(--font-display);
  text-decoration:none!important;
  transition:transform .2s,background .2s;
}
.legalAction:hover { transform:translateY(-2px); background:#009e73; }
#view-checkout .checkoutTerms a { color:var(--emerald); text-decoration:underline; text-underline-offset:2px; }

@media (max-width:700px) {
  .legalPage { padding:18px 0 64px; }
  .legalWrap { padding-left:14px; padding-right:14px; }
  .legalHero { border-radius:14px 14px 0 0; }
  .legalHero h1 { font-size:clamp(31px,10vw,43px); overflow-wrap:anywhere; }
  .legalCard { padding:28px 20px 38px; border-radius:0 0 14px 14px; }
  .legalToc { align-items:flex-start; flex-direction:column; margin-bottom:34px; }
  .legalCard section + section { margin-top:34px; padding-top:32px; }
  .legalCard p,.legalCard li,.legalCard address { font-size:15px; line-height:1.72; }
  .legalNotice,.legalFormSample { padding:18px; }
}

.detailsGrid { grid-template-columns:minmax(430px,1.08fr) minmax(420px,.92fr); gap:52px; }
.detailsHeadingLine { font-size:clamp(30px,3vw,42px); margin-bottom:10px; }
.detailsSubtitle { font-size:15px; }
.detailsPrice { font-size:30px; margin:5px 0 10px; }
.detailsStockLine { font-size:15px; }
.pdpTrustRating { font-size:14px; line-height:1.5; }
.pdpMicroTrust { font-size:14px; gap:10px 18px; padding:17px 0; }
.detailsShippingNote { font-size:14px; line-height:1.6; }
.detailsActions { gap:12px; margin:6px 0 22px; }
.btnDetailsCart,.btnDetailsWa,.btnDetailsAppointment { min-height:52px; padding:14px 18px; }
.detailsSpecs { gap:8px; }
.specRow { font-size:14.5px; padding:8px 0 11px; }
.detailsDescription { display:none; }
.pdpSection { margin-top:82px; }
.pdpSectionTitle { font-size:clamp(27px,3vw,36px); }
.pdpSectionSub { font-size:16px; }
.secCardTitle { font-size:17px; }
.secCardText { font-size:14.5px; line-height:1.68; }
.pdpContentGrid { grid-template-columns:1fr; gap:18px; }
.pdpContentCard { padding:30px 32px; }
.pdpContentCard h3 { font-size:23px; }
.pdpContentCard p,.pdpContentCard li { font-size:16px; line-height:1.78; }
.pdpContentCard p + p,.pdpContentCard ul + p { margin-top:16px; }
.pdpContentCard p + ul { margin-top:10px; }
.pdpTechGrid { grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; }
.pdpTechTile { padding:20px; min-width:0; }
.pdpTechTile span { font-size:12px; }
.pdpTechTile strong { font-size:16px; overflow-wrap:anywhere; }
.pdpReviewGroup + .pdpReviewGroup { margin-top:34px; }
.pdpReviewGroupTitle { font:800 20px var(--font-display); margin-bottom:14px; }

@media (max-width:1180px) {
  .navTab { font-size:14px; }
  .desktopNav { gap:12px; }
  .headerRight .btnCtaHeader { min-width:145px; font-size:14px; }
  .footerTemplateCta { grid-template-columns:1fr; padding-right:230px; row-gap:34px; }
}
@media (min-width:1101px) and (max-width:1180px) {
  #view-buy .homeHeroGrid { min-height:460px; }
  #view-buy .homeHeroMedia { min-height:390px; }
  #view-buy .homeHeroMedia img { transform:scale(.96); }
}
@media (max-width:1100px) {
  #view-buy .homeHeroGrid { grid-template-columns:1fr; }
  #view-buy .homeHeroCopy { padding-bottom:44px; }
  #view-buy .homeHeroMedia { min-height:280px; height:280px; }
  #view-buy .homeHeroMedia img { width:86%; margin:0 auto; }
}
@media (max-width:860px) {
  #view-buy .homeInstagram { grid-template-columns:1fr; }
  .detailsGrid { grid-template-columns:1fr; gap:28px; }
  .footerTemplateCta { padding:34px 190px 34px 6px; row-gap:30px; }
  .footerTemplateCtaActions { padding-right:0; flex-wrap:wrap; }
  #view-buy .homeTrustFact { padding:18px 14px; }
  #view-buy .homeHeroMedia { min-height:260px; height:260px; }
  #view-buy .homeHeroMedia img { width:82%; margin:0 auto; }
}
@media (max-width:600px) {
  body { font-size:16px; }
  .homeHeroBenefits { font-size:12px; }
  #view-buy .homeUspCard p,#view-buy .homeStep p { font-size:14px; }
  #view-buy .homeInstagram { padding:8px; }
  #view-buy .homeInstagramCopy { padding:28px 20px; }
  .homeInstagramFeed img { min-height:210px; }
  .watchStatus.reserved,.watchStatus.sold,.pdpStatusLabel { font-size:18px; padding:12px 18px; }
  .footerTemplateCta { padding:34px 24px; row-gap:28px; }
  .footerTemplateCtaWatch { display:none; }
  .footerTemplateCtaActions { padding-right:0; position:relative; z-index:3; }
  .footerTemplateCtaActions { flex-direction:column; flex-wrap:nowrap; }
  .footerTemplateCta .seoBtn { width:100%; }
  .pdpTechGrid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .pdpContentCard { padding:24px 20px; }
  #view-buy .homeHeroMedia { min-height:230px; height:230px; }
  #view-buy .homeHeroMedia img { width:78%; margin:0 auto; }
  #view-buy .homeTrustStrip { grid-template-columns:repeat(6,1fr); width:calc(100% - 64px); max-width:300px; margin:-10px auto 0; min-height:0; }
  #view-buy .homeTrustFact { grid-column:span 2; min-height:68px; flex-direction:column; justify-content:center; text-align:center; border-right:1px solid var(--border-color); padding:7px 5px; gap:4px; }
  #view-buy .homeTrustFact:nth-child(n+4) { grid-column:span 3; border-bottom:0; }
  #view-buy .homeTrustFact:nth-child(3),
  #view-buy .homeTrustFact:nth-child(5) { border-right:0; }
  #view-buy .homeTrustFact:last-child { justify-content:center; }
  #view-buy .homeTrustIcon { width:23px; height:23px; flex-basis:23px; }
  #view-buy .homeTrustIcon svg { width:20px; height:20px; }
  #view-buy .homeTrustFact strong,.homeTrustChronoWord { font-size:13px!important; }
  #view-buy .homeTrustContent > span { white-space:normal; font-size:9px; line-height:1.2; }
  #view-buy .homeTrustContent { align-items:center; text-align:center; }
  #view-buy .homeTrustFactStacked { justify-content:center; }
  #view-buy .homeTrustFactStacked .homeTrustIcon { width:21px; height:21px; flex-basis:21px; }
  #view-buy .homeTrustFactStacked .homeTrustIcon svg { width:19px; height:19px; }
  .homeTrustChronoImage { height:46px; }
  .wizardSummaryGrid { grid-template-columns:1fr; }
  .wizardSummaryItemWide { grid-column:auto; }
  #view-buy .homeStep { min-height:190px; }
}

#view-buy h1,#view-buy h2,#view-buy h3,
.marketPage h1,.marketPage h2,.marketPage h3 {
  font-family:var(--font-display);
}
#view-buy .homeHeroTitle {
  letter-spacing:-.015em;
  line-height:1.06;
  text-wrap:balance;
}
#view-buy .homeHeroTitle span { white-space:nowrap; }
.homeModelCard img {
  border-radius:9px;
  background:#f7f8fa;
}
.pdpSectionTitle { margin-bottom:24px; }

.marketPage { background:#fff; }
.marketHeroSection { padding:34px 0 0; background:linear-gradient(180deg,#fff 0,#f8f9fa 100%); }
.marketHero {
  position:relative;
  min-height:420px;
  overflow:hidden;
  border-radius:20px;
  color:#fff;
  background:
    radial-gradient(circle at 78% 28%,rgba(0,182,122,.18),transparent 30%),
    linear-gradient(110deg,#0b0d0c 0%,#101713 58%,#080909 100%);
  box-shadow:0 16px 48px rgba(12,12,14,.14);
}
.marketHero::before {
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:linear-gradient(90deg,rgba(0,0,0,.1),transparent 60%);
  pointer-events:none;
}
/* Rechts stand frueher ein Uhrenfoto; seit dessen Entfernung ist die Flaeche
   leer. Die Textspalte darf deshalb durchlaufen — die Ueberschrift
   "Marktwert & Preisentwicklung der Rolex …" bricht sonst unnoetig frueh um. */
.marketHeroCopy {
  position:relative;
  z-index:2;
  width:100%;
  padding:55px 52px 130px;
}
.marketHeroCopy .sectionKicker { color:#78dbb9; }
.marketHeroCopy h1 {
  margin:8px 0 18px;
  font-size:clamp(39px,4.2vw,62px);
  line-height:1.02;
  letter-spacing:-.025em;
  /* balance verteilt Zeilen gleichmaessig und erzwingt damit einen Umbruch,
     auch wenn der Text in eine Zeile passt — hier gerade unerwuenscht. */
  text-wrap:pretty;
}
.marketHeroCopy p {
  max-width:660px;
  color:rgba(255,255,255,.76);
  font-size:16px;
  line-height:1.72;
}
.marketToolCard {
  position:absolute;
  z-index:20;
  left:30px;
  right:30px;
  bottom:24px;
  display:grid;
  grid-template-columns:.7fr 1fr 1fr 1.25fr;
  gap:12px;
  padding:16px;
  color:var(--black);
  background:rgba(255,255,255,.97);
  border:1px solid rgba(255,255,255,.68);
  border-radius:13px;
  box-shadow:0 12px 32px rgba(0,0,0,.18);
  backdrop-filter:blur(14px);
}
.marketToolCard .formGroup { margin:0; min-width:0; }
.marketToolCard .custom-select-container.open { z-index:30; }
.marketToolCard .custom-select-options { z-index:40; }
.marketToolCard .formLabel { display:block; margin-bottom:5px; font-size:11px; }
.marketToolCard .formInput,.marketToolCard .formSelect {
  height:44px;
  text-align:left;
  text-align-last:left;
  background-color:#fff;
}
.marketSearchField { display:grid; grid-template-columns:1fr 44px; gap:7px; }
.marketSearchField button {
  display:grid;
  place-items:center;
  border:0;
  border-radius:7px;
  color:#fff;
  background:var(--black);
}
.marketSearchField button:hover { background:var(--emerald); }
.marketSearchField svg { width:19px; height:19px; }

.marketTrustStrip {
  position:relative;
  z-index:5;
  width:calc(100% - 60px);
  margin:-1px auto 0;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  overflow:hidden;
  border:1px solid var(--border-color);
  border-radius:0 0 14px 14px;
  background:#fff;
  box-shadow:0 12px 32px rgba(12,12,14,.06);
}
.marketTrustFact {
  min-height:94px;
  padding:14px 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  color:var(--gray-text);
  font-size:12px;
  border-right:1px solid var(--border-color);
}
.marketTrustFact:last-child { border-right:0; }
.marketTrustFact > span:last-child { display:flex; flex-direction:column; line-height:1.3; }
.marketTrustFact strong { color:var(--black); font:800 18px var(--font-display); }
.marketTrustIcon { width:35px; height:35px; flex:0 0 35px; display:grid; place-items:center; color:var(--emerald); }
.marketTrustIcon svg { width:29px; height:29px; }
.marketTrustWatch { color:var(--black); }
.marketTrustStar { font-size:34px; line-height:1; }
.marketTrustChrono img { width:auto; height:66px; object-fit:contain; }
.marketTrustStacked { flex-direction:column; gap:3px; text-align:center; }
.marketTrustStacked > span:last-child { align-items:center; }

.marketMainSection { padding:68px 0 82px; background:#f8f9fa; }
.marketChartShell {
  display:grid;
  grid-template-columns:minmax(0,1.8fr) minmax(310px,.72fr);
  gap:16px;
  align-items:stretch;
}
.marketChartCard,.marketMetricsCard,.marketTextPanel,.marketFactorsPanel,.marketBuyCta {
  border:1px solid var(--border-color);
  border-radius:15px;
  background:#fff;
  box-shadow:0 8px 28px rgba(12,12,14,.045);
}
.marketChartCard { min-height:505px; padding:28px; }
.marketChartHead { display:flex; align-items:flex-start; justify-content:space-between; gap:20px; }
.marketChartHead h2 { margin-top:4px; font-size:clamp(23px,2.5vw,31px); line-height:1.12; }
.marketChartHead p { margin-top:5px; color:var(--gray-text); font-size:13px; }
.marketTimeframes { display:flex; gap:6px; flex-wrap:wrap; }
.marketChartCard .chartSvgArea { height:400px; margin-top:18px; }
.marketEmptyState {
  min-height:445px;
  padding:50px 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  text-align:center;
}
.marketEmptyIcon { width:58px; height:58px; display:grid; place-items:center; border-radius:50%; color:var(--emerald); background:var(--emerald-light); }
.marketEmptyIcon svg { width:29px; height:29px; }
.marketEmptyState h3 { margin:17px 0 7px; font-size:22px; }
.marketEmptyState p { max-width:490px; color:var(--gray-text); font-size:14px; line-height:1.65; }
.marketMetricsCard { padding:30px 26px; display:flex; flex-direction:column; }
.marketMetricEyebrow { color:var(--gray-text); font-size:13px; font-weight:700; }
.marketCurrentPrice { display:block; margin:5px 0 2px; color:var(--emerald); font:850 clamp(32px,3vw,43px) var(--font-display); line-height:1.05; }
.marketTrend { min-height:23px; font-size:12px; font-weight:750; color:var(--gray-text); }
.marketMetricRows { margin-top:22px; border-top:1px solid var(--border-color); }
.marketMetricRows > div { min-height:44px; display:flex; align-items:center; justify-content:space-between; gap:12px; border-bottom:1px solid var(--border-color); font-size:12.5px; }
.marketMetricRows span { color:var(--gray-text); }
.marketMetricRows strong { display:flex; align-items:center; gap:6px; font-size:12.5px; }
.marketDot { width:7px; height:7px; border-radius:50%; display:inline-block; }
.marketDot.green { background:var(--emerald); }
.marketDot.amber { background:#f0b43c; }
.marketIndicator { padding:4px 8px; border-radius:6px; color:#5e4300; background:#ffd878; box-shadow:0 2px 7px rgba(180,120,0,.18); }
.marketAssessment { margin-top:auto; padding:18px; display:flex; gap:12px; border-radius:10px; background:#f5f7f6; }
.marketAssessmentIcon { width:33px; height:33px; flex:0 0 33px; display:grid; place-items:center; color:var(--emerald); }
.marketAssessmentIcon svg { width:27px; height:27px; }
.marketAssessment h3 { font-size:14px; margin-bottom:5px; }
.marketAssessment p { color:var(--gray-text); font-size:11.5px; line-height:1.55; }

.marketAnalysisGrid { margin-top:18px; display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.marketTextPanel,.marketFactorsPanel { padding:34px; }
.marketTextPanel h2,.marketFactorsPanel h2 { margin:5px 0 18px; font-size:clamp(25px,2.7vw,34px); line-height:1.12; }
.marketTextPanel p { color:var(--gray-text); font-size:15px; line-height:1.76; }
.marketTextPanel p + p { margin-top:16px; }
.marketFactorList { display:grid; grid-template-columns:1fr 1fr; gap:15px 20px; }
.marketFactorList > div { display:flex; gap:11px; min-width:0; }
.marketFactorList > div > span { width:28px; height:28px; flex:0 0 28px; display:grid; place-items:center; border-radius:50%; color:var(--emerald); background:var(--emerald-light); font:800 10px var(--font-display); }
.marketFactorList p { color:var(--gray-text); font-size:12px; line-height:1.5; }
.marketFactorList strong { display:block; margin-bottom:2px; color:var(--black); font-size:13px; }

.marketConversionGrid { margin-top:18px; display:grid; grid-template-columns:1fr 1.25fr; gap:16px; }
.marketSellCta {
  position:relative;
  min-height:330px;
  overflow:hidden;
  border-radius:15px;
  display:flex;
  align-items:center;
  color:#fff;
  background:linear-gradient(105deg,#07130f,#063e2b 65%,#07130f);
}
.marketSellCta::after { content:""; position:absolute; inset:0; background:linear-gradient(90deg,transparent 0,rgba(4,21,15,.95) 49%); }
.marketSellCta > img { width:46%; height:100%; object-fit:contain; align-self:flex-end; }
.marketSellCta > div { position:relative; z-index:2; width:60%; padding:34px 30px 34px 0; }
.marketSellCta h2,.marketBuyCta h2 { font-size:clamp(24px,2.4vw,31px); line-height:1.12; }
.marketSellCta p { margin:12px 0 19px; color:rgba(255,255,255,.72); font-size:13px; line-height:1.65; }
.marketSellCta .seoBtn { min-height:45px; padding:0 16px; font-size:13px; }
.marketSellCta small { display:block; margin-top:14px; color:rgba(255,255,255,.7); font-size:10px; }
.marketBuyCta { min-height:330px; padding:28px; }
.marketBuyHead { display:flex; align-items:flex-start; justify-content:space-between; gap:18px; }
.marketBuyHead p { margin-top:6px; color:var(--gray-text); font-size:12px; }
.marketBuyHead > button,.marketSectionHead > button {
  flex:0 0 auto;
  border:0;
  color:var(--emerald);
  background:transparent;
  font-weight:750;
  font-size:12px;
}
.marketProductMiniGrid { margin-top:20px; display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.marketMiniProduct { overflow:hidden; border:1px solid var(--border-color); border-radius:9px; background:#fff; text-align:left; }
.marketMiniProduct img { width:100%; height:145px; object-fit:contain; background:#f7f8fa; border-radius:8px 8px 0 0; }
.marketMiniProduct > span { display:block; padding:9px 10px 11px; }
.marketMiniProduct small { display:block; color:var(--gray-text); font-size:9px; }
.marketMiniProduct strong { display:block; margin-top:2px; font:800 12px var(--font-display); }
.marketMiniProduct em { display:block; margin-top:5px; color:var(--emerald); font-style:normal; font-size:10px; font-weight:750; }
.marketMiniEmpty { grid-column:1/-1; padding:36px 12px; text-align:center; color:var(--gray-text); font-size:13px; }

.marketModelsSection,.marketKnowledgeSection,.marketFaqSection,.marketFinalSection { padding:78px 0; }
.marketModelsSection { background:#fff; }
.marketKnowledgeSection { background:#f8f9fa; }
.marketSectionHead { margin-bottom:27px; display:flex; align-items:flex-end; justify-content:space-between; gap:20px; }
.marketSectionHead h2,.marketFaqSection > .wrap > h2 { margin-top:4px; font-size:clamp(28px,3.2vw,40px); line-height:1.1; }
.marketModelGrid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.marketModelCard { min-width:0; padding:10px 8px 13px; border:1px solid var(--border-color); border-radius:10px; background:#fff; transition:.2s; }
.marketModelCard:hover { transform:translateY(-3px); border-color:rgba(0,182,122,.4); box-shadow:var(--shadow-md); }
.marketModelCard img { width:100%; aspect-ratio:1/1; object-fit:contain; border-radius:8px; background:#f7f8fa; }
.marketModelCard strong { display:block; margin-top:8px; font:800 12px var(--font-display); }
.marketModelCard span { display:block; color:var(--gray-text); font-size:9px; }

.marketArticleGrid { display:grid; grid-template-columns:repeat(5,1fr); gap:12px; }
.marketArticleGrid > button { overflow:hidden; min-width:0; padding:0 0 17px; border:1px solid var(--border-color); border-radius:10px; background:#fff; text-align:left; }
.marketArticleImage { display:block; height:155px; background:center/cover no-repeat; }
.articleValue { background-image:url('/images/instagram-1.jpg'); }
.articleInvestment { background-image:url('/images/instagram-5.jpg'); }
.articleSell { background-image:url('/images/instagram-3.jpg'); }
.articleReference { background-image:url('/images/instagram-4.jpg'); }
.articlePrices { background-image:url('/images/instagram-2.jpg'); }
.marketArticleGrid small,.marketArticleGrid strong,.marketArticleGrid .marketArticleCopy,.marketArticleGrid em { display:block; margin-left:14px; margin-right:14px; }
.marketArticleGrid small { margin-top:13px; color:var(--emerald); font:750 9px var(--font-display); text-transform:uppercase; letter-spacing:.06em; }
.marketArticleGrid strong { margin-top:7px; font:800 14px/1.35 var(--font-display); }
.marketArticleCopy { margin-top:8px; color:var(--gray-text); font-size:11px; line-height:1.52; }
.marketArticleGrid em { margin-top:11px; color:var(--emerald); font-style:normal; font-size:11px; font-weight:750; }

.marketFaqSection { background:#fff; }
.marketFaqGrid { margin-top:28px; display:grid; grid-template-columns:1fr 1fr; gap:10px 14px; }
.marketFaqGrid details { border:1px solid var(--border-color); border-radius:8px; background:#fff; }
.marketFaqGrid summary { position:relative; padding:17px 44px 17px 18px; cursor:pointer; list-style:none; font:750 14px var(--font-display); }
.marketFaqGrid summary::-webkit-details-marker { display:none; }
.marketFaqGrid summary::after { content:"+"; position:absolute; right:17px; top:50%; transform:translateY(-50%); color:var(--emerald); font-size:21px; font-weight:500; }
.marketFaqGrid details[open] summary::after { content:"–"; }
.marketFaqGrid details p { padding:0 18px 18px; color:var(--gray-text); font-size:13px; line-height:1.65; }
.marketFinalSection { padding-top:22px; background:#fff; }
.marketFinalCta {
  position:relative;
  min-height:270px;
  overflow:hidden;
  border-radius:17px;
  display:flex;
  align-items:center;
  color:#fff;
  background:linear-gradient(100deg,#05140f,#06452f 56%,#07120e);
}
.marketFinalCta::after { content:""; position:absolute; inset:0; background:linear-gradient(90deg,rgba(4,18,13,.15),rgba(4,18,13,.97) 42%); }
.marketFinalCta > img { width:35%; height:300px; object-fit:contain; }
.marketFinalCta > div { position:relative; z-index:2; width:65%; padding:42px 48px 42px 8px; }
.marketFinalCta h2 { font-size:clamp(28px,3.3vw,43px); line-height:1.05; text-wrap:balance; }
.marketFinalCta p { max-width:720px; margin:14px 0 22px; color:rgba(255,255,255,.72); font-size:14px; line-height:1.65; }

@media (max-width:1100px) {
  .marketHeroCopy { padding-left:42px; }
  .marketChartShell { grid-template-columns:1fr; }
  .marketMetricsCard { min-height:390px; }
  .marketModelGrid { grid-template-columns:repeat(4,1fr); }
  .marketArticleGrid { grid-template-columns:repeat(3,1fr); }
  .marketArticleGrid > button:nth-child(n+4) { display:none; }
}
@media (max-width:800px) {
  #view-buy .homeHeroTitle span { white-space:normal; }
  .marketHero { min-height:380px; }
  .marketHeroCopy { width:100%; padding:42px 32px 240px; }
  .marketToolCard { grid-template-columns:1fr 1fr; }
  .marketTrustStrip { width:calc(100% - 28px); grid-template-columns:repeat(2,1fr); }
  .marketTrustFact { border-bottom:1px solid var(--border-color); }
  .marketTrustFact:nth-child(even) { border-right:0; }
  .marketTrustFact:last-child { grid-column:1/-1; }
  .marketAnalysisGrid,.marketConversionGrid { grid-template-columns:1fr; }
  .marketArticleGrid { grid-template-columns:repeat(2,1fr); }
  .marketArticleGrid > button:nth-child(3) { display:none; }
  .marketFaqGrid { grid-template-columns:1fr; }
  .marketFinalCta > img { position:absolute; left:-5%; bottom:-10%; width:42%; opacity:.55; }
  .marketFinalCta > div { width:100%; padding:42px 34px 42px 30%; }
}
@media (max-width:560px) {
  .marketHeroSection { padding-top:12px; }
  .marketHero { min-height:420px; border-radius:14px; }
  .marketHeroCopy { padding:32px 22px 285px; }
  .marketHeroCopy h1 { font-size:35px; }
  .marketHeroCopy p { font-size:14px; line-height:1.65; }
  .marketToolCard { left:14px; right:14px; bottom:14px; grid-template-columns:1fr; gap:8px; padding:12px; }
  .marketToolCard .formGroup:first-of-type { display:none; }
  .marketTrustStrip { grid-template-columns:repeat(2,1fr); }
  .marketTrustFact { min-height:74px; padding:8px 6px; flex-direction:column; gap:3px; text-align:center; }
  .marketTrustFact > span:last-child { align-items:center; }
  .marketTrustFact strong { font-size:14px; }
  .marketTrustFact { font-size:9px; }
  .marketTrustIcon { width:24px; height:24px; flex-basis:24px; }
  .marketTrustIcon svg { width:22px; height:22px; }
  .marketTrustStar { font-size:25px; }
  .marketTrustChrono img { height:49px; }
  .marketMainSection { padding:46px 0 60px; }
  .marketChartCard,.marketMetricsCard,.marketTextPanel,.marketFactorsPanel,.marketBuyCta { padding:20px; }
  .marketChartCard { min-height:390px; }
  .marketChartCard .chartSvgArea { height:285px; margin-left:-12px; width:calc(100% + 12px); }
  .marketChartHead { flex-direction:column; }
  .marketEmptyState { min-height:340px; }
  .marketFactorList { grid-template-columns:1fr; }
  .marketSellCta { min-height:440px; align-items:flex-end; }
  .marketSellCta > img { position:absolute; top:0; left:0; width:75%; height:205px; }
  .marketSellCta::after { background:linear-gradient(180deg,transparent 0,#071b14 46%); }
  .marketSellCta > div { width:100%; padding:210px 22px 26px; }
  .marketProductMiniGrid { grid-template-columns:repeat(2,1fr); }
  .marketMiniProduct:nth-child(3) { display:none; }
  .marketModelGrid { grid-template-columns:repeat(2,1fr); }
  .marketModelsSection,.marketKnowledgeSection,.marketFaqSection { padding:58px 0; }
  .marketSectionHead { align-items:flex-start; flex-direction:column; }
  .marketArticleGrid { grid-template-columns:1fr; }
  .marketArticleGrid > button:nth-child(n+2) { display:none; }
  .marketFinalCta { min-height:390px; align-items:flex-end; }
  .marketFinalCta > img { top:-25px; bottom:auto; left:-4%; width:72%; height:220px; }
  .marketFinalCta::after { background:linear-gradient(180deg,transparent,#061b13 47%); }
  .marketFinalCta > div { width:100%; padding:190px 22px 28px; }
  .marketFinalCta .seoCtaActions { flex-direction:column; }
  .marketFinalCta .seoBtn { width:100%; }
}

.menuBtnLine {
  left:50%;
  width:22px;
  margin-left:-11px;
  transform-origin:50% 50%;
  transition:top .28s cubic-bezier(.4,0,.2,1),transform .28s cubic-bezier(.4,0,.2,1);
  will-change:transform;
}
.menuBtnLine:nth-child(1) { top:calc(50% - 5px); transform:none; }
.menuBtnLine:nth-child(2) { top:calc(50% + 5px); transform:none; }
.menuBtn.open .menuBtnLine:nth-child(1),
.menuBtn.open .menuBtnLine:nth-child(2) { top:50%; }
.menuBtn.open .menuBtnLine:nth-child(1) { transform:rotate(45deg); }
.menuBtn.open .menuBtnLine:nth-child(2) { transform:rotate(-45deg); }

.footerBrandBlock > p:first-child { margin-top:0; }

#view-buy .homeArticleCard::before {
  background:linear-gradient(145deg,#f5faf8,#e8f4ef);
}
#view-buy .homeArticleVisual {
  position:absolute;
  z-index:2;
  top:19px;
  left:50%;
  width:88px;
  height:88px;
  margin:0;
  display:grid;
  place-items:center;
  border:1px solid rgba(0,182,122,.2);
  border-radius:22px;
  color:var(--emerald);
  background:rgba(255,255,255,.78);
  box-shadow:0 12px 28px rgba(18,55,43,.08);
  transform:translateX(-50%);
  letter-spacing:normal;
}
#view-buy .homeArticleVisual svg {
  width:54px;
  height:54px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.5;
  stroke-linecap:round;
  stroke-linejoin:round;
}
#view-buy .homeArticleVisualValue {
  color:#087f5b;
  background:linear-gradient(145deg,#fff,#e4f7ef);
}
#view-buy .homeArticleVisualBuying { color:#18241f; }
#view-buy .homeArticleVisualCare { color:#20735a; }

@media (max-width:1100px) {
  #view-buy .homeHeroGrid { align-items:stretch; }
  #view-buy .homeHeroMedia {
    min-height:auto;
    height:auto;
    padding:28px 16px 36px;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  #view-buy .homeHeroMedia img {
    width:auto;
    height:auto;
    max-height:360px;
    max-width:82%;
    object-fit:contain;
    margin:0 auto;
  }
}

@media (max-width:860px) {
  .headerRight .headerSearchLink {
    position:absolute;
    left:64px;
    top:50%;
    z-index:3;
    transform:translateY(-50%);
  }
  .headerRight .headerSearchLink:hover { transform:translateY(-50%); }

  #view-buy .homeHeroGrid { align-items:stretch; }
  #view-buy .homeHeroMedia {
    min-height:auto;
    height:auto;
    padding:24px 16px 32px;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  #view-buy .homeHeroMedia img {
    width:auto;
    height:auto;
    max-height:320px;
    max-width:85%;
    object-fit:contain;
    margin:0 auto;
  }
}

@media (max-width:600px) {
  .headerInner { padding-left:12px; }
  .headerRight .headerSearchLink { left:56px; }
  .menuBtn { width:40px; height:40px; }

  #view-buy .homeHeroCopy { padding:36px 24px 28px; }
  #view-buy .homeHeroTitle {
    font-size:clamp(26px,7.5vw,36px);
    line-height:1.12;
  }
  #view-buy .homeHeroText {
    font-size:17px;
    line-height:1.65;
  }
  #view-buy .homeHeroBenefits {
    gap:13px 18px;
    font-size:13.5px;
  }
  #view-buy .homeHeroBenefits span { font-size:13px; line-height:1.35; }
  #view-buy .homeHeroBenefits svg { width:17px; height:17px; }
  #view-buy .homeHeroMedia {
    min-height:auto;
    height:auto;
    padding:16px 12px 28px;
  }
  #view-buy .homeHeroMedia img {
    width:auto;
    height:auto;
    max-height:260px;
    max-width:88%;
    object-fit:contain;
  }
  #view-buy #homeSellWatch, #view-buy #homeBuyWatch { transform:scale(1.02); }
  #view-buy .homeSplitWatchFrame { top:10px; right:8px; bottom:10px; width:42%; }
}

.homeScannerBanner {
  width:100%;
  margin:14px 0 54px;
  padding:0;
  overflow:hidden;
  display:grid;
  grid-template-columns:minmax(0,1fr) 42%;
  min-height:270px;
  border:0;
  border-radius:18px;
  text-align:left;
  color:#fff;
  background:#090d0b;
  box-shadow:0 20px 50px rgba(5,20,15,.13);
  cursor:pointer;
}
.homeScannerBanner > span:first-child { padding:46px 28px 44px 48px; }
.homeScannerBanner .sectionKicker { color:#62dbb5; }
.homeScannerBanner strong { display:block; margin:8px 0 13px; font:800 clamp(30px,3.6vw,48px)/1.03 var(--font-display); letter-spacing:-.025em; }
.homeScannerDescription { display:block; max-width:650px; margin:0; color:rgba(255,255,255,.7); font-size:15px; line-height:1.65; }
.homeScannerBanner em { display:inline-flex; align-items:center; margin-top:24px; color:#32d19b; font:750 14px var(--font-display); font-style:normal; }
.homeScannerVisual { position:relative; min-height:270px; overflow:hidden; background:radial-gradient(circle at 50% 50%,#174534 0,#07110d 62%,#050806 100%); }
.homeScannerVisual::before,.homeScannerVisual::after { content:""; position:absolute; border:1px solid rgba(98,219,181,.28); border-radius:50%; }
.homeScannerVisual::before { width:190px; height:190px; left:50%; top:50%; transform:translate(-50%,-50%); }
.homeScannerVisual::after { width:145px; height:145px; left:50%; top:50%; border-style:dashed; transform:translate(-50%,-50%); animation:scannerRing 14s linear infinite; }
.homeScannerVisual svg { position:absolute; z-index:2; left:50%; top:50%; width:86px; height:86px; color:#63dbb5; transform:translate(-50%,-50%); }
@keyframes scannerRing { to { transform:translate(-50%,-50%) rotate(360deg); } }

.scannerHero { padding:46px 0 68px; color:#fff; background:#080c0a; }
/* align-items:start statt center — die linke Textspalte ist kuerzer als der Workbench-
   Container rechts und wurde dadurch 70 px tiefer eingehaengt. Jetzt beginnen beide oben buendig. */
.scannerHeroGrid { display:grid; grid-template-columns:minmax(0,.88fr) minmax(440px,1.12fr); gap:54px; align-items:start; }
.scannerHeroCopy h1 { max-width:670px; margin:11px 0 20px; font:850 clamp(44px,5.5vw,76px)/.98 var(--font-display); letter-spacing:-.035em; text-wrap:balance; }
.scannerHeroCopy > p { max-width:650px; color:rgba(255,255,255,.72); font-size:16px; line-height:1.72; }
.scannerHeroFacts { display:flex; flex-wrap:wrap; gap:12px 20px; margin-top:26px; }
.scannerHeroFacts span { display:flex; align-items:center; gap:7px; color:rgba(255,255,255,.86); font-size:12px; font-weight:700; }
.scannerHeroFacts svg { width:17px; height:17px; color:#2bd29a; }
.scannerPhotoTips { margin-top:34px; padding:20px 22px; display:grid; gap:8px; border:1px solid rgba(255,255,255,.12); border-radius:12px; background:rgba(255,255,255,.035); }
.scannerPhotoTips strong { margin-bottom:2px; font:750 13px var(--font-display); }
.scannerPhotoTips span { position:relative; padding-left:18px; color:rgba(255,255,255,.66); font-size:12px; line-height:1.45; }
.scannerPhotoTips span::before { content:""; position:absolute; left:1px; top:.52em; width:6px; height:6px; border-radius:50%; background:#2bd29a; }

.scannerWorkbench { padding:25px; border-radius:18px; color:#101511; background:#fff; box-shadow:0 25px 70px rgba(0,0,0,.32); }
.scannerWorkbenchHead,.scannerDetailTitle { display:flex; align-items:center; gap:12px; margin-bottom:18px; }
.scannerWorkbenchHead > div,.scannerDetailTitle > div { display:grid; gap:2px; }
.scannerWorkbenchHead strong,.scannerDetailTitle strong { font:800 17px var(--font-display); }
.scannerWorkbenchHead small,.scannerDetailTitle small { color:var(--gray-text); font-size:11px; }
.scannerStepBadge { width:30px; height:30px; flex:0 0 30px; display:grid; place-items:center; border-radius:50%; color:#fff; background:var(--emerald); font:800 12px var(--font-display); }
.scannerStage { position:relative; min-height:390px; overflow:hidden; display:grid; place-items:center; border:1.5px dashed #b8c2bd; border-radius:14px; background:#f5f7f6; cursor:pointer; transition:border-color .2s,background .2s,transform .2s; }
.scannerStage:hover,.scannerStage.dragover { border-color:var(--emerald); background:#edf8f4; }
.scannerStage:focus-visible { outline:3px solid rgba(0,182,122,.22); outline-offset:3px; }
.scannerStage img,.scannerStage video { position:absolute; inset:0; z-index:1; width:100%; height:100%; object-fit:contain; background:#0c100e; }
.scannerStage img[hidden],.scannerStage video[hidden],.scannerGuide[hidden] { display:none !important; }
.scannerStage video { object-fit:cover; }
.scannerStageEmpty { display:grid; place-items:center; gap:7px; color:#69736e; text-align:center; }
.scannerStageEmpty strong { color:#111713; font:800 17px var(--font-display); }
.scannerStageEmpty span:last-child { font-size:12px; }
.scannerCameraGlyph { width:72px; height:72px; display:grid; place-items:center; margin-bottom:5px; border-radius:50%; color:var(--emerald); background:#e0f5ed; }
.scannerCameraGlyph svg { width:34px; height:34px; }
.scannerGuide { position:absolute; inset:12%; z-index:3; pointer-events:none; border:1px solid rgba(255,255,255,.78); border-radius:45%; box-shadow:0 0 0 999px rgba(0,0,0,.18); }
.scannerGuide span::before,.scannerGuide span::after { content:""; position:absolute; left:50%; top:50%; background:rgba(255,255,255,.6); transform:translate(-50%,-50%); }
.scannerGuide span::before { width:28px; height:1px; }
.scannerGuide span::after { width:1px; height:28px; }
.scannerActions { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:13px; }
/* .seoBtn setzt display:inline-flex und stach damit das hidden-Attribut aus — deshalb war
   "Foto aufnehmen" dauerhaft sichtbar statt nur waehrend der Kameraaufnahme. */
.seoBtn[hidden] { display:none !important; }
.scannerActions .seoBtn,.scannerResultActions .seoBtn { min-height:50px; gap:8px; }
.scannerActions svg { width:18px; height:18px; }
.scannerAnalyzeBtn { width:100%; min-height:55px; margin-top:10px; }
.scannerAnalyzeBtn:disabled,.scannerResultActions button:disabled { opacity:.45; cursor:not-allowed; transform:none; }
/* Der Statuskasten unter der Schaltflaeche ist entfallen — die Analyse wird jetzt
   direkt auf dem Foto animiert. Der Text bleibt fuer Screenreader erhalten, aber
   unsichtbar (nicht display:none, sonst liest ihn aria-live nicht vor). */
.scannerStatusText { position:absolute; width:1px; height:1px; margin:-1px; padding:0; overflow:hidden; clip:rect(0 0 0 0); clip-path:inset(50%); white-space:nowrap; border:0; }
.scannerStatusText[hidden] { display:none !important; }

/* Analyse-Animation im Foto-Bereich: leichter Schleier, Sucherrahmen mit zwei Eckwinkeln
   und ein Lichtbalken, der von oben nach unten ueber das Bild wandert. */
.scannerScanning { position:absolute; inset:0; z-index:4; overflow:hidden; pointer-events:none; border-radius:12px; background:rgba(8,14,11,.34); }
.scannerScanning[hidden] { display:none !important; }
.scannerScanFrame { position:absolute; inset:8%; border:1.5px solid rgba(255,255,255,.32); border-radius:14px; }
.scannerScanFrame::before,.scannerScanFrame::after { content:""; position:absolute; width:26px; height:26px; border:2.5px solid var(--emerald); }
.scannerScanFrame::before { top:-2px; left:-2px; border-right:0; border-bottom:0; border-radius:14px 0 0 0; }
.scannerScanFrame::after { right:-2px; bottom:-2px; border-left:0; border-top:0; border-radius:0 0 14px 0; }
.scannerScanBeam { position:absolute; left:0; right:0; height:120px; animation:scannerBeam 2s ease-in-out infinite;
  background:linear-gradient(180deg, rgba(0,182,122,0) 0%, rgba(0,182,122,.26) 42%, rgba(0,182,122,.8) 50%, rgba(0,182,122,.26) 58%, rgba(0,182,122,0) 100%); }
@keyframes scannerBeam { 0% { top:-120px; } 100% { top:100%; } }
.scannerScanLabel { position:absolute; left:0; right:0; bottom:18px; text-align:center; color:#fff; font-size:12.5px; font-weight:700; text-shadow:0 1px 7px rgba(0,0,0,.55); animation:scannerLabelPulse 2s ease-in-out infinite; }
@keyframes scannerLabelPulse { 0%,100% { opacity:.72; } 50% { opacity:1; } }
@media (prefers-reduced-motion: reduce) {
  .scannerScanBeam { animation:none; top:calc(50% - 60px); }
  .scannerScanLabel { animation:none; opacity:1; }
}
.scannerError { margin-top:12px; padding:12px 14px; border-radius:9px; color:#8b271e; background:#fff0ed; font-size:12px; line-height:1.5; }
.scannerPrivacy { margin:13px 2px 0; display:flex; align-items:flex-start; gap:7px; color:#68736e; font-size:10px; line-height:1.5; }
.scannerPrivacy svg { width:15px; height:15px; flex:0 0 15px; color:var(--emerald); }

.scannerResultsSection { padding:70px 0; background:#f5f7f6; }
.scannerResultHead { margin-bottom:26px; display:flex; align-items:flex-end; justify-content:space-between; gap:20px; }
.scannerResultHead h2 { margin-top:7px; font-size:clamp(30px,4vw,48px); line-height:1.05; }
.scannerResetBtn { border:0; padding:8px 0; color:var(--emerald); background:transparent; font:750 13px var(--font-display); cursor:pointer; }
.scannerResultGrid { display:grid; grid-template-columns:minmax(330px,.8fr) minmax(450px,1.2fr); gap:20px; }
.scannerPrimaryResult,.scannerDetailsResult { overflow:hidden; border:1px solid var(--border-color); border-radius:16px; background:#fff; box-shadow:0 12px 40px rgba(9,35,26,.06); }
.scannerResultPhoto { height:330px; background:#0c100e; }
.scannerResultPhoto img { width:100%; height:100%; object-fit:contain; }
.scannerDetected { padding:25px 26px 18px; }
.scannerDetected > span,.scannerMarketCard > span { color:var(--gray-text); font-size:10px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.scannerDetected h3 { margin:6px 0 14px; font:850 31px/1.05 var(--font-display); }
.scannerConfidence { display:flex; align-items:center; gap:12px; }
.scannerConfidence > div { height:7px; flex:1; overflow:hidden; border-radius:10px; background:#e9edeb; }
.scannerConfidence > div span { display:block; width:0; height:100%; border-radius:inherit; background:linear-gradient(90deg,var(--emerald),#4a8ff7); transition:width .65s ease; }
.scannerConfidence strong { min-width:48px; color:#52605a; font-size:12px; text-align:right; }
.scannerDetected p { margin-top:10px; color:var(--gray-text); font-size:11px; line-height:1.5; }
.scannerAlternativeBlock { padding:0 26px 25px; }
.scannerAlternativeBlock > strong { display:block; margin-bottom:10px; font:750 12px var(--font-display); }
.scannerAlternatives { display:flex; flex-wrap:wrap; gap:7px; }
.scannerAlternatives button { padding:8px 10px; border:1px solid var(--border-color); border-radius:8px; color:#334039; background:#fff; font:700 10px var(--font-display); cursor:pointer; }
.scannerAlternatives button:hover { border-color:var(--emerald); color:var(--emerald); }
.scannerDetailsResult { padding:26px; }
.scannerAttributeGrid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.scannerAttributeGrid > div { padding:15px; border-radius:11px; background:#f5f7f6; }
.scannerAttributeGrid > div > span { display:block; margin-bottom:11px; color:#78827d; font-size:9px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.scannerPredictionRow { display:grid; grid-template-columns:minmax(0,1fr) auto; gap:5px 8px; align-items:center; margin-top:8px; }
.scannerPredictionRow strong { overflow:hidden; color:#1d2722; font:700 11px var(--font-display); text-overflow:ellipsis; white-space:nowrap; }
.scannerPredictionRow em { color:#68736e; font-size:9px; font-style:normal; }
.scannerPredictionBar { grid-column:1/-1; height:4px; overflow:hidden; border-radius:4px; background:#dfe5e2; }
.scannerPredictionBar span { display:block; height:100%; border-radius:inherit; background:var(--emerald); }
.scannerReferenceBox { margin-top:18px; padding-top:18px; border-top:1px solid var(--border-color); }
.scannerReferenceBox label { display:block; margin-bottom:8px; font:750 12px var(--font-display); }
.scannerReferenceBox select { width:100%; }
.scannerReferenceBox small { display:block; margin-top:8px; color:var(--gray-text); font-size:10px; line-height:1.5; }
/* Vorhersagen des Referenz-Kopfes ueber dem Auswahlfeld. Referenznummern sind
   Codes, deshalb Ziffernbreite fixieren, damit die Zeilen ruhig untereinander
   stehen — im Gegensatz zu den uebrigen Merkmalen mit Fliesstext-Labels. */
.scannerReferencePredictions { margin-bottom:12px; }
.scannerReferencePredictions:empty { display:none; }
.scannerReferencePredictions .scannerPredictionRow:first-child { margin-top:0; }
.scannerReferencePredictions .scannerPredictionRow strong { font-variant-numeric:tabular-nums; letter-spacing:.02em; }
.scannerMarketCard { margin-top:14px; padding:17px 18px; display:grid; grid-template-columns:1fr auto; gap:3px 16px; align-items:end; border:1px solid #bfead9; border-radius:11px; background:#edfaf5; }
.scannerMarketCard strong { grid-row:1/3; grid-column:2; color:#07553d; font:850 26px var(--font-display); }
.scannerMarketCard small { color:#497365; font-size:10px; }
.scannerResultActions { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:16px; }
.scannerDisclaimer { margin-top:18px; padding:14px 18px; border-left:3px solid #d7a442; color:#5d5544; background:#fffaf0; font-size:11px; line-height:1.6; }
.scannerHowSection { padding:72px 0 84px; }
.scannerHowGrid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:28px; }
.scannerHowGrid article { min-height:180px; padding:23px; border:1px solid var(--border-color); border-radius:13px; background:#fff; }
.scannerHowGrid article > span { display:block; margin-bottom:30px; color:var(--emerald); font:850 12px var(--font-display); }
.scannerHowGrid strong { display:block; margin-bottom:8px; font:800 16px var(--font-display); }
.scannerHowGrid p { margin:0; color:var(--gray-text); font-size:12px; line-height:1.58; }

.headerInner { max-width:1320px; }
.desktopNav { gap:18px; }
.navTab { white-space:nowrap; }
.navScannerTab { display:inline-flex; align-items:center; justify-content:center; gap:7px; }
.navScannerTab svg { width:19px; height:19px; flex:0 0 19px; }
@media (max-width:1280px) and (min-width:1101px) {
  .desktopNav { gap:13px; }
  .navTab { font-size:14px; }
  .navScannerTab { width:38px; padding-left:8px; padding-right:8px; }
  .navScannerTab span { display:none; }
  .headerRight .btnCtaHeader { min-width:148px; font-size:14px; }
}
@media (max-width:1100px) {
  .header { height:70px; }
  .headerInner { position:relative; }
  .menuBtn { display:flex; }
  .desktopNav { display:none; }
  .headerRight .btnCtaHeader { display:none; }
  .headerLogo { position:absolute; top:50%; left:50%; z-index:2; transform:translate(-50%,-50%); }
  .headerLogo img { width:auto; height:72px; max-width:108px; object-fit:contain; }
  .headerRight .headerSearchLink { position:absolute; left:clamp(56px,6vw,64px); top:50%; z-index:3; transform:translateY(-50%); }
  .headerRight .headerSearchLink:hover { transform:translateY(-50%); }
}
@media (max-width:900px) {
  .scannerHeroGrid { grid-template-columns:1fr; gap:36px; }
  .scannerHeroCopy { max-width:760px; }
  .scannerResultGrid { grid-template-columns:1fr; }
  .scannerHowGrid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:700px) {
  .homeScannerBanner { grid-template-columns:1fr; margin-bottom:42px; }
  .homeScannerBanner > span:first-child { padding:32px 24px; }
  .homeScannerVisual { min-height:190px; }
  .scannerHero { padding:32px 0 48px; }
  .scannerHeroCopy h1 { font-size:clamp(38px,11vw,51px); }
  .scannerHeroCopy > p { font-size:15px; }
  .scannerHeroFacts { display:grid; gap:10px; }
  .scannerWorkbench { padding:16px; border-radius:14px; }
  .scannerStage { min-height:390px; }
  .scannerActions { grid-template-columns:1fr; }
  .scannerAttributeGrid { grid-template-columns:1fr; }
  .scannerResultHead { align-items:flex-start; flex-direction:column; }
  .scannerResultPhoto { height:300px; }
  .scannerDetailsResult { padding:20px; }
  .scannerResultActions { grid-template-columns:1fr; }
  .scannerMarketCard { grid-template-columns:1fr; }
  .scannerMarketCard strong { grid-row:auto; grid-column:auto; margin-top:3px; }
}
@media (max-width:520px) {
  .scannerStage { min-height:330px; }
  .scannerHowGrid { grid-template-columns:1fr; }
  .scannerHowGrid article { min-height:150px; }
  .scannerHowGrid article > span { margin-bottom:20px; }
}

.homeToolsSection { background:#f7f8fa; }
.homeToolsGrid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.homeToolCard {
  min-height:250px;
  padding:34px;
  display:grid;
  grid-template-columns:56px 1fr;
  gap:24px;
  border:1px solid var(--border-color);
  border-radius:16px;
  color:var(--black);
  background:#fff;
  text-align:left;
  transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
}
.homeToolCard:hover { transform:translateY(-4px); border-color:rgba(0,182,122,.45); box-shadow:0 16px 34px rgba(12,12,14,.08); }
.homeToolNumber { width:56px; height:56px; display:grid; place-items:center; border-radius:50%; color:var(--emerald); background:var(--emerald-light); font:850 13px var(--font-display); }
.homeToolCard h3 { margin:3px 0 12px; font:800 clamp(24px,2.6vw,34px)/1.08 var(--font-display); }
.homeToolCard p { max-width:560px; color:var(--gray-text); font-size:15px; line-height:1.7; }
.homeToolCard strong { display:block; margin-top:24px; color:var(--emerald); font:750 14px var(--font-display); }

#view-watchpedia { padding:62px 0 90px; background:#f8f9fa; }
#view-watchpedia .sectionHead { max-width:860px; margin-bottom:44px; }
#view-watchpedia .sectionHead .sectionTitle { margin-top:6px; font-size:clamp(48px,7vw,88px); letter-spacing:-.035em; }
#view-watchpedia .sectionHead .sectionSub { max-width:820px; }
#view-watchpedia .wpediaArticles { margin-bottom:88px; }
#view-watchpedia .wpediaArticles > .homeArticleCard,
#view-watchpedia .wpediaArticle { background:#fff; }
.wpediaToolsSection { margin:0 0 34px; padding-top:18px; }
.wpediaToolsSection > h2 { margin:5px 0 26px; font:800 clamp(30px,3.8vw,48px)/1.08 var(--font-display); }
.wpediaToolCards { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.wpediaToolCards > a {
  min-height:230px;
  padding:30px;
  display:flex;
  align-items:flex-start;
  flex-direction:column;
  border:1px solid var(--border-color);
  border-radius:16px;
  background:#fff;
  text-align:left;
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}
.wpediaToolCards > a:hover { transform:translateY(-3px); border-color:rgba(0,182,122,.45); box-shadow:0 14px 30px rgba(12,12,14,.07); }
.wpediaToolCards > a > span { margin-bottom:28px; color:var(--emerald); font:850 12px var(--font-display); }
.wpediaToolCards strong { font:800 25px var(--font-display); }
.wpediaToolCards p { max-width:540px; margin:9px 0 20px; color:var(--gray-text); font-size:14px; line-height:1.65; }
.wpediaToolCards em { margin-top:auto; color:var(--emerald); font:750 13px var(--font-display); font-style:normal; }
#watchpediaBraceletCalculator { scroll-margin-top:100px; margin:0; background:#fff; }

.wpediaSearch { position:relative; display:block; max-width:480px; margin:26px auto 0; }
.wpediaSearch svg { position:absolute; left:18px; top:50%; transform:translateY(-50%); width:18px; height:18px; color:var(--gray-text); pointer-events:none; }
.wpediaSearch input { width:100%; padding:14px 18px 14px 48px; border:1px solid var(--border-color); border-radius:12px; font:500 14px var(--font-display); color:var(--black); background:#fff; }
.wpediaSearch input:focus { outline:none; border-color:rgba(0,182,122,.5); box-shadow:0 0 0 3px var(--emerald-light); }
.wpediaSearch input::placeholder { color:var(--gray-text); }

.wpediaToolsSectionTop { margin:56px 0 4px; padding-top:0; }
.wpediaToolsSectionTop > h2 { margin:0 0 4px; font:800 clamp(26px,3vw,36px)/1.15 var(--font-display); }
.wpediaSectionSub { margin:0 0 24px; color:var(--gray-text); font-size:14px; }

.wpediaDarkTools { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.wpediaDarkTool {
  position:relative;
  overflow:hidden;
  min-height:190px;
  padding:28px 30px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  border-radius:16px;
  color:#fff;
  background:linear-gradient(150deg,#0a1512,#0e2019 62%,#0a1512);
  text-align:left;
  transition:transform .22s ease, box-shadow .22s ease;
}
.wpediaDarkTool:hover { transform:translateY(-3px); box-shadow:0 16px 34px rgba(6,12,10,.28); }
.wpediaDarkToolKicker { color:var(--emerald); font:850 11px var(--font-display); letter-spacing:.06em; text-transform:uppercase; }
.wpediaDarkTool h3 { margin:10px 0 8px; font:800 24px/1.15 var(--font-display); }
.wpediaDarkTool p { max-width:76%; margin:0; color:rgba(255,255,255,.7); font-size:13.5px; line-height:1.6; }
.wpediaDarkTool em { margin-top:18px; color:var(--emerald); font:750 13px var(--font-display); font-style:normal; }
.wpediaDarkToolIcon {
  position:absolute;
  right:26px;
  bottom:18px;
  width:84px;
  height:84px;
  display:grid;
  place-items:center;
  color:var(--emerald);
}
.wpediaDarkToolIcon::before,.wpediaDarkToolIcon::after {
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  border-radius:50%;
  border:1px solid rgba(0,182,122,.35);
  transform:translate(-50%,-50%);
}
.wpediaDarkToolIcon::before { width:84px; height:84px; }
.wpediaDarkToolIcon::after { width:62px; height:62px; border-style:dashed; animation:scannerRing 14s linear infinite; }
.wpediaDarkToolIcon svg {
  position:relative;
  z-index:2;
  width:34px;
  height:34px;
  filter:drop-shadow(0 0 8px rgba(0,182,122,.55));
}

.wpediaArticlesSection { margin:56px 0 0; }
.wpediaArticlesSection > h2 { margin:0 0 4px; font:800 clamp(26px,3vw,36px)/1.15 var(--font-display); }
.wpediaArticleGrid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.wpediaArticleCard { border:1px solid var(--border-color); border-radius:16px; overflow:hidden; background:#fff; transition:transform .2s ease, box-shadow .2s ease; }
.wpediaArticleCard:hover { transform:translateY(-3px); box-shadow:0 14px 30px rgba(12,12,14,.07); }
.wpediaArticleCard summary { display:block; padding:0 0 18px; cursor:pointer; list-style:none; }
.wpediaArticleCard summary::-webkit-details-marker { display:none; }
.wpediaArticleCard summary > * { padding-left:16px; padding-right:16px; }
.wpediaArticleImg { display:block; width:100%; aspect-ratio:4/3; margin:0 0 14px; background-color:#eef0f2; background-size:cover; background-position:center; padding:0 !important; }
.wpediaArticleTag { display:inline-block; margin-bottom:10px; font:800 11px var(--font-display); letter-spacing:.04em; text-transform:uppercase; }
.wpediaTagKauf { color:var(--emerald); }
.wpediaTagWissen,.wpediaTagWerk,.wpediaTagPflege { color:var(--black); }
.wpediaArticleCard h3 { margin:0 0 10px; font:750 16px/1.3 var(--font-display); color:var(--black); }
.wpediaArticleMeta { display:block; color:var(--gray-text); font-size:12px; }
.wpediaArticleCard[open] summary { padding-bottom:8px; }
.wpediaArticleCard .wpediaArticleBody { margin:0 16px 20px; padding-top:14px; border-top:1px solid var(--border-color); color:var(--gray-text); font-size:13px; line-height:1.7; }
.wpediaArticleCard .wpediaArticleBody p + p { margin-top:10px; }
.wpediaArticleCard[data-hidden="true"] { display:none; }

.wpediaMoreSection { margin:64px 0 0; }
.wpediaMoreSection > h2 { margin:0 0 22px; font:800 clamp(24px,2.8vw,32px)/1.15 var(--font-display); }
.wpediaArticles[data-empty="true"]::after { content:"Keine Treffer für deine Suche."; display:block; grid-column:1/-1; padding:24px 0; color:var(--gray-text); font-size:14px; text-align:center; }

@media (max-width:1024px) {
  .wpediaArticleGrid { grid-template-columns:1fr 1fr; }
}
@media (max-width:640px) {
  .wpediaDarkTools { grid-template-columns:1fr; }
  .wpediaArticleGrid { grid-template-columns:1fr; }
  .wpediaDarkTool p { max-width:100%; }
  /* Symbol bleibt auch auf dem Handy rechts NEBEN dem Link ("Watch Scanner
     öffnen →"), statt darunter zu rutschen — das kostete eine ganze Zeile
     Höhe und trennte Symbol und Beschriftung optisch voneinander. */
  .wpediaDarkToolIcon { position:absolute; right:18px; bottom:16px; margin-top:0; width:52px; height:52px; }
  .wpediaDarkToolIcon::before { width:52px; height:52px; }
  .wpediaDarkToolIcon::after { width:38px; height:38px; }
  .wpediaDarkToolIcon svg { width:22px; height:22px; }
  /* Freiraum, damit der Link nicht unter das Symbol läuft. */
  .wpediaDarkTool em { padding-right:66px; }
}

.wpediaToolHead h2 { margin:4px 0 7px; font:800 clamp(26px,3vw,38px)/1.12 var(--font-display); }

.marketDynamicWatch { transition:opacity .28s ease,filter .28s ease; }
.marketDynamicWatch.is-changing { opacity:0; }
.marketSearchLead { grid-column:1/-1; padding:24px; border:1px solid #bfead9; border-radius:12px; background:#f1fbf7; }
.marketSearchLead strong { display:block; font:800 19px var(--font-display); }
.marketSearchLead p { margin:7px 0 18px; color:var(--gray-text); font-size:13px; line-height:1.6; }
.marketSearchLead > div { display:flex; gap:10px; flex-wrap:wrap; }
.marketSearchLead .seoBtn { min-height:42px; padding:0 15px; font-size:12px; }

.aboutPage { margin-bottom:0; background:#fff; }
.aboutPage h1,.aboutPage h2,.aboutPage h3 { font-family:var(--font-display); }
.aboutHeroSection { padding:34px 0 0; }

#view-about .homeTrustStrip { position:relative; z-index:4; margin:-30px 44px 0; box-shadow:0 12px 34px rgba(15,23,42,.1); }
#view-about .homeTrustFact { padding:18px 12px; }
#view-about .homeTrustFact strong { font-size:15px; }

.aboutTrustChrono { text-decoration:none; color:inherit; }
.aboutTrustChronoLogo { display:flex; align-items:center; justify-content:center; width:26px; height:26px; flex:0 0 26px; }
.aboutTrustChronoLogo img { max-width:100%; max-height:100%; object-fit:contain; }
.aboutHero {
  position:relative;
  min-height:610px;
  display:grid;
  grid-template-columns:1fr;
  overflow:hidden;
  border-radius:20px;
  color:#fff;
  background:linear-gradient(115deg,#07110d,#10231b);
  box-shadow:0 18px 48px rgba(12,12,14,.15);
  isolation:isolate;
}

.aboutHeroCopy { position:relative; z-index:2; max-width:min(700px,54%); padding:68px 52px; display:flex; align-items:flex-start; justify-content:center; flex-direction:column; }
.aboutHeroCopy .sectionKicker { color:#69d9b3; }
.aboutHeroCopy h1 { max-width:600px; margin:9px 0 22px; font-size:clamp(38px,4.1vw,54px); line-height:1.06; letter-spacing:-.03em; text-wrap:balance; }
.aboutHeroCopy p { max-width:610px; color:rgba(255,255,255,.75); font-size:17px; line-height:1.72; }
.aboutHeroCopy .seoCtaActions { margin-top:30px; }
.aboutHeroCopy .seoBtnSecondary { color:#fff; border-color:rgba(255,255,255,.72); }

.aboutHeroMedia {
  position:absolute;
  inset:0;
  min-width:0;
  z-index:1;
  pointer-events:none;
}

/* translateX schiebt das Bild nach rechts; der rechte Rand wird abgeschnitten.
   Bei 13 % stand die rechte Stehlampe (Bildbereich 72-86 %) noch im Bild.
   Ab 28 % faellt sie heraus, 30 % gibt etwas Reserve. Die linke Lampe bleibt
   dabei hinter dem deckenden Teil des Verlaufs (bis 34 %). */
.aboutHeroMedia img { width:100%; height:100%; display:block; object-fit:cover; object-position:center 28%; transform:translateX(30%); }
.aboutHeroMedia::after {
  content:'';
  position:absolute;
  inset:0;
  background:
    /* Deckend bis 50 %: durch die staerkere Verschiebung des Bildes liegt die linke
       Stehlampe jetzt bei 35-49 % und wuerde sonst hinter der Ueberschrift durchscheinen.
       Felix beginnt erst bei ~55 %, wird also nicht angeschnitten. */
    linear-gradient(90deg, #07110d 0%, #07110d 50%, rgba(8,18,14,.86) 58%, rgba(9,20,15,.5) 68%, rgba(11,24,18,.16) 82%, rgba(11,24,18,0) 95%),
    linear-gradient(180deg, rgba(7,17,13,.34) 0%, rgba(7,17,13,0) 30%, rgba(7,17,13,0) 70%, rgba(7,17,13,.3) 100%);
}
.aboutSection { padding:94px 0; }

.aboutStoryGrid,.aboutFounderGrid { display:grid; grid-template-columns:0.78fr 1.22fr; gap:56px; align-items:center; }
.aboutFounderGrid { grid-template-columns:0.72fr 1.28fr; }
.aboutStoryCopy h2,.aboutFounderGrid h2,.aboutSectionHead h2 { margin:5px 0 22px; font-size:clamp(34px,4.2vw,53px); line-height:1.07; letter-spacing:-.025em; }
.aboutStoryCopy > p,.aboutFounderGrid > div > p { margin:0 0 18px; color:var(--gray-text); font-size:16px; line-height:1.78; }

.aboutCheckList { margin-top:28px; display:grid; gap:13px; list-style:none; padding-left:0; }
.aboutCheckList li { position:relative; padding-left:30px; font:700 14px/1.55 var(--font-display); }
.aboutCheckList li::before { content:"✓"; position:absolute; left:0; top:0; color:var(--emerald); }

.aboutStoryMedia { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.aboutStoryMedia img { width:100%; aspect-ratio:3/4; height:auto; object-fit:cover; border-radius:12px; display:block; background:#1d2320; }
.aboutFounderSection { background:#f7f8fa; }
.aboutFounderLead { color:var(--black)!important; font:750 20px/1.45 var(--font-display)!important; }
.aboutSignature { width:170px; max-height:70px; margin-top:10px; object-fit:contain; object-position:left center; }

.aboutTimeline { position:relative; display:grid; grid-template-columns:repeat(7,1fr); gap:12px; padding-top:8px; border:0; background:none; }
.aboutTimeline::before { content:''; position:absolute; left:7%; right:7%; top:13px; height:2px; background:var(--border-color); }
.aboutTimeline li { position:relative; display:flex; flex-direction:column; align-items:center; text-align:center; padding:0; min-height:0; border:0; }
.aboutTimeline .aboutTlDot { position:relative; z-index:1; width:14px; height:14px; border-radius:50%; background:var(--emerald); box-shadow:0 0 0 5px #fff; margin-bottom:16px; }
.aboutTimeline strong { display:block; font:800 15px var(--font-display); color:var(--black); }
.aboutTimeline p { margin-top:6px; color:var(--gray-text); font-size:12px; line-height:1.45; max-width:132px; }
.aboutSectionHead { max-width:820px; margin-bottom:34px; }
.aboutValuesGrid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.aboutValuesGrid article { min-height:235px; padding:28px; border:1px solid var(--border-color); border-radius:14px; background:#fff; }
.aboutValuesGrid article > span { display:block; margin-bottom:34px; color:var(--emerald); font:850 11px var(--font-display); }
.aboutValuesGrid h3 { margin-bottom:10px; font-size:20px; }
.aboutValuesGrid p { color:var(--gray-text); font-size:13.5px; line-height:1.66; }
.aboutStatsSection { padding:42px 0; color:#fff; background:#08110d; }
.aboutStatsGrid { display:grid; grid-template-columns:repeat(5,1fr); }
.aboutStatsGrid > div { min-height:112px; padding:18px; display:flex; align-items:center; justify-content:center; flex-direction:column; text-align:center; border-right:1px solid rgba(255,255,255,.13); }
.aboutStatsGrid > div:last-child { border-right:0; }
.aboutStatsGrid strong { color:#66d8b2; font:850 clamp(25px,3vw,39px)/1 var(--font-display); }
.aboutStatsGrid span { margin-top:9px; color:rgba(255,255,255,.7); font-size:12px; }
.aboutProcessGrid,.aboutEntryGrid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.aboutProcessGrid > article { padding:36px; border:1px solid var(--border-color); border-radius:16px; background:#fff; }
.aboutProcessGrid h3 { margin-bottom:24px; font-size:29px; }
.aboutProcessGrid ol { margin-bottom:30px; display:grid; }
.aboutProcessGrid li { min-height:54px; display:flex; align-items:center; gap:14px; border-bottom:1px solid var(--border-color); font-size:14px; font-weight:650; }
.aboutProcessGrid li span { width:29px; height:29px; display:grid; place-items:center; border-radius:50%; color:var(--emerald); background:var(--emerald-light); font:800 10px var(--font-display); }
.aboutReviewsSection { background:#f7f8fa; }
/* Zwei Spalten statt drei: seit die Karten aus REVIEWS/CHRONO_REVIEWS kommen, sind es
   vier Bewertungen mit den laengeren Originaltexten. */
.aboutReviewsGrid { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.aboutReviewsGrid article { min-height:300px; padding:28px; display:flex; flex-direction:column; border:1px solid var(--border-color); border-radius:14px; background:#fff; }
.aboutReviewsGrid article > div { color:#00b67a; letter-spacing:.12em; }
.aboutReviewsGrid h3 { margin:22px 0 12px; font-size:19px; }
.aboutReviewsGrid p { color:var(--gray-text); font-size:14px; line-height:1.72; }
.aboutReviewsGrid span { margin-top:auto; padding-top:20px; color:var(--black); font-size:12px; font-weight:750; }
.aboutReviewBadges { margin-top:16px; display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.aboutReviewBadges a { padding:20px 24px; display:flex; align-items:center; justify-content:space-between; gap:18px; border:1px solid var(--border-color); border-radius:12px; background:#fff; }
.aboutReviewBadges strong { font:850 21px var(--font-display); }
.aboutReviewBadges span { color:var(--emerald); font-size:12px; font-weight:750; }
.aboutGallery { display:grid; grid-template-columns:repeat(5,1fr); gap:10px; }
.aboutGallery img { width:100%; aspect-ratio:4/5; object-fit:cover; border-radius:12px; }
.aboutEntrySection { padding-top:18px; }
.aboutEntryGrid > article { min-height:345px; padding:42px; display:flex; align-items:flex-start; justify-content:flex-end; flex-direction:column; border:1px solid var(--border-color); border-radius:17px; background:#f7f8fa; }
.aboutEntryGrid > article.dark { color:#fff; border-color:#09100d; background:linear-gradient(115deg,#07110d,#104630); }
.aboutEntryGrid .dark .sectionKicker { color:#69d9b3; }
.aboutEntryGrid h2 { max-width:550px; margin:7px 0 14px; font-size:clamp(29px,3.2vw,43px); line-height:1.08; }
.aboutEntryGrid p { max-width:560px; margin-bottom:24px; color:var(--gray-text); font-size:15px; line-height:1.7; }
.aboutEntryGrid .dark p { color:rgba(255,255,255,.72); }

@media (max-width:1000px) {
  .aboutHeroCopy { max-width:none; padding:58px 42px; }

  .aboutHeroMedia { width:100%; }
  .aboutHeroMedia img { object-position:center 32%; transform:none; }
  .aboutHeroMedia::after {
    background:
      linear-gradient(180deg, rgba(7,17,13,.93) 0%, rgba(7,17,13,.86) 42%, rgba(7,17,13,.62) 70%, rgba(7,17,13,.5) 100%);
  }
  .aboutStoryGrid,.aboutFounderGrid { grid-template-columns:1fr; gap:42px; }
  .aboutStoryMedia { grid-template-columns:1fr 1fr; }

  .aboutTimeline { grid-template-columns:1fr; gap:0; padding-top:0; }
  .aboutTimeline::before { left:6px; right:auto; top:8px; bottom:8px; width:2px; height:auto; }
  .aboutTimeline li { flex-direction:row; align-items:flex-start; text-align:left; gap:16px; padding:10px 0; }
  .aboutTimeline .aboutTlDot { margin:5px 0 0; flex:0 0 14px; }
  .aboutTimeline p { max-width:none; }
  .aboutStoryMedia { min-height:480px; }
  .aboutValuesGrid { grid-template-columns:repeat(2,1fr); }
  .aboutStatsGrid { grid-template-columns:repeat(3,1fr); }
  .aboutStatsGrid > div:nth-child(3) { border-right:0; }
  .aboutStatsGrid > div:nth-child(n+4) { border-top:1px solid rgba(255,255,255,.13); }
  .aboutReviewsGrid { grid-template-columns:1fr; }
}
@media (max-width:760px) {
  .homeToolsGrid,.wpediaToolCards,.aboutProcessGrid,.aboutEntryGrid,.aboutReviewBadges { grid-template-columns:1fr; }
  .homeToolCard { grid-template-columns:44px 1fr; min-height:220px; padding:26px 22px; gap:16px; }
  .homeToolNumber { width:44px; height:44px; }
  #view-watchpedia { padding-top:38px; }
  #view-watchpedia .wpediaArticles { margin-bottom:64px; }
  .aboutHeroSection { padding-top:12px; }
  #view-about .homeTrustStrip { margin:-18px 12px 0; grid-template-columns:1fr 1fr; }
  .aboutHero { border-radius:14px; }
  .aboutHeroCopy { padding:42px 24px; }
  .aboutHeroCopy h1 { font-size:clamp(39px,12vw,56px); }
  .aboutHeroCopy p { font-size:15px; }
  .aboutHeroCopy .seoCtaActions { width:100%; flex-direction:column; }
  .aboutHeroCopy .seoBtn { width:100%; }
  .aboutHeroMedia { min-height:380px; }
  .aboutSection { padding:68px 0; }
  .aboutStoryMedia { min-height:390px; }
  .aboutValuesGrid { grid-template-columns:1fr; }
  .aboutValuesGrid article { min-height:205px; }
  .aboutStatsGrid { grid-template-columns:1fr 1fr; }
  .aboutStatsGrid > div { border-top:1px solid rgba(255,255,255,.13); }
  .aboutStatsGrid > div:nth-child(odd) { border-right:1px solid rgba(255,255,255,.13); }
  .aboutStatsGrid > div:nth-child(even) { border-right:0; }
  .aboutStatsGrid > div:first-child,.aboutStatsGrid > div:nth-child(2) { border-top:0; }
  .aboutStatsGrid > div:last-child { grid-column:1/-1; }
  .aboutProcessGrid > article,.aboutEntryGrid > article { padding:28px 23px; }
  .aboutGallery { grid-template-columns:repeat(2,1fr); }
  .aboutGallery img:last-child { grid-column:1/-1; aspect-ratio:2/1; }
  .marketSearchLead > div { flex-direction:column; }
  .marketSearchLead .seoBtn { width:100%; }
}

.productsHeroSection { padding:38px 0 0; background:linear-gradient(145deg,#f7f9f8 0%,#eef5f1 55%,#fff 100%); overflow:hidden; }
.productsHero { min-height:440px; display:grid; grid-template-columns:minmax(0,1.04fr) minmax(280px,.96fr); align-items:center; gap:32px; padding:42px 48px 0; border:1px solid #dbe7e1; border-radius:22px 22px 0 0; background:linear-gradient(112deg,#fbfcfb 0%,#f1f6f3 100%); }
.productsHero h1,.sellHero h1,.consultationHero h1 { max-width:710px; margin:10px 0 18px; color:var(--black); font-family:var(--font-display); font-size:clamp(36px,4.7vw,62px); line-height:1.04; letter-spacing:-.045em; text-wrap:balance; }
.productsHero p,.sellHero p,.consultationHero p { max-width:680px; color:var(--gray-text); font-size:16px; line-height:1.75; }
.productsHeroFacts { display:flex; flex-wrap:wrap; gap:8px 20px; margin-top:27px; color:#0b5d43; font-size:12px; font-weight:780; }
.productsHeroFacts span { white-space:nowrap; }
.productsHeroVisual { align-self:end; min-height:360px; display:flex; align-items:flex-end; justify-content:center; }
.productsHeroVisual img { width:min(100%,390px); max-height:430px; object-fit:contain; filter:drop-shadow(0 24px 24px rgba(6,34,24,.18)); }
.productsTrustGrid { position:relative; z-index:2; display:grid; grid-template-columns:repeat(6,minmax(0,1fr)); margin:-1px 28px 0; border:1px solid #dbe7e1; border-radius:14px; overflow:hidden; background:#fff; box-shadow:0 14px 30px rgba(13,38,26,.07); }
.productsTrustGrid article { min-height:130px; padding:19px 18px; border-right:1px solid #e3ebe7; }
.productsTrustGrid article:last-child { border-right:0; }
.productsTrustGrid span { display:block; margin-bottom:14px; color:var(--emerald); font:850 11px var(--font-display); letter-spacing:.1em; }
.productsTrustGrid strong { display:block; font-size:13px; line-height:1.3; }
.productsTrustGrid p { margin-top:6px; color:var(--gray-text); font-size:11px; line-height:1.48; }
.productsCatalogSection { padding:80px 0 96px; }
.productsCatalogHead { display:flex; align-items:flex-end; justify-content:space-between; gap:24px; margin-bottom:22px; }
.productsCatalogHead .sectionTitle { max-width:720px; margin:5px 0 0; }
.productsSearchLink { appearance:none; border:0; border-bottom:1px solid currentColor; background:transparent; color:var(--black); padding:0 0 5px; font:750 14px var(--font-body); cursor:pointer; text-align:left; }
.productsSearchLink span { color:var(--emerald); }
.productsStickyControls { position:sticky; top:72px; z-index:15; margin-bottom:28px; padding:10px; border:1px solid #e2e8e5; border-radius:13px; background:rgba(255,255,255,.94); box-shadow:0 10px 26px rgba(14,32,23,.08); backdrop-filter:blur(12px); }
.productsStickyControls .productToolbar { margin:0; padding:0; border:0; background:transparent; }
.productsStickyControls .formInput,.productsStickyControls .formSelect { min-height:44px; }
#view-products .watchGrid { grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; }
.productsTrustInsert,.productsSearchInsert { grid-column:span 2; min-height:300px; border-radius:14px; }
.productsTrustInsert { display:flex; flex-direction:column; justify-content:flex-end; padding:30px; color:#fff; background:linear-gradient(135deg,#07110d,#154c35); box-shadow:0 18px 36px rgba(7,17,13,.18); }
.productsTrustInsert .sectionKicker { color:#75dcb8; }
.productsTrustInsert h3,.productsSearchInsert h3 { margin:9px 0 12px; font:850 clamp(25px,2.5vw,34px)/1.06 var(--font-display); letter-spacing:-.035em; }
.productsTrustInsert p { max-width:440px; color:rgba(255,255,255,.76); font-size:14px; line-height:1.65; }
.productsTrustInsert button { width:max-content; margin-top:19px; padding:0; border:0; border-bottom:1px solid #75dcb8; color:#fff; background:transparent; font-weight:750; cursor:pointer; }
.productsSearchInsert { display:flex; align-items:flex-end; justify-content:space-between; gap:24px; padding:32px; border:1px solid #d7e5de; background:#f2f8f5; }
.productsSearchInsert p { max-width:430px; color:var(--gray-text); font-size:14px; line-height:1.65; }
.productsSearchInsert .seoBtn { flex:0 0 auto; }
.productsSeoContent { max-width:1080px; margin:96px auto 0; padding-top:70px; border-top:1px solid var(--border-color); }
.productsSeoContent > h2 { max-width:810px; margin:8px 0 34px; font:850 clamp(30px,4vw,48px)/1.08 var(--font-display); letter-spacing:-.035em; }
.productsSeoColumns { display:grid; grid-template-columns:1fr 1fr; gap:48px; }
.productsSeoColumns h3 { margin:27px 0 9px; font:800 20px var(--font-display); }
.productsSeoColumns h3:first-child { margin-top:0; }
.productsSeoColumns p { color:var(--gray-text); font-size:15px; line-height:1.75; }
.productsLinkGroups { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin:38px 0 56px; }
.productsLinkGroups > div { padding:25px; border:1px solid var(--border-color); border-radius:13px; background:#fff; }
.productsLinkGroups h3 { margin-bottom:15px; font:800 18px var(--font-display); }
.productsLinkGroups button { display:block; width:fit-content; margin:8px 0; padding:0; border:0; border-bottom:1px solid transparent; color:#155d44; background:transparent; font-size:14px; font-weight:700; text-align:left; cursor:pointer; }
.productsLinkGroups button:hover { border-color:currentColor; }
.productsFaq { max-width:800px; }
.productsFaq > h2 { margin-bottom:22px; font:850 clamp(28px,3.5vw,40px)/1.1 var(--font-display); letter-spacing:-.03em; }

.watchCardImg { padding:8px; align-items:center; background:#f6f7f7; }
.watchCardImg img { width:100%; height:100%; object-fit:contain; }
.watchCardNoImage { width:100%; height:100%; min-height:190px; display:flex; align-items:center; justify-content:center; flex-direction:column; gap:7px; color:#274337; background:radial-gradient(circle at 50% 35%,#fff 0%,#f0f4f2 70%); }
.watchCardNoImage span { color:var(--emerald); font:800 10px var(--font-display); letter-spacing:.12em; text-transform:uppercase; }
.watchCardNoImage strong { font:800 19px var(--font-display); }
.watchCardNoImage small { color:var(--gray-text); font-size:11px; }
.detailsImagePending { width:100%; min-height:420px; display:flex; align-items:center; justify-content:center; flex-direction:column; gap:10px; padding:32px; color:#204532; background:radial-gradient(circle at 50% 34%,#fff,#eef4f0); text-align:center; }
.detailsImagePending span { color:var(--emerald); font:800 11px var(--font-display); letter-spacing:.12em; text-transform:uppercase; }
.detailsImagePending strong { font:850 27px var(--font-display); }
.detailsImagePending p { max-width:280px; color:var(--gray-text); font-size:13px; line-height:1.6; }
.wcImageCount { position:absolute; right:9px; bottom:8px; z-index:4; padding:4px 7px; border-radius:999px; color:#18392b; background:rgba(255,255,255,.88); font-size:10px; font-weight:800; box-shadow:0 2px 9px rgba(0,0,0,.08); }
.watchCardTrust { min-height:25px; margin-top:8px; color:#267257; font-size:10px; font-weight:720; line-height:1.35; }
.watchStatus.sold { color:#553a00; background:#f7ead0; }
.watchStatus.reserved { color:#154c35; background:#dff1e9; -webkit-text-fill-color:#154c35; }
.watchCard.status-reserved .watchCardImg img { filter:none; }
/* Verkaufte Uhren nur dezent absetzen — die Uhr muss klar erkennbar bleiben. */
.watchCard.status-sold .watchCardImg img { filter:saturate(.82) brightness(.985); }
.watchCardSearchBtn { margin-left:auto; padding:8px 9px; border:1px solid #bdd8ca; border-radius:8px; color:#155d44; background:#f5fbf8; font-size:10px; line-height:1.2; font-weight:800; cursor:pointer; text-align:right; }
.watchCardSearchBtn:hover { background:#e5f4ed; }

.sellHeroSection { padding:38px 0 0; background:linear-gradient(145deg,#f8fbf9,#ecf4ef); overflow:hidden; }
.sellHero { min-height:420px; display:grid; grid-template-columns:minmax(0,1.08fr) minmax(280px,.92fr); gap:32px; align-items:center; padding:42px 52px 0; border:1px solid #dbe7e1; border-radius:22px 22px 0 0; background:#f7faf8; }
.sellHeroCopy .seoBtn { margin-top:11px; }
.sellHeroVisual { min-height:350px; display:flex; align-items:flex-end; justify-content:center; }
.sellHeroVisual img { width:min(100%,330px); max-height:390px; object-fit:contain; filter:drop-shadow(0 25px 24px rgba(7,17,13,.16)); }
.sellTrustStrip { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); margin:-1px 26px 0; border:1px solid #dbe7e1; border-radius:14px; overflow:hidden; background:#fff; box-shadow:0 14px 28px rgba(8,29,18,.06); }
.sellTrustStrip span { display:flex; align-items:center; min-height:65px; padding:13px 18px; border-right:1px solid #e3ebe7; color:#155d44; font-size:12px; font-weight:750; line-height:1.35; }
.sellTrustStrip span:last-child { border-right:0; }
.sellContent { padding-top:84px; }
.sellSectionHead { max-width:760px; margin-bottom:34px; }
.sellFormLayout { display:grid; grid-template-columns:minmax(0,1fr) 316px; gap:24px; align-items:start; }
.sellProofCard { position:sticky; top:91px; padding:29px; border:1px solid #d9e5df; border-radius:15px; background:#f4f8f6; }
.sellProofCard h3 { margin:9px 0 22px; font:850 26px/1.08 var(--font-display); letter-spacing:-.03em; }
.sellProofScores { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.sellProofScores a { padding:12px; border:1px solid #d9e5df; border-radius:10px; background:#fff; color:inherit; }
.sellProofScores strong,.sellProofScores span { display:block; }
.sellProofScores strong { color:#155d44; font:850 16px var(--font-display); }
.sellProofScores span { margin-top:3px; color:var(--gray-text); font-size:10px; font-weight:700; }
.sellProofCount { margin:21px 0; font-size:14px; line-height:1.45; }
.sellProofCount strong { color:var(--emerald); font:800 19px var(--font-display); }
.sellProofCard ul { display:grid; gap:10px; padding:0; list-style:none; }
.sellProofCard li { padding-left:20px; position:relative; color:#264436; font-size:13px; font-weight:680; }
.sellProofCard li::before { content:'✓'; position:absolute; left:0; color:var(--emerald); }
.sellProcessSection,.sellBenefitsSection,.sellReviewsSection,.sellFaqSection { margin-top:88px; }
.sellProcessGrid { display:grid; grid-template-columns:repeat(4,1fr); margin-top:28px; border-top:1px solid var(--border-color); border-left:1px solid var(--border-color); }
.sellProcessGrid article { min-height:208px; padding:24px; border-right:1px solid var(--border-color); border-bottom:1px solid var(--border-color); }
.sellProcessGrid span,.consultationSteps span { display:grid; place-items:center; width:31px; height:31px; margin-bottom:22px; border-radius:50%; color:#fff; background:var(--emerald); font:800 12px var(--font-display); }
.sellProcessGrid h3 { margin-bottom:10px; font:800 18px/1.18 var(--font-display); }
.sellProcessGrid p { color:var(--gray-text); font-size:13px; line-height:1.6; }
.sellBenefitsGrid { display:grid; grid-template-columns:repeat(3,1fr); gap:11px; margin-top:25px; }
.sellBenefitsGrid span { padding:18px 20px; border:1px solid #dce7e1; border-radius:10px; color:#155d44; background:#f5faf7; font-size:13px; font-weight:750; }
.sellReviewsGrid { display:grid; grid-template-columns:repeat(3,1fr); gap:15px; margin-top:25px; }
.sellReviewsGrid article { min-height:220px; display:flex; flex-direction:column; padding:25px; border:1px solid var(--border-color); border-radius:13px; background:#fff; }
.sellReviewsGrid article > span { color:#00b67a; letter-spacing:.1em; }
.sellReviewsGrid p { margin:20px 0; color:var(--gray-text); font-size:14px; line-height:1.7; }
.sellReviewsGrid strong { margin-top:auto; color:#24382e; font-size:12px; }
.sellFaqSection { max-width:850px; }
.sellFaqSection .faqItem { margin-top:10px; }
.sellFinalCta { display:flex; align-items:center; justify-content:space-between; gap:32px; margin-top:72px; padding:42px; border-radius:16px; color:#fff; background:linear-gradient(120deg,#07110d,#15563c); }
.sellFinalCta .sectionKicker { color:#7ce0bc; }
.sellFinalCta h2 { margin:8px 0 10px; font:850 clamp(30px,4vw,44px)/1.07 var(--font-display); letter-spacing:-.035em; }
.sellFinalCta p { color:rgba(255,255,255,.74); font-size:15px; }

.consultationHeroSection { padding:38px 0 0; background:linear-gradient(145deg,#f8fbf9,#eaf3ee); overflow:hidden; }
.consultationHero { min-height:460px; display:grid; grid-template-columns:minmax(0,1.12fr) minmax(290px,.88fr); align-items:stretch; gap:34px; padding:0 0 0 52px; border:1px solid #d9e6df; border-radius:22px 22px 0 0; overflow:hidden; background:#f9fbfa; }
.consultationHeroCopy { display:flex; align-items:flex-start; justify-content:center; flex-direction:column; padding:42px 0; }
.consultationHeroCopy .seoBtn { margin-top:12px; }
.consultationHeroImage { min-height:440px; overflow:hidden; background:#e6eee9; }
.consultationHeroImage img { width:100%; height:100%; display:block; object-fit:cover; object-position:center 35%; }
.consultationTrustStrip { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); margin:-1px 26px 0; border:1px solid #dbe7e1; border-radius:14px; overflow:hidden; background:#fff; box-shadow:0 14px 28px rgba(8,29,18,.06); }
.consultationTrustStrip > * { min-height:66px; display:flex; align-items:center; padding:12px 18px; border-right:1px solid #e2ebe6; color:#245842; font-size:12px; font-weight:700; line-height:1.35; }
.consultationTrustStrip > *:last-child { border-right:0; }
.consultationTrustStrip strong { margin-right:4px; color:var(--emerald); font:850 15px var(--font-display); }
.consultationFormSection { padding:90px 0; }
.consultationFormGrid { display:grid; grid-template-columns:.83fr 1.17fr; gap:72px; align-items:start; }
.consultationFormIntro { position:sticky; top:95px; }
.consultationFormIntro h2,.consultationWhyGrid h2 { margin:8px 0 16px; font:850 clamp(31px,4vw,47px)/1.08 var(--font-display); letter-spacing:-.035em; }
.consultationFormIntro > p,.consultationWhyGrid > div > p { color:var(--gray-text); font-size:15px; line-height:1.74; }
.consultationDirectCard { display:grid; gap:8px; margin-top:27px; padding:22px; border-radius:12px; color:#e9f6ef; background:#112b20; }
.consultationDirectCard strong { font:800 16px var(--font-display); }
.consultationDirectCard a { color:#8ee2c3; font-size:14px; font-weight:750; }
.consultationDirectCard span { margin-top:4px; color:rgba(255,255,255,.62); font-size:11px; line-height:1.5; }
.consultationFormCard { padding:36px; border:1px solid #dce7e1; border-radius:16px; background:#fff; box-shadow:0 18px 44px rgba(18,44,30,.08); }
.consultationFormCard h3 { margin:0 0 20px; padding-bottom:12px; border-bottom:1px solid #e6ece9; font:800 19px var(--font-display); }
.consultationFormCard h3:not(:first-child) { margin-top:30px; }
/* Suchauftrag: drei Felder je Zeile (Name/E-Mail/Telefon, Marke/Modell/Referenz,
   Zifferblatt/Armband/Jahr). Die Zustand-Zeile hat nur ein Feld und belegt damit
   bewusst das erste Drittel. */
.contactFormRow { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; }
.consultationFormCard .formGroup { margin-bottom:16px; }
.consultationFormCard .formLabel small { color:var(--gray-text); font-size:10px; font-weight:600; }
.consultationSubmit { width:100%; min-height:50px; margin-top:7px; }
.consultationPrivacy { margin:15px 0 0; color:var(--gray-text); font-size:11px; line-height:1.55; text-align:center; }
.consultationStepsSection { padding:78px 0; background:#f3f7f5; }
.consultationSteps { display:grid; grid-template-columns:repeat(4,1fr); margin-top:29px; }
.consultationSteps article { min-height:205px; padding:25px; border-left:1px solid #dbe5df; }
.consultationSteps article:first-child { border-left:0; }
.consultationSteps h3 { margin-bottom:9px; font:800 18px/1.2 var(--font-display); }
.consultationSteps p { color:var(--gray-text); font-size:13px; line-height:1.6; }
.consultationWhySection { padding:85px 0; }
.consultationWhyGrid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.consultationWhyGrid ul { display:grid; grid-template-columns:1fr 1fr; gap:0; padding:0; border-top:1px solid var(--border-color); list-style:none; }
.consultationWhyGrid li { padding:17px 10px 17px 24px; position:relative; border-bottom:1px solid var(--border-color); color:#234333; font-size:14px; font-weight:700; }
.consultationWhyGrid li::before { content:'✓'; position:absolute; left:0; color:var(--emerald); }
.consultationReviewsSection { padding:78px 0 94px; background:#f6f8f7; }
.consultationReviewsSection .sellReviewsGrid { margin-top:25px; }

.watchArticlePage .seoArticleHeroCopy p { margin-top:17px; color:rgba(255,255,255,.68); font-size:15px; line-height:1.65; }
.articleToc { display:grid; gap:7px; margin:32px 0 44px; padding:23px 25px; border-left:3px solid var(--emerald); border-radius:0 12px 12px 0; background:#f4f8f6; }
.articleToc strong { margin-bottom:4px; color:#163e2c; font:800 14px var(--font-display); }
.articleToc a { width:max-content; max-width:100%; color:#1b694d; font-size:14px; font-weight:680; }
.articleBenefitGrid { display:grid; grid-template-columns:1fr 1fr; gap:13px; margin:28px 0; }
.articleBenefitGrid article { min-height:145px; padding:22px; border:1px solid #dce7e1; border-radius:12px; background:#f7faf8; }
.articleBenefitGrid strong { display:block; margin-bottom:9px; font:800 17px var(--font-display); }
.articleBenefitGrid p { margin:0; color:var(--gray-text); font-size:13px; line-height:1.65; }
.articleReferenceBreakdown { display:grid; grid-template-columns:1.35fr .65fr; gap:12px; margin:28px 0; }
.articleReferenceBreakdown > div { padding:25px; border-radius:12px; color:#effbf4; background:#143c2b; }
.articleReferenceBreakdown > div + div { color:#1b4633; background:#e9f5ee; }
.articleReferenceBreakdown span { display:block; margin-bottom:14px; color:#8fe2c3; font:850 31px var(--font-display); letter-spacing:-.04em; }
.articleReferenceBreakdown > div + div span { color:#197653; }
.articleReferenceBreakdown strong { display:block; margin-bottom:8px; font:800 15px var(--font-display); }
.articleReferenceBreakdown p { margin:0; color:inherit; font-size:13px; line-height:1.55; opacity:.78; }
.articleTableWrap { margin:29px 0; overflow-x:auto; border:1px solid #dce7e1; border-radius:12px; }
.articleTableWrap table { width:100%; min-width:560px; border-collapse:collapse; font-size:13px; text-align:left; }
.articleTableWrap th { padding:13px 16px; color:#225940; background:#edf6f1; font:800 11px var(--font-display); letter-spacing:.06em; text-transform:uppercase; }
.articleTableWrap td { padding:15px 16px; border-top:1px solid #e3ebe6; color:#2a3e34; vertical-align:top; }
.articleTableWrap td:first-child { font-weight:800; }
.articleCleaningSteps { grid-template-columns:repeat(2,1fr); }
.wpediaArticleReadMore { display:inline-block; margin-top:6px; color:#176747; font-size:13px; font-weight:800; }

.thanksPage { min-height:calc(100vh - 128px); padding:85px 0 104px; background:radial-gradient(circle at 50% 0,#e8f5ee 0%,#f8faf9 43%,#fff 100%); }
.thanksWrap { max-width:850px; text-align:center; }
.thanksIcon { width:60px; height:60px; display:grid; place-items:center; margin:0 auto 21px; border-radius:50%; color:#fff; background:var(--emerald); box-shadow:0 12px 28px rgba(0,182,122,.26); font:800 28px var(--font-display); }
.thanksWrap h1 { max-width:720px; margin:9px auto 17px; font:850 clamp(35px,5vw,57px)/1.05 var(--font-display); letter-spacing:-.045em; text-wrap:balance; }
.thanksLead { max-width:675px; margin:0 auto; color:var(--gray-text); font-size:16px; line-height:1.75; }
.thanksSteps { display:grid; gap:0; margin:44px auto 34px; border:1px solid #dce7e1; border-radius:15px; overflow:hidden; background:#fff; text-align:left; }
.thanksSteps article { display:grid; grid-template-columns:39px 1fr; gap:16px; padding:20px 24px; border-top:1px solid #e4ece7; }
.thanksSteps article:first-child { border-top:0; }
.thanksSteps span { width:29px; height:29px; display:grid; place-items:center; border-radius:50%; color:#155d44; background:#e3f5eb; font:800 12px var(--font-display); }
.thanksSteps strong { display:block; font:800 16px var(--font-display); }
.thanksSteps p { margin-top:4px; color:var(--gray-text); font-size:13px; line-height:1.55; }
.thanksActions { display:flex; justify-content:center; gap:12px; flex-wrap:wrap; }
.thanksContact { margin-top:26px; color:var(--gray-text); font-size:13px; }
.thanksContact a { color:#176747; font-weight:750; }
.thanksOrderCard { display:inline-grid; gap:4px; margin:28px auto -12px; padding:14px 21px; border:1px solid #dce7e1; border-radius:11px; background:#fff; }
.thanksOrderCard span { color:var(--gray-text); font-size:10px; font-weight:800; letter-spacing:.09em; text-transform:uppercase; }
.thanksOrderCard strong { color:#154c35; font:850 20px var(--font-display); }

.checkoutIntro { display:flex; justify-content:space-between; align-items:flex-end; gap:24px; margin:0 0 20px; padding-top:4px; }
.checkoutIntro h1 { margin:4px 0 6px; font:850 clamp(31px,4vw,44px)/1.08 var(--font-display); letter-spacing:-.04em; }
.checkoutIntro p { color:var(--gray-text); font-size:14px; }
.checkoutDirectHelp { display:grid; gap:3px; padding:13px 16px; border:1px solid #dce7e1; border-radius:10px; background:#f4f9f6; }
.checkoutDirectHelp span { color:var(--gray-text); font-size:11px; font-weight:700; }
.checkoutDirectHelp a { color:#155d44; font:800 15px var(--font-display); }
.checkoutProgress { display:flex; gap:8px; padding:0; margin:0 0 24px; list-style:none; }
.checkoutProgress li { flex:1; display:flex; align-items:center; gap:9px; color:#879088; font-size:12px; font-weight:750; }
.checkoutProgress span { width:26px; height:26px; display:grid; place-items:center; border:1px solid #cfd9d3; border-radius:50%; background:#fff; color:#617068; font-size:11px; }
.checkoutProgress li.active { color:#155d44; }
.checkoutProgress li.active span { border-color:#155d44; color:#fff; background:#155d44; }
.checkoutProgress li.complete { color:#155d44; }
.checkoutProgress li.complete span { border-color:var(--emerald); color:#fff; background:var(--emerald); }
.checkoutSummary { position:sticky; top:91px; }
.checkoutSummaryMeta { margin-top:3px; color:var(--gray-text); font-size:11px; }
.checkoutPromises { display:grid; gap:8px; margin-top:19px; padding:15px 0; border-top:1px solid #e4ece7; border-bottom:1px solid #e4ece7; color:#155d44; font-size:11px; font-weight:750; }
.checkoutFinalNote { margin:18px 0 -7px; color:var(--gray-text); font-size:12px; line-height:1.58; }
.checkoutFinalNote strong { color:var(--black); }

.aboutHeroMedia picture { width:100%; height:100%; display:block; }
.aboutHeroMedia picture img { width:100%; height:100%; }
.aboutGallery img:last-child { aspect-ratio:4/5; }

@media (max-width:1100px) {
  #view-products .watchGrid { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .productsTrustGrid { grid-template-columns:repeat(3,1fr); }
  .productsTrustGrid article:nth-child(3) { border-right:0; }
  .productsTrustGrid article:nth-child(n+4) { border-top:1px solid #e3ebe7; }
  .productsTrustGrid article:nth-child(4),.productsTrustGrid article:nth-child(5) { border-right:1px solid #e3ebe7; }
  .consultationTrustStrip { grid-template-columns:repeat(3,1fr); }
  .consultationTrustStrip > :nth-child(3) { border-right:0; }
  .consultationTrustStrip > :nth-child(n+4) { border-top:1px solid #e2ebe6; }
}
@media (max-width:900px) {
  .productsHero,.sellHero { grid-template-columns:1fr .66fr; padding-left:34px; padding-right:28px; }
  .productsHeroVisual img { max-height:345px; }
  .productsTrustGrid { margin-left:14px; margin-right:14px; }
  .sellTrustStrip,.consultationTrustStrip { margin-left:14px; margin-right:14px; }
  .sellFormLayout,.consultationFormGrid,.consultationWhyGrid { grid-template-columns:1fr; gap:35px; }
  .sellProofCard,.consultationFormIntro { position:static; }
  .sellProofCard { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; align-items:start; }
  .sellProofCard .sectionKicker,.sellProofCard h3 { grid-column:1/-1; }
  .sellProofCard h3 { margin:0; }
  .sellProofCard ul { grid-column:span 2; }
  .sellProcessGrid,.consultationSteps { grid-template-columns:1fr 1fr; }
  .sellProcessGrid article:nth-child(3),.sellProcessGrid article:nth-child(4),.consultationSteps article:nth-child(n+3) { border-top:1px solid var(--border-color); }
  .consultationHero { grid-template-columns:1.05fr .95fr; padding-left:34px; }
  .consultationHeroCopy { padding-right:0; }
  .consultationHeroImage { min-height:390px; }
}
@media (max-width:760px) {
  .productsHeroSection,.sellHeroSection,.consultationHeroSection { padding-top:14px; }
  .productsHero,.sellHero,.consultationHero { min-height:0; grid-template-columns:1fr; gap:0; padding:32px 23px 0; border-radius:15px 15px 0 0; }
  .productsHeroVisual,.sellHeroVisual { min-height:245px; }
  .productsHeroVisual img,.sellHeroVisual img { max-height:280px; }
  .productsHeroFacts { display:grid; grid-template-columns:1fr 1fr; gap:10px 12px; margin:22px 0 6px; }
  .productsHeroFacts span { white-space:normal; }
  .productsTrustGrid,.sellTrustStrip { grid-template-columns:1fr 1fr; margin:0 7px; border-radius:0 0 12px 12px; }
  .productsTrustGrid article { min-height:112px; padding:15px; border-bottom:1px solid #e3ebe7; }
  .productsTrustGrid article:nth-child(odd) { border-right:1px solid #e3ebe7; }
  .productsTrustGrid article:nth-child(even) { border-right:0; }
  .productsTrustGrid article:nth-child(n+4) { border-top:0; }
  .productsTrustGrid article:nth-child(n+5) { border-bottom:0; }
  .sellTrustStrip span { min-height:56px; padding:12px 14px; border-bottom:1px solid #e3ebe7; font-size:11px; }
  .sellTrustStrip span:nth-child(odd) { border-right:1px solid #e3ebe7; }
  .sellTrustStrip span:nth-child(even) { border-right:0; }
  .sellTrustStrip span:nth-last-child(-n+2) { border-bottom:0; }
  .productsCatalogSection { padding:58px 0 68px; }
  .productsCatalogHead { align-items:flex-start; flex-direction:column; margin-bottom:18px; }
  .productsStickyControls { top:62px; margin:0 -4px 20px; padding:8px; }
  .productsStickyControls .productToolbar { display:grid; grid-template-columns:1fr; gap:8px; }
  .productsStickyControls .filterBar { overflow-x:auto; padding-bottom:2px!important; }
  #view-products .watchGrid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; }
  .productsTrustInsert,.productsSearchInsert { grid-column:1/-1; min-height:0; }
  .productsTrustInsert { padding:28px 24px; }
  .productsSearchInsert { align-items:flex-start; flex-direction:column; padding:25px 22px; }
  .productsSearchInsert .seoBtn { width:100%; }
  .productsSeoContent { margin-top:67px; padding-top:55px; }
  .productsSeoColumns,.productsLinkGroups { grid-template-columns:1fr; gap:22px; }
  .productsLinkGroups { margin-bottom:44px; }
  .watchCardImg { padding:5px; }
  .wcNav { width:44px; height:44px; opacity:1; background:rgba(255,255,255,.84); }
  .wcNav.wcPrev { left:2px; }
  .wcNav.wcNext { right:2px; }
  .wcDots { bottom:6px; gap:3px; }
  .wcDot { width:5px; height:5px; }
  .wcImageCount { right:5px; bottom:5px; font-size:9px; }
  .watchCardBody { padding:0 9px 13px; }
  .watchCardModel { font-size:15px; }
  .watchCardRef { font-size:11px; }
  .watchCardTrust { min-height:31px; font-size:9px; }
  .watchCardFooter { align-items:flex-start; flex-direction:column; gap:8px; }
  .watchCardActions { width:100%; }
  .watchCardCartBtn,.watchCardBtn { width:44px; height:44px; }
  .watchCardSearchBtn { width:100%; min-height:44px; margin-left:0; text-align:center; }
  .sellContent { padding-top:56px; }
  .sellFormLayout { gap:17px; }
  .sellProofCard { display:block; padding:24px; }
  .sellProofScores { margin-top:18px; }
  .sellProofCard ul { margin-top:20px; }
  .sellProcessSection,.sellBenefitsSection,.sellReviewsSection,.sellFaqSection { margin-top:64px; }
  .sellProcessGrid,.consultationSteps,.sellBenefitsGrid,.sellReviewsGrid { grid-template-columns:1fr; }
  .sellProcessGrid article,.consultationSteps article { min-height:0; border-left:1px solid var(--border-color); border-top:0!important; }
  .sellProcessGrid article + article,.consultationSteps article + article { border-top:1px solid var(--border-color)!important; }
  .sellBenefitsGrid span { padding:15px 17px; }
  .sellReviewsGrid article { min-height:0; }
  .sellFinalCta { align-items:flex-start; flex-direction:column; padding:30px 23px; }
  .sellFinalCta .seoBtn { width:100%; }
  .consultationHero { padding:31px 23px 0; }
  .consultationHeroCopy { padding:0; }
  .consultationHeroImage { min-height:340px; margin-top:28px; }
  .consultationHeroImage img { object-position:center 26%; }
  .consultationTrustStrip { grid-template-columns:1fr 1fr; margin:0 7px; border-radius:0 0 12px 12px; }
  .consultationTrustStrip > * { min-height:58px; padding:11px 13px; border-bottom:1px solid #e2ebe6; font-size:11px; }
  .consultationTrustStrip > :nth-child(odd) { border-right:1px solid #e2ebe6; }
  .consultationTrustStrip > :nth-child(even) { border-right:0; }
  .consultationTrustStrip > :nth-child(3) { border-right:1px solid #e2ebe6; }
  .consultationTrustStrip > :last-child { grid-column:1/-1; border-bottom:0; }
  .consultationFormSection,.consultationWhySection { padding:62px 0; }
  .consultationFormCard { padding:24px 18px; border-radius:13px; }
  .contactFormRow,.consultationWhyGrid ul,.articleBenefitGrid,.articleReferenceBreakdown { grid-template-columns:1fr; }
  .consultationStepsSection,.consultationReviewsSection { padding:62px 0; }
  .consultationSteps article { padding:22px; }
  .consultationWhyGrid { gap:31px; }
  .watchArticlePage { padding-top:22px; }
  .watchArticlePage .seoArticleHeroCopy { padding:33px 24px; }
  .articleToc { margin:24px 0 35px; padding:19px; }
  .articleReferenceBreakdown { gap:10px; }
  .articleCleaningSteps { grid-template-columns:1fr; }
  .thanksPage { min-height:calc(100vh - 74px); padding:57px 0 74px; }
  .thanksSteps { margin-top:32px; }
  .thanksSteps article { padding:18px; text-align:left; }
  .thanksActions { flex-direction:column; }
  .thanksActions .seoBtn { width:100%; }
  .checkoutIntro { align-items:flex-start; flex-direction:column; gap:13px; }
  .checkoutDirectHelp { width:100%; }
  .checkoutProgress { gap:3px; }
  .checkoutProgress li { gap:5px; font-size:10px; }
  .checkoutProgress span { width:23px; height:23px; flex:0 0 23px; }
  .checkoutSection,.checkoutSummary { padding:20px; border-radius:14px; }
  .checkoutSummary { position:static; }
  #view-checkout .formInput,#view-checkout .formSelect,.consultationFormCard .formInput,.consultationFormCard .formSelect { min-height:48px; height:48px; font-size:16px; }
  .marketToolCard .custom-select-trigger,.marketToolCard .formSelect { min-height:44px; height:44px; font-size:16px; }
  .marketTimeframes .timeframeBtn { min-height:44px; padding:0 14px; }
  .aboutHeroMedia picture img { transform:none; object-position:center 28%; }
  .aboutGallery img:last-child { grid-column:auto; aspect-ratio:4/5; }
}
@media (max-width:360px) {
  .headerLogo img { max-width:109px; }
  .headerInner { gap:8px; }
  .headerRight { gap:1px; }
  .productsHeroFacts { grid-template-columns:1fr; }
  .watchCardModel { font-size:14px; }
  .watchCardPrice { font-size:14px; }
  .checkoutProgress li { font-size:9px; }
}

.scrollTop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 260;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  color: var(--black);
  box-shadow: 0 10px 26px rgba(12, 16, 14, .16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.scrollTop svg { width: 21px; height: 21px; }
.scrollTop.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scrollTop:hover { border-color: #cfd6d2; box-shadow: 0 12px 30px rgba(12, 16, 14, .22); }
@media (prefers-reduced-motion: reduce) { .scrollTop { transition: none; } }

.productsCatalogInner { position: relative; }

.productsHeroActions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.productsTrustGridTitle {
  position: relative;
  z-index: 2;
  margin: 30px 28px 12px;
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 800;
  letter-spacing: -.02em;
}

.productFilterTrigger { display: none; }
.productFilterBadge {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--emerald);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}
.productFilterSheetHead, .productFilterSheetFoot { display: none; }

.productFilterGroup { display: contents; }
.productFilterFields { display: contents; }
.productFilterField { display: flex; min-width: 0; flex-direction: column; gap: 5px; }
.productFilterField > span {
  color: var(--gray-text);
  font-size: 10.5px;
  font-weight: 750;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.productFilterField .formSelect { width: 100%; min-height: 44px; }

.productsResultBar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--gray-text);
  font-size: 13px;
}
.productsResultBar #productsResultCount { font-weight: 650; }
.productsResetInline {
  border: 0;
  background: none;
  color: var(--emerald);
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.productsEmptyState {
  grid-column: 1 / -1;
  padding: 46px 26px;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  background: #fafbfa;
  text-align: center;
}
.productsEmptyState strong { display: block; font-family: var(--font-display); font-size: 18px; }
.productsEmptyState p { margin-top: 8px; color: var(--gray-text); font-size: 14px; }
.productsEmptyActions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 20px; }

.productsTrustInsert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 22px 26px;
  border: 1px solid #dde7e2;
  border-radius: 14px;
  background: #f7faf8;
}
.productsTrustInsertScores { display: flex; flex-shrink: 0; align-items: center; gap: 26px; }
.productsTrustInsertScores a { display: flex; align-items: center; gap: 10px; }
.productsTrustInsertScores img { width: auto; height: 20px; }
.productsTrustInsertScores span { display: flex; flex-direction: column; color: var(--gray-text); font-size: 11.5px; line-height: 1.35; }
.productsTrustInsertScores strong { color: var(--black); font-size: 15px; font-weight: 800; }
.productsTrustStar { color: #00b67a; }
.productsTrustStar svg { width: 21px; height: 21px; }
.productsTrustInsertFacts { display: flex; flex-wrap: wrap; gap: 12px 30px; list-style: none; }
.productsTrustInsertFacts li { display: flex; flex-direction: column; color: var(--gray-text); font-size: 11.5px; line-height: 1.4; }
.productsTrustInsertFacts strong { color: var(--black); font-size: 14px; font-weight: 800; }

.watchCardRefInline { color: var(--gray-text); font-weight: 700; }
.watchCardTrust { display: flex; align-items: flex-start; gap: 5px; }
.watchCardTrust svg { width: 12px; height: 12px; flex: 0 0 12px; margin-top: 2px; }
.watchCard.status-sold, .watchCard.status-reserved { position: relative; }

/* Statuslabel rechts neben dem Modellnamen, ohne Hintergrundflaeche.
   "Verfuegbar" nimmt dasselbe Gruen wie die Marke ueber dem Modellnamen. */
.watchCardModel { display: flex; align-items: baseline; gap: 10px; }
.watchCardModelName { min-width: 0; }
.watchCardState {
  margin-left: auto;
  flex: 0 0 auto;
  font-family: var(--font-body, inherit);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}
.watchCardState.is-available { color: var(--emerald); }
.watchCardState.is-sold      { color: #8a6100; }
.watchCardState.is-reserved  { color: #1f3a8a; }

.productsStickyControls .productToolbar {
  display: grid;
  grid-template-columns: minmax(200px, 1.5fr) repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  margin-bottom: 0;
}
.productsStickyControls .productSearchBox { align-self: end; }
.productsStickyControls .productSearchBox input { min-height: 44px; }
@media (max-width: 1100px) {
  .productsStickyControls .productToolbar { grid-template-columns: 1fr 1fr 1fr; }
  .productsStickyControls .productSearchBox { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .productsStickyControls {
    top: 61px;
    margin: 0 0 14px;
    padding: 7px;
    border-radius: 12px;
  }
  .productsStickyControls .productToolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px;
    align-items: center;
  }
  .productsStickyControls .productSearchBox { grid-column: auto; }
  .productsStickyControls .productSearchBox input { min-height: 46px; font-size: 16px; }

  .productFilterTrigger {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 46px;
    padding: 0 14px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--white);
    font-size: 13.5px;
    font-weight: 750;
    white-space: nowrap;
  }
  .productFilterTrigger svg { width: 17px; height: 17px; }
  .productFilterTrigger.hasFilters { border-color: var(--emerald); color: #04704f; }

  .productFilterBackdrop {
    position: fixed;
    inset: 0;
    z-index: 400;
    background: rgba(10, 16, 13, .45);
    animation: wpFadeIn .18s ease;
  }
  .productFilterBackdrop[hidden] { display: none; }

  .productFilterGroup {
    position: fixed;
    z-index: 401;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    max-height: 86vh;
    flex-direction: column;
    border-radius: 18px 18px 0 0;
    background: var(--white);
    box-shadow: 0 -14px 40px rgba(8, 14, 11, .22);
    overflow: hidden;
  }
  body.productFiltersOpen { overflow: hidden; }
  body.productFiltersOpen .productFilterGroup { display: flex; animation: wpSheetUp .24s cubic-bezier(.22, .8, .3, 1); }

  .productFilterSheetHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px 12px;
    border-bottom: 1px solid var(--border-color);
  }
  .productFilterSheetHead strong { font-family: var(--font-display); font-size: 17px; }
  .productFilterSheetClose {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: var(--light-gray);
  }
  .productFilterSheetClose svg { width: 17px; height: 17px; }

  .productFilterFields {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 18px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .productFilterField .formSelect { min-height: 50px; height: 50px; font-size: 16px; }

  .productFilterSheetFoot {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--border-color);
    background: var(--white);
  }
  .productFilterReset {
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--white);
    font-size: 14px;
    font-weight: 700;
  }
  .productFilterApply {
    min-height: 48px;
    padding: 0 18px;
    border: 0;
    border-radius: 10px;
    background: var(--black);
    color: #fff;
    font-size: 14.5px;
    font-weight: 750;
  }

  .productsResultBar { margin-bottom: 12px; font-size: 12.5px; }
  .productsTrustInsert { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px; }
  .productsTrustInsertScores { gap: 20px; }
  .productsTrustInsertFacts { gap: 10px 22px; }
  .productsHeroActions { display: grid; grid-template-columns: 1fr; gap: 9px; margin-top: 22px; }
  .productsHeroActions .seoBtn { width: 100%; }
  .productsTrustGridTitle { margin: 26px 7px 10px; }
  .watchCardState { font-size: 9px; }
}

@keyframes wpFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes wpSheetUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .productFilterBackdrop, body.productFiltersOpen .productFilterGroup { animation: none; }
}

.productFilterBadge[hidden] { display: none; }

@media (max-width: 760px) {
  .watchCardShipping { align-items: center; gap: 5px; font-size: 10px; line-height: 1.3; }
  .watchCardShipping svg { width: 13px; height: 13px; flex: 0 0 13px; }
  .watchCardBody { display: flex; flex-direction: column; gap: 3px; padding: 0 10px 12px; }
  .watchCardModel { font-size: 14.5px; line-height: 1.25; }
  .watchCardRefInline { display: inline; }
  .watchCardRef { font-size: 11px; }
  .watchCardTrust { min-height: 0; font-size: 9.5px; line-height: 1.35; }
  .watchCardFooter { flex-direction: row; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; }
  .watchCardPrice { font-size: 15.5px; }
  .watchCardActions { width: auto; gap: 6px; }
  .watchCardCartBtn, .watchCardBtn { width: 40px; height: 40px; }
  .watchCard { display: flex; flex-direction: column; }
}
@media (max-width: 400px) {
  .productsStickyControls .productSearchBox input { font-size: 15px; }
  .watchCardShipping { font-size: 9.5px; }
}

@media (max-width: 760px) {
  .productsStickyControls {
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.productsTrustInsertScores .productsTrustStar { color: #00b67a; }
.productsTrustInsertScores img { height: 26px; }

.productFilterTrigger:focus-visible,
.productFilterSheetClose:focus-visible,
.productFilterReset:focus-visible,
.productFilterApply:focus-visible,
.productsResetInline:focus-visible,
.scrollTop:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 2px;
}

.watchCard { display: flex; flex-direction: column; }
.watchCardBody { display: flex; flex: 1; flex-direction: column; }
.watchCardFooter { margin-top: auto; }
.watchCardShipping { margin-top: 8px; }

.productsTrustInsert {
  grid-column: 1 / -1;
  min-height: 0;
  flex-direction: row;
  justify-content: space-between;
  color: var(--black);
  background: #f7faf8;
  box-shadow: none;
}

@media (max-width: 760px) {
  .scrollTop { display: none; }
  .productsTrustInsert { flex-direction: column; }
}

.productsLinkGroups { grid-template-columns: repeat(3, 1fr); }
.productsLinkGroups a {
  display: block;
  width: fit-content;
  margin: 8px 0;
  border-bottom: 1px solid transparent;
  color: #155d44;
  font-size: 14px;
  font-weight: 700;
}
.productsLinkGroups a:hover { border-color: currentColor; }
@media (max-width: 1000px) { .productsLinkGroups { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) { .productsLinkGroups { grid-template-columns: 1fr; } }

.consultationScoreBar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 26px;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}
.consultationScoreBar > * {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 20px 18px;
  border-right: 1px solid var(--border-color);
  text-align: left;
}
.consultationScoreBar > :last-child { border-right: 0; }
.consultationScoreBar img { width: auto; height: 26px; }
.consultationScoreBar span > strong,
.consultationScoreBar .consultationScoreFact strong { display: block; font-size: 16px; font-weight: 800; }
.consultationScoreBar span:not(.consultationScoreStar) { display: flex; flex-direction: column; color: var(--gray-text); font-size: 12px; line-height: 1.4; }
.consultationScoreStar { display: block; flex: 0 0 auto; color: #00b67a; }
.consultationScoreStar svg { width: 24px; height: 24px; }

.consultationTrustStrip > * { flex-direction: column; align-items: flex-start; gap: 2px; }

@media (max-width: 860px) {
  .consultationScoreBar { grid-template-columns: 1fr 1fr; }
  .consultationScoreBar > :nth-child(2) { border-right: 0; }
  .consultationScoreBar > :last-child { grid-column: 1 / -1; border-top: 1px solid var(--border-color); }
}
@media (max-width: 480px) {
  .consultationScoreBar { grid-template-columns: 1fr; }
  .consultationScoreBar > * { justify-content: flex-start; border-right: 0; border-bottom: 1px solid var(--border-color); }
  .consultationScoreBar > :last-child { border-bottom: 0; border-top: 0; }
}

@media (max-width: 760px) {
  .sellHeroCopy .seoBtn,
  .consultationHeroCopy .seoBtn { width: 100%; }
  .sellTrustStrip span { align-items: flex-start; }
}

.checkoutAside { display: flex; flex-direction: column; gap: 14px; }

.checkoutInspectionNote {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 14px 16px;
  border: 1px solid #cfe8dd;
  border-radius: 12px;
  background: #f0f9f5;
}
.checkoutInspectionNote svg { width: 20px; height: 20px; flex: 0 0 20px; margin-top: 1px; color: #0a7a56; }
.checkoutInspectionNote p { color: #0d3d2c; font-size: 12.5px; font-weight: 650; line-height: 1.5; }

.checkoutSummaryFacts { margin: 5px 0 8px; list-style: none; }
.checkoutSummaryFacts li { color: var(--gray-text); font-size: 11.5px; line-height: 1.65; }
.checkoutSummaryFacts .checkoutSummaryDelivery { color: #0a7a56; font-weight: 700; }

.checkoutTrustList {
  padding: 16px 18px;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  background: var(--white);
  list-style: none;
}
.checkoutTrustList li { display: flex; align-items: flex-start; gap: 11px; padding: 9px 0; }
.checkoutTrustList li + li { border-top: 1px solid #f0f2f1; }
.checkoutTrustList svg { width: 19px; height: 19px; flex: 0 0 19px; margin-top: 2px; color: var(--emerald); }
.checkoutTrustList span { display: flex; flex-direction: column; color: var(--gray-text); font-size: 11.5px; line-height: 1.45; }
.checkoutTrustList strong { color: var(--black); font-size: 13px; font-weight: 750; }

.checkoutContactCard {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  background: #fafbfa;
}
.checkoutContactCard img { width: 56px; height: 56px; flex: 0 0 56px; border-radius: 50%; object-fit: cover; }
.checkoutContactCard > div { display: flex; min-width: 0; flex-direction: column; }
.checkoutContactCard strong { font-size: 14px; font-weight: 780; }
.checkoutContactCard span { color: var(--gray-text); font-size: 11.5px; }
.checkoutContactCard a { margin-top: 3px; color: #0a7a56; font-size: 12.5px; font-weight: 700; word-break: break-word; }

.checkoutScoreRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
}
.checkoutScoreRow a { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 14px 10px; }
.checkoutScoreRow a:first-child { border-right: 1px solid var(--border-color); }
.checkoutScoreRow img { width: auto; height: 22px; }
.checkoutScoreStar { flex: 0 0 auto; color: #00b67a; }
.checkoutScoreStar svg { width: 21px; height: 21px; }
.checkoutScoreRow span:not(.checkoutScoreStar) { display: flex; flex-direction: column; color: var(--gray-text); font-size: 11px; line-height: 1.35; }
.checkoutScoreRow strong { color: var(--black); font-size: 14px; font-weight: 800; }

@media (min-width: 761px) {
  .checkoutAside { position: sticky; top: 91px; align-self: start; }
  .checkoutSummary { position: static; top: auto; }
}

.isCheckout .footerTemplateCta,
.isCheckout .footerTemplateGrid,
.isCheckout .footerLegacy { display: none; }
.isCheckout .footerTemplateBottom { border-top: 0; padding-top: 0; }

@media (max-width: 760px) {
  .checkoutTrustList li { padding: 8px 0; }
  .checkoutScoreRow { grid-template-columns: 1fr; }
  .checkoutScoreRow a:first-child { border-right: 0; border-bottom: 1px solid var(--border-color); }
}
.checkoutContactCard img { object-position: center 18%; }

.checkoutSummaryItem { align-items: flex-start; }
.checkoutSummaryItem img { width: 62px; height: 78px; flex: 0 0 62px; object-fit: cover; background: #f5f6f5; }

.articleSuitability { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 26px 0 34px; }
.articleSuitabilityCard { padding: 24px 26px; border: 1px solid var(--border-color); border-radius: 16px; background: #fff; }
.articleSuitabilityHead { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.articleSuitabilityHead svg { width: 26px; height: 26px; flex: 0 0 26px; }
.articleSuitabilityHead h3 { margin: 0; font-family: var(--font-display); font-size: 18px; font-weight: 800; }
.articleSuitabilityCard ul { list-style: none; }
.articleSuitabilityCard li { padding: 7px 0; border-bottom: 1px solid #f1f3f2; color: var(--gray-text); font-size: 14px; }
.articleSuitabilityCard li:last-child { border-bottom: 0; }
.articleSuitabilityGood { border-color: #cfe8dd; background: #f6fbf9; }
.articleSuitabilityGood .articleSuitabilityHead svg { color: #0a7a56; }
.articleSuitabilityBad { border-color: #eddcdc; background: #fdf8f8; }
.articleSuitabilityBad .articleSuitabilityHead svg { color: #a94a4a; }

.articleWarn {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin: 24px 0 30px;
  padding: 20px 22px;
  border: 1px solid #ecd6d6;
  border-radius: 14px;
  background: #fdf6f5;
}
.articleWarn svg { width: 22px; height: 22px; flex: 0 0 22px; margin-top: 2px; color: #a94a4a; }
.articleWarn h3 { margin: 0 0 5px; font-family: var(--font-display); font-size: 15.5px; font-weight: 800; }
.articleWarn p { color: #59413f; font-size: 14px; line-height: 1.65; }

.articleMaterialGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 22px 0 34px; }
.articleMaterialGrid article { padding: 20px; border: 1px solid var(--border-color); border-radius: 14px; background: #fff; }
.articleMaterialGrid strong { display: block; margin-bottom: 7px; font-family: var(--font-display); font-size: 15px; font-weight: 800; }
.articleMaterialGrid p { color: var(--gray-text); font-size: 13px; line-height: 1.6; }

.articleHighlight { margin: 38px 0; padding: 34px 38px; border-radius: 18px; background: linear-gradient(135deg, #07110d, #154c35); color: #fff; }
.articleHighlight .sectionKicker { color: #75dcb8; }
.articleHighlight h2 { margin: 10px 0 14px; color: #fff; font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 31px); font-weight: 850; line-height: 1.12; letter-spacing: -.03em; }
.articleHighlight p { margin-bottom: 12px; color: rgba(255, 255, 255, .8); font-size: 15px; line-height: 1.7; }
.articleHighlight p:last-child { margin-bottom: 0; }
.articleInlineLink { padding: 0; border: 0; border-bottom: 1px solid currentColor; background: none; color: #75dcb8; font: inherit; font-weight: 700; }

.articleFinalCta {
  display: flex;
  max-width: 1100px;
  flex-direction: column;
  align-items: center;
  margin: 44px auto;
  padding: 44px 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, #07110d, #154c35);
  color: #fff;
  text-align: center;
}
.articleFinalCtaLabel { color: #75dcb8; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.articleFinalCta h2 { max-width: 760px; margin: 12px 0 14px; color: #fff; font-family: var(--font-display); font-size: clamp(23px, 2.9vw, 34px); font-weight: 850; line-height: 1.12; letter-spacing: -.03em; }
.articleFinalCta p { max-width: 660px; margin-bottom: 24px; color: rgba(255, 255, 255, .78); font-size: 15px; line-height: 1.7; }
.articleFinalCtaFacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; margin-top: 20px; list-style: none; color: rgba(255, 255, 255, .74); font-size: 12.5px; font-weight: 650; }

.articleTrustBar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1100px;
  margin: -22px auto 44px;
  padding: 0;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  background: #fff;
  list-style: none;
  overflow: hidden;
}
.articleTrustBar li { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 18px 14px; border-right: 1px solid var(--border-color); text-align: center; }
.articleTrustBar li:last-child { border-right: 0; }
.articleTrustBar svg { width: 17px; height: 17px; flex: 0 0 17px; color: var(--emerald); }
.articleTrustBar span { font-size: 12.5px; font-weight: 700; }

@media (max-width: 860px) {
  .articleMaterialGrid { grid-template-columns: 1fr 1fr; }
  .articleTrustBar { grid-template-columns: 1fr 1fr; }
  .articleTrustBar li:nth-child(2) { border-right: 0; }
  .articleTrustBar li:nth-child(n+3) { border-top: 1px solid var(--border-color); }
}
@media (max-width: 760px) {
  .articleSuitability { grid-template-columns: 1fr; gap: 12px; margin: 20px 0 28px; }
  .articleSuitabilityCard { padding: 20px; }
  .articleWarn { padding: 17px 18px; }
  .articleHighlight { margin: 30px 0; padding: 26px 22px; border-radius: 15px; }
  .articleFinalCta { margin: 32px 0; padding: 30px 22px; border-radius: 16px; }
  .articleFinalCta .seoBtn { width: 100%; }
  .articleTrustBar { margin: -16px 0 34px; }
  .articleTrustBar li { padding: 15px 10px; }
  .articleTrustBar span { font-size: 11.5px; }
}
@media (max-width: 380px) {
  .articleMaterialGrid { grid-template-columns: 1fr; }
}

.seoArticle { padding-right: 24px; padding-left: 24px; }
@media (max-width: 760px) {
  .seoArticle { padding: 22px 18px 72px; }
  .seoArticleBody h2 { margin: 46px 0 16px; }
}
@media (max-width: 380px) {
  .seoArticle { padding-right: 15px; padding-left: 15px; }
}

@media (hover: none) {
  .watchCardImg .wcNav { display: none; }
  .watchCardImg { touch-action: pan-y; }
}
.watchCardImg { align-items: center; background: linear-gradient(180deg, #fbfcfb 0%, #f4f6f5 100%); }
.watchCardImg img { width: 100%; padding: 9%; }
.wcDots { z-index: 2; }
.wcImageCount { z-index: 2; }

@media (max-width: 760px) {
  .watchCardImg { margin-bottom: 8px; padding: 0; }
  .watchCardImg img { padding: 7%; }
  .wcDots { bottom: 8px; gap: 4px; }
  .wcDot { width: 6px; height: 6px; }
  .wcImageCount { right: 7px; bottom: 7px; font-size: 9.5px; }
}

@media (max-width: 760px) {
  .aboutHero { min-height: 0; grid-template-rows: auto auto; }
  .aboutHeroCopy { max-width: none; padding: 36px 22px 30px; }
  .aboutHeroCopy h1 { font-size: clamp(32px, 9.4vw, 44px); }
  .aboutHeroMedia {
    position: relative;
    inset: auto;
    z-index: 1;
    aspect-ratio: 4 / 3.1;
  }
  .aboutHeroMedia img { object-position: center 24%; }
  .aboutHeroMedia::after {
    background: linear-gradient(180deg, rgba(7, 17, 13, .55) 0%, rgba(7, 17, 13, .12) 22%, rgba(7, 17, 13, 0) 45%);
  }

  .aboutValuesGrid { grid-template-columns: 1fr; gap: 10px; }
  .aboutValuesGrid article { min-height: 0; padding: 20px 22px; }
  .aboutValuesGrid article > span { margin-bottom: 12px; }
  .aboutValuesGrid h3 { margin-bottom: 7px; font-size: 18px; }
  .aboutStoryMedia { min-height: 0; }
}
@media (max-width: 480px) {
  .aboutHeroMedia { aspect-ratio: 4 / 3.6; }
}

#view-about .homeTrustContent strong,
#view-about .homeTrustContent > span { white-space: normal; }
#view-about .homeTrustFact { padding: 15px 12px; gap: 9px; }
@media (max-width: 480px) {
  #view-about .homeTrustStrip { grid-template-columns: 1fr; }
  #view-about .homeTrustFact { justify-content: flex-start; border-right: 0; }
}

.sellFormLayout > * { min-width: 0; }
@media (max-width: 400px) {
  .wizardHeader { padding: 20px 18px; }
  .wizardBody { padding: 20px 18px; }
  .wizardFoot { padding: 0 18px 20px; }
  .wizardTitle { font-size: 17px; }
}

@media (max-width: 480px) {
  .marketBuyHead, .marketSectionHead { flex-wrap: wrap; gap: 10px; }
  .marketBuyHead > button, .marketSectionHead > button { flex: 0 0 auto; }
}

@media (max-width: 900px) {
  .sellFormLayout, .consultationFormGrid, .consultationWhyGrid { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 420px) {
  .wizardHeader { flex-wrap: wrap; gap: 6px; }
  .wizardStepsBadge { flex: 0 0 auto; }
}

@media (max-width: 900px) {
  .wizardCard { width: 100%; }
  .wizardCard form, .wizardStep, .wizardGrid3Col, .wizardGrid2Col, .wizardCard .formGroup,
  .wizardCard .custom-select-container, .wizardCard .custom-select-trigger { min-width: 0; }
  .wizardCard .custom-select-trigger { overflow: hidden; text-overflow: ellipsis; }
}

.sellCondGrid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; }
@media (max-width: 600px) { .sellCondGrid { grid-template-columns: minmax(0, 1fr); gap: 10px; } }

.sellCenterTitle { max-width: 820px; margin: 0 auto 34px; text-align: center; }

.sellTrustStrip span {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 78px;
  padding: 15px 18px;
  color: #12352a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}
.sellTrustStrip span > svg {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  padding: 5px;
  border: 1px solid #cfe6da;
  border-radius: 50%;
  color: var(--emerald);
}
.sellHeroCopy p { margin-bottom: 4px; }
.sellHeroVisual img { width: min(100%, 360px); max-height: 420px; }

.wizardHelpLink { appearance: none; border: 0; padding: 0; background: transparent; color: var(--emerald); font: inherit; font-size: 13px; font-weight: 750; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.wizardHelpLink:hover { color: #04704f; }
.wizardCard .wizardStepsBadge {
  display: block;
  padding: 10px 40px 0;
  color: var(--gray-text);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .04em;
}
.formCharCount { margin-top: 5px; color: var(--gray-text); font-size: 11.5px; text-align: right; }

.sellProofCard {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border: 1px solid #dde7e2;
  border-radius: 15px;
  background: #fff;
  overflow: hidden;
}
.sellProofItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 26px 22px;
  border-bottom: 1px solid var(--border-color);
  color: inherit;
  text-align: center;
}
.sellProofItem:last-child { border-bottom: 0; }
.sellProofBrand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.sellProofBrand img { width: auto; height: 26px; }
.sellProofStar { color: #00b67a; }
.sellProofStar svg { width: 24px; height: 24px; }
.sellProofItem strong { font-size: 15px; font-weight: 800; }
.sellProofMeta { color: var(--gray-text); font-size: 12px; }
.sellProofStars { display: flex; gap: 3px; margin-top: 7px; }
.sellProofStars i {
  width: 17px;
  height: 17px;
  background: #00b67a;
  clip-path: polygon(50% 0%, 63% 36%, 100% 38%, 71% 60%, 82% 100%, 50% 76%, 18% 100%, 29% 60%, 0% 38%, 37% 36%);
}
.sellProofStars i.half { background: linear-gradient(90deg, #00b67a 62%, #d7e3dd 62%); }
.sellProofCountItem { gap: 3px; }
.sellProofCountIcon { color: var(--emerald); }
.sellProofCountIcon svg { width: 34px; height: 34px; }
.sellProofCountText { display: flex; flex-direction: column; color: var(--gray-text); font-size: 12px; line-height: 1.45; }
.sellProofCountText strong { margin: 2px 0; color: var(--black); font-family: var(--font-display); font-size: 21px; font-weight: 850; }

.sellIcon { display: block; margin-bottom: 14px; color: var(--emerald); }
.sellIcon svg { width: 34px; height: 34px; }
.sellProcessGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 0;
  border: 0;
}
.sellProcessGrid article {
  position: relative;
  min-height: 0;
  padding: 0 18px;
  border: 0;
  text-align: center;
}
.sellProcessGrid article::after {
  content: '';
  position: absolute;
  top: 62px;
  right: -12px;
  width: 24px;
  height: 1px;
  background: repeating-linear-gradient(90deg, #cfdad4 0 5px, transparent 5px 9px);
}
.sellProcessGrid article:last-child::after { display: none; }
.sellProcessGrid .sellIcon { display: flex; justify-content: center; }
.sellProcessGrid .sellStepNum {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--emerald);
  color: #fff;
  font: 800 12px var(--font-display);
}
.sellProcessGrid h3 { margin-bottom: 9px; font: 800 15px/1.25 var(--font-display); }
.sellProcessGrid p { color: var(--gray-text); font-size: 12.5px; line-height: 1.6; }

.sellBenefitsSection { padding: 46px 34px; border: 1px solid var(--border-color); border-radius: 18px; background: #fafbfa; }
.sellBenefitsGrid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin-top: 0; }
.sellBenefitsGrid article { padding: 0 6px; text-align: center; }
.sellBenefitsGrid .sellIcon { display: flex; justify-content: center; }
.sellBenefitsGrid strong { display: block; margin-bottom: 7px; font: 800 13.5px/1.28 var(--font-display); }
.sellBenefitsGrid p { color: var(--gray-text); font-size: 12px; line-height: 1.55; }

/* Zwei Spalten statt drei: Es sind jetzt vier Bewertungen (2x Trustpilot, 2x Chrono24)
   mit den laengeren Originaltexten von der Startseite — in drei schmalen Spalten
   wuerden die Karten sehr hoch. */
.sellReviewCards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 0; }
.sellReviewCards article { min-height: 0; padding: 24px; }
.sellReviewHead { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.sellReviewHead span { color: var(--gray-text); font-size: 12px; font-weight: 700; }
.sellReviewStars { display: flex; gap: 2px; padding: 4px 5px; border-radius: 4px; background: #00b67a; }
.sellReviewStars i { width: 13px; height: 13px; background: #fff; clip-path: polygon(50% 0%, 63% 36%, 100% 38%, 71% 60%, 82% 100%, 50% 76%, 18% 100%, 29% 60%, 0% 38%, 37% 36%); }
.sellReviewCards p { margin: 0 0 18px; color: #33413a; font-size: 13.5px; line-height: 1.7; }
.sellReviewCards strong { display: block; margin-top: auto; font-size: 13px; font-weight: 800; }
.sellReviewSource { margin-top: 2px; color: var(--gray-text); font-size: 11.5px; }

.sellFaqSection { max-width: none; }
.sellFaqColumns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; align-items: start; }
.sellFaqSection .faqItem { margin-top: 0; }
.faqPlus { position: relative; display: block; width: 15px; height: 15px; flex: 0 0 15px; }
.faqPlus::before, .faqPlus::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--black);
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}
.faqPlus::before { width: 13px; height: 1.8px; }
.faqPlus::after { width: 1.8px; height: 13px; }
.sellFaqSection .faqItem[open] .faqPlus::after { transform: translate(-50%, -50%) scaleY(0); }

.sellFinalCta {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: 30px 42px;
  background: linear-gradient(120deg, #06100c, #123a2a);
}
.sellFinalCtaVisual { display: flex; align-items: center; justify-content: center; }
.sellFinalCtaVisual img { width: 100%; max-width: 132px; height: auto; object-fit: contain; filter: drop-shadow(0 14px 20px rgba(0, 0, 0, .45)); }
.sellFinalCtaCopy h2 { margin: 0 0 6px; font: 850 clamp(24px, 3vw, 34px)/1.1 var(--font-display); letter-spacing: -.03em; }
.sellFinalCtaCopy p { color: rgba(255, 255, 255, .74); font-size: 14.5px; }
.sellFinalCtaAction { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.sellFinalCtaNote { color: rgba(255, 255, 255, .66); font-size: 12px; font-weight: 650; }

@media (max-width: 1100px) {
  .sellBenefitsGrid { grid-template-columns: repeat(3, 1fr); gap: 26px 18px; }
  .sellFinalCta { grid-template-columns: 110px minmax(0, 1fr) auto; gap: 22px; padding: 26px 30px; }
}
@media (max-width: 900px) {
  .sellProcessGrid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .sellProcessGrid article:nth-child(2)::after { display: none; }
  .sellProofCard { flex-direction: row; }
  .sellProofItem { flex: 1; border-right: 1px solid var(--border-color); border-bottom: 0; }
  .sellProofItem:last-child { border-right: 0; }
}
@media (max-width: 760px) {
  .sellCenterTitle { margin-bottom: 26px; }
  .sellTrustStrip span { min-height: 68px; padding: 13px 14px; gap: 9px; font-size: 11px; }
  .sellTrustStrip span > svg { width: 26px; height: 26px; flex: 0 0 26px; }
  .wizardCard .wizardStepsBadge { padding: 9px 18px 0; }
  .sellProofCard { flex-direction: column; }
  .sellProofItem { border-right: 0; border-bottom: 1px solid var(--border-color); padding: 20px; }
  .sellProcessGrid { grid-template-columns: 1fr; gap: 26px; }
  .sellProcessGrid article { padding: 0; }
  .sellProcessGrid article::after { display: none; }
  .sellBenefitsSection { padding: 30px 20px; }
  .sellBenefitsGrid { grid-template-columns: 1fr 1fr; gap: 24px 14px; }
  .sellReviewCards { grid-template-columns: 1fr; }
  .sellFaqColumns { grid-template-columns: 1fr; }
  .sellFinalCta { grid-template-columns: 1fr; justify-items: center; gap: 16px; padding: 28px 22px; text-align: center; }
  .sellFinalCtaVisual img { max-width: 96px; }
  .sellFinalCtaAction { width: 100%; align-items: stretch; }
  .sellFinalCtaAction .seoBtn { width: 100%; }
  .sellFinalCtaNote { text-align: center; }
}
@media (max-width: 400px) {
  .sellBenefitsGrid { grid-template-columns: 1fr; gap: 22px; }
}

.sellProcessGrid .sellIcon,
.sellBenefitsGrid .sellIcon {
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: var(--emerald);
  font: inherit;
}
.sellReviewSource { color: var(--gray-text); }

.sellHeroVisual { min-height: 380px; }
.sellHeroVisual img { width: min(100%, 420px); max-height: 460px; }
@media (max-width: 760px) {
  .sellHeroVisual { min-height: 260px; }
  .sellHeroVisual img { width: min(100%, 300px); max-height: 300px; }
}

#view-sell .wizardProgressBar { background: linear-gradient(90deg, #00b67a, #0a8f63); }
.sellProofC24 { display: grid; place-items: center; color: #1c4b8b; }
.sellProofC24 svg { width: 23px; height: 23px; }

.sellReviewCards .sellReviewSource { color: var(--gray-text); letter-spacing: 0; }

.sellHero { padding: 42px 52px 34px; border-radius: 22px; }
.sellHeroTrust {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 22px;
  margin-top: 26px;
}
.sellHeroTrust span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 0;
  padding: 0;
  border: 0;
  color: #12352a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}
.sellHeroTrust span > svg {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  padding: 5px;
  border: 1px solid #cfe6da;
  border-radius: 50%;
  color: var(--emerald);
}

#view-sell .wizardCard { max-width: none; margin: 0; }
.sellFormLayout { grid-template-columns: minmax(0, 1fr) 340px; gap: 26px; }
.sellContent { padding-top: 64px; }

.sellProofBrandImg { display: block; }
.sellProofBrandImg img { width: auto; height: 27px; }

@media (max-width: 1100px) {
  .sellFormLayout { grid-template-columns: minmax(0, 1fr) 300px; }
}
@media (max-width: 900px) {
  .sellHeroTrust { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .sellHero { padding: 32px 23px 28px; border-radius: 15px; }
  .sellHeroTrust { margin-top: 22px; gap: 14px; }
  .sellHeroTrust span { font-size: 11.5px; }
  .sellHeroTrust span > svg { width: 27px; height: 27px; flex: 0 0 27px; }
  .sellContent { padding-top: 42px; }
  .sellProofBrandImg img { height: 24px; }
}
@media (max-width: 460px) {
  .sellHeroTrust { grid-template-columns: 1fr; gap: 11px; }
}

.sellContent { padding-right: 24px; padding-left: 24px; }
@media (max-width: 600px) { .sellContent { padding-right: 16px; padding-left: 16px; } }

.sellProofBrandImg { margin: -8px 0 -4px; }
.sellProofBrandImg img { height: 48px; }
@media (max-width: 760px) { .sellProofBrandImg img { height: 42px; } }

@media (max-width: 900px) {
  .sellFormLayout { grid-template-columns: minmax(0, 1fr); gap: 22px; }
}

.sellProofCard { align-items: stretch; gap: 0; }
@media (max-width: 1100px) { .sellProofCard { align-items: stretch; gap: 0; } }

.sellHeroSection { padding-top: 18px; }
.sellHero {
  padding-top: 0;
  border: 0;
  align-items: start;
}
.sellHeroCopy { padding-top: 34px; }
.sellHeroVisual { align-self: stretch; }
@media (max-width: 760px) {
  .sellHeroSection { padding-top: 10px; }
  .sellHero { padding: 0 23px 26px; }
  .sellHeroCopy { padding-top: 26px; }
}

.sellHero { min-height: 0; }
.sellHeroVisual { min-height: 0; align-self: center; }
.sellHeroVisual img { width: min(100%, 400px); max-height: 400px; }
@media (max-width: 760px) {
  .sellHeroVisual img { width: min(100%, 290px); max-height: 290px; }
}

.sellHeroTrust {
  grid-column: 1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 16px;
  margin-top: 34px;
}
.sellHeroTrust span { align-items: flex-start; font-size: 11.5px; }
.sellHeroTrust span > svg { width: 27px; height: 27px; flex: 0 0 27px; margin-top: -2px; }
@media (max-width: 900px) {
  .sellHeroTrust { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
}

.sellHeroTrust {
  grid-column: 1 / -1;
  max-width: 760px;
  gap: 12px 18px;
}
.sellHeroTrust span { gap: 9px; }
@media (max-width: 900px) {
  .sellHeroTrust { max-width: none; }
}
.sellHeroTrust { max-width: 830px; }
@media (max-width: 900px) { .sellHeroTrust { max-width: none; } }

.sellHeroTrust { gap: 14px 20px; max-width: 820px; }
.sellHeroTrust span { gap: 13px; font-size: 11.5px; line-height: 1.4; }
.sellHeroTrust span > svg {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  padding: 7px;
  margin-top: 0;
  border-width: 1.5px;
}
@media (max-width: 900px) {
  .sellHeroTrust { max-width: none; gap: 16px 18px; }
}
@media (max-width: 760px) {
  .sellHeroTrust span > svg { width: 32px; height: 32px; flex: 0 0 32px; padding: 6px; }
  .sellHeroTrust span { gap: 11px; font-size: 12px; }
}

.sellHeroSection { background: none; }

.wizardCard .wizardStepsBadge {
  display: inline-block;
  width: auto;
  margin: 14px 40px 0;
  padding: 4px 10px;
  border-radius: 99px;
  background: var(--emerald-light);
  color: var(--emerald);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}
@media (max-width: 760px) {
  .wizardCard .wizardStepsBadge { margin: 12px 18px 0; }
}

.consultCenterTitle { max-width: 840px; margin: 0 auto 34px; text-align: center; }
.consultIcon { display: block; color: var(--emerald); }
.consultIcon svg { width: 30px; height: 30px; }

.consultationHeroSection { padding: 18px 0 0; background: none; }
.consultationHero {
  min-height: 0;
  align-items: center;
  gap: 0;
  padding: 0 0 0 52px;
  border: 0;
  border-radius: 22px;
  background: #f7faf8;
}
.consultationHeroCopy { padding: 46px 40px 46px 0; }
.consultationHero h1 { margin: 12px 0 10px; }
.consultationHeroLead {
  max-width: 620px;
  margin-bottom: 14px;
  color: var(--black);
  font-family: var(--font-display);
  font-size: clamp(19px, 2.1vw, 26px);
  font-weight: 800;
  letter-spacing: -.02em;
}
.consultationHeroCta { gap: 9px; margin-top: 26px; }
.consultationHeroCta svg { width: 17px; height: 17px; }
.consultationHeroChannels {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 22px;
  color: var(--gray-text);
  font-size: 12.5px;
  font-weight: 650;
}
.consultationChannelIcons { display: flex; }
.consultationChannelIcons span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-right: -9px;
  border: 1px solid #d5e6dd;
  border-radius: 50%;
  background: #fff;
  color: var(--emerald);
}
.consultationChannelIcons span:last-child { margin-right: 0; }
.consultationChannelIcons svg { width: 15px; height: 15px; }
.consultationHeroImage { min-height: 0; align-self: stretch; display: flex; align-items: center; justify-content: center; background: transparent; }
.consultationHeroImage img { width: 100%; height: auto; max-height: 430px; object-fit: contain; object-position: center; }

.consultationTrustStrip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 22px 0 0;
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(8, 29, 18, .05);
}
.consultationTrustStrip > * {
  min-height: 92px;
  align-items: center;
  gap: 12px;
  padding: 18px 16px;
  color: var(--gray-text);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.4;
}
.consultationTrustStrip > * > span { display: flex; min-width: 0; flex-direction: column; }
.consultationTrustStrip strong {
  margin: 0 0 2px;
  color: var(--black);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
}

.consultationFormSection { padding: 62px 0; }
.consultationFormGrid { grid-template-columns: minmax(0, 1.45fr) minmax(0, .85fr); gap: 26px; }
.consultationFormCard { padding: 32px; box-shadow: none; }
.consultationFormCard h2 { margin: 0 0 6px; font: 850 clamp(24px, 2.6vw, 31px)/1.1 var(--font-display); letter-spacing: -.03em; }
.consultationFormSub { margin-bottom: 24px; color: var(--gray-text); font-size: 13.5px; }
.consultationConsent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 4px 0 18px;
  color: var(--gray-text);
  font-size: 12.5px;
  line-height: 1.5;
}
.consultationConsent input { width: 17px; height: 17px; flex: 0 0 17px; margin-top: 1px; accent-color: var(--emerald); }
.consultationConsent a { color: var(--emerald); text-decoration: underline; text-underline-offset: 2px; }
.consultationSubmit {
  width: 100%;
  min-height: 52px;
  margin-top: 0;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--black);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 780;
}
.consultationSubmit:hover { background: #26262c; }

.consultationContactCol { display: flex; flex-direction: column; gap: 16px; }
.consultationContactCard { padding: 28px; border: 1px solid var(--border-color); border-radius: 16px; background: #fff; }
.consultationContactCard h2 { margin: 0 0 20px; font: 850 clamp(21px, 2.2vw, 26px)/1.1 var(--font-display); letter-spacing: -.03em; }
.consultationContactBlock { margin-bottom: 18px; }
.consultationContactLabel {
  display: block;
  margin-bottom: 5px;
  color: var(--emerald);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.consultationContactBlock p { color: var(--gray-text); font-size: 13.5px; line-height: 1.65; }
.consultationContactBlock a { color: var(--black); font-size: 14px; font-weight: 700; word-break: break-word; }
.consultationContactBlock a:hover { color: var(--emerald); }
.consultationSocials { display: flex; gap: 9px; margin-top: 22px; }
.consultationSocials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--black);
}
.consultationSocials a:hover { border-color: var(--emerald); color: var(--emerald); }
.consultationSocials svg { width: 18px; height: 18px; }

.consultationWhatsappCard {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  border: 1px solid #cfe8dd;
  border-radius: 16px;
  background: #f2faf6;
}
.consultationWhatsappIcon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 12px;
  background: #25d366;
  color: #fff;
}
.consultationWhatsappIcon svg { width: 26px; height: 26px; }
.consultationWhatsappCard strong { display: block; margin-bottom: 5px; font: 800 15.5px var(--font-display); }
.consultationWhatsappCard p { margin-bottom: 14px; color: var(--gray-text); font-size: 13px; line-height: 1.6; }
.consultationWhatsappCard .seoBtn { min-height: 42px; border-color: #bfe2d3; background: #fff; font-size: 13px; }

.consultationStepsSection { padding: 62px 0; background: #f6f8f7; }
.consultationSteps { grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 0; }
.consultationSteps article {
  position: relative;
  min-height: 0;
  padding: 0 16px;
  border-left: 0;
  text-align: center;
}
.consultationSteps article::after {
  content: '';
  position: absolute;
  top: 58px;
  right: -12px;
  width: 24px;
  height: 1px;
  background: repeating-linear-gradient(90deg, #cfdad4 0 5px, transparent 5px 9px);
}
.consultationSteps article:last-child::after { display: none; }
.consultationSteps .consultIcon { display: flex; justify-content: center; margin-bottom: 13px; }
.consultationSteps .consultStepNum {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--emerald);
  color: #fff;
  font: 800 12px var(--font-display);
}
.consultationSteps h3 { margin-bottom: 8px; font: 800 15px/1.25 var(--font-display); }
.consultationSteps p { font-size: 12.5px; }

.consultationWhySection { padding: 62px 0; }
.consultationWhyGrid { grid-template-columns: repeat(3, 1fr); gap: 30px 24px; align-items: start; }
.consultationWhyGrid article { text-align: center; }
.consultationWhyGrid .consultIcon { display: flex; justify-content: center; margin-bottom: 13px; }
.consultationWhyGrid strong { display: block; margin-bottom: 7px; font: 800 15px/1.25 var(--font-display); }
.consultationWhyGrid p { color: var(--gray-text); font-size: 13px; line-height: 1.6; }

.consultationMap { margin-top: 30px; border: 1px solid var(--border-color); border-radius: 16px; overflow: hidden; background: #fff; }
.consultationMapPlaceholder { padding: 34px 26px; text-align: center; }
.consultationMapPlaceholder strong { display: block; margin-bottom: 8px; font: 800 16px var(--font-display); }
.consultationMapPlaceholder p { max-width: 560px; margin: 0 auto 18px; color: var(--gray-text); font-size: 12.5px; line-height: 1.6; }
.consultationMapPlaceholder a { color: var(--emerald); text-decoration: underline; }
.consultationMap.isLoaded { aspect-ratio: 16 / 6; }
.consultationMap iframe { display: block; width: 100%; height: 100%; border: 0; }

@media (max-width: 1100px) {
  .consultationTrustStrip { grid-template-columns: repeat(3, 1fr); }
  .consultationTrustStrip > :nth-child(3) { border-right: 0; }
  .consultationTrustStrip > :nth-child(n+4) { border-top: 1px solid #e2ebe6; }
  .consultationFormGrid { grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); }
}
@media (max-width: 900px) {
  .consultationHero { grid-template-columns: 1fr; padding: 0 26px; }
  .consultationHeroCopy { padding: 34px 0 6px; }
  .consultationHeroImage img { max-height: 330px; }
  .consultationFormGrid, .consultationWhyGrid { grid-template-columns: 1fr; gap: 26px; }
  .consultationWhyGrid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .consultationSteps { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .consultationSteps article:nth-child(2)::after { display: none; }
}
@media (max-width: 760px) {
  .consultationHeroSection { padding-top: 10px; }
  .consultationHero { padding: 0 20px 8px; border-radius: 15px; }
  .consultationHeroCopy { padding: 28px 0 4px; }
  .consultationHeroCta { width: 100%; }
  .consultationTrustStrip { grid-template-columns: 1fr 1fr; margin: 16px 0 0; border-radius: 14px; }
  .consultationTrustStrip > * { min-height: 88px; padding: 15px 13px; border-bottom: 1px solid #e2ebe6; }
  .consultationTrustStrip > :nth-child(odd) { border-right: 1px solid #e2ebe6; }
  .consultationTrustStrip > :nth-child(even) { border-right: 0; }
  .consultationTrustStrip > :nth-child(3) { border-right: 1px solid #e2ebe6; }
  .consultationTrustStrip > :last-child { grid-column: 1 / -1; border-bottom: 0; }
  .consultationFormSection, .consultationStepsSection, .consultationWhySection { padding: 42px 0; }
  .consultationFormCard { padding: 24px 18px; }
  .consultationContactCard { padding: 22px; }
  .consultationSteps { grid-template-columns: 1fr; gap: 26px; }
  .consultationSteps article { padding: 0; }
  .consultationSteps article::after { display: none; }
  .consultationWhyGrid { grid-template-columns: 1fr 1fr; gap: 24px 14px; }
  .consultationWhatsappCard { flex-direction: column; }
  .consultationWhatsappCard .seoBtn { width: 100%; }
  .consultationMap.isLoaded { aspect-ratio: 4 / 3; }
}
@media (max-width: 420px) {
  .consultationWhyGrid { grid-template-columns: 1fr; }
}

.consultationHero p.consultationHeroLead {
  font-size: clamp(19px, 2.1vw, 26px);
  line-height: 1.18;
  font-weight: 800;
  color: var(--black);
}
.consultationTrustStrip > * { flex-direction: row; align-items: center; gap: 12px; }

.consultationSteps .consultIcon,
.consultationWhyGrid .consultIcon {
  width: auto;
  height: auto;
  margin-bottom: 13px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: var(--emerald);
  font: inherit;
}

.consultationScoreBar img { height: 44px; }
@media (max-width: 480px) { .consultationScoreBar img { height: 38px; } }

.checkoutMain { display: flex; flex-direction: column; }
.checkoutMain .checkoutProgress {
  margin: 0 0 16px;
  padding: 18px 22px;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  background: #fff;
}
.checkoutMain .checkoutInspectionNote { margin-bottom: 16px; }

.checkoutPayNote {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-color);
  color: var(--gray-text);
  font-size: 12px;
}
.checkoutPayNote svg { width: 16px; height: 16px; flex: 0 0 16px; color: var(--emerald); }

.checkoutRow .cartSubtotalLabel small,
.checkoutRow.total > div small {
  display: block;
  margin-top: 2px;
  color: var(--gray-text);
  font-size: 11px;
  font-weight: 500;
}
.checkoutRow.total > div small { color: var(--gray-text); }

@media (max-width: 760px) {
  .checkoutMain .checkoutProgress { padding: 14px 12px; border-radius: 12px; }
}

.checkoutGrid { grid-template-columns: minmax(0, 1fr) 380px; }
@media (max-width: 1100px) { .checkoutGrid { grid-template-columns: minmax(0, 1fr) 330px; } }
@media (max-width: 860px) { .checkoutGrid { grid-template-columns: minmax(0, 1fr); } }
.checkoutMain, .checkoutAside, .checkoutProgress li { min-width: 0; }
.checkoutProgress li > :not(span) { min-width: 0; }

@media (max-width: 760px) {
  .checkoutMain .checkoutProgress { gap: 2px; padding: 12px 8px; }
  .checkoutProgress li { gap: 4px; font-size: 9.5px; line-height: 1.25; }
  .checkoutProgress span { width: 20px; height: 20px; flex: 0 0 20px; font-size: 10px; }
}
@media (max-width: 400px) {
  .checkoutProgress li { font-size: 9px; }
}

.productsHero { padding: 42px 52px 34px; border: 0; border-radius: 22px; align-items: center; }
.productsHeroSection { padding-top: 18px; background: none; }
.productsHeroFacts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px 18px;
  margin: 30px 0 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.productsHeroFacts > span {
  display: flex;
  align-items: center;
  gap: 11px;
  white-space: normal;
}
/* Groesse wie im Hero von /luxusuhr-verkaufen: Box 38 px bei 7 px Innenabstand und
   1,5 px Rahmen ergibt dasselbe 21-px-Glyph. Text entsprechend mitskaliert. */
.productsHeroFacts > span > svg {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  padding: 7px;
  border: 1.5px solid #cfe6da;
  border-radius: 50%;
  color: var(--emerald);
}
.productsHeroFacts span span { display: flex; min-width: 0; flex-direction: column; color: var(--gray-text); font-size: 12px; font-weight: 500; line-height: 1.35; }
.productsHeroFacts strong { color: var(--black); font-size: 13.5px; font-weight: 780; }

.productsScoreCard {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 20px 0 0;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(8, 29, 18, .05);
}
.productsScoreCard > * {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 20px 18px;
  border-right: 1px solid var(--border-color);
  color: inherit;
}
.productsScoreCard > :last-child { border-right: 0; }
.productsScoreCard img { width: auto; height: 40px; }
.productsScoreStar { color: #00b67a; }
.productsScoreStar svg { width: 30px; height: 30px; }
.productsScoreBody { display: flex; min-width: 0; flex-direction: column; gap: 3px; }
.productsScoreBody > strong { font-family: var(--font-display); font-size: 15px; font-weight: 800; }
.productsScoreBody > span { color: var(--gray-text); font-size: 11.5px; }
.productsScoreValue { display: flex; align-items: center; gap: 8px; color: var(--black); font-size: 16px; font-weight: 800; }
.productsScoreStars, .productsScoreRating { display: flex; gap: 2px; }
.productsScoreStars i { width: 13px; height: 13px; background: #f5b301; clip-path: polygon(50% 0%, 63% 36%, 100% 38%, 71% 60%, 82% 100%, 50% 76%, 18% 100%, 29% 60%, 0% 38%, 37% 36%); }
.productsScoreRating i { width: 17px; height: 17px; background: #00b67a; clip-path: polygon(50% 0%, 63% 36%, 100% 38%, 71% 60%, 82% 100%, 50% 76%, 18% 100%, 29% 60%, 0% 38%, 37% 36%); }
.productsScoreBadge { text-align: left; }

.productsStatsCard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 14px 0 0;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  background: #fafbfa;
  overflow: hidden;
}
.productsStatsCard > div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 18px;
  border-right: 1px solid var(--border-color);
}
.productsStatsCard > :last-child { border-right: 0; }
.productsStatsCard svg { width: 26px; height: 26px; flex: 0 0 26px; color: var(--emerald); }
.productsStatsCard span { display: flex; min-width: 0; flex-direction: column; color: var(--gray-text); font-size: 11px; line-height: 1.4; }
.productsStatsCard strong { margin-bottom: 2px; color: var(--black); font-family: var(--font-display); font-size: 14px; font-weight: 800; }

@media (max-width: 1100px) {
  .productsHeroFacts { grid-template-columns: repeat(3, 1fr); }
  .productsScoreCard { grid-template-columns: 1fr 1fr; }
  .productsScoreCard > :nth-child(2) { border-right: 0; }
  .productsScoreCard > :last-child { grid-column: 1 / -1; border-top: 1px solid var(--border-color); }
  .productsStatsCard { grid-template-columns: 1fr 1fr; }
  .productsStatsCard > :nth-child(2) { border-right: 0; }
  .productsStatsCard > :nth-child(n+3) { border-top: 1px solid var(--border-color); }
}
@media (max-width: 760px) {
  .productsHero { padding: 30px 22px 26px; border-radius: 15px; }
  .productsHeroSection { padding-top: 10px; }
  .productsHeroFacts { grid-template-columns: 1fr 1fr; gap: 13px; margin-top: 24px; }
  .productsHeroFacts > span > svg { width: 34px; height: 34px; flex: 0 0 34px; padding: 6px; }
  .productsHeroFacts strong { font-size: 12.5px; }
  .productsHeroFacts span span { font-size: 11.5px; }
  .productsScoreCard, .productsStatsCard { margin-left: 0; margin-right: 0; }
  .productsScoreCard > *, .productsStatsCard > div { padding: 15px 13px; }
  .productsScoreCard img { height: 32px; }
}
@media (max-width: 460px) {
  .productsHeroFacts { grid-template-columns: 1fr; }
  .productsScoreCard { grid-template-columns: 1fr; }
  .productsScoreCard > * { border-right: 0; border-bottom: 1px solid var(--border-color); }
  .productsScoreCard > :last-child { border-bottom: 0; }
  .productsStatsCard { grid-template-columns: 1fr; }
  .productsStatsCard > div { border-right: 0; border-bottom: 1px solid var(--border-color); }
  .productsStatsCard > :last-child { border-bottom: 0; }
}

.productsStickyControls .productsResultBar {
  grid-column: auto;
  align-self: end;
  justify-content: flex-start;
  margin: 0 0 11px;
  white-space: nowrap;
}
.productsStickyControls .productToolbar { grid-template-columns: minmax(180px, 1.4fr) repeat(5, minmax(0, 1fr)) auto; }
@media (max-width: 1280px) {
  .productsStickyControls .productToolbar { grid-template-columns: minmax(160px, 1.3fr) repeat(5, minmax(0, 1fr)); }
  .productsStickyControls .productsResultBar { grid-column: 1 / -1; margin: 2px 0 0; }
}

.productsSearchInsert {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
}
.productsSearchInsertVisual {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  background: #e8efeb;
}
.productsSearchInsertVisual img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.productsSearchInsertCopy h3 { margin: 0 0 6px; font: 850 clamp(19px, 2.2vw, 26px)/1.12 var(--font-display); letter-spacing: -.03em; }
.productsSearchInsertCopy p { max-width: 520px; margin: 0; color: var(--gray-text); font-size: 13.5px; line-height: 1.6; }

@media (max-width: 760px) {
  .productsStickyControls .productsResultBar { display: none; }
  .productsSearchInsert { grid-template-columns: 64px minmax(0, 1fr); gap: 14px; padding: 20px; }
  .productsSearchInsertVisual { width: 64px; height: 64px; }
  .productsSearchInsert .seoBtn { grid-column: 1 / -1; width: 100%; }
}

.navDropdownMenu { min-width: max-content; }
.navDropdownMenu button, .navDropdownMenu a { white-space: nowrap; }

.articleSuitabilityNeutral { border-color: #dde7e2; background: #f8faf9; }
.articleSuitabilityNeutral .articleSuitabilityHead svg { color: var(--emerald); }
.articleSuitabilityCard > p { color: var(--gray-text); font-size: 14px; line-height: 1.7; }

.sellHeroTrust { max-width: none; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px 16px; }
.sellHeroTrust span { gap: 10px; font-size: 10.5px; line-height: 1.35; }
.sellHeroTrust span > svg { width: 30px; height: 30px; flex: 0 0 30px; padding: 6px; }
@media (min-width: 1100px) {
  .sellHeroTrust span > span { white-space: nowrap; }
}
@media (max-width: 900px) {
  .sellHeroTrust { grid-template-columns: 1fr 1fr; }
  .sellHeroTrust span { font-size: 11.5px; }
}
@media (max-width: 460px) { .sellHeroTrust { grid-template-columns: 1fr; } }

.marketTimeframes { gap: 10px; }

.marketSellCta > img { width: 42%; }
.marketSellCta > div { width: 62%; padding: 34px 32px 34px 4%; }
@media (max-width: 1100px) {
  .marketSellCta > div { width: 100%; padding: 24px 24px 28px; }
}

.watchArticlePage { max-width: 1320px; padding-top: 18px; }
.watchArticlePage .seoArticleBody { max-width: 780px; margin: 0 auto; }

.watchArticlePage .seoArticleHero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
  align-items: center;
  gap: 0;
  margin-bottom: 52px;
  padding: 0 0 0 52px;
  border-radius: 22px;
  background: #f7faf8;
  color: var(--black);
  overflow: hidden;
}
.watchArticlePage .seoArticleHeroCopy { padding: 44px 40px 44px 0; background: transparent; }
.watchArticlePage .seoArticleHeroCopy .sectionKicker { color: var(--emerald); }
.watchArticlePage .seoArticleHeroCopy h1 { color: var(--black); font-size: clamp(30px, 3.5vw, 46px); }
.watchArticlePage .seoArticleHeroCopy p { color: var(--gray-text); }
.watchArticlePage .seoArticleHeroCopy .seoBtn { margin-top: 24px; }
.seoArticleHeroVisual { display: flex; align-items: center; justify-content: center; padding: 26px 0; }
.seoArticleHeroVisual img { width: min(100%, 360px); max-height: 380px; height: auto; min-height: 0; object-fit: contain; }

@media (max-width: 900px) {
  .watchArticlePage .seoArticleHero { grid-template-columns: 1fr; padding: 0 24px; margin-bottom: 34px; }
  .watchArticlePage .seoArticleHeroCopy { padding: 30px 0 6px; }
  .seoArticleHeroVisual { padding: 0 0 18px; }
  .seoArticleHeroVisual img { width: min(100%, 280px); max-height: 280px; }
}
@media (max-width: 760px) {
  .watchArticlePage { padding-top: 10px; }
  .watchArticlePage .seoArticleHero { border-radius: 15px; padding: 0 20px; }
  .watchArticlePage .seoArticleHeroCopy .seoBtn { width: 100%; }
}

.articleCleaningSteps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.articleCleaningSteps .articleStep { display: flex; flex-direction: column; }
.articleStepNum {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--emerald);
  color: #fff;
  font: 800 12px var(--font-display);
}
.articleCleaningSteps h3 { margin: 0 0 7px; font: 800 16px/1.25 var(--font-display); }
.articleCleaningSteps p { color: var(--gray-text); font-size: 13.5px; line-height: 1.65; }
@media (max-width: 900px) { .articleCleaningSteps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .articleCleaningSteps { grid-template-columns: 1fr; } }

.articleCta .seoBtn { margin: 10px 12px 0 0; }
.articleCta .seoBtn:last-child { margin-right: 0; }
@media (max-width: 560px) {
  .articleCta .seoBtn { display: flex; width: 100%; margin-right: 0; }
}

/* --- Hero-Vorteile auf /luxusuhr-verkaufen ---
   Drei Korrekturen gegen aeltere Regeln weiter oben:
   1. align-items:center statt flex-start (Zeile ~6284) — Text sass 8 px ueber der Icon-Mitte.
   2. white-space:normal statt nowrap (Regel ab 1100 px) — lange Labels liefen sonst aus ihrer
      Rasterspalte heraus in das Icon des naechsten Punkts.
   3. Flex mit inhaltsbreiten Elementen statt vier gleich breiter Rasterspalten — dadurch stehen
      die Punkte beieinander statt ueber die volle Breite verteilt. */
.sellHeroTrust {
  /* Vier gleich breite Spalten in einer Zeile — wie .productsHeroFacts auf der Kaufen-Seite.
     Die langen Labels brechen innerhalb ihrer Spalte um, statt die Zeile zu sprengen. */
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 14px 20px;
  max-width: none;
}
.sellHeroTrust > span {
  align-items: center;
  gap: 9px;
}
/* font-size:inherit ist noetig, weil die aeltere Regel `.sellHeroTrust span` auch den
   inneren Text-Span trifft und die Groesse vom Elternteil sonst ueberschrieben wird. */
.sellHeroTrust > span > span { white-space: normal; font-size: inherit; }

/* Groesse an die Kaufen-Seite angeglichen: dort ist das Icon-Glyph 26 px und der Text
   11-14 px. Hier steckt das Glyph in einem Ring, deshalb Box 38 px bei 7 px Innenabstand
   (Glyph 22 px) — optisch dieselbe Groesse, ohne den Ring aufzugeben. */
.sellHeroTrust > span { font-size: 13.5px; line-height: 1.4; }
.sellHeroTrust > span > svg {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  padding: 7px;
  margin-top: 0;
}

@media (max-width: 1100px) {
  .sellHeroTrust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .sellHeroTrust { gap: 13px 18px; }
  .sellHeroTrust > span { font-size: 12.5px; }
  .sellHeroTrust > span > svg { width: 34px; height: 34px; flex: 0 0 34px; padding: 6px; }
}
@media (max-width: 560px) {
  .sellHeroTrust { grid-template-columns: minmax(0, 1fr); }
}

/* Mobile Sticky Buy Bar on PDP */
.pdpMobileStickyBar {
  display: none;
}
@media (max-width: 768px) {
  .pdpMobileStickyBar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 280;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    transform: translateY(100%);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .pdpMobileStickyBar.visible {
    transform: translateY(0);
  }
  .pdpMobileStickyBarInfo {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-width: 58%;
  }
  .pdpMobileStickyBarTitle {
    font-family: var(--font-display);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .pdpMobileStickyBarPrice {
    font-size: 14px;
    font-weight: 800;
    color: var(--emerald);
  }
  .pdpMobileStickyBarBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
  }
}

/* Table scroll wrapper utility */
.tableWrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
