body {
  background: #0b0e18;
}
:root {
  --bg: #020716;
  --bg-soft: #050b1f;

  --panel: rgba(8, 15, 40, 0.98);
  --panel-soft: rgba(7, 14, 34, 0.96);

  --accent: #ffae4b;
  --accent-2: #ff4b7a;
  --accent-3: #36d69d;

  --text: #f7f9ff;
  --text-soft: rgba(237, 241, 255, 0.78);
  --muted: rgba(237, 241, 255, 0.6);

  --border-soft: rgba(255, 255, 255, 0.12);

  --radius-lg: 28px;
  --radius-md: 20px;

  --shadow-soft: 0 30px 80px rgba(0, 0, 0, 0.7);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #111934 0%, #020513 55%, #000 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* =========================
   LAYOUT
========================= */

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
}

.section-title {
  font-size: 1.3rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.section-tagline {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 1.4rem;
}

/* =========================
   HEADER / NAV
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;

  padding: 1.2rem 1.5rem 0.8rem;

  background: linear-gradient(to bottom, rgba(2, 4, 15, 0.92), rgba(2, 4, 15, 0.35), transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.logo {
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  position: relative;
  padding-bottom: 0.35rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  transition: width 140ms ease-out;
}

.nav-links a:hover::after {
  width: 100%;
}

/* =========================
   HERO
========================= */

.hero {
  margin-top: 2.5rem;
}

.hero-grid {
  margin: 0 auto;
  max-width: 1200px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr);
  gap: 1.6rem;
  align-items: stretch;
}

.panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), rgba(4, 9, 24, 0.96));
  box-shadow: var(--shadow-soft);
  padding: 1.9rem 2.2rem;
  position: relative;
  overflow: hidden;
}

.panel-inner {
  position: relative;
  z-index: 1;
}

/* Left hero */

.hero-logo-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  padding: 1.6rem;
  border-radius: 22px;

  /* Heller Hintergrund damit dunkles Logo sichtbar ist */
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.14),
    0 20px 60px rgba(0,0,0,0.65);

  margin-bottom: 1.5rem;
}

.hero-logo-card img {
  width: min(360px, 100%);
  display: block;

  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  padding: 1rem;

  filter: drop-shadow(0 18px 45px rgba(0,0,0,0.55));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.hero-logo-card img:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 22px 60px rgba(0,0,0,0.65));
}

.pill-flags {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
  width: 100%;
}

.pill-flag {
  font-size: 0.7rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(9, 16, 40, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.hero-title {
  font-size: 1.8rem;
  line-height: 1.25;
  margin: 0 0 0.9rem;
}

.highlight {
  background: linear-gradient(120deg, var(--accent), var(--accent-2), #22e0a0);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 0.8rem;
}

.hero-meta-row {
  font-size: 0.88rem;
  color: rgba(237, 241, 255, 0.72);
  line-height: 1.6;
  margin: 0.9rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

/* Right hero (about card) */

.about-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), rgba(4, 9, 24, 0.96));
  box-shadow: var(--shadow-soft);
  padding: 2rem 2.4rem;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-header {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-header .name {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

.about-copy {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 1.2rem;
}

.about-tags {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.about-tag {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.9rem 1.4rem;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), rgba(3, 8, 22, 0.96));
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
}

.about-tag .chip-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.about-tag .chip-text {
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* =========================
   STORY + FOUNDERS PANELS
========================= */

.story-panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), rgba(4, 9, 24, 0.96));
  padding: 1.6rem 2rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 4rem;
}

.story-panel p {
  margin: 0 0 1rem;
}

.story-panel p:last-child {
  margin-bottom: 0;
}

#founders {
  margin-top: 4.5rem;
}

/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.7rem 1.6rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 120ms ease-out, box-shadow 120ms ease-out, border-color 120ms ease-out, background 120ms ease-out, opacity 120ms ease-out;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--text);
  transform: translateY(-1px);
}

/* Gradient Instagram button */
.btn-gradient {
  background: linear-gradient(90deg, #ff7a7a, #ff4db8, #4dd8ff, #7aff7a);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  display: inline-block;
  text-decoration: none;
  border: none;
}

.btn-gradient:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* Cart button */
.btn-cart {
  margin-top: auto;
  width: 100%;
  border-radius: 999px;
  background: #ff9e3d;
  color: #050814;
  font-weight: 700;
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.85);
}

.btn-cart:hover {
  background: #ffb45b;
  transform: translateY(-1px);
}

/* =========================
   COLLECTION / PRODUCTS
========================= */

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.product {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), rgba(4, 9, 24, 0.97));
  box-shadow: var(--shadow-soft);
  padding: 1.6rem 1.7rem 1.7rem;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 1rem;
  margin: 0 0 0.4rem;
}

.product-price {
  color: #3bd46f;
  font-weight: 700;
  margin: 0 0 0.4rem;
}

.product-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin: 0 0 0.9rem;
}

/* Mini images row (fixed selector) */
.product-image-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1.1rem;
}

.product-thumb {
  position: relative;
  border-radius: var(--radius-md);
  padding: 0.8rem 0.8rem 1.1rem;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), rgba(4, 9, 24, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.78);
  text-align: center;
}

