*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #1f2933;
  background: #f5f7fa;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

header {
  background: white;
  border-bottom: 1px solid #d8e2ec;
  position: sticky;
  top: 0;
  z-index: 100;
}

.topbar {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f766e;
}

.logo span {
  color: #f97316;
}

.topbar__info {
  font-size: 0.85rem;
  color: #52606d;
}

.main-nav {
  background: #0b1120;
  color: #f9fafb;
  position: relative;
  z-index: 110;
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.nav-item > a {
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.nav-item > a:hover,
.nav-item > a:focus {
  border-bottom-color: #f97316;
}

.nav-item--has-sub {
  position: relative;
  z-index: 120;
}

.nav-item--has-sub > a::after {
  content: "▾";
  font-size: 0.7rem;
  margin-left: 0.25rem;
}

.subnav {
  list-style: none;
  position: absolute;
  left: 0;
  top: 120%;
  min-width: 190px;
  background: #020617;
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 1000;
}

.nav-item--has-sub:hover .subnav,
.nav-item--has-sub:focus-within .subnav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.subnav li a {
  display: block;
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.subnav li a:hover,
.subnav li a:focus {
  background: #0f172a;
  color: #fed7aa;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.nav-cta__cart {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #f97316;
  color: #111827;
  font-weight: 600;
}

.nav-cta__cart span {
  background: #111827;
  color: #f9fafb;
  font-size: 0.75rem;
  padding: 0 0.4rem;
  border-radius: 999px;
}

.nav-cta__phone {
  color: #9ca3af;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.25fr);
  gap: 2.25rem;
  margin-top: 2rem;
  align-items: center;
}

.hero__content-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0f766e;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.08);
  color: #047857;
  font-size: 0.7rem;
}

.hero__title {
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
  color: #111827;
}

.hero__title span {
  color: #f97316;
}

.hero__subtitle {
  font-size: 0.98rem;
  color: #52606d;
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: white;
  border: 1px solid #e5e7eb;
  font-size: 0.8rem;
  color: #111827;
}

.hero__pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.btn--primary {
  background: linear-gradient(135deg, #f97316, #facc15);
  color: #111827;
  box-shadow: 0 14px 30px rgba(248, 113, 22, 0.45);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(248, 113, 22, 0.55);
}

.btn--ghost {
  background: transparent;
  border: 1px dashed #d1d5db;
  color: #4b5563;
}

.btn--ghost:hover {
  background: #f3f4f6;
}

.button-row__meta {
  font-size: 0.8rem;
  color: #6b7280;
}

.hero__meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.hero__meta strong {
  display: block;
  font-size: 1.15rem;
  color: #111827;
}

.hero__visual {
  position: relative;
}

.hero__card {
  background: radial-gradient(circle at top left, #0f172a, #020617);
  color: #f9fafb;
  border-radius: 1.5rem;
  padding: 1.4rem 1.4rem 1.6rem;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.7);
  position: relative;
  overflow: hidden;
}

.hero__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}

.hero__restaurant {
  font-weight: 600;
  font-size: 0.92rem;
}

.hero__tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
}

.hero__chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.chip {
  font-size: 0.73rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.18);
  color: #6ee7b7;
}

.chip--warm {
  background: rgba(248, 113, 22, 0.16);
  color: #fed7aa;
}

.chips-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.mini-card {
  padding: 0.45rem 0.6rem;
  border-radius: 0.9rem;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.mini-card__label {
  font-size: 0.7rem;
  color: #9ca3af;
}

.mini-card__value {
  font-size: 0.92rem;
  font-weight: 600;
}

.hero__dish {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 0.9rem;
}

.hero__dish-photo {
  width: 72px;
  height: 72px;
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid rgba(251, 191, 36, 0.75);
}

.hero__dish-meta h3 {
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}

.hero__dish-meta p {
  font-size: 0.8rem;
  color: #d1d5db;
}

.hero__dish-tags {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.35rem;
}

.hero__dish-tags span {
  font-size: 0.7rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.hero__dish-price {
  margin-left: auto;
  text-align: right;
}

.hero__dish-price strong {
  font-size: 1.05rem;
}

.hero__dish-price span {
  display: block;
  font-size: 0.75rem;
  color: #9ca3af;
}

.hero__timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.75rem;
}

.hero__timeline-bar {
  flex: 1;
  margin: 0 0.75rem;
  height: 4px;
  border-radius: 999px;
  background: rgba(31, 41, 55, 0.9);
  overflow: hidden;
}

.hero__timeline-fill {
  width: 68%;
  height: 100%;
  background: linear-gradient(90deg, #22c55e, #f97316);
}

.hero__floating-card {
  position: absolute;
  right: -0.5rem;
  bottom: -1.5rem;
  padding: 0.7rem 1rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.92);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.45);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero__floating-card strong {
  color: #facc15;
}

.hero__floating-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.3);
}

.grid {
  display: grid;
  grid-template-columns: 2.1fr 1.4fr;
  gap: 1.75rem;
  margin-top: 3rem;
}

.section-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #111827;
}

