@charset "UTF-8";
/**
 * O2 Garážový výpredaj - O2 SK Brand Style
 */
/* O2 SK Brand Design Tokens */
/* Primary – Beyond Blue, hlavné zvýraznenia */
/* Secondary – Dark Blue, tmavé pozadia a sekundárne prvky */
/* Legacy aliasy pre kompatibilitu */
/**
 * O2 Garážový výpredaj - O2 SK Brand Style
 */
/* Base reset - O2 SK typography */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  color: #1a2352;
  background-color: #f5f6fa;
}

/**
 * O2 Garážový výpredaj - O2 SK Brand Style
 */
.btn {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
.btn--primary {
  background-color: #0050FF;
  color: #ffffff;
  border-color: #0050FF;
}
.btn--primary:hover {
  background-color: #2060ff;
  border-color: #2060ff;
}
.btn--secondary {
  background-color: transparent;
  color: #0050FF;
  border-color: #0050FF;
}
.btn--secondary:hover {
  background-color: rgba(0, 80, 255, 0.08);
}
.btn--outline-light {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.btn--outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.btn--ghost {
  background-color: transparent;
  color: #6b7280;
  border-color: transparent;
}
.btn--ghost:hover {
  color: #0050FF;
}
.btn--danger {
  background-color: #e63946;
  color: #fff;
  border-color: #e63946;
}
.btn--danger:hover {
  background-color: rgb(226.5695067265, 29.8304932735, 44.6143497758);
  border-color: rgb(226.5695067265, 29.8304932735, 44.6143497758);
}
.btn--sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
}
.btn {
  /* Loading state - spinner + disabled */
}
.btn--loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}
.btn--loading::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.7s linear infinite;
}
.btn--loading.btn--secondary::after {
  border-color: rgba(0, 80, 255, 0.2);
  border-top-color: #0050FF;
}

@keyframes btn-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/**
 * O2 Garážový výpredaj - O2 SK Brand Style
 */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  margin-bottom: 0.375rem;
  font-weight: 600;
  color: #1a2352;
  font-size: 0.9375rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  border: 2px solid #e2e5ed;
  border-radius: 6px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
  outline: none;
  border-color: #0050FF;
  box-shadow: 0 0 0 3px rgba(0, 80, 255, 0.2);
}
.form-control--error {
  border-color: #e63946;
}
.form-control::-moz-placeholder {
  color: #9ca3af;
}
.form-control::placeholder {
  color: #9ca3af;
}

.form-error {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #e63946;
}

.form-hint {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  color: #6b7280;
}

.form-group--checkbox {
  margin-bottom: 1.25rem;
}

.form-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  color: #1a2352;
  font-size: 0.9375rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.form-checkbox input[type=checkbox] {
  width: 1.125rem;
  height: 1.125rem;
  margin: 0;
  cursor: pointer;
  accent-color: #0050FF;
}

/**
 * O2 Garážový výpredaj - O2 SK Brand Style
 */
.alert {
  padding: 1rem 1.25rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}
.alert-error {
  background-color: #fff5f5;
  border: 1px solid #fecaca;
  color: #b91c1c;
}
.alert-success {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
}

.text-muted {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
}

body:not(.o2-hero) .text-muted {
  color: #6b7280;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  background: #00008C;
  color: #ffffff;
  border-radius: 6px;
}

/**
 * O2 Garážový výpredaj - O2 SK Brand Style
 */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0050FF;
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.site-header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .site-header .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }
}
.site-header__logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.site-header__logo:hover {
  color: #ffffff;
}
.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

/**
 * O2 Garážový výpredaj - O2 SK Brand Style
 */
.main-content {
  min-height: calc(100vh - 180px);
  padding: 2rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* O2 Hero section - used for login, closed */
.o2-hero {
  min-height: 100vh;
  background: linear-gradient(165deg, #00008C 0%, #000070 35%, #00008C 100%);
  display: flex;
  flex-direction: column;
}
.o2-hero .site-header {
  background: transparent;
  box-shadow: none;
}
.o2-hero .main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.o2-hero .login-box,
.o2-hero .closed-message,
.o2-hero .login-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
  max-width: 420px;
  width: 100%;
}
.o2-hero .login-card {
  padding: 2.5rem 2.25rem;
}
.o2-hero .login-card__header {
  text-align: center;
  margin-bottom: 1.75rem;
}
.o2-hero .login-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #0050FF;
}
.o2-hero .login-card__icon svg {
  width: 40px;
  height: 40px;
}
.o2-hero .login-card__icon--large svg {
  width: 48px;
  height: 48px;
}
.o2-hero .login-card__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #00008C;
  margin: 0 0 0.25rem;
  letter-spacing: -0.02em;
}
.o2-hero .login-card__subtitle {
  font-size: 0.9375rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}
