/* ==========================================================================
   STEGU SNIPPETS — Design System CSS Library
   Verze: 1.0 | Duben 2026
   Autor: DECORSTONE s.r.o.

   POUŽITÍ:
   1. Vložit jednou do Shoptetu (Administrace → Vzhled → Vlastní CSS)
      NEBO
   2. Embedovat <style> blok přímo do každého HTML snippetu

   PRAVIDLA:
   - Vše v .stegu-block kontejneru — izolace od Shoptet CSS
   - Používej pouze třídy s prefixem stegu-
   - Nikdy neměň :root tokeny — jsou sdílené s custom.css
   ========================================================================== */


/* ==========================================================================
   1. CSS TOKENY (sdílené s custom.css — jediný zdroj pravdy)
   ========================================================================== */

:root {

  /* --- Primitiva --- */
  --stegu-color-red-500:    #b71c2b;
  --stegu-color-red-700:    #8e1523;
  --stegu-color-gold-500:   #db9b2e;
  --stegu-color-gold-700:   #b97d23;
  --stegu-color-blue-500:   #2a7aaf;
  --stegu-color-blue-700:   #1f5d89;
  --stegu-color-green-500:  #28a745;
  --stegu-color-danger-500: #dc3545;
  --stegu-color-gray-900:   #1f1f1f;
  --stegu-color-gray-800:   #343434;
  --stegu-color-gray-500:   #666666;
  --stegu-color-gray-300:   #c9c9c9;
  --stegu-color-gray-200:   #e2e2e2;
  --stegu-color-gray-100:   #f8f8f8;
  --stegu-color-white:      #ffffff;

  /* --- Sémantické aliasy --- */
  --stegu-action-primary:       var(--stegu-color-red-500);
  --stegu-action-primary-int:   var(--stegu-color-red-700);
  --stegu-action-secondary:     var(--stegu-color-gold-500);
  --stegu-action-secondary-int: var(--stegu-color-gold-700);
  --stegu-action-neutral:       var(--stegu-color-gray-200);
  --stegu-action-neutral-int:   var(--stegu-color-gray-300);

  --stegu-text-main:    var(--stegu-color-gray-800);
  --stegu-text-strong:  var(--stegu-color-gray-900);
  --stegu-text-muted:   var(--stegu-color-gray-500);
  --stegu-text-inverse: var(--stegu-color-white);

  --stegu-surface-base: var(--stegu-color-white);
  --stegu-surface-alt:  var(--stegu-color-gray-100);
  --stegu-surface-dark: var(--stegu-color-gray-800);

  --stegu-border-weak:   var(--stegu-color-gray-200);
  --stegu-border-strong: var(--stegu-color-gray-300);

  --stegu-state-info:     var(--stegu-color-blue-500);
  --stegu-state-info-int: var(--stegu-color-blue-700);
  --stegu-state-success:  var(--stegu-color-green-500);
  --stegu-state-error:    var(--stegu-color-danger-500);

  /* --- Spacing škála --- */
  --stegu-space-xs:  8px;
  --stegu-space-sm:  12px;
  --stegu-space-md:  24px;
  --stegu-space-lg:  48px;
  --stegu-space-xl:  80px;
}


/* ==========================================================================
   2. SCOPING WRAPPER
   Každý snippet musí být zabalen do .stegu-block — izoluje font, barvu
   a box-sizing od zbytku Shoptetu.
   ========================================================================== */

.stegu-block {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  color: var(--stegu-text-main);
  line-height: 1.5;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

.stegu-block *,
.stegu-block *::before,
.stegu-block *::after {
  box-sizing: inherit;
}

.stegu-block a {
  color: inherit;
  text-decoration: none;
}

.stegu-block img {
  display: block;
  max-width: 100%;
}


/* ==========================================================================
   3. TYPOGRAFIE
   ========================================================================== */

.stegu-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stegu-action-primary);
  margin: 0 0 8px;
  display: block;
}

.stegu-h1 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--stegu-text-strong);
  margin: 0 0 16px;
}

.stegu-h2 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: var(--stegu-text-strong);
  margin: 0 0 12px;
}

