/** Shopify CDN: Minification failed

Line 14:83 Expected identifier but found whitespace
Line 60:0 All "@import" rules must come first

**/
/* ==========================================================================
   Grabs Industries e.K. — Shopify Custom CSS
   Theme: Rebel (modifiziert) · Stand 09/2026
   Einfügen: Onlineshop → Themes → Anpassen → Theme-Einstellungen → Custom CSS
   (oder assets/custom.css, falls dein modifiziertes Rebel das nutzt)

   WICHTIG: Rebel ist bei dir modifiziert. Selektoren mit /* PRÜFEN */ davor
   können abweichen — im Theme-Inspektor gegenprüfen, bevor du sie übernimmst.
   Farben und Radien stimmen in jedem Fall.
   ========================================================================== */

/* --- 1. Tokens -------------------------------------------------------- */

:root {
  /* Dark (Rahmen: Header, Footer, Hero) */
  --gi-black:        #000000;
  --gi-dark-surface: #111114;
  --gi-dark-line:    #26262A;
  --gi-dark-line-2:  #3A3A42;
  --gi-white:        #FFFFFF;
  --gi-dark-muted:   #A1A1A6;
  --gi-dark-dim:     #5A5A62;

  /* Light (Katalog) */
  --gi-light-bg:      #FFFFFF;
  --gi-light-surface: #F5F5F7;
  --gi-light-line:    #E4E4E8;
  --gi-light-border:  #C9C9D0;
  --gi-ink:           #111114;
  --gi-light-muted:   #6E6E76;
  --gi-light-dim:     #9A9AA2;

  /* Signal */
  --gi-accent:       #1F8EFF;
  --gi-accent-hover: #5AAEFF;
  --gi-success:      #2BD97C;
  --gi-success-ink:  #1E9E5A;
  --gi-error:        #E5484D;

  /* Form */
  --gi-radius-pill:    999px;
  --gi-radius-surface: 14px;
  --gi-radius-field:   10px;

  /* Type */
  --gi-font-sans: "Archivo", system-ui, -apple-system, sans-serif;
  --gi-font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

/* --- 2. Schriften ----------------------------------------------------- */
/* Nur nötig, wenn die Theme-Einstellungen Archivo nicht anbieten.
   Sonst diesen Block weglassen — doppeltes Laden kostet Ladezeit. */

@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500&display=swap");

body,
button,
input,
select,
textarea {
  font-family: var(--gi-font-sans);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4,
.h0, .h1, .h2, .h3 {
  font-family: var(--gi-font-sans);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  text-wrap: pretty;
}

h1, .h0 {
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

/* --- 3. Mono-Labels --------------------------------------------------- */
/* Eyebrows, Kennzahlen, Verfügbarkeit, Preis-Suffixe. */

.gi-label,
.product__text.caption-with-letter-spacing,
.price__container .price-item--unit,
.product__availability,
.announcement-bar__message,
.breadcrumbs {
  font-family: var(--gi-font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gi-label--accent { color: var(--gi-accent); }

/* --- 4. Buttons ------------------------------------------------------- */
/* Pill durchgehend. Auf Schwarz schwarzer Text im Button, auf Weiß weißer. */

.button,
.shopify-payment-button__button--unbranded,
button.button,
.btn {
  border-radius: var(--gi-radius-pill) !important;
  font-family: var(--gi-font-sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  padding: 14px 26px;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

/* Primär auf hellem Grund */
.button--primary,
.shopify-payment-button__button--unbranded,
.product-form__submit {
  background: var(--gi-accent);
  color: var(--gi-white);
  border: none;
}

.button--primary:hover,
.shopify-payment-button__button--unbranded:hover,
.product-form__submit:hover {
  background: var(--gi-accent-hover);
  color: var(--gi-white);
}

/* Primär auf schwarzem Grund (Header, Footer, Hero) */
/* PRÜFEN: Rebel benennt Schemata evtl. anders als .color-scheme-2 */
.color-scheme-2 .button--primary,
.color-dark .button--primary,
.section--dark .button--primary {
  background: var(--gi-accent);
  color: var(--gi-black);
}

.color-scheme-2 .button--primary:hover,
.color-dark .button--primary:hover,
.section--dark .button--primary:hover {
  background: var(--gi-accent-hover);
  color: var(--gi-black);
}

/* Sekundär */
.button--secondary {
  background: transparent;
  color: var(--gi-ink);
  border: 1px solid var(--gi-light-border);
  font-weight: 600;
}

.button--secondary:hover { border-color: var(--gi-ink); }

.color-scheme-2 .button--secondary,
.color-dark .button--secondary {
  color: var(--gi-white);
  border-color: var(--gi-dark-line-2);
}

.color-scheme-2 .button--secondary:hover,
.color-dark .button--secondary:hover { border-color: var(--gi-white); }

/* Nicht verfügbar */
.button[disabled],
.button[aria-disabled="true"],
.product-form__submit[disabled] {
  background: var(--gi-light-line);
  color: var(--gi-light-dim);
  border: none;
  cursor: not-allowed;
}

/* Tertiär / Textlink */
.link,
.gi-link {
  color: var(--gi-accent);
  font-weight: 600;
  text-decoration: none;
  text-underline-offset: 3px;
}

.link:hover,
.gi-link:hover {
  color: var(--gi-accent-hover);
  text-decoration: underline;
}

/* --- 5. Header & Navigation ------------------------------------------ */

/* PRÜFEN: Klassennamen im modifizierten Rebel */
.announcement-bar,
.announcement-bar__message {
  background: var(--gi-accent);
  color: var(--gi-black);
}

.header-wrapper,
.section-header {
  background: var(--gi-black);
  border-bottom: 1px solid var(--gi-dark-line);
}

.header__menu-item,
.header__menu-item span,
.header__active-menu-item {
  font-family: var(--gi-font-sans);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--gi-white);
  text-decoration: none;
}

.header__menu-item:hover span { color: var(--gi-accent); }

.header__active-menu-item {
  color: var(--gi-accent);
  text-decoration: none !important;
}

.header__icon,
.header__icon .icon { color: var(--gi-white); }

.cart-count-bubble {
  background: var(--gi-accent);
  color: var(--gi-black);
  font-family: var(--gi-font-mono);
  font-weight: 500;
}

/* Sticky Header, Announcement-Bar scrollt weg */
.header-wrapper--sticky { position: sticky; top: 0; z-index: 40; }

/* --- 6. Flächen & Karten --------------------------------------------- */

.card,
.card-wrapper,
.collection-list__item,
.quick-add-modal__content,
.cart-drawer__inner {
  border-radius: var(--gi-radius-surface);
  border: 1px solid var(--gi-light-line);
  box-shadow: none; /* Hairlines statt Schatten */
  overflow: hidden;
}

.card__media,
.card .media { background: var(--gi-light-surface); }

.card__heading,
.card__heading a {
  font-size: 17px;
  font-weight: 700;
  color: var(--gi-ink);
  letter-spacing: -0.01em;
  text-decoration: none;
}

.card__information .price { color: var(--gi-ink); font-weight: 700; }

/* Fläche-Schema (Konfigurator, Erklärer-Sektionen) */
.gi-surface,
.color-scheme-3 {
  background: var(--gi-light-surface);
  color: var(--gi-ink);
}

/* --- 7. Formularfelder ----------------------------------------------- */

.field__input,
.select__select,
.customer .field input,
textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="password"] {
  border-radius: var(--gi-radius-field);
  border: 1px solid var(--gi-light-border);
  background: var(--gi-light-bg);
  color: var(--gi-ink);
  font-family: var(--gi-font-sans);
  font-size: 15px;
  padding: 13px 15px;
  box-shadow: none;
  transition: border-color 0.15s ease;
}

.field__input:focus,
.select__select:focus,
textarea:focus,
input:focus {
  border-color: var(--gi-accent);
  border-width: 1.5px;
  outline: none;
  box-shadow: none;
}

.field__input::placeholder { color: var(--gi-light-dim); }

.field__label,
.form__label {
  font-family: var(--gi-font-sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gi-ink);
}

.form__message--error,
.field--error .form__message {
  color: var(--gi-error);
  font-size: 13px;
}

.field--error .field__input { border-color: var(--gi-error); border-width: 1.5px; }

.form__message--success { color: var(--gi-success-ink); font-size: 13px; }

/* --- 8. Varianten-Auswahl (Verfahren, Position) ----------------------- */

/* Pills */
.product-form__input input[type="radio"] + label,
.variant-input label {
  border-radius: var(--gi-radius-pill);
  border: 1px solid var(--gi-light-border);
  background: var(--gi-light-bg);
  color: var(--gi-ink);
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 16px;
  transition: all 0.15s ease;
}

.product-form__input input[type="radio"]:checked + label,
.variant-input input:checked + label {
  background: var(--gi-ink);
  border-color: var(--gi-ink);
  color: var(--gi-white);
  font-weight: 600;
}

/* Kacheln (Motivposition) */
.gi-option-tile {
  border-radius: var(--gi-radius-field);
  border: 1px solid var(--gi-light-border);
  background: var(--gi-light-bg);
  padding: 11px;
  text-align: center;
  font-size: 13px;
  color: var(--gi-ink);
  cursor: pointer;
}

.gi-option-tile[aria-checked="true"] {
  border: 1.5px solid var(--gi-accent);
  font-weight: 600;
}

/* Farbswatches */
.gi-swatch {
  width: 34px;
  height: 34px;
  border-radius: var(--gi-radius-pill);
  border: 1px solid var(--gi-light-border);
  cursor: pointer;
}

.gi-swatch[aria-checked="true"] {
  border-color: transparent;
  box-shadow: 0 0 0 2px var(--gi-light-bg), 0 0 0 4px var(--gi-accent);
}

/* --- 9. Datei-Upload -------------------------------------------------- */
/* Styling für das Feld deiner Upload-App oder ein Liquid line_item property. */

.gi-upload {
  border: 1.5px dashed var(--gi-light-border);
  border-radius: 12px;
  background: var(--gi-light-bg);
  padding: 26px;
  text-align: center;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.gi-upload:hover,
.gi-upload.is-dragover {
  border-color: var(--gi-accent);
  background: color-mix(in oklch, var(--gi-accent) 4%, #FFFFFF);
}

.gi-upload__title {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--gi-ink);
  margin-bottom: 5px;
}

.gi-upload__hint {
  font-family: var(--gi-font-mono);
  font-size: 11.5px;
  color: var(--gi-light-muted);
}

/* Upload-Feld der App darf nicht wie ein Systemfeld aussehen */
input[type="file"] { font-family: var(--gi-font-sans); font-size: 14px; }

/* --- 10. Preis & Verfügbarkeit --------------------------------------- */

.price__regular .price-item--regular {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gi-ink);
}

.price--on-sale .price-item--sale { color: var(--gi-ink); }
.price--on-sale .price-item--regular { color: var(--gi-light-dim); }

/* Sale-Badge: schwarz, nicht rot — keine zweite Signalfarbe */
.badge {
  background: var(--gi-ink);
  color: var(--gi-white);
  border-radius: var(--gi-radius-pill);
  font-family: var(--gi-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: none;
}

.gi-stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gi-ink);
}

.gi-stock::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: var(--gi-radius-pill);
  background: var(--gi-success);
}

.gi-stock--out::before { background: var(--gi-light-dim); }

/* --- 11. Footer ------------------------------------------------------- */

.footer,
.section-footer {
  background: var(--gi-black);
  color: var(--gi-dark-muted);
  border-top: none;
}

.footer-block__heading {
  font-family: var(--gi-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gi-dark-dim);
}

.footer a,
.footer__list-social a,
.list-menu__item--link {
  color: var(--gi-dark-muted);
  font-size: 14.5px;
  text-decoration: none;
}

.footer a:hover { color: var(--gi-accent); }

.footer__content-bottom {
  border-top: 1px solid var(--gi-dark-line);
  font-family: var(--gi-font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gi-dark-dim);
}

/* --- 12. Kleinkram ---------------------------------------------------- */

::selection { background: var(--gi-accent); color: var(--gi-white); }

*:focus-visible {
  outline: 2px solid var(--gi-accent);
  outline-offset: 2px;
}

/* Keine Schatten irgendwo — CI arbeitet mit Hairlines */
.card,
.media--hover-effect,
.cart-drawer,
.quick-add-modal__content { box-shadow: none; }

/* Loader / Spinner in Akzentfarbe */
.loading__spinner .path { stroke: var(--gi-accent); }

/* Mobil: Navigation und Buttons großzügig, 44px Mindesthöhe */
@media screen and (max-width: 749px) {
  .button,
  .product-form__submit {
    min-height: 48px;
    width: 100%;
    justify-content: center;
  }

  .header__menu-item { font-size: 16px; padding: 12px 0; }

  h1, .h0 { font-size: 36px; }
  h2, .h1 { font-size: 28px; }
}