.o2-hero .login-card__alert {
  margin-bottom: 1.25rem;
}
.o2-hero .login-card__submit {
  margin-top: 0.25rem;
}
.o2-hero .login-card--centered .login-card__header {
  margin-bottom: 0;
}
.o2-hero .coming-soon__datetime {
  font-size: 1.375rem;
  font-weight: 700;
  color: #0050FF;
  margin: 0.5rem 0 0.75rem;
}
.o2-hero .login-box h2,
.o2-hero .closed-message h2 {
  color: #00008C;
  margin-top: 0;
}
.o2-hero .text-muted {
  color: #6b7280;
}
.o2-hero .login-box__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #0050FF;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s, -webkit-text-decoration 0.2s;
  transition: color 0.2s, text-decoration 0.2s;
  transition: color 0.2s, text-decoration 0.2s, -webkit-text-decoration 0.2s;
}
.o2-hero .login-box__link:hover {
  color: #2060ff;
  text-decoration: underline;
}
.o2-hero .login-box__back {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e5ed;
  text-align: center;
}

/* Aktuálny čas vpravo dole – len na o2-hero (login, coming-soon) */
.hero-clock {
  display: none;
}

body.o2-hero .hero-clock {
  display: block;
  position: fixed;
  bottom: 1rem;
  right: 1.25rem;
  font-size: 0.875rem;
  font-variant-numeric: tabular-nums;
  color: transparent;
  pointer-events: none;
}

/**
 * O2 Garážový výpredaj - O2 SK Brand Style
 */
/* O2 style product cards - compact list */
.product-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #fff;
  border: 2px solid #e2e5ed;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
@media (max-width: 639px) {
  .product-card {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .product-card .product-card__main {
    display: contents;
  }
  .product-card .product-card__name {
    order: 1;
  }
  .product-card .product-card__serial {
    order: 2;
  }
  .product-card .product-card__aside {
    order: 3;
    flex-shrink: unset;
    justify-content: flex-end;
    flex-wrap: wrap;
    padding-top: 0.75rem;
    border-top: 1px solid #e2e5ed;
  }
}
.product-card:hover {
  border-color: rgba(0, 80, 255, 0.3);
  box-shadow: 0 2px 8px rgba(13, 23, 60, 0.08);
}
.product-card__main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.product-card__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #00008C;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.product-card__serial {
  font-size: 0.8125rem;
  color: #6b7280;
}
.product-card__aside {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.product-card__price {
  font-size: 1rem;
  font-weight: 700;
  color: #00008C;
}
.product-card__badge {
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
}
.product-card__badge--muted {
  background: #e5e7eb;
  color: #6b7280;
}
.product-card__badge--limit {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  cursor: help;
}
.product-card__badge--success {
  background: rgba(42, 157, 143, 0.15);
  color: #2a9d8f;
}
.product-card__badge--sold {
  background: #e5e7eb;
  color: #6b7280;
}
.product-card__badge--reserved {
  background: #fef3c7;
  color: #b45309;
}
.product-card--sold {
  opacity: 0.85;
}
.product-card--sold .product-card__name,
.product-card--sold .product-card__price {
  color: #6b7280;
}
.product-card__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: rgba(230, 57, 70, 0.1);
  color: #e63946;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
.product-card__remove:hover {
  background: rgba(230, 57, 70, 0.2);
  color: rgb(218.599103139, 27.600896861, 41.9533632287);
}
.product-card__remove:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Pickup-only chip — výrazný, globálny v sale / cart / checkout / admin */
.pickup-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3125rem;
  margin-top: 0.375rem;
  align-self: flex-start;
  padding: 0.25rem 0.625rem;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
  white-space: nowrap;
  text-transform: uppercase;
  box-shadow: 0 1px 3px rgba(234, 88, 12, 0.35);
}
.pickup-badge--inline {
  margin-top: 0;
  margin-left: 0.5rem;
  vertical-align: middle;
}
.pickup-badge--muted {
  background: #e5e7eb;
  color: #6b7280;
  box-shadow: none;
}