.stegu-h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.3;
  color: var(--stegu-text-strong);
  margin: 0 0 8px;
}

.stegu-h4 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
  color: var(--stegu-text-strong);
  margin: 0 0 8px;
}

.stegu-lead {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--stegu-text-muted);
  margin: 0 0 16px;
}

.stegu-body {
  font-size: .9375rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--stegu-text-main);
  margin: 0 0 16px;
}

.stegu-small {
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1.6;
  color: var(--stegu-text-muted);
}

.stegu-tiny {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--stegu-text-muted);
}

/* Inverzní typografie (pro tmavé pozadí) */
.stegu-block.stegu-on-dark .stegu-h1,
.stegu-block.stegu-on-dark .stegu-h2,
.stegu-block.stegu-on-dark .stegu-h3,
.stegu-block.stegu-on-dark .stegu-h4,
.stegu-block.stegu-on-dark .stegu-body,
.stegu-on-dark .stegu-h1,
.stegu-on-dark .stegu-h2,
.stegu-on-dark .stegu-h3,
.stegu-on-dark .stegu-h4,
.stegu-on-dark .stegu-body  { color: var(--stegu-text-inverse); }
.stegu-on-dark .stegu-lead,
.stegu-on-dark .stegu-small { color: var(--stegu-color-gray-300); }
.stegu-on-dark .stegu-eyebrow { color: var(--stegu-action-secondary); }

/* Responzivní škálování */
@media (max-width: 768px) {
  .stegu-h1   { font-size: 1.875rem; }
  .stegu-h2   { font-size: 1.4rem; }
  .stegu-h3   { font-size: 1.1rem; }
  .stegu-lead { font-size: 1rem; }
}


/* ==========================================================================
   4. LAYOUT — SEKCE A KONTEJNERY
   ========================================================================== */

.stegu-section {
  width: 100%;
  padding: 64px 20px;
}

.stegu-section--sm  { padding: 40px 20px; }
.stegu-section--lg  { padding: 96px 20px; }
.stegu-section--alt  { background-color: var(--stegu-surface-alt); }
.stegu-section--dark {
  background-color: var(--stegu-surface-dark);
  color: var(--stegu-text-inverse);
}
.stegu-section--red {
  background-color: var(--stegu-action-primary);
  color: var(--stegu-text-inverse);
}
.stegu-section--gold {
  background-color: var(--stegu-action-secondary);
}

.stegu-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.stegu-container--narrow { max-width: 800px; }
.stegu-container--wide   { max-width: 1400px; }
.stegu-container--flush  { padding-left: 0; padding-right: 0; }


/* ==========================================================================
   5. GRID SYSTÉM
   ========================================================================== */

.stegu-grid {
  display: grid;
  gap: 24px;
}

