/* Auszeit Shop — CI 2026. Absichtlich nur auf /shop/ eingebunden. */
:root {
  --shop-ink: #1a1a1a;
  --shop-ink-soft: #262522;
  --shop-gold: #c9a84c;
  --shop-gold-deep: #a98934;
  --shop-paper: #f5f3ef;
  --shop-paper-deep: #eae6de;
  --shop-white: #fff;
  --shop-muted: #6e6a60;
  --shop-line: rgba(26, 26, 26, .14);
  --shop-display: "Playfair Display", Georgia, serif;
  --shop-body: Inter, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--shop-paper);
  color: var(--shop-ink);
  font-family: var(--shop-body);
}

body::before { display: none !important; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--shop-gold);
  outline-offset: 3px;
}

/* Header: an die reduzierte Navigation der neuen Startseite angelehnt. */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 72px;
  background: #111;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  box-shadow: none;
}

.header__inner {
  width: min(1120px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  padding: 0;
  gap: 22px;
}

.header__logo img {
  display: block;
  width: 96px;
  height: auto;
}

.nav { margin-left: auto; }
.nav__list { gap: 26px; }
.nav__item { display: none; }
.nav__item:nth-child(1),
.nav__item:nth-child(2),
.nav__item:nth-child(7) { display: block; }
.mega-menu { display: none !important; }
.nav__chevron { display: none; }

.nav__link {
  color: #fff;
  font: 500 .76rem/1.2 var(--shop-body);
  letter-spacing: .04em;
}

.nav__item:nth-child(7) .nav__link {
  color: var(--shop-gold);
}

.nav__item:nth-child(7) .nav__link::after {
  transform: scaleX(1);
  background: var(--shop-gold);
}

.nav__cta,
.header__action {
  border-radius: 0;
}

.nav__cta {
  background: var(--shop-gold);
  color: #111;
  border-color: var(--shop-gold);
  font-size: .72rem;
  letter-spacing: .04em;
}

.search-toggle { display: none !important; }

/* Flächen, Typografie und Basiskomponenten. */
.breadcrumb {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  color: var(--shop-muted);
}

.breadcrumb a { color: var(--shop-muted); }
.breadcrumb a:hover { color: var(--shop-gold-deep); }

.btn {
  min-height: 46px;
  border-radius: 0;
  font-family: var(--shop-body);
  font-weight: 650;
  letter-spacing: .02em;
}

.btn--primary {
  background: var(--shop-gold);
  color: #111;
  border-color: var(--shop-gold);
}

.btn--primary:hover:not(:disabled) {
  background: var(--shop-gold-deep);
  border-color: var(--shop-gold-deep);
  color: #111;
  transform: translateY(-1px);
}

.btn--ghost {
  color: var(--shop-ink);
  border-color: var(--shop-line);
  background: transparent;
}

.btn--ghost:hover {
  color: var(--shop-ink);
  border-color: var(--shop-gold);
  background: rgba(201, 168, 76, .12);
}

/* Shop-Einstieg. */
.shop-hero {
  position: relative;
  overflow: hidden;
  background: var(--shop-paper);
  color: var(--shop-ink);
  border-bottom: 1px solid var(--shop-line);
}

.shop-hero::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -160px;
  width: 520px;
  aspect-ratio: 1;
  border: 1px solid rgba(201, 168, 76, .42);
  border-radius: 50%;
}

.shop-hero::after {
  content: "";
  position: absolute;
  right: 7vw;
  bottom: -95px;
  width: 290px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--shop-gold);
  opacity: .1;
}

.shop-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 128px) 0;
}

.shop-hero__eyebrow,
.shop-detail__typ,
.shop-card__typ {
  color: var(--shop-gold-deep);
  font: 700 .74rem/1.2 var(--shop-body);
  letter-spacing: .17em;
  text-transform: uppercase;
}