/**
 * O2 Garážový výpredaj - O2 SK Brand Style
 */
/* Product empty state */
.product-empty {
  grid-column: 1/-1;
  background: #fff;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(13, 23, 60, 0.08);
  border: 1px solid #e2e5ed;
}

.product-empty__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.product-empty__text {
  margin: 0;
  color: #1a2352;
  font-size: 1rem;
}

/* Sale products page header */
.sale-header {
  margin-bottom: 1.5rem;
}
.sale-header h2 {
  color: #00008C;
  margin: 0 0 0.25rem;
}
.sale-header .text-muted {
  margin: 0;
}
.sale-header .text-muted + .text-muted {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

/* Sale sold products section */
.sale-sold-section {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e5ed;
}
.sale-sold-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #6b7280;
  margin: 0 0 1rem;
}

/* Cart/checkout alert list */
.alert ul {
  margin: 0;
  padding-left: 1.25rem;
}

/* Login form submit button */
.login-box .btn--primary,
.login-form .btn--primary,
.login-card .btn--primary {
  width: 100%;
}

/* Closed message logout */
.closed-message p:last-child,
.closed-message__logout {
  margin-top: 1.5rem;
}

/* Sale cart widget in header */
.sale-cart-widget {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.sale-cart-widget:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}
.sale-cart-widget__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sale-cart-widget__icon svg {
  width: 20px;
  height: 20px;
}
.sale-cart-widget__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.5rem;
  padding: 0 0.35rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.8125rem;
}
.sale-cart-widget__label {
  margin-right: 0.25rem;
}
.sale-cart-widget__timer {
  flex-shrink: 0;
  min-width: 3.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding-left: 0.5rem;
  border-left: 2px solid rgba(255, 255, 255, 0.5);
}
.sale-cart-widget--highlight {
  background: rgba(0, 80, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 2px rgba(0, 80, 255, 0.3);
}
.sale-cart-widget--highlight:hover {
  background: rgba(0, 80, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.8);
  color: #ffffff;
}
.sale-cart-widget--highlight .sale-cart-widget__count {
  background: rgba(255, 255, 255, 0.3);
}

.sale-logout-form {
  display: flex;
  align-self: stretch;
}

.sale-logout-btn {
  padding: 0;
  height: 100%;
  aspect-ratio: 1;
  min-height: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.sale-logout-btn__icon {
  width: 1.125rem;
  height: 1.125rem;
}
.sale-logout-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

/* Sale modal (expired cart etc.) */
.sale-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.sale-modal--open {
  display: flex;
}
.sale-modal__dialog {
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  max-width: 440px;
  width: 100%;
  padding: 1.75rem 2rem;
  border-top: 4px solid #0050FF;
}
.sale-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: none;
  background: #f5f6fa;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: #00008C;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, background 0.2s, transform 0.15s;
}
.sale-modal__close:hover {
  color: #0050FF;
  background: rgba(32, 80, 211, 0.12);
}
.sale-modal__close:active {
  transform: scale(0.95);
}
.sale-modal__title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #00008C;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sale-modal__title::before {
  content: "⏱";
  font-size: 1.5rem;
}
.sale-modal__title--unavailable::before {
  content: "⚠";
}
.sale-modal__title--result::before {
  content: "ℹ";
}
.sale-modal__text {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #1a2352;
}
.sale-modal__product-name {
  font-weight: 700;
  color: #0050FF;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.sale-modal__footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 0.5rem;
}

/* Cart page */
.cart-page {
  max-width: 960px;
  margin: 0 auto;
}

.cart-page__header {
  margin-bottom: 1.5rem;
}

.cart-page__title {
  margin: 0 0 0.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00008C;
}

.cart-page__subtitle {
  margin: 0;
  font-size: 0.9375rem;
  color: #1a2352;
  opacity: 0.9;
}

.cart-page__timer {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0050FF;
}

.cart-empty {
  background: #fff;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(13, 23, 60, 0.08);
  border: 1px solid #e2e5ed;
}

.cart-empty__icon {
  margin-bottom: 1rem;
  opacity: 0.5;
  color: #1a2352;
}