.stegu-grid-1 { grid-template-columns: 1fr; }
.stegu-grid-2 { grid-template-columns: repeat(2, 1fr); }
.stegu-grid-3 { grid-template-columns: repeat(3, 1fr); }
.stegu-grid-4 { grid-template-columns: repeat(4, 1fr); }
.stegu-grid-auto { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

/* Speciální poměry */
.stegu-grid-1-2 { grid-template-columns: 1fr 2fr; }
.stegu-grid-2-1 { grid-template-columns: 2fr 1fr; }
.stegu-grid-1-1-2 { grid-template-columns: 1fr 1fr 2fr; }

/* Gap varianty */
.stegu-grid--gap-sm { gap: 12px; }
.stegu-grid--gap-lg { gap: 40px; }
.stegu-grid--gap-0  { gap: 0; }

/* Responzivita */
@media (max-width: 991px) {
  .stegu-grid-3,
  .stegu-grid-4     { grid-template-columns: repeat(2, 1fr); }
  .stegu-grid-1-2,
  .stegu-grid-2-1,
  .stegu-grid-1-1-2 { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .stegu-grid-2,
  .stegu-grid-3,
  .stegu-grid-4 { grid-template-columns: 1fr; }
}


/* ==========================================================================
   6. FLEXBOX HELPERS
   ========================================================================== */

.stegu-flex         { display: flex; }
.stegu-flex-center  { display: flex; align-items: center; justify-content: center; }
.stegu-flex-between { display: flex; align-items: center; justify-content: space-between; }
.stegu-flex-start   { display: flex; align-items: flex-start; }
.stegu-flex-wrap    { flex-wrap: wrap; }
.stegu-flex-col     { flex-direction: column; }
.stegu-gap-xs  { gap: var(--stegu-space-xs); }
.stegu-gap-sm  { gap: var(--stegu-space-sm); }
.stegu-gap-md  { gap: var(--stegu-space-md); }
.stegu-gap-lg  { gap: var(--stegu-space-lg); }


/* ==========================================================================
   7. TLAČÍTKA
   ========================================================================== */

.stegu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none !important;
  border: 2px solid transparent;
  cursor: pointer;
  border-radius: 0 !important;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  line-height: 1;
}

/* Velikosti */
.stegu-btn--sm { padding: 8px 16px; font-size: .75rem; }
.stegu-btn--lg { padding: 16px 32px; font-size: 1rem; }
.stegu-btn--full { width: 100%; }

/* Varianty */
.stegu-btn-primary {
  background-color: var(--stegu-action-primary);
  color: var(--stegu-text-inverse) !important;
  border-color: var(--stegu-action-primary);
}
.stegu-btn-primary:hover,
.stegu-btn-primary:focus {
  background-color: var(--stegu-action-primary-int);
  border-color: var(--stegu-action-primary-int);
  color: var(--stegu-text-inverse) !important;
}

.stegu-btn-cta {
  background-color: var(--stegu-action-secondary);
  color: var(--stegu-text-strong) !important;
  border-color: var(--stegu-action-secondary);
}
.stegu-btn-cta:hover,
.stegu-btn-cta:focus {
  background-color: var(--stegu-action-secondary-int);
  border-color: var(--stegu-action-secondary-int);
}

.stegu-btn-neutral {
  background-color: var(--stegu-action-neutral);
  color: var(--stegu-text-main) !important;
  border-color: var(--stegu-action-neutral);
}
.stegu-btn-neutral:hover,
.stegu-btn-neutral:focus {
  background-color: var(--stegu-action-neutral-int);
  border-color: var(--stegu-action-neutral-int);
}

.stegu-btn-outline {
  background-color: transparent;
  border-color: var(--stegu-text-main);
  color: var(--stegu-text-main) !important;
}
.stegu-btn-outline:hover,
.stegu-btn-outline:focus {
  background-color: var(--stegu-text-main);
  color: var(--stegu-text-inverse) !important;
}

.stegu-btn-outline-white {
  background-color: transparent;
  border-color: var(--stegu-text-inverse);
  color: var(--stegu-text-inverse) !important;
}
.stegu-btn-outline-white:hover,
.stegu-btn-outline-white:focus {
  background-color: var(--stegu-text-inverse);
  color: var(--stegu-text-strong) !important;
}

.stegu-btn-ghost {
  background-color: transparent;
  border-color: transparent;
  color: var(--stegu-action-primary) !important;
  padding-left: 0;
  padding-right: 0;
}
.stegu-btn-ghost:hover,
.stegu-btn-ghost:focus {
  color: var(--stegu-action-primary-int) !important;
  text-decoration: underline !important;
}

/* Šipka napravo (dekorativní) */
.stegu-btn-arrow::after {
  content: '→';
  font-size: 1em;
  transition: transform .2s ease;
}
.stegu-btn-arrow:hover::after {
  transform: translateX(4px);
}


/* ==========================================================================
   8. BADGE / TAG
   ========================================================================== */

.stegu-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.4;
  border-radius: 0;
  white-space: nowrap;
}

.stegu-badge--red     { background-color: var(--stegu-action-primary);   color: var(--stegu-text-inverse); }
.stegu-badge--gold    { background-color: var(--stegu-action-secondary);  color: var(--stegu-text-strong);  }
.stegu-badge--green   { background-color: var(--stegu-state-success);     color: var(--stegu-text-inverse); }
.stegu-badge--blue    { background-color: var(--stegu-state-info);        color: var(--stegu-text-inverse); }
.stegu-badge--neutral {
  background-color: var(--stegu-color-gray-200);
  color: var(--stegu-text-main);
  border: 1px solid var(--stegu-border-strong);
}
.stegu-badge--outline-red {
  background-color: transparent;
  border: 1px solid var(--stegu-action-primary);
  color: var(--stegu-action-primary);
}
.stegu-badge--dark {
  background-color: var(--stegu-text-strong);
  color: var(--stegu-text-inverse);
}


