/* ============================================================
   VISIMONSTUDIO SHOP — Stylesheet
   Base styles identical to main site + shop-specific additions
   ============================================================ */

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-400: #9e9e9e;
  --gray-600: #666666;
  --gray-800: #1a1a1a;
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Fira Sans Condensed', sans-serif;
  --transition: 0.3s ease;
  --twint-red: #e0002a;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background var(--transition), padding var(--transition);
}

.nav.scrolled,
.nav--dark {
  background: rgba(0, 0, 0, 0.97);
  padding: 18px 56px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav__links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
}

.nav__links a.active {
  border-bottom: 1px solid var(--white);
  padding-bottom: 2px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.nav-overlay.active { display: flex; }

.nav-overlay a {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity var(--transition);
}

.nav-overlay a:hover { opacity: 0.5; }

.nav-overlay__close {
  position: absolute;
  top: 28px;
  right: 56px;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  font-family: var(--font-display);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 15px 40px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  outline: none;
  background: none;
}

.btn--black {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.btn--black:hover {
  background: transparent;
  color: var(--black);
}

.btn--outline-black {
  border: 2px solid var(--black);
  color: var(--black);
  background: transparent;
}

.btn--outline-black:hover {
  background: var(--black);
  color: var(--white);
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  padding: 160px 0 88px;
  background:
    linear-gradient(rgba(0,0,0,0.58), rgba(0,0,0,0.58)),
    url('../../images/titelseite.jpg') center / cover no-repeat var(--black);
  color: var(--white);
}

.page-hero h1 {
  font-size: clamp(44px, 8vw, 96px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero .section-label {
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}

.page-hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  margin-top: 12px;
  max-width: 600px;
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 56px;
}

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.section-header {
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.75;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 36px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.footer__nav a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.footer__nav a:hover { color: var(--white); }

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.footer__social a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}

.footer__social a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 80px;
}

.footer__copy,
.footer__location {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

.footer__legal {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__legal-link {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  touch-action: manipulation;
}

.footer__legal-link:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   STICKY CONTACT BUBBLE
   ============================================================ */

/* ============================================================
   BLUR-IN / BLUR-OUT TITLE ANIMATION
   ============================================================ */
.blur-title__word {
  display: inline-block;
  white-space: nowrap;
}

.blur-title__letter {
  display: inline-block;
  opacity: 0;
  transition:
    opacity var(--dur, 0.35s) ease var(--delay, 0s),
    filter var(--dur, 0.35s) ease var(--delay, 0s);
}

.blur-title.visible .blur-title__letter {
  opacity: 1;
  filter: blur(0px);
}

/* ============================================================
   SHOP — Product Grid
   ============================================================ */
.shop {
  padding: 112px 0;
  background: var(--white);
}

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

/* Product card */
.product-card {
  background: var(--gray-100);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card__img {
  aspect-ratio: 4 / 3;
  background: var(--gray-800);
  overflow: hidden;
  position: relative;
}

.product-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.product-card__placeholder-icon {
  font-size: 44px;
  color: rgba(255,255,255,0.12);
}

.product-card__placeholder-text {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.12);
}

.product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  z-index: 1;
}

.product-card__body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__category {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.product-card__title {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-card__desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 22px;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
}

.product-card__price span {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-400);
  margin-left: 3px;
  vertical-align: middle;
}

.btn--add-cart {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  padding: 10px 16px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--add-cart:hover {
  background: transparent;
  color: var(--black);
}

.btn--add-cart.added {
  background: #1a7a1a;
  border-color: #1a7a1a;
  color: var(--white);
}

/* ============================================================
   CART TRIGGER (bottom-left floating button)
   ============================================================ */
.cart-trigger {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 9998;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--black);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}

.cart-trigger:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(0,0,0,0.45);
}

.cart-trigger .material-icons { color: var(--white); font-size: 26px; }

.cart-trigger__count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--twint-red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
}

.cart-trigger__count.visible { display: flex; }

/* ============================================================
   CART SIDEBAR
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100vw;
  height: 100%;
  background: var(--white);
  z-index: 10001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}

.cart-sidebar.open { transform: translateX(0); }

.cart-sidebar__header {
  padding: 28px 32px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.cart-sidebar__title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-sidebar__close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  color: var(--gray-600);
  transition: color var(--transition);
}

.cart-sidebar__close:hover { color: var(--black); }

.cart-sidebar__items {
  flex: 1;
  overflow-y: auto;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
  color: var(--gray-400);
  text-align: center;
}

.cart-empty .material-icons { font-size: 48px; opacity: 0.3; }
.cart-empty p { font-size: 14px; letter-spacing: 0.05em; }

.cart-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}

.cart-item:last-child { border-bottom: none; }

.cart-item__img {
  width: 72px;
  height: 72px;
  background: var(--gray-800);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item__img .material-icons { font-size: 24px; color: rgba(255,255,255,0.2); }

.cart-item__info { flex: 1; min-width: 0; }

.cart-item__category {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.cart-item__title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}

.cart-item__price {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}

.cart-item__remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-400);
  padding: 0;
  transition: color var(--transition);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.cart-item__remove:hover { color: var(--black); }
.cart-item__remove .material-icons { font-size: 20px; }

.cart-sidebar__footer {
  padding: 24px 32px;
  border-top: 1px solid var(--gray-200);
  flex-shrink: 0;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.cart-subtotal__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.cart-subtotal__value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
}

.cart-subtotal__note {
  font-size: 11px;
  color: var(--gray-400);
  margin-bottom: 20px;
  text-align: right;
  letter-spacing: 0.03em;
}

.btn--checkout {
  width: 100%;
  padding: 16px;
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.btn--checkout:hover {
  background: transparent;
  color: var(--black);
}

.btn--checkout:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* ============================================================
   CHECKOUT MODAL
   ============================================================ */
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,0.82);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.checkout-modal.open {
  opacity: 1;
  pointer-events: all;
}