.cart-empty__text {
  margin: 0 0 1.25rem;
  color: #1a2352;
  font-size: 1rem;
}

.cart-content {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(13, 23, 60, 0.08);
}

.cart-content__items {
  padding: 0.5rem 0;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e2e5ed;
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item--purchased {
  background: rgba(42, 157, 143, 0.06);
}

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

.cart-item__name {
  display: block;
  font-weight: 600;
  color: #0050FF;
}

.cart-item__serial {
  display: block;
  font-size: 0.8125rem;
  color: #1a2352;
  opacity: 0.8;
}

.cart-item__aside {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cart-item__price {
  font-weight: 600;
  color: #0050FF;
  font-size: 1rem;
}

.cart-item__badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  background: rgba(42, 157, 143, 0.2);
  color: #2a9d8f;
  border-radius: 6px;
}

.cart-item__remove-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: rgba(230, 57, 70, 0.1);
  color: #e63946;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
.cart-item__remove-btn:hover {
  background: rgba(230, 57, 70, 0.2);
  color: rgb(218.599103139, 27.600896861, 41.9533632287);
}

.cart-content__footer {
  padding: 1.25rem 1.25rem;
  background: #f5f6fa;
  border-top: 1px solid #e2e5ed;
}

.cart-content__total {
  margin: 0 0 1rem;
  font-size: 1.125rem;
}

.cart-content__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cart-purchased {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e5ed;
}

.cart-purchased__title {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #00008C;
}

.cart-purchased__subtitle {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: #1a2352;
  opacity: 0.85;
}

.cart-purchased__list {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(13, 23, 60, 0.08);
}

/* Cart page - form 60%, summary 40%; on mobile: summary top, form below */
.cart-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 768px) {
  .cart-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "summary" "form";
  }
  .cart-layout .cart-layout__summary {
    grid-area: summary;
  }
  .cart-layout .cart-layout__form {
    grid-area: form;
  }
}

.cart-layout__form {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(13, 23, 60, 0.08);
  border: 1px solid #e2e5ed;
}
.cart-layout__form .form-control:disabled {
  background: #f3f4f6;
  color: #6b7280;
  cursor: not-allowed;
}

.checkout-form__row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0;
}
.checkout-form__row .form-group {
  margin-bottom: 0;
}
.checkout-form__row .form-group + .form-group {
  margin-top: 0;
}
@media (max-width: 480px) {
  .checkout-form__row {
    flex-direction: column;
    gap: 0;
  }
  .checkout-form__row .form-group {
    margin-bottom: 1rem;
  }
  .checkout-form__row .checkout-form__col {
    width: 100% !important;
  }
}

.checkout-form__col {
  flex: 0 0 auto;
}
.checkout-form__col--50 {
  width: calc(50% - 0.375rem);
}
.checkout-form__col--70 {
  width: calc(70% - 0.375rem);
}
.checkout-form__col--30 {
  width: calc(30% - 0.375rem);
}

.checkout-form__row + .form-group,
.checkout-form__row + .checkout-form__row,
.form-group + .checkout-form__row {
  margin-top: 1rem;
}

.checkout-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.checkout-summary {
  position: sticky;
  top: 1rem;
  background: #fff;
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(13, 23, 60, 0.08);
  border: 1px solid #e2e5ed;
}

.checkout-summary__title {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #00008C;
}

.checkout-summary__items .cart-item {
  border-bottom: 1px solid #e2e5ed;
  padding: 0.75rem 0;
}
.checkout-summary__items .cart-item:last-child {
  border-bottom: none;
}
.checkout-summary__items .cart-item--stacked {
  display: block;
}
.checkout-summary__items .cart-item--stacked .cart-item__main {
  min-width: unset;
}
.checkout-summary__items .cart-item--stacked .cart-item__row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 0.375rem;
}

.checkout-summary__total {
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid #e2e5ed;
  font-size: 1.125rem;
}

/* Skeleton loaders - shimmer animation for loading states */
@keyframes sale-skeleton-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.sale-skeleton {
  position: relative;
  overflow: hidden;
}
.sale-skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: sale-skeleton-shimmer 1.5s ease-in-out infinite;
  pointer-events: none;
}