.shop-hero__title {
  max-width: 790px;
  margin: 14px 0 22px;
  color: var(--shop-ink);
  font-family: var(--shop-display);
  font-size: clamp(3.1rem, 7vw, 6.2rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.045em;
}

.shop-hero__text {
  max-width: 620px;
  color: var(--shop-muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
}

.shop-section,
.shop-section--alt {
  background: var(--shop-paper);
  padding: clamp(64px, 8vw, 112px) 0;
}

.shop-section--alt {
  background: var(--shop-paper-deep);
  border-block: 1px solid var(--shop-line);
}

.shop-container { width: min(1120px, calc(100% - 40px)); }

.shop-category__title {
  color: var(--shop-ink);
  font-family: var(--shop-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -.025em;
}

.shop-category__text {
  max-width: 680px;
  color: var(--shop-muted);
  font-size: 1rem;
  line-height: 1.7;
}

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

.shop-grid:has(.shop-card:only-child) {
  grid-template-columns: minmax(0, 720px);
}

.shop-card {
  overflow: hidden;
  background: var(--shop-white);
  color: var(--shop-ink);
  border: 1px solid var(--shop-line);
  border-radius: 0;
  box-shadow: 0 14px 42px rgba(31, 29, 22, .07);
}

.shop-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, .65);
  box-shadow: 0 20px 55px rgba(31, 29, 22, .12);
}

.shop-card__bild {
  aspect-ratio: 4 / 3;
  height: auto;
  background: var(--shop-paper-deep);
}

.shop-card__bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-card--bag .shop-card__bild,
.shop-product-image--bag {
  position: relative;
}

.shop-card--bag .shop-card__bild::after,
.shop-product-image--bag::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 56%;
  left: 50%;
  width: 36%;
  aspect-ratio: 1000 / 504;
  transform: translate(-50%, -50%);
  background: url("/assets/images/logos/auszeit-white.webp") center / contain no-repeat;
  pointer-events: none;
}

.shop-card--bag .shop-card__bild::before,
.shop-product-image--bag::before {
  content: "www.auszeit.reisen";
  position: absolute;
  z-index: 3;
  top: 73%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font: 500 clamp(9px, 1.3vw, 18px) / 1 var(--shop-body);
  letter-spacing: .02em;
  white-space: nowrap;
  pointer-events: none;
}

.shop-card--voucher .shop-card__bild,
.shop-product-image--voucher {
  position: relative;
}

.shop-card--voucher .shop-card__bild::after,
.shop-product-image--voucher::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 24%;
  left: 26%;
  width: 20%;
  aspect-ratio: 1000 / 504;
  transform: translate(-50%, -50%) rotate(-3deg);
  background: url("/assets/images/logos/auszeit-white.webp") center / contain no-repeat;
  pointer-events: none;
}

.shop-card__body { padding: 28px; }
.shop-card__titel {
  color: var(--shop-ink);
  font-family: var(--shop-display);
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-weight: 400;
}

.shop-card__desc { color: var(--shop-muted); line-height: 1.65; }
.shop-card__preis { color: var(--shop-ink); }

.shop-card__preis-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.shop-card__preis-hinweis,
.shop-detail__preis-hinweis,
.shop-checkout__preis-hinweis {
  color: var(--shop-muted);
  font-size: .75rem;
  line-height: 1.45;
}

.shop-card__badge {
  background: var(--shop-gold);
  color: #111;
  border-radius: 0;
}

/* Produktdetail. */
.shop-detail,
.shop-warenkorb {
  background: var(--shop-paper);
  color: var(--shop-ink);
  min-height: 58vh;
}

.shop-detail__grid,
.shop-warenkorb__inner {
  width: min(1120px, calc(100% - 40px));
}

.shop-detail__grid { gap: clamp(40px, 7vw, 88px); }

.shop-detail__bild {
  aspect-ratio: 4 / 3;
  border-radius: 0;
  background: var(--shop-paper-deep);
  border: 1px solid var(--shop-line);
  box-shadow: 0 18px 55px rgba(31, 29, 22, .1);
}

.shop-detail__bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-detail__titel,
.shop-warenkorb__titel,
.shop-danke__titel {
  color: var(--shop-ink);
  font-family: var(--shop-display);
  font-weight: 400;
  letter-spacing: -.03em;
}