/* ==========================================================================
   9. KARTY
   ========================================================================== */

.stegu-card {
  background-color: var(--stegu-surface-base);
  border: 1px solid var(--stegu-border-weak);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.stegu-card--highlight  { border-top: 3px solid var(--stegu-action-primary); }
.stegu-card--gold       { border-top: 3px solid var(--stegu-action-secondary); }
.stegu-card--elevated   { box-shadow: 0 4px 24px rgba(0,0,0,.08); border-color: transparent; }
.stegu-card--flat       { border: none; background-color: var(--stegu-surface-alt); }
.stegu-card--dark       { background-color: var(--stegu-surface-dark); color: var(--stegu-text-inverse); border-color: transparent; }

.stegu-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.stegu-card__image--square { aspect-ratio: 1 / 1; }
.stegu-card__image--wide   { aspect-ratio: 16 / 9; }

.stegu-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stegu-card__footer {
  padding: 16px 20px;
  border-top: 1px solid var(--stegu-border-weak);
}

.stegu-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}


/* ==========================================================================
   10. HERO SEKCE
   ========================================================================== */

.stegu-hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--stegu-surface-dark);
}

.stegu-hero--sm  { min-height: 320px; }
.stegu-hero--lg  { min-height: 680px; }
.stegu-hero--full { min-height: 100vh; }

/* Varianta: text vlevo */
.stegu-hero--left  { align-items: center; }
/* Varianta: text na střed */
.stegu-hero--center { justify-content: center; text-align: center; }

/* Obrázek na pozadí */
.stegu-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .45;
  pointer-events: none;
}

/* Barevný overlay (alternativa k obrázku nebo kombinace) */
.stegu-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(31,31,31,.85) 0%, rgba(31,31,31,.3) 60%, transparent 100%);
  pointer-events: none;
}

.stegu-hero__overlay--center {
  background: rgba(31,31,31,.55);
}

/* Obsah */
.stegu-hero__content {
  position: relative;
  z-index: 2;
  padding: 60px 40px;
  max-width: 600px;
  width: 100%;
}

.stegu-hero--center .stegu-hero__content {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Typografie uvnitř hero vždy inverzní */
.stegu-hero .stegu-eyebrow { color: var(--stegu-action-secondary); }
.stegu-hero .stegu-h1,
.stegu-hero .stegu-h2,
.stegu-hero .stegu-lead,
.stegu-hero .stegu-body { color: var(--stegu-text-inverse); }

/* Akce (tlačítka) */
.stegu-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.stegu-hero--center .stegu-hero__actions {
  justify-content: center;
}

@media (max-width: 768px) {
  .stegu-hero          { min-height: 360px; }
  .stegu-hero--sm      { min-height: 240px; }
  .stegu-hero__content { padding: 40px 20px; }
  .stegu-hero__actions { flex-direction: column; }
  .stegu-hero__actions .stegu-btn { width: 100%; justify-content: center; }
}


/* ==========================================================================
   11. FEATURE ITEM (výhody, USP, seznam vlastností)
   ========================================================================== */

.stegu-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.stegu-feature--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stegu-feature__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
}

/* Varianty ikony */
.stegu-feature__icon--bg-light { background-color: var(--stegu-surface-alt); color: var(--stegu-action-primary); }
.stegu-feature__icon--bg-red   { background-color: var(--stegu-action-primary); color: var(--stegu-text-inverse); }
.stegu-feature__icon--bg-gold  { background-color: var(--stegu-action-secondary); color: var(--stegu-text-strong); }
.stegu-feature__icon--border   { border: 2px solid var(--stegu-border-strong); color: var(--stegu-action-primary); }
.stegu-feature__icon--line-red { border-left: 3px solid var(--stegu-action-primary); color: var(--stegu-action-primary); padding-left: 12px; width: auto; height: auto; font-size: 2rem; font-weight: 800; }