.product-thumb-label {
  display: inline-block;
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.product-thumb img {
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
  border-radius: calc(var(--radius-md) - 6px);
}

.product-copy {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0.6rem 0 1rem;
}

/* Size pills + qty */

.product-size {
  margin-bottom: 0.6rem;
}

.product-size-label {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.size-pills {
  display: inline-flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.size-pill {
  min-width: 32px;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--text);
  font-size: 0.75rem;
  cursor: pointer;
}

.size-pill.active {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--text);
}

.product-qty {
  font-size: 0.8rem;
  margin-bottom: 0.85rem;
  color: var(--muted);
}

.qty-input {
  width: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(4, 8, 20, 0.95);
  color: var(--text);
  padding: 0.25rem 0.45rem;
  margin-left: 0.35rem;
}

/* =========================
   ORDER + CONTACT + FOOTER
========================= */

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: 2rem;
}

.order-info {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.contact-section {
  margin-top: 4.5rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  font-size: 0.78rem;
  text-align: center;
  color: var(--muted);
  background: radial-gradient(circle at top, #050a1a 0%, #01020a 60%, #000 100%);
}

/* =========================
   CART ICON + DRAWER
========================= */

.cart-icon {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 58px;
  height: 58px;
  background: rgba(30, 35, 55, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  color: white;
  cursor: pointer;
  z-index: 9999;
  transition: transform 0.25s ease;
}

.cart-icon:hover {
  transform: scale(1.08);
}

.cart-icon-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ff6b6b;
  padding: 0.25rem 0.45rem;
  border-radius: 999px;
  font-size: 0.7rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 320px;
  height: 100%;
  background: rgba(20, 25, 45, 0.92);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2rem 1.5rem;
  transition: right 0.35s cubic-bezier(.4,0,.2,1);
  z-index: 9998;
  color: white;
  overflow-y: auto;
}

.cart-drawer.open {
  right: 0;
}

.cart-drawer-title {
  margin: 0 0 1.2rem;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
}

#cart-empty {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
}

.cart-items {
  list-style: none;
  padding: 0;
  margin: 0 0 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.cart-item {
  background: rgba(255,255,255,0.05);
  padding: 0.8rem;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.7rem;
}

.cart-item-meta {
  display: block;
  font-size: 0.75rem;
  color: rgba(237, 241, 255, 0.7);
  margin-top: 0.12rem;
}

.cart-item-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cart-item-price {
  font-weight: 700;
}

.cart-remove {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: rgba(255,255,255,0.75);
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  cursor: pointer;
}

.cart-remove:hover {
  border-color: rgba(255,255,255,0.55);
  color: white;
}

.cart-total {
  font-size: 0.95rem;
  margin: 0.6rem 0 0;
  font-weight: 700;
}

.cart-checkout {
  margin-top: 1.4rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.cart-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1.8rem;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 960px) {
  main {
    padding-top: 5rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .order-layout {
    grid-template-columns: minmax(0, 1fr);
  }

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

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .products-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .panel {
    padding: 1.4rem 1.4rem 1.6rem;
  }
}

/* FORCE bigger product thumbs */
.product-image-row {
  gap: 1.1rem !important;
}

.product-thumb {
  padding: 1.2rem 1.2rem 1.4rem !important;
  min-height: 320px !important;         /* <<< macht die Box höher */
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.product-thumb img {
  max-height: 280px !important;         /* <<< Bild größer */
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}
/* Make product images actually fill the tall thumb */
.product-thumb {
  overflow: hidden;
}

.product-thumb img {
  width: 100% !important;
  height: 240px !important;     /* bestimmt die sichtbare Höhe */
  object-fit: cover !important; /* zoomt rein, füllt die Fläche */
  object-position: center 35% !important; /* Shirt etwas höher im Bild */
}

/* === MAKE PRODUCT IMAGES SQUARE === */

.product-image-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.product-thumb {
  aspect-ratio: 1 / 1 !important;   /* macht die Box quadratisch */
  border-radius: 18px !important;
  padding: 0.8rem !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Bild richtig groß anzeigen */
.product-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;   /* kein Abschneiden */
  transform: scale(1.15);           /* leicht größer */
}
/* === FIX: square thumbnails WITHOUT overlap === */

.product-image-row{
  display:grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 1rem !important;
  margin-bottom: 1.1rem !important;
}

.product-thumb{
  position: relative !important;
  aspect-ratio: 1 / 1 !important;
  width: 100% !important;
  border-radius: 18px !important;
  overflow: hidden !important;

  /* reset any weird inherited layout */
  padding: 0.8rem !important;
  display: block !important;
}

/* keep label on top */
.product-thumb-label{
  position: relative !important;
  z-index: 2 !important;
  margin-bottom: 0.35rem !important;
}

/* image must not escape */
.product-thumb img{
  display:block !important;
  width: 100% !important;
  height: calc(100% - 22px) !important; /* leaves space for FRONT/BACK label */
  object-fit: contain !important;

  /* IMPORTANT: no crazy scaling */
  transform: none !important;
  max-width: 100% !important;
  max-height: 100% !important;
}