.shop-detail__preis { color: var(--shop-ink); }
.shop-detail__preis-hinweis { display: block; margin: -8px 0 22px; }
.shop-detail__desc { color: var(--shop-muted); line-height: 1.75; }

.shop-detail__trust {
  padding-top: 22px;
  border-top: 1px solid var(--shop-line);
}

.shop-detail__trust li { color: var(--shop-muted); }
.shop-detail__trust li::before { color: var(--shop-gold-deep); }

.shop-betrag-btn,
.shop-betrag-input {
  background: #fff;
  color: var(--shop-ink);
  border-color: var(--shop-line);
  border-radius: 0;
}

.shop-betrag-btn:hover,
.shop-betrag-btn--active {
  color: #111;
  border-color: var(--shop-gold);
  background: rgba(201, 168, 76, .18);
}

/* Warenkorb und Checkout. */
.shop-warenkorb__inner { max-width: 760px; }
.shop-warenkorb__leer,
.shop-warenkorb-item,
.shop-form,
.shop-checkout-legal,
#checkout-legal {
  background: #fff;
  color: var(--shop-ink);
  border: 1px solid var(--shop-line);
  border-radius: 0;
  box-shadow: 0 12px 35px rgba(31, 29, 22, .06);
}

.shop-warenkorb-item { padding: 18px; }
.shop-warenkorb-item__thumb { border-radius: 0; background: var(--shop-paper-deep); }
.shop-warenkorb-item__name,
.shop-warenkorb-item__preis { color: var(--shop-ink); }
.shop-warenkorb-item__detail { color: var(--shop-muted); }
.shop-warenkorb-item__remove { color: var(--shop-muted); }

.shop-form { margin-top: 24px; padding: clamp(22px, 4vw, 34px); }
.shop-form h2 { color: var(--shop-ink) !important; font-family: var(--shop-display) !important; }
.shop-form__label { color: var(--shop-ink); }

.shop-form__input,
.shop-form__textarea {
  background: var(--shop-paper);
  color: var(--shop-ink);
  border-color: var(--shop-line);
  border-radius: 0;
}

.shop-form__input::placeholder,
.shop-form__textarea::placeholder { color: #918d84; }

.shop-form__input:focus,
.shop-form__textarea:focus {
  background: #fff;
  border-color: var(--shop-gold);
}

.shop-warenkorb__summe { border-color: var(--shop-line); }
.shop-warenkorb__total-label,
.shop-warenkorb__total-betrag { color: var(--shop-ink); }

#checkout-legal {
  margin-top: 24px;
  padding: 24px;
}

#checkout-legal a,
.shop-checkout-legal a,
.shop-agb-label a { color: #735c1d !important; text-decoration: underline; }

.shop-checkout__facts {
  display: grid;
  gap: 9px;
  margin: 0 0 20px;
  padding: 16px 18px;
  background: var(--shop-paper);
  border-left: 3px solid var(--shop-gold);
  color: var(--shop-muted);
  font-size: .83rem;
  line-height: 1.55;
}

.shop-checkout__facts strong { color: var(--shop-ink); }
.shop-checkout__privacy { margin-top: 8px; color: var(--shop-muted); font-size: .76rem; line-height: 1.5; }

#checkout-btn {
  min-height: 58px;
  font-size: 1rem;
  text-transform: none;
}

#checkout-btn:disabled { background: #b9b5ab; border-color: #b9b5ab; color: #555; opacity: 1; }

.shop-fehler {
  background: #fff4f2;
  color: #8b2e22;
  border: 1px solid #d89a91;
  border-radius: 0;
}

/* GPSR-Produktinformationen. */
.shop-gpsr {
  margin-top: 34px;
  padding: 24px;
  background: #fff;
  color: var(--shop-ink);
  border: 1px solid var(--shop-line);
  border-left: 3px solid var(--shop-gold);
  border-radius: 0;
}

.shop-gpsr__titel { color: var(--shop-ink); font-family: var(--shop-display); }
.shop-gpsr__liste dt { color: var(--shop-muted); }
.shop-gpsr__liste dd { color: var(--shop-ink); }
.shop-gpsr__sicherheit { margin: 18px 0 0; color: var(--shop-muted); font-size: .83rem; line-height: 1.6; }