.stegu-feature__body { flex: 1; min-width: 0; }

.stegu-feature__title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--stegu-text-strong);
  margin: 0 0 4px;
  line-height: 1.3;
}

.stegu-feature__desc {
  font-size: .9rem;
  color: var(--stegu-text-muted);
  line-height: 1.6;
  margin: 0;
}


/* ==========================================================================
   12. INFO BOXY
   ========================================================================== */

.stegu-box {
  padding: 18px 22px;
  border-left: 4px solid;
  margin: 0;
  font-size: .9375rem;
  line-height: 1.65;
}

.stegu-box--tip     { background: #fdf3e0; border-color: var(--stegu-action-secondary); color: #7a5200; }
.stegu-box--tip strong { color: var(--stegu-action-secondary); }
.stegu-box--warning { background: #fdecea; border-color: var(--stegu-action-primary);   color: #7a1020; }
.stegu-box--warning strong { color: var(--stegu-action-primary); }
.stegu-box--info    { background: #e8f2fb; border-color: var(--stegu-state-info);       color: #1a3e5a; }
.stegu-box--info strong { color: var(--stegu-state-info); }
.stegu-box--success { background: #e8f5ee; border-color: var(--stegu-state-success);    color: #0f3d20; }
.stegu-box--success strong { color: var(--stegu-state-success); }


/* ==========================================================================
   13. DĚLICÍ PRVKY
   ========================================================================== */

.stegu-divider {
  width: 100%;
  height: 1px;
  background-color: var(--stegu-border-weak);
  border: none;
  margin: 0;
}

.stegu-divider--bold {
  height: 3px;
  width: 48px;
  background-color: var(--stegu-action-primary);
}

.stegu-divider--gold {
  background-color: var(--stegu-action-secondary);
}

.stegu-spacer-sm { display: block; height: 12px; }
.stegu-spacer-md { display: block; height: 24px; }
.stegu-spacer-lg { display: block; height: 48px; }


/* ==========================================================================
   14. TABULKY
   ========================================================================== */

.stegu-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9375rem;
}

.stegu-table th {
  background-color: var(--stegu-surface-alt);
  color: var(--stegu-text-strong);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--stegu-action-primary);
}

.stegu-table td {
  padding: 12px 16px;
  color: var(--stegu-text-main);
  border-bottom: 1px solid var(--stegu-border-weak);
  vertical-align: top;
}

.stegu-table tr:last-child td { border-bottom: none; }

.stegu-table tr:hover td {
  background-color: var(--stegu-surface-alt);
}


/* Responzivní wrapper pro tabulky */
.stegu-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .stegu-table { font-size: .875rem; }
  .stegu-table th,
  .stegu-table td { padding: 10px 12px; }
}


/* ==========================================================================
   15. UTILITY TŘÍDY
   ========================================================================== */

/* Text align */
.stegu-text-center { text-align: center; }
.stegu-text-left   { text-align: left; }
.stegu-text-right  { text-align: right; }

/* Barvy textu */
.stegu-color-primary { color: var(--stegu-action-primary); }
.stegu-color-gold    { color: var(--stegu-action-secondary); }
.stegu-color-muted   { color: var(--stegu-text-muted); }
.stegu-color-inverse { color: var(--stegu-text-inverse); }
.stegu-color-success { color: var(--stegu-state-success); }
.stegu-color-error   { color: var(--stegu-state-error); }

/* Pozadí */
.stegu-bg-white  { background-color: var(--stegu-surface-base); }
.stegu-bg-light  { background-color: var(--stegu-surface-alt); }
.stegu-bg-dark   { background-color: var(--stegu-surface-dark); }
.stegu-bg-red    { background-color: var(--stegu-action-primary); }
.stegu-bg-gold   { background-color: var(--stegu-action-secondary); }

/* Ohraničení */
.stegu-border        { border: 1px solid var(--stegu-border-weak); }
.stegu-border-strong { border: 1px solid var(--stegu-border-strong); }
.stegu-border-top-red { border-top: 3px solid var(--stegu-action-primary); }

/* Padding */
.stegu-p-sm  { padding: var(--stegu-space-sm); }
.stegu-p-md  { padding: var(--stegu-space-md); }
.stegu-p-lg  { padding: var(--stegu-space-lg); }
.stegu-px-md { padding-left: var(--stegu-space-md); padding-right: var(--stegu-space-md); }
.stegu-py-md { padding-top: var(--stegu-space-md);  padding-bottom: var(--stegu-space-md); }
.stegu-px-lg { padding-left: var(--stegu-space-lg); padding-right: var(--stegu-space-lg); }
.stegu-py-lg { padding-top: var(--stegu-space-lg);  padding-bottom: var(--stegu-space-lg); }

/* Margin */
.stegu-m-0   { margin: 0; }
.stegu-mt-sm { margin-top: var(--stegu-space-sm); }
.stegu-mt-md { margin-top: var(--stegu-space-md); }
.stegu-mt-lg { margin-top: var(--stegu-space-lg); }
.stegu-mb-sm { margin-bottom: var(--stegu-space-sm); }
.stegu-mb-md { margin-bottom: var(--stegu-space-md); }
.stegu-mb-lg { margin-bottom: var(--stegu-space-lg); }

/* Šířky */
.stegu-w-full  { width: 100%; }
.stegu-w-half  { width: 50%; }
.stegu-w-auto  { width: auto; }
.stegu-max-w-sm { max-width: 480px; }
.stegu-max-w-md { max-width: 760px; }
.stegu-max-w-lg { max-width: 1000px; }

/* Skrytí */
.stegu-hidden { display: none !important; }
.stegu-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 768px) { .stegu-hidden-mobile { display: none !important; } }
@media (min-width: 769px) { .stegu-hidden-desktop { display: none !important; } }