.product-card--loading {
  opacity: 0.85;
  pointer-events: none;
}
.product-card--loading .product-card__aside .btn, .product-card--loading .product-card__aside .product-card__badge, .product-card--loading .product-card__aside .product-card__remove {
  visibility: hidden;
}

.cart-item--loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Toast notifications */
.sale-toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 360px;
  pointer-events: none;
}

.sale-toast {
  padding: 0.75rem 1rem;
  background: #00008C;
  color: #fff;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: sale-toast-in 0.3s ease-out;
  pointer-events: auto;
}
.sale-toast--success {
  background: #00008C;
}
.sale-toast--error {
  background: #00008C;
}

@keyframes sale-toast-in {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Custom tooltip for limit badge - works on hover (desktop) and tap (mobile) */
.sale-tooltip {
  position: fixed;
  z-index: 9999;
  max-width: 280px;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #fff;
  background: #0050FF;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(13, 23, 60, 0.08);
  pointer-events: none;
}

/**
 * O2 Garážový výpredaj - O2 SK Brand Style
 */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(13, 23, 60, 0.08);
}
.cart-table thead {
  background: #00008C;
  color: #ffffff;
}
.cart-table thead th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}
.cart-table thead th:nth-child(2) {
  text-align: right;
}
.cart-table tbody tr {
  border-bottom: 1px solid #e2e5ed;
}
.cart-table tbody tr:last-child {
  border-bottom: none;
}
.cart-table td {
  padding: 0.75rem 1rem;
}
.cart-table td:nth-child(2) {
  text-align: right;
  font-weight: 600;
  color: #0050FF;
}

/**
 * O2 Garážový výpredaj - O2 SK Brand Style
 */
/* Admin panel - O2 SK style */
body.admin-panel {
  display: flex;
  min-height: 100vh;
  background: #f5f6fa;
}

.admin-sidebar {
  width: 260px;
  height: 100vh;
  position: sticky;
  top: 0;
  background: #00008C;
  padding: 1.5rem 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease;
  z-index: 100;
}
.admin-sidebar__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.admin-sidebar__backdrop.admin-sidebar__backdrop--visible {
  opacity: 1;
  visibility: visible;
}
.admin-sidebar__logo {
  padding: 0 1.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 1rem;
}
.admin-sidebar__logo:hover {
  color: #ffffff;
}
.admin-sidebar__nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.admin-sidebar__item {
  margin: 0;
}
.admin-sidebar__icon {
  margin-right: 0.5rem;
  opacity: 0.9;
  display: inline-flex;
  flex-shrink: 0;
}
.admin-sidebar__link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.admin-sidebar__link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}
.admin-sidebar__link--active {
  background: rgba(0, 80, 255, 0.2);
  color: #ffffff;
  border-left: 3px solid #0050FF;
  padding-left: calc(1.5rem - 3px);
}
.admin-sidebar__link--disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.admin-sidebar__logout {
  margin-top: auto;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.admin-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.admin-header {
  background: #0050FF;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.admin-header__menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.admin-header__menu-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.admin-header__menu-icon {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}
.admin-header__titles {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.admin-header__brand {
  display: none;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.02em;
}
.admin-header__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
}
.admin-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.admin-header__actions .btn {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}
.admin-header__actions .btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}
.admin-header__actions .btn--primary {
  background: #0050FF;
  border-color: #0050FF;
  color: #ffffff;
}
.admin-header__actions .btn--primary:hover {
  background: #2060ff;
  border-color: #2060ff;
}

.admin-content {
  flex: 1;
  padding: 1.5rem;
}

/* Dashboard */
.admin-dashboard__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 640px) {
  .admin-dashboard__grid {
    grid-template-columns: 1fr;
  }
}
.admin-dashboard__card {
  background: #fff;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 2px 12px rgba(13, 23, 60, 0.06);
  border: 1px solid #e2e5ed;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  transition: all 0.2s ease;
  overflow: hidden;
}
.admin-dashboard__card:hover {
  border-color: rgba(0, 80, 255, 0.4);
  box-shadow: 0 4px 20px rgba(32, 80, 211, 0.12);
  transform: translateY(-2px);
}
.admin-dashboard__card--revenue {
  cursor: default;
  background: linear-gradient(135deg, #fff 0%, rgba(0, 80, 255, 0.04) 100%);
  border-color: rgba(0, 80, 255, 0.2);
}
.admin-dashboard__card--revenue:hover {
  border-color: rgba(0, 80, 255, 0.2);
  box-shadow: 0 2px 12px rgba(13, 23, 60, 0.06);
  transform: none;
}
.admin-dashboard__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  flex-shrink: 0;
  background: rgba(0, 80, 255, 0.08);
  color: #0050FF;
  align-self: stretch;
}
.admin-dashboard__card-icon svg {
  width: 28px;
  height: 28px;
}
.admin-dashboard__card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem 1.5rem;
  gap: 0.25rem;
}
.admin-dashboard__card-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0050FF;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.admin-dashboard__card-label {
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.3;
}