/* Danke- und Rechtstexte. */
.shop-danke { background: var(--shop-paper); color: var(--shop-ink); }
.shop-danke__check { background: var(--shop-gold); color: #111; }
.shop-danke__text,
.shop-danke__kontakt { color: var(--shop-muted); }

.section--white { background: var(--shop-paper); }
.legal-content {
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(38px, 6vw, 72px);
  background: #fff;
  color: var(--shop-ink);
  border: 1px solid var(--shop-line);
  box-shadow: 0 14px 44px rgba(31, 29, 22, .06);
}

.legal-content h1,
.legal-content h2,
.legal-content h3 { color: var(--shop-ink); font-family: var(--shop-display); font-weight: 400; }
.legal-content h1 { font-size: clamp(2.25rem, 5vw, 3.7rem); letter-spacing: -.03em; }
.legal-content h2 { margin-top: 2.4rem; padding-top: .8rem; border-top: 1px solid var(--shop-line); }
.legal-content p,
.legal-content li { color: #494640; line-height: 1.75; }
.legal-content a { color: #735c1d; text-decoration: underline; }

/* Kompakter Shop-Footer statt des alten Portals. */
.footer { background: #111; color: #ddd8cd; }
.footer__gold-line { height: 3px; background: var(--shop-gold); }
.footer__main { padding: 48px 0 32px; }
.footer__grid { display: block; }
.footer__grid > :not(.footer__brand) { display: none; }
.footer__brand { max-width: 560px; margin: 0 auto; text-align: center; }
.footer__logo img { width: 118px; height: auto; margin-inline: auto; }
.footer__tagline { color: #b8b3aa; }
.footer__contact-item { justify-content: center; color: #ddd8cd; }
.footer__social { justify-content: center; }
.footer__trust,
.footer-badges { display: none !important; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .12); }
.footer__bottom-inner { align-items: center; gap: 18px; }
.footer__legal { justify-content: center; flex-wrap: wrap; gap: 8px 18px; }
.footer__legal-link { color: #b8b3aa; }
.footer__copyright { color: #8f8b83; text-align: center; }
.az-floating-cta { display: none !important; }

@media (max-width: 980px) {
  .nav { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .header__action { display: flex; }
  .shop-grid { grid-template-columns: 1fr; }
  .shop-detail__grid { grid-template-columns: 1fr; }
  .shop-detail__bild { max-width: 760px; }
}

@media (max-width: 680px) {
  .header__inner,
  .breadcrumb,
  .shop-hero__inner,
  .shop-container,
  .shop-detail__grid,
  .shop-warenkorb__inner { width: min(100% - 28px, 1120px); }

  .header__inner { min-height: 64px; }
  .header { min-height: 64px; }
  .header__logo img { width: 82px; }
  .shop-hero__inner { padding: 68px 0 74px; }
  .shop-hero__title { font-size: clamp(3rem, 15vw, 4.6rem); }
  .shop-card__body { padding: 22px; }
  .shop-card__footer { align-items: flex-end; gap: 14px; }
  .shop-detail { padding-block: 30px 58px; }
  .shop-detail__bild { aspect-ratio: 4 / 3; }
  .shop-warenkorb { padding-block: 42px 72px; }
  .shop-warenkorb-item { grid-template-columns: 78px 1fr auto; }
  .shop-warenkorb-item__thumb { width: 78px; height: 66px; }
  .legal-content { padding: 28px 20px; }
  .footer__bottom-inner { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Die ältere Notfall-CSS nutzt !important. Dieser letzte, shop-spezifische
   Layer neutralisiert sie, ohne die Startseite oder andere Bereiche anzufassen. */
body .shop-hero { background: var(--shop-paper) !important; color: var(--shop-ink) !important; }
body .shop-hero__eyebrow { color: var(--shop-gold-deep) !important; }
body .shop-hero__title { color: var(--shop-ink) !important; }
body .shop-hero__text { color: var(--shop-muted) !important; }
body .shop-section { background: var(--shop-paper) !important; color: var(--shop-ink) !important; }
body .shop-section--alt { background: var(--shop-paper-deep) !important; color: var(--shop-ink) !important; }
body .shop-category__title { color: var(--shop-ink) !important; }
body .shop-category__text { color: var(--shop-muted) !important; }
body .shop-card { background: var(--shop-white) !important; color: var(--shop-ink) !important; }
body .shop-card__body { background: var(--shop-white) !important; }
body .shop-card__titel,
body .shop-card__preis { color: var(--shop-ink) !important; }
body .shop-card__desc,
body .shop-card__preis-hinweis { color: var(--shop-muted) !important; }
body .shop-card__typ { color: var(--shop-gold-deep) !important; }
body .shop-detail,
body .shop-warenkorb,
body .shop-danke { background: var(--shop-paper) !important; color: var(--shop-ink) !important; }
body .shop-detail__titel,
body .shop-detail__preis,
body .shop-warenkorb__titel,
body .shop-danke__titel { color: var(--shop-ink) !important; }
body .shop-detail__desc,
body .shop-detail__trust li,
body .shop-detail__preis-hinweis,
body .shop-danke__text,
body .shop-danke__kontakt { color: var(--shop-muted) !important; }
body .shop-form,
body .shop-warenkorb-item,
body #checkout-legal,
body .shop-gpsr,
body .legal-content { background: var(--shop-white) !important; color: var(--shop-ink) !important; }
body .shop-form__label,
body .shop-warenkorb-item__name,
body .shop-warenkorb-item__preis,
body .shop-warenkorb__total-label,
body .shop-warenkorb__total-betrag,
body .shop-gpsr__titel,
body .shop-gpsr__liste dd,
body .legal-content h1,
body .legal-content h2,
body .legal-content h3 { color: var(--shop-ink) !important; }
body .shop-form__input,
body .shop-form__textarea { background: var(--shop-paper) !important; color: var(--shop-ink) !important; }
body .legal-content p,
body .legal-content li { color: #494640 !important; }

html body.shop-ci main .shop-section .shop-category .shop-grid a.shop-card {
  background-color: #fff !important;
  background-image: none !important;
  color: #1a1a1a !important;
}

html body.shop-ci main .shop-section .shop-category .shop-grid a.shop-card .shop-card__body {
  background-color: #fff !important;
  background-image: none !important;
}

html body.shop-ci main .shop-section .shop-category .shop-grid a.shop-card .shop-card__titel,
html body.shop-ci main .shop-section .shop-category .shop-grid a.shop-card .shop-card__preis {
  color: #1a1a1a !important;
}

html body.shop-ci main .shop-section .shop-category .shop-grid a.shop-card .shop-card__desc,
html body.shop-ci main .shop-section .shop-category .shop-grid a.shop-card .shop-card__preis-hinweis {
  color: #6e6a60 !important;
}

html body.shop-ci main .shop-section .shop-category .shop-grid a.shop-card [class*="shop-card__"] {
  background-color: transparent !important;
  background-image: none !important;
  border-color: transparent !important;
}

html body.shop-ci main .shop-section .shop-category .shop-grid a.shop-card .shop-card__typ {
  color: #a98934 !important;
}

html body.shop-ci main .shop-section .shop-category .shop-grid a.shop-card .shop-card__footer,
html body.shop-ci main .shop-section .shop-category .shop-grid a.shop-card .shop-card__preis-wrap {
  color: #1a1a1a !important;
}

html body.shop-ci main #warenkorb-total .shop-warenkorb__total-label,
html body.shop-ci main #warenkorb-total .shop-warenkorb__total-betrag,
html body.shop-ci main #warenkorb-versand .shop-warenkorb__total-label,
html body.shop-ci main #warenkorb-versand .shop-warenkorb__total-betrag {
  color: #1a1a1a !important;
}

html body.shop-ci main #checkout-preis-hinweis,
html body.shop-ci main #checkout-legal #checkout-lieferzeit,
html body.shop-ci main #checkout-legal .shop-agb-label {
  color: #5d5951 !important;
}