/* ==========================================================================
   16. PROCESS STEPS (přidáno 2026-04-21)
   Vizuální kroky procesu — reklamace, vrácení, objednávka apod.
   Použití: <div class="stegu-process stegu-process-3">
   ========================================================================== */

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

.stegu-process__step {
  padding: 28px 24px;
  background: var(--stegu-surface-base);
  border-top: 3px solid var(--stegu-action-primary);
}
.stegu-process__step--gold { border-top-color: var(--stegu-action-secondary); }
.stegu-process__step--dark { background: var(--stegu-surface-dark); }

.stegu-process__num {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--stegu-action-primary);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.stegu-process__step--gold .stegu-process__num { color: var(--stegu-action-secondary); }

.stegu-process__title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--stegu-text-strong);
  margin: 0 0 8px;
  line-height: 1.3;
}
.stegu-process__desc {
  font-size: .875rem;
  color: var(--stegu-text-muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .stegu-process-2,
  .stegu-process-3,
  .stegu-process-4 { grid-template-columns: 1fr; }
}


/* ==========================================================================
   17. FAQ AKORDEON (přidáno 2026-04-21)
   Použití: <div class="stegu-faq"> ... <div class="stegu-faq__item"> ...
   JS: viz snippet 04-reklamace-vraceni-zbozi.html
   ========================================================================== */

.stegu-faq {
  width: 100%;
  border-top: 1px solid var(--stegu-border-weak);
}
.stegu-faq__item {
  border-bottom: 1px solid var(--stegu-border-weak);
}
.stegu-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--stegu-text-strong);
  text-align: left;
  gap: 16px;
  transition: color .15s ease;
}
.stegu-faq__question:hover { color: var(--stegu-action-primary); }
.stegu-faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform .25s ease;
  color: var(--stegu-text-muted);
}
.stegu-faq__item--open .stegu-faq__icon { transform: rotate(180deg); }
.stegu-faq__answer { display: none; padding: 0 0 20px; }
.stegu-faq__item--open .stegu-faq__answer { display: block; }
.stegu-faq__answer p {
  font-size: .9375rem;
  color: var(--stegu-text-muted);
  line-height: 1.7;
  margin: 0;
}
.stegu-faq__answer a { color: var(--stegu-action-primary); text-decoration: underline !important; }