.checkout-modal__box {
  background: var(--white);
  width: 100%;
  max-width: 540px;
  max-height: 92vh;
  overflow-y: auto;
  transform: translateY(24px);
  transition: transform 0.3s ease;
}

.checkout-modal.open .checkout-modal__box {
  transform: translateY(0);
}

.checkout-modal__header {
  padding: 26px 36px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}

.checkout-modal__title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.checkout-modal__step-indicator {
  font-size: 12px;
  color: var(--gray-400);
  letter-spacing: 0.06em;
}

.checkout-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  color: var(--gray-600);
  transition: color var(--transition);
  margin-left: 16px;
}

.checkout-modal__close:hover { color: var(--black); }

.checkout-step {
  padding: 36px;
  display: none;
}

.checkout-step.active { display: block; }

/* Order summary box */
.checkout-order-summary {
  background: var(--gray-100);
  padding: 20px 24px;
  margin-bottom: 28px;
}

.checkout-order-summary__title {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 14px;
}

.checkout-order-summary__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.checkout-order-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--gray-600);
}

.checkout-order-item__title { flex: 1; padding-right: 16px; }
.checkout-order-item__price { font-weight: 600; color: var(--black); white-space: nowrap; }

.checkout-order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--gray-200);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}

/* Contact form in checkout */
.checkout-step .form-group {
  margin-bottom: 20px;
}

.checkout-step .form-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.checkout-step .form-control {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  border-radius: 0;
}

.checkout-step .form-control:focus { border-color: var(--black); }
.checkout-step .form-control::placeholder { color: var(--gray-400); }

textarea.form-control { min-height: 90px; resize: vertical; }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 480px) {
  .form-row-2 { grid-template-columns: 1fr; }
}

.checkout-nav {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.checkout-nav .btn { flex: 1; text-align: center; }

/* ============================================================
   TWINT PAYMENT STEP
   ============================================================ */
.twint-payment { text-align: center; }

.twint-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.twint-logo-text {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--twint-red);
}

.twint-logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--twint-red);
}

.twint-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  margin-bottom: 10px;
}

.twint-amount__label {
  font-size: 16px;
  color: var(--gray-400);
  font-weight: 400;
  display: block;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  font-family: var(--font-display);
}

.twint-ref-box {
  display: inline-block;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  padding: 8px 20px;
  margin-bottom: 28px;
}

.twint-ref-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-400);
  display: block;
  margin-bottom: 2px;
}