.admin-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(13, 23, 60, 0.08);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.admin-card__header {
  padding: 1rem 1.25rem;
  background: #00008C;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9375rem;
}
.admin-card__body {
  padding: 1.25rem;
}

/* Filters */
.admin-filters {
  margin-bottom: 1.25rem;
}
.admin-filters__bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(13, 23, 60, 0.08);
  border: 1px solid #e2e5ed;
}
.admin-filters__search {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 200px;
  max-width: 320px;
  background: #f8f9fa;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.admin-filters__search:focus-within {
  background: #fff;
  border-color: #0050FF;
  box-shadow: 0 0 0 2px rgba(0, 80, 255, 0.15);
}
.admin-filters__icon {
  display: inline-flex;
  align-items: center;
  padding: 0 0.75rem;
  opacity: 0.6;
  color: #6b7280;
}
.admin-filters__input {
  flex: 1;
  padding: 0.6rem 0.75rem 0.6rem 0;
  border: none;
  background: transparent;
  font-size: 0.9375rem;
}
.admin-filters__input:focus {
  outline: none;
}
.admin-filters__input::-moz-placeholder {
  color: #9ca3af;
}
.admin-filters__input::placeholder {
  color: #9ca3af;
}
.admin-filters__status {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
  margin-left: auto;
}
.admin-filters__chip {
  padding: 0.4rem 0.875rem;
  border: 1px solid #e2e5ed;
  border-radius: 2rem;
  background: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #1a2352;
  cursor: pointer;
  transition: all 0.2s;
}
.admin-filters__chip:hover {
  border-color: #0050FF;
  color: #0050FF;
}
.admin-filters__chip--active {
  background: #0050FF;
  border-color: #0050FF;
  color: #ffffff;
}
.admin-filters__clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #6b7280;
  text-decoration: none;
  font-size: 0.875rem;
  transition: background 0.2s, color 0.2s;
}
.admin-filters__clear:hover {
  background: rgba(230, 57, 70, 0.1);
  color: #c53030;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table__sort {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}
.admin-table__sort:hover {
  color: #0050FF;
}
.admin-table__sort--active {
  color: #0050FF;
}
.admin-table__sort--right {
  justify-content: flex-end;
}
.admin-table th, .admin-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e2e5ed;
}
.admin-table th {
  background: #f8f9fa;
  font-weight: 600;
  font-size: 0.8125rem;
  color: #1a2352;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.admin-table th:last-child {
  width: 1%;
  white-space: nowrap;
}
.admin-table tr:last-child td {
  border-bottom: none;
}
.admin-table tr:hover td {
  background: #fafbfc;
}
.admin-table .btn {
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
}

.admin-form-card {
  max-width: 560px;
}

/* Table action buttons - compact icon style */
.admin-table-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.admin-table-actions__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.admin-table-actions__btn--edit {
  background: rgba(0, 80, 255, 0.1);
  color: #0050FF;
}
.admin-table-actions__btn--edit:hover {
  background: rgba(0, 80, 255, 0.2);
}
.admin-table-actions__btn--resend {
  background: rgba(0, 102, 179, 0.1);
  color: #0066b3;
}
.admin-table-actions__btn--resend:hover {
  background: rgba(0, 102, 179, 0.2);
}
.admin-table-actions__btn--delete {
  background: rgba(230, 57, 70, 0.1);
  color: #c53030;
}
.admin-table-actions__btn--delete:hover {
  background: rgba(230, 57, 70, 0.2);
}
.admin-table-actions__btn--disabled {
  opacity: 0.6;
  cursor: help;
}

