/* =========================================
   Allgemeiner Hintergrund (Helles Design)
   ========================================= */
body {
  background-color: #f2ede1;
  margin: 0;
  padding: 0;
}

/* =========================================
   Watch Characteristics (Bleibt Dunkel)
   ========================================= */
.fp-characteristics {
  --fp-text-dim: rgba(255, 255, 255, 0.6);
  --fp-hairline: rgba(255, 255, 255, 0.2);

  background: black;
  color: #fff;
  font-family: "Times New Roman", Times, serif;
  padding: clamp(3.5rem, 6vw, 6.5rem) 1.5rem;
}

.fp-characteristics__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.fp-characteristics__title {
  font-weight: 300;
  font-size: clamp(2rem, 1.1rem + 3vw, 3.6rem);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 clamp(2.75rem, 5vw, 4.5rem);
}

.fp-slider {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.fp-slider__viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  transition: height 0.45s ease;
}

.fp-slider__track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.65, 0, 0.35, 1);
}

.fp-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.fp-slide__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
}

.fp-slide__eyebrow {
  font-weight: 300;
  font-size: clamp(1.4rem, 1rem + 1.2vw, 2rem);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 1.75rem;
}

.fp-spec-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--fp-hairline);
}

.fp-spec-list li {
  border-bottom: 1px solid var(--fp-hairline);
  padding: 1rem 0.25rem;
  text-align: center;
  line-height: 1.5;
  color: var(--fp-text-dim);
}

.fp-spec-list li span {
  color: #fff;
  margin-right: 0.35rem;
}

.fp-image-placeholder {
  aspect-ratio: 3 / 4;
  width: 100%;
  overflow: hidden;
}

.soldOut {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #777;
  margin-top: 8px;
}

.fp-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fp-nav-arrow {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--fp-hairline);
  background: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    border-color 0.3s ease,
    opacity 0.3s ease;
}
.fp-nav-arrow:hover {
  border-color: #f5da8a;
}
.fp-nav-arrow:disabled {
  opacity: 0.25;
  cursor: default;
}
.fp-nav-arrow svg {
  width: 16px;
  height: 16px;
}

.fp-tabs {
  display: flex;
  justify-content: center;
  gap: clamp(1.75rem, 5vw, 3.5rem);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.fp-tab {
  background: none;
  border: none;
  padding: 0 0 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fp-text-dim);
  border-bottom: 1px solid transparent;
  cursor: pointer;
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}
.fp-tab:hover {
  color: #f5da8a;
}
.fp-tab[aria-pressed="true"] {
  color: #f5da8a;
  border-bottom-color: #fff;
}

/* --- NEUER LINK BEREICH --- */
.collection-link-wrapper {
  text-align: center;
  margin-top: clamp(3rem, 6vw, 4.5rem);
}

.collection-link {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 6px;
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

.collection-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}
/* -------------------------- */

.fp-nav-arrow:focus-visible,
.fp-tab:focus-visible,
.fp-slider__viewport:focus-visible {
  outline: 1px solid #fff;
  outline-offset: 2px;
}

/* ---------- Acquire-Button (CTA unter der Charakteristik-Sektion) ----------
   Transparent mit dezentem Rand (gleiche Hairline wie die Pfeil-Buttons),
   beim Hover Gold-Rand + weicher Glow statt Farbfüllung. */

.acquire-button-wrapper {
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.acquire-button {
  display: inline-block;
  padding: 0.95rem 2.8rem;
  font-family: "Times New Roman", Times, serif;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 1px solid var(--fp-hairline);
  text-decoration: none;
  transition:
    border-color 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
}

.acquire-button:hover {
  color: #f5da8a;
  border-color: #e7c250;
  box-shadow:
    0 0 18px rgba(231, 194, 80, 0.45),
    0 0 40px rgba(231, 194, 80, 0.2);
}

.acquire-button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (max-width: 860px) {
  .fp-slide__grid {
    grid-template-columns: 1fr;
  }
  .fp-slide__grid > :last-child {
    max-width: 340px;
    margin: 0 auto;
    order: -1;
  }
  .fp-nav-arrow {
    width: 38px;
    height: 38px;
  }
  .fp-nav-arrow svg {
    width: 14px;
    height: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fp-slider__track,
  .fp-slider__viewport,
  .fp-nav-arrow,
  .fp-tab {
    transition: none !important;
  }
}

/* =========================================
   watchInfoSections (Helles Design)
   ========================================= */

.watchInfoSections {
  padding-top: 100px;
  background-color: #f2ede1;
}

.watchSec1,
.watchSec2,
.watchSec3,
.watchSec4 {
  display: flex;
  align-items: center;
  gap: clamp(30px, 6vw, 80px);
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(60px, 10vw, 120px) clamp(16px, 5vw, 40px);
}

.watchSec1 img,
.watchSec2 img,
.watchSec3 img,
.watchSec4 img {
  flex: 1 1 50%;
  max-width: 550px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.45, 0.45, 0.95);
}

.watchSec1 p,
.watchSec2 p,
.watchSec3 p,
.watchSec4 p {
  flex: 1 1 50%;
  font-size: 20px;
  line-height: 1.8;
  color: #333; /* Dunkler Text für den hellen Hintergrund */
  letter-spacing: 0.3px;
}

.watchSec1:hover img,
.watchSec2:hover img,
.watchSec3:hover img,
.watchSec4:hover img {
  transform: scale(1.03);
}

.watchSec2,
.watchSec4 {
  flex-direction: row-reverse;
}

.watchSec2,
.watchSec3,
.watchSec4 {
  border-top: 1px solid #d8cfbc;
  /* trennlinie */
}

@media screen and (max-width: 860px) {
  .watchSec1,
  .watchSec2,
  .watchSec3,
  .watchSec4 {
    flex-direction: column;
    gap: 30px;
    padding: 50px 20px;
    text-align: center;
  }

  .watchSec1 img,
  .watchSec2 img,
  .watchSec3 img,
  .watchSec4 img {
    max-width: 100%;
  }

  .watchSec1 p,
  .watchSec2 p,
  .watchSec3 p,
  .watchSec4 p {
    font-size: 15px;
  }
}