.section-subtitle {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.card {
  background: white;
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
  border: 1px solid #e5e7eb;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.news-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.7rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed #e5e7eb;
}

.news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.news-tag {
  font-size: 0.68rem;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  background: #eef2ff;
  color: #4f46e5;
  height: fit-content;
}

.news-meta {
  font-size: 0.82rem;
}

.news-meta h3 {
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
}

.news-meta p {
  color: #6b7280;
  margin-bottom: 0.2rem;
}

.news-meta span {
  font-size: 0.75rem;
  color: #9ca3af;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.category-pill {
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  cursor: pointer;
}

.category-pill--active {
  background: #0f172a;
  color: #f9fafb;
  border-color: #0f172a;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.product-card {
  background: #f9fafb;
  border-radius: 0.9rem;
  padding: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border: 1px solid #e5e7eb;
}

.product-card__image {
  border-radius: 0.75rem;
  overflow: hidden;
  background: linear-gradient(135deg, #f97316, #facc15);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 23, 42, 0.12);
  font-weight: 800;
  font-size: 1.2rem;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__title {
  font-size: 0.95rem;
  font-weight: 600;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #6b7280;
}

.product-card__price {
  font-weight: 700;
  color: #111827;
}

.product-card__cta {
  margin-top: 0.3rem;
  display: flex;
  justify-content: flex-end;
}

.product-card__cta a {
  font-size: 0.8rem;
  color: #0f766e;
  font-weight: 600;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.3rem;
}

.badge {
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  background: #ecfdf3;
  color: #16a34a;
}

.badge--orange {
  background: #fff7ed;
  color: #ea580c;
}

.badge--blue {
  background: #eff6ff;
  color: #2563eb;
}

.stats-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

.stats-row strong {
  display: block;
  font-size: 1rem;
  color: #111827;
}

.footer {
  margin-top: auto;
  border-top: 1px solid #e5e7eb;
  padding: 1.25rem 1rem;
  font-size: 0.8rem;
  color: #6b7280;
  text-align: center;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.4fr);
  gap: 2rem;
  margin-top: 2rem;
}

.product-gallery {
  background: white;
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
  border: 1px solid #e5e7eb;
}

.product-gallery__main {
  border-radius: 0.9rem;
  overflow: hidden;
  margin-bottom: 0.75rem;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #0f172a, #111827);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(249, 250, 251, 0.12);
  font-size: 1.3rem;
  font-weight: 700;
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.4rem;
}

.product-gallery__thumb {
  border-radius: 0.6rem;
  background: #f97316;
  opacity: 0.4;
  height: 52px;
}

.product-gallery__thumb--active {
  opacity: 1;
}
/* TinyMCE editor – úprava vzhledu */
.tox .tox-toolbar__primary {
  background: #f5f5f5;
}

.tox .tox-tbtn {
  color: #222;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.breadcrumbs {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-bottom: 0.4rem;
}

.breadcrumbs a {
  color: #6b7280;
}

.product-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111827;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.3rem;
}

.product-tags span {
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: #eef2ff;
  color: #4f46e5;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: 0.2rem;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #16a34a;
}

.product-price--old {
  font-size: 0.95rem;
  text-decoration: line-through;
  color: #9ca3af;
}

.product-price__badge {
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: #dcfce7;
  color: #15803d;
}

.product-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.6rem;
  font-size: 0.8rem;
}

.product-meta-card {
  padding: 0.6rem 0.75rem;
  border-radius: 0.8rem;
  background: #f9fafb;
  border: 1px dashed #e5e7eb;
}

.product-meta-card strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.85rem;
}

.product-cta {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.qty-select {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  font-size: 0.8rem;
}

.qty-select span {
  font-weight: 600;
}

.btn--buy {
  padding-inline: 1.6rem;
}

.product-extra {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.4rem;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  margin-top: 2rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.table thead {
  background: #f3f4f6;
}

.table th,
.table td {
  padding: 0.65rem 0.5rem;
  text-align: left;
}

.table th {
  font-weight: 600;
  color: #374151;
}

.table tbody tr:nth-child(even) {
  background: #f9fafb;
}

.table tfoot td {
  font-weight: 700;
  border-top: 2px solid #e5e7eb;
}

.table__product {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.table__thumb {
  width: 52px;
  height: 52px;
  border-radius: 0.7rem;
  background: linear-gradient(135deg, #0f172a, #111827);
}

.cart-summary {
  background: white;
  border-radius: 1rem;
  padding: 1.3rem 1.4rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
  border: 1px solid #e5e7eb;
  font-size: 0.9rem;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.cart-summary__row--total {
  margin-top: 0.4rem;
  padding-top: 0.45rem;
  border-top: 1px dashed #e5e7eb;
  font-weight: 700;
}

.cart-summary__help {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

.form-card {
  max-width: 640px;
  margin: 2rem auto 0;
  background: white;
  border-radius: 1rem;
  padding: 1.6rem 1.5rem 2rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
  border: 1px solid #e5e7eb;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 1rem;
}

.form-grid--full {
  grid-template-columns: minmax(0, 1fr);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
}

.field span {
  font-size: 0.75rem;
  color: #9ca3af;
}

.field input,
.field select,
.field textarea {
  border-radius: 0.65rem;
  border: 1px solid #d1d5db;
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  font-family: inherit;
}

.field textarea {
  min-height: 80px;
  resize: vertical;
}

.form-actions {
  margin-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
}

.form-note {
  font-size: 0.8rem;
  color: #6b7280;
}

.pill-steps {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.78rem;
}

.pill-steps strong {
  font-weight: 700;
}

.pill-steps span {
  opacity: 0.7;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__visual {
    order: -1;
  }

  .grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-layout,
  .cart-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-list {
    width: 100%;
    justify-content: space-between;
  }

  .hero__meta {
    flex-direction: column;
    gap: 0.6rem;
  }

  .featured-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cart-layout {
    gap: 1.25rem;
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 520px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-cta {
    width: 100%;
    justify-content: space-between;
  }

  .page__inner {
    padding-inline: 0.9rem;
  }

  .product-meta-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