.twint-ref-number {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.12em;
}

.twint-qr {
  width: 192px;
  height: 192px;
  margin: 0 auto 16px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.twint-qr img {
  width: 192px;
  height: 192px;
  display: block;
}

.btn--twint-link {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto 20px;
  padding: 14px 20px;
  background: var(--twint-red);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity var(--transition);
}

.btn--twint-link:hover { opacity: 0.88; }

.twint-instructions {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 28px;
  text-align: left;
  background: var(--gray-100);
  padding: 18px 24px;
}

.twint-instructions ol {
  padding-left: 20px;
  margin-top: 6px;
}

.twint-instructions li { margin-bottom: 6px; }

.twint-instructions strong { color: var(--black); }

.btn--twint-confirm {
  width: 100%;
  padding: 17px;
  background: var(--twint-red);
  color: var(--white);
  border: none;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity var(--transition);
}

.btn--twint-confirm:hover { opacity: 0.88; }

.twint-back-link {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: var(--gray-400);
  cursor: pointer;
  transition: color var(--transition);
  background: none;
  border: none;
  letter-spacing: 0.06em;
  width: 100%;
  padding: 6px;
}

.twint-back-link:hover { color: var(--black); }

/* ============================================================
   CONFIRMATION STEP
   ============================================================ */
.checkout-confirmation {
  text-align: center;
  padding: 16px 0 8px;
}

.checkout-confirmation__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #e6f4e6;
  color: #1a7a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.checkout-confirmation__icon .material-icons { font-size: 40px; }

.checkout-confirmation h3 {
  font-size: 22px;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.checkout-confirmation p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 360px;
  margin: 0 auto 28px;
}

.checkout-confirmation__ref {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--gray-400);
  letter-spacing: 0.12em;
  margin-bottom: 28px;
}

/* Blur animation spans must never block touch/click events */
.blur-title__word,
.blur-title__letter {
  pointer-events: none;
}

/* Global touch optimisation — removes 300ms tap delay */
a, button, [role="button"],
.btn, .btn--add-cart, .btn--checkout,
.btn--twint-confirm, .btn--twint-link,
.cart-trigger,
.nav__hamburger, .nav-overlay a,
.nav-overlay__close, .cart-sidebar__close,
.cart-item__remove, .checkout-modal__close,
.twint-back-link, .checkout-modal__close {
  touch-action: manipulation;
}

/* Minimum 44 × 44 px tap target for all interactive elements */
.btn--add-cart,
.btn--checkout,
.btn--twint-confirm,
.btn--twint-link,
.cart-trigger,
.nav__hamburger {
  min-height: 44px;
}

.nav-overlay a {
  min-height: 44px;
  display: flex;
  align-items: center;
}

.cart-item__remove {
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
}

/* Reserve space at page bottom so fixed buttons don't cover content */
body {
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.shop {
  padding-bottom: 120px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 36px; }

  .nav,
  .nav.scrolled,
  .nav--dark { padding-left: 36px; padding-right: 36px; }

  .nav-overlay__close { right: 36px; }

  .shop__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }

  .nav,
  .nav.scrolled,
  .nav--dark { padding: 20px 24px; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav-overlay__close { right: 24px; top: 20px; }

  .shop { padding: 80px 0 140px; }
  .shop__grid { grid-template-columns: 1fr; }

  .cart-sidebar { width: 100%; }

  /* Larger tap targets on product cards */
  .btn--add-cart { padding: 14px 20px; font-size: 11px; }
  .product-card__footer { flex-direction: column; align-items: flex-start; gap: 16px; }
  .btn--add-cart { width: 100%; text-align: center; }

  .footer__top { flex-direction: column; gap: 36px; }
  .footer__social { align-items: flex-start; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; padding-right: 0; }
  .footer__bottom > div { justify-content: center; }
}

@media (max-width: 480px) {
  .page-hero { padding-top: 120px; padding-bottom: 60px; }

  .cart-trigger { bottom: 20px; left: 16px; }

  .checkout-modal { padding: 0; align-items: flex-end; }
  .checkout-modal__box { max-height: 95vh; }
  .checkout-step { padding: 24px; }

  .twint-amount { font-size: 38px; }
}