/* Weingruen corporate identity for the pretix presale shop.
 *
 * Token source of truth: website/tailwind.config.ts. Changes there and here
 * have to move together.
 *
 * Delivered by pretix_weingruen_theme/signals.py via the global_html_head
 * signal, so it lands on every presale page without per-event activation.
 * Style loop while working on it: deploy/pretix/sync-theme.sh
 *
 * Counterpart for the embedded widget (which renders in the WEBSITE's DOM,
 * not here): the .pretix-widget-host block at the end of
 * website/src/app/globals.css.
 *
 * pretix presale is Bootstrap 3 based. We hook onto its classes only — no
 * template overrides — so a pretix upgrade cannot break the shop, only make
 * parts of this file ineffective. The mandatory smoke test after an upgrade
 * is in deploy/pretix/README.md.
 */

/* ---------- Fonts ---------- */
/* Relative URLs on purpose: collectstatic rewrites them to the hashed file
   names while collecting, so these resolve to /static/weingruen/fonts/<hash>. */
@font-face {
  font-family: "Aller Display";
  src: url("fonts/AllerDisplay.cbf673593245.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("fonts/BarlowCondensed-Regular.03efc33222dc.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("fonts/BarlowCondensed-Medium.2b10301ce419.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("fonts/BarlowCondensed-SemiBold.181046da6cb0.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("fonts/BarlowCondensed-Bold.52b5f967843d.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --wg-olive: #838332;
  --wg-olive-deep: #6b6b26;
  --wg-olive-soft: #a5a551;
  --wg-olive-tint: #e6e5c8;
  --wg-cream: #f5f1dd;
  --wg-cream-warm: #fbf8ec;
  --wg-ink: #020203;
  --wg-paper: #ffffff;
  --wg-red: #c5212b;

  --wg-muted: rgba(2, 2, 3, 0.6);
  --wg-line: rgba(2, 2, 3, 0.15);

  --wg-radius-card: 18px;
  --wg-radius-chip: 14px;
  --wg-radius-pill: 999px;
  --wg-shadow-soft: 0 1px 0 rgba(2, 2, 3, 0.06), 0 2px 6px rgba(2, 2, 3, 0.05);

  --wg-display: "Aller Display", Georgia, serif;
  --wg-sans: "Barlow Condensed", system-ui, sans-serif;

  /* Pull pretix' own variable along, so rules generated from the organizer's
     shop-design settings do not fight this file over the body font. */
  --pretix-font-family-sans-serif: "Barlow Condensed", system-ui, sans-serif;
}

/* ---------- Surfaces ---------- */
body {
  background-color: var(--wg-cream);
  color: var(--wg-ink);
  font-family: var(--wg-sans);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}

.container,
.container-fluid {
  color: var(--wg-ink);
}

/* pretix frames content in Bootstrap 3 panels. Those become our cards: paper
   on cream, soft edge instead of a hard border. */
.panel,
.panel-default,
.well,
.thumbnail {
  background-color: var(--wg-paper);
  border: 0;
  border-radius: var(--wg-radius-card);
  box-shadow: var(--wg-shadow-soft);
}

.panel-heading,
.panel-footer {
  background-color: transparent;
  border-color: var(--wg-line);
}

hr {
  border-top-color: var(--wg-line);
}

/* ---------- Typography ---------- */
/* .price covers every price on every screen — pretix puts that class on the
   single price, the cart line and the cart total alike (checked on the cart
   and checkout screens 2026-08-27), so no separate total/summary selectors
   are needed. */
h1,
h2,
h3,
.panel-title,
.price {
  font-family: var(--wg-display);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: var(--wg-ink);
}

h1 {
  font-size: clamp(2rem, 6vw, 3.25rem);
  margin-bottom: 0.5em;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}

h3,
.panel-title {
  font-size: 1.25rem;
}

small,
.small,
.text-muted,
.help-block {
  color: var(--wg-muted);
  font-family: var(--wg-sans);
}

a {
  color: var(--wg-olive-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover,
a:focus {
  color: var(--wg-ink);
}

/* ---------- Focus ---------- */
/* Replaced, never removed: pretix is built for EEA accessibility and the shop
   has to stay keyboard operable. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--wg-olive-deep);
  outline-offset: 2px;
}

/* ---------- Buttons ---------- */
/* Mirrored from website/src/components/Button.tsx: rounded-pill, px-6 py-3,
   text-sm, font-semibold, uppercase, tracking-wide. */
.btn {
  font-family: var(--wg-sans);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  border-radius: var(--wg-radius-pill);
  padding: 0.75rem 1.5rem;
  border: 0;
  transition: filter 0.15s ease, background-color 0.15s ease;
}

.btn-lg {
  font-size: 1rem;
  padding: 0.875rem 1.75rem;
}

.btn-xs {
  font-size: 0.75rem;
  padding: 0.35rem 0.9rem;
}

.btn-primary,
.btn-success {
  background-color: var(--wg-olive-deep);
  color: var(--wg-cream);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-success:hover,
.btn-success:focus {
  background-color: var(--wg-olive-deep);
  color: var(--wg-cream);
  filter: brightness(0.9);
}

.btn-default {
  background-color: transparent;
  border: 2px solid var(--wg-line);
  color: var(--wg-ink);
}

.btn-default:hover,
.btn-default:focus {
  background-color: rgba(2, 2, 3, 0.05);
  color: var(--wg-ink);
}

.btn-danger {
  background-color: var(--wg-red);
  color: var(--wg-cream);
}

.btn[disabled],
.btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Tap feedback like on the website, behind the reduced-motion guard. */
@media (prefers-reduced-motion: no-preference) {
  .btn:active {
    transform: scale(0.98);
  }
}

/* ---------- Form fields ---------- */
.form-control,
select,
textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"] {
  background-color: var(--wg-cream-warm);
  border: 1px solid var(--wg-line);
  border-radius: var(--wg-radius-chip);
  color: var(--wg-ink);
  font-family: var(--wg-sans);
  box-shadow: none;
}

.form-control:focus {
  border-color: var(--wg-olive-deep);
  box-shadow: none;
}

label,
.control-label {
  font-family: var(--wg-sans);
  font-weight: 600;
  color: var(--wg-ink);
}

/* Quantity stepper on the product page (input-item-count-group). The two
   round pill buttons of the generic .btn rule would collide with the number
   field between them, so this group keeps square-ish ends. */
.input-item-count-group .btn,
.input-group-btn .btn {
  padding: 0.5rem 0.85rem;
  border-radius: var(--wg-radius-chip);
}

.input-item-count {
  text-align: center;
  font-family: var(--wg-sans);
  font-weight: 600;
}

/* ---------- Messages ---------- */
.alert {
  border: 0;
  border-radius: var(--wg-radius-card);
  font-family: var(--wg-sans);
}

.alert-success,
.alert-info {
  background-color: var(--wg-olive-tint);
  color: var(--wg-ink);
}

.alert-warning {
  background-color: var(--wg-cream-warm);
  color: var(--wg-ink);
  border: 1px solid var(--wg-line);
}

.alert-danger {
  background-color: rgba(197, 33, 43, 0.1);
  color: var(--wg-red);
}

/* The test-mode banner must stay loud — it is a warning that this shop is not
   selling for real. Deliberately NOT toned down into the palette. */
.alert-testmode {
  background-color: var(--wg-red);
  color: var(--wg-cream);
  border: 0;
}

.has-error .form-control {
  border-color: var(--wg-red);
}

/* ---------- Badges and availability ---------- */
.label,
.badge {
  border-radius: var(--wg-radius-chip);
  font-family: var(--wg-sans);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.25em 0.7em;
}

.availability-box.available,
.label-success {
  background-color: var(--wg-olive-deep);
  color: var(--wg-cream);
}

.availability-box.unavailable,
.label-danger {
  background-color: var(--wg-red);
  color: var(--wg-cream);
}

/* ---------- Product list ---------- */
.product-row,
.variation {
  border-color: var(--wg-line);
}

.item-category h3,
.item-category > h3 {
  font-family: var(--wg-display);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.product-description {
  color: var(--wg-muted);
}

.product-row .price,
.variation .price,
.price {
  font-family: var(--wg-display);
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--wg-ink);
}

/* ---------- Progress ---------- */
.progress {
  background-color: var(--wg-olive-tint);
  border-radius: var(--wg-radius-pill);
  box-shadow: none;
}

.progress-bar,
.progress-bar-success {
  background-color: var(--wg-olive-deep);
}

/* Availability pill: the .label/.badge radius rule above does not reach it,
   it is its own element. */
.availability-box {
  border-radius: var(--wg-radius-chip);
}

/* ---------- Page frame ---------- */
/* Real DOM of a presale page (checked 2026-08-27 against
   /weingruen/tasting/17/):
 *
 *   body
 *     > nav.sr-only            skip link
 *     > header                 organizer header image lives here; EMPTY and
 *                              0px tall until one is uploaded in the admin
 *     > div.container.main-box the whole page content, white
 *     > footer                 test-mode banner + "powered by pretix"
 *
 * So .main-box is the page card: cream page behind it, paper card on top.
 * .page-header is NOT the site header — it is the H1 block inside the
 * content container, so it stays a plain title with our rule colour rather
 * than becoming a coloured band.
 */
.main-box {
  background-color: var(--wg-paper);
  border-radius: var(--wg-radius-card);
  box-shadow: var(--wg-shadow-soft);
  padding: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.page-header {
  border-bottom: 1px solid var(--wg-line);
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}

.page-header h1 a,
.page-header h1 a:hover {
  color: var(--wg-ink);
  text-decoration: none;
}

/* Organizer header image, once one is uploaded (see deploy/pretix/README.md,
   "Shop design"). Guarded by :has(img), NOT :not(:empty): the empty header
   still holds whitespace and an empty <div>, so :empty never matches and the
   olive band would be declared on a 0px element. */
body > header:has(img) {
  background-color: var(--wg-olive-deep);
  padding: 1.5rem 0;
}

body > header img {
  max-height: 72px;
  width: auto;
}

/* ---------- Footer ---------- */
footer {
  color: var(--wg-muted);
  font-family: var(--wg-sans);
  padding: 1.5rem 0 2.5rem;
}

footer a {
  color: var(--wg-olive-deep);
}

/* ---------- Mobile ---------- */
@media (max-width: 767px) {
  .main-box {
    padding: 1.25rem;
    margin-top: 1rem;
    border-radius: var(--wg-radius-chip);
  }
  .btn-block {
    padding: 0.875rem 1.25rem;
  }
}

/* ---------- pretix brand variables ----------
 * pretix generates /<organizer>/theme.css from the shop-design colours in the
 * admin and presale.css consumes those variables heavily (61 uses of
 * --pretix-brand-primary alone). Overriding them here flips every one of those
 * rules at once, instead of us chasing individual selectors.
 *
 * The derived shades are NOT guesses: they are produced with pretix' own LESS
 * operations (lighten/darken/tint/shade/saturate in HSL), an implementation
 * validated against pretix' published purple output — 17 of 17 values matched
 * (one after fixing half-up rounding).
 *
 * CONSEQUENCE, on purpose: this block WINS over the colour fields in the
 * admin. Changing "Primary color" there no longer changes the shop. That is
 * the intent — one CI look for all three brands, versioned in the repo, immune
 * to a DB rebuild. To change the palette, change it here.
 *
 * primary + success = olive-deep #6B6B26 (olive IS the brand green).
 * danger = accent-red #C5212B. info + warning keep pretix' defaults: they are
 * neutral, rarely surfaced, and recolouring them buys nothing.
 *
 * Note: --pretix-brand-primary-darken-30 computes to #000000 because
 * olive-deep already sits at L=28%. It is used twice, both times for a deep
 * border; black reads fine on cream.
 */
:root {
  /* primary */
  --pretix-brand-primary: #6b6b26;
  --pretix-brand-primary-darken-10: #454519;
  --pretix-brand-primary-darken-15: #333312;
  --pretix-brand-primary-darken-17: #2b2b0f;
  --pretix-brand-primary-darken-20: #20200b;
  --pretix-brand-primary-darken-30: #000000;
  --pretix-brand-primary-darken-5: #58581f;
  --pretix-brand-primary-lighten-20: #b6b641;
  --pretix-brand-primary-lighten-23-saturate-2: #c1c146;
  --pretix-brand-primary-lighten-28-saturate-20: #dbdb45;
  --pretix-brand-primary-lighten-30: #c7c763;
  --pretix-brand-primary-lighten-40: #d5d588;
  --pretix-brand-primary-lighten-48: #dfdfa6;
  --pretix-brand-primary-lighten-5: #7e7e2d;
  --pretix-brand-primary-lighten-50: #e2e2ae;
  --pretix-brand-primary-lighten-53: #e6e6b9;
  --pretix-brand-primary-lighten-55: #e9e9c1;
  --pretix-brand-primary-shade-25: #50501d;
  --pretix-brand-primary-shade-42: #3e3e16;
  --pretix-brand-primary-tint-90: #f0f0e9;

  /* success */
  --pretix-brand-success: #6b6b26;
  --pretix-brand-success-darken-10: #454519;
  --pretix-brand-success-darken-12: #3e3e16;
  --pretix-brand-success-darken-15: #333312;
  --pretix-brand-success-darken-17: #2b2b0f;
  --pretix-brand-success-darken-20: #20200b;
  --pretix-brand-success-darken-30: #000000;
  --pretix-brand-success-darken-5: #58581f;
  --pretix-brand-success-lighten-10: #919133;
  --pretix-brand-success-lighten-20: #b6b641;
  --pretix-brand-success-lighten-30: #c7c763;
  --pretix-brand-success-lighten-35: #cece75;
  --pretix-brand-success-lighten-38: #d2d281;
  --pretix-brand-success-lighten-40: #d5d588;
  --pretix-brand-success-lighten-48: #dfdfa6;
  --pretix-brand-success-lighten-50: #e2e2ae;
  --pretix-brand-success-shade-25: #50501d;
  --pretix-brand-success-shade-42: #3e3e16;
  --pretix-brand-success-tint-50: #b5b593;
  --pretix-brand-success-tint-85: #e9e9de;

  /* danger */
  --pretix-brand-danger: #c5212b;
  --pretix-brand-danger-darken-10: #991a21;
  --pretix-brand-danger-darken-15: #83161d;
  --pretix-brand-danger-darken-17: #7b151b;
  --pretix-brand-danger-darken-20: #6e1218;
  --pretix-brand-danger-darken-30: #420b0e;
  --pretix-brand-danger-darken-5: #af1d26;
  --pretix-brand-danger-lighten-15: #e2515a;
  --pretix-brand-danger-lighten-25: #e97c83;
  --pretix-brand-danger-lighten-30: #ed9298;
  --pretix-brand-danger-lighten-33: #ef9fa4;
  --pretix-brand-danger-lighten-43: #f6cbce;
  --pretix-brand-danger-lighten-45: #f8d4d6;
  --pretix-brand-danger-lighten-5: #da2530;
  --pretix-brand-danger-shade-25: #941920;
  --pretix-brand-danger-shade-42: #721319;
  --pretix-brand-danger-tint-50: #e29095;
  --pretix-brand-danger-tint-85: #f6dedf;

  /* links */
  --pretix-link-contrast-color: #6b6b26;
  --pretix-link-hover-contrast-color: #333312;
}

/* Payment-method choice (checkout step "Zahlung" and "Zahlungsart ändern" on
   the order page): pretix prints the provider fee ("+ 1,10 €") right next to
   each radio button. Luca wants the choice list without that note; the fee
   still shows as its own line in the order summary and the total on the
   confirmation page, i.e. before "Zahlungspflichtig bestellen" (decision
   2026-09-03). DOM: checkout_payment.html / order_pay_change.html,
   <legend class="accordion-radio"> > <label class="panel-heading"> >
   <span class="panel-title"> > <strong class="pull-right flip">. */
.accordion-radio .panel-title > strong.pull-right {
  display: none;
}