/* Tooltip pre disabled akcie */
.admin-tooltip {
  position: relative;
}
.admin-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 50%;
  right: calc(100% + 8px);
  transform: translateY(-50%);
  left: auto;
  padding: 0.5rem 0.75rem;
  background: #00008C;
  color: #fff;
  font-size: 0.8125rem;
  line-height: 1.3;
  min-width: 220px;
  max-width: 360px;
  white-space: normal;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s, visibility 0.15s;
  z-index: 100;
  pointer-events: none;
}
.admin-tooltip:hover::after {
  opacity: 1;
  visibility: visible;
}

/* Modal */
.admin-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.admin-modal--open {
  display: flex;
}
.admin-modal__dialog {
  position: relative;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform 0.2s ease;
}
.admin-modal--open .admin-modal__dialog {
  transform: scale(1);
}
.admin-modal--delete .admin-modal__title::before {
  content: "⚠ ";
  color: #e63946;
}
.admin-modal__delete-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #1a2352;
}
.admin-modal__loading {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  z-index: 20;
  transition: opacity 0.2s ease;
}
.admin-modal__loading--hidden {
  display: none;
}
.admin-modal__loading-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1a2352;
  letter-spacing: 0.02em;
}
.admin-modal__spinner {
  width: 48px;
  height: 48px;
  border: 3px solid #e2e5ed;
  border-top-color: #0050FF;
  border-right-color: rgba(0, 80, 255, 0.5);
  border-radius: 50%;
  animation: admin-spin 0.7s linear infinite;
}
.admin-modal__header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e2e5ed;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-modal__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #00008C;
}
.admin-modal__close {
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  color: #6b7280;
  border-radius: 6px;
}
.admin-modal__close:hover {
  background: #f3f4f6;
  color: #374151;
}
.admin-modal__body {
  padding: 1.5rem;
}
.admin-modal__footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #e2e5ed;
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

@keyframes admin-spin {
  to {
    transform: rotate(360deg);
  }
}
/* Upload drop zone */
.upload-dropzone {
  position: relative;
  border: 2px dashed #e2e5ed;
  border-radius: 8px;
  padding: 2.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.upload-dropzone:hover {
  border-color: #0050FF;
  background: rgba(0, 80, 255, 0.04);
}
.upload-dropzone--dragover {
  border-color: #0050FF;
  background: rgba(0, 80, 255, 0.08);
  color: #0050FF;
}
.upload-dropzone--has-file {
  border-color: #0050FF;
  background: rgba(0, 80, 255, 0.06);
}
.upload-dropzone__icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  opacity: 0.7;
}
.upload-dropzone__text {
  font-size: 0.9375rem;
  color: #1a2352;
  margin-top: 0;
}
.upload-dropzone__hint {
  font-size: 0.8125rem;
  color: #6b7280;
  margin: 0.25rem 0 0;
}
.upload-dropzone__filename {
  font-weight: 600;
  color: #0050FF;
  margin-top: 0.5rem;
}
.upload-dropzone__remove {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: #6b7280;
  text-decoration: underline;
}
.upload-dropzone__remove:hover {
  color: #0050FF;
}
.upload-dropzone input[type=file] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
}

.admin-empty {
  text-align: center;
  padding: 3rem 2rem;
  color: #6b7280;
}
.admin-empty__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}
.admin-empty__text {
  margin-bottom: 1rem;
}

/* Orders list */
.admin-orders-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-order-card {
  padding: 1rem 1.25rem;
  background: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #e2e5ed;
}
.admin-order-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.admin-order-card__employee {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.25rem;
  font-size: 0.9375rem;
}
.admin-order-card__emp-name {
  font-weight: 700;
  font-size: 1rem;
  color: #0050FF;
}
.admin-order-card__emp-email {
  font-size: 0.875rem;
  color: #0050FF;
  text-decoration: none;
}
.admin-order-card__emp-email::before {
  content: " · ";
  color: #9ca3af;
  font-weight: 400;
}
.admin-order-card__emp-email:hover {
  text-decoration: underline;
}
.admin-order-card__emp-num {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #9ca3af;
}
.admin-order-card__emp-num::before {
  content: " · ";
}
.admin-order-card__order-count {
  font-weight: 400;
  color: #6b7280;
  font-size: 0.875rem;
}
.admin-order-card__products {
  margin-top: 0.5rem;
  padding-left: 0.5rem;
  border-left: 3px solid #0050FF;
}
.admin-order-card__product {
  font-size: 0.9375rem;
  color: #1a2352;
}
.admin-order-card__product--empty {
  color: #9ca3af;
  font-style: italic;
}
.admin-order-card__orders {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.admin-order-card__order-link {
  font-size: 0.9375rem;
  color: #0050FF;
  text-decoration: none;
}
.admin-order-card__order-link:hover {
  text-decoration: underline;
}

/* Breadcrumbs */
.admin-breadcrumbs {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}
.admin-breadcrumbs a {
  color: #0050FF;
  text-decoration: none;
}
.admin-breadcrumbs a:hover {
  text-decoration: underline;
}
.admin-breadcrumbs__sep {
  margin: 0 0.35rem;
}

/* Detail page */
.admin-detail-list {
  margin: 0 0 1.5rem;
}

.admin-detail-list__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.5rem 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e2e5ed;
}
.admin-detail-list__row:last-child {
  border-bottom: none;
}
.admin-detail-list__row dt {
  margin: 0;
  font-weight: 500;
  color: #6b7280;
  font-size: 0.9375rem;
}
.admin-detail-list__row dd {
  margin: 0;
  font-size: 0.9375rem;
  color: #1a2352;
}

.admin-detail-employee {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.25rem;
}
.admin-detail-employee__name {
  font-weight: 700;
  font-size: 1rem;
  color: #0050FF;
}
.admin-detail-employee__email {
  font-size: 0.875rem;
  color: #0050FF;
  text-decoration: none;
}
.admin-detail-employee__email::before {
  content: " · ";
  color: #9ca3af;
  font-weight: 400;
}
.admin-detail-employee__email:hover {
  text-decoration: underline;
}
.admin-detail-employee__num {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #9ca3af;
}
.admin-detail-employee__num::before {
  content: " · ";
}

.admin-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.admin-detail__subtitle {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: #00008C;
}

.admin-detail-products {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.admin-detail-products__item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e2e5ed;
}

.admin-detail-products__name {
  font-weight: 500;
  color: #1a2352;
}

.admin-detail-products__serial {
  font-size: 0.875rem;
  color: #6b7280;
}

.admin-detail-products__price {
  margin-left: auto;
  font-weight: 600;
  color: #0050FF;
}

.admin-detail-products__total {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  color: #1a2352;
}
.admin-detail-products__total strong {
  color: #00008C;
}

/* ========== RESPONZÍVNOSŤ ========== */
@media (max-width: 992px) {
  body.admin-panel.admin-panel--sidebar-open {
    overflow: hidden;
  }
  .admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    transform: translateX(-100%);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
  }
  .admin-sidebar--open {
    transform: translateX(0);
  }
  .admin-sidebar__backdrop {
    display: block;
  }
  .admin-header__menu-btn {
    display: flex;
  }
  .admin-header__brand {
    display: block;
  }
  .admin-main {
    width: 100%;
  }
  .admin-content {
    padding: 1rem;
  }
  .admin-header {
    padding: 0.75rem 1rem;
  }
  .admin-header__title {
    font-size: 1.125rem;
  }
  .admin-filters__bar {
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
  }
  .admin-filters__search {
    max-width: none;
  }
  .admin-filters__status {
    margin-left: 0;
  }
  .admin-card {
    border-radius: 6px;
    overflow-x: auto;
  }
  .admin-table {
    font-size: 0.875rem;
  }
  .admin-table th, .admin-table td {
    padding: 0.5rem 0.75rem;
  }
  .admin-dashboard__card-icon {
    width: 52px;
  }
  .admin-dashboard__card-body {
    padding: 1rem 1.25rem;
  }
  .admin-dashboard__card-value {
    font-size: 1.5rem;
  }
  .admin-order-card {
    padding: 0.875rem 1rem;
  }
  .admin-order-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .admin-detail-list__row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .admin-form-card {
    max-width: none;
  }
  .admin-modal__dialog {
    margin: 1rem;
    max-height: calc(100vh - 2rem);
  }
  .upload-dropzone {
    padding: 1.5rem;
  }
}
@media (max-width: 640px) {
  .admin-dashboard__grid {
    grid-template-columns: 1fr;
  }
}
/*# sourceMappingURL=app.css.map */
