/* ==========================================================================
   VČELAŘSTVÍ JOSEF VYMAZAL – POCTIVÝ MED Z PLUMLOVA
   Moderní, lehký a vřelý styl s tématikou medu a přírody
   ========================================================================== */

/* --- CSS PROMĚNNÉ & BAREVNÁ PALETA --- */
:root {
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Teplá medová a zlatavá paleta */
  --honey-50: #fffdf5;
  --honey-100: #fef3c7;
  --honey-200: #fde68a;
  --honey-300: #fcd34d;
  --honey-400: #fbbf24;
  --honey-500: #f59e0b;
  --honey-600: #d97706;
  --honey-700: #b45309;
  --honey-800: #92400e;
  --honey-900: #78350f;

  /* Přírodní lesní akcenty */
  --forest-900: #13241b;
  --forest-800: #1b3829;
  --forest-700: #24503b;
  --forest-100: #ecfdf5;
  --forest-green: #059669;

  /* Neutrální tóny */
  --stone-900: #1c1917;
  --stone-800: #292524;
  --stone-700: #44403c;
  --stone-600: #57534e;
  --stone-500: #78716c;
  --stone-300: #d6d3d1;
  --stone-200: #e7e5e4;
  --stone-100: #f5f5f4;
  --stone-50: #fafaf9;

  /* Pozadí a povrchy */
  --bg-page: #fbf9f4;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --border-light: rgba(217, 119, 6, 0.12);
  --border-card: rgba(0, 0, 0, 0.07);

  /* WhatsApp & Interakce */
  --whatsapp-green: #25d366;
  --whatsapp-dark: #1ea952;

  /* Stíny a zaoblení */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px -2px rgba(120, 53, 15, 0.08), 0 2px 6px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 32px -4px rgba(120, 53, 15, 0.12), 0 4px 12px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 48px -8px rgba(120, 53, 15, 0.16);

  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- ZÁKLADNÍ RESET & TYPOGRAFIE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--stone-800);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--stone-900);
  font-weight: 700;
  line-height: 1.25;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea, select {
  font: inherit;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--honey-400);
}

/* --- TLAČÍTKA --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-lg {
  padding: 0.95rem 1.8rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--honey-500) 0%, var(--honey-600) 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--honey-400) 0%, var(--honey-500) 100%);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.45);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-secondary {
  background-color: #ffffff;
  color: var(--stone-900);
  border: 1px solid var(--honey-200);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--honey-100);
  border-color: var(--honey-400);
  transform: translateY(-2px);
}

.btn-ghost {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp-green) 0%, var(--whatsapp-dark) 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  filter: brightness(1.06);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-email {
  background: linear-gradient(135deg, var(--honey-700) 0%, var(--stone-900) 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(146, 64, 14, 0.25);
}

.btn-email:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  color: #ffffff;
}

/* ==========================================================================
   HLAVIČKA & NAVIGACE
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 244, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 4px rgba(217, 119, 6, 0.3));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--stone-900);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.brand-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--honey-700);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.8rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--stone-700);
  padding: 0.4rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--honey-600);
  transition: width 0.25s ease;
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--honey-700);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-header-call {
  background-color: var(--honey-100);
  color: var(--honey-800);
  border: 1px solid var(--honey-300);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
}

.btn-header-call:hover {
  background-color: var(--honey-500);
  border-color: var(--honey-500);
  color: #ffffff;
  transform: translateY(-1px);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 38px;
  height: 38px;
  padding: 9px 8px;
  background: transparent;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--stone-800);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================================================
   HERO SEKCE
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 6rem;
  color: #ffffff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1.02);
  filter: brightness(0.9);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(19, 36, 27, 0.92) 0%,
    rgba(32, 22, 10, 0.85) 50%,
    rgba(146, 64, 14, 0.78) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(254, 243, 199, 0.15);
  border: 1px solid rgba(254, 243, 199, 0.35);
  backdrop-filter: blur(8px);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--honey-200);
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--honey-400);
  box-shadow: 0 0 8px var(--honey-400);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.4rem;
  letter-spacing: -0.03em;
}

.hero-lead {
  font-size: 1.25rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.4rem;
  max-width: 680px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.feature-text span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   SEKCE OBECNĚ
   ========================================================================== */
.section {
  padding: 6rem 0;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--honey-700);
  background-color: var(--honey-100);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  border: 1px solid var(--honey-200);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--stone-900);
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--stone-600);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-header {
  margin-bottom: 3.5rem;
}

/* ==========================================================================
   NABÍDKA MEDŮ (PRODUKTY)
   ========================================================================== */
.section-honey {
  background-color: var(--bg-page);
}

.honey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.honey-card {
  position: relative;
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.honey-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--honey-300);
}

.honey-card.featured {
  border: 2px solid var(--honey-400);
  box-shadow: 0 8px 24px -2px rgba(245, 158, 11, 0.22);
}

.card-ribbon {
  position: absolute;
  top: 14px;
  right: -32px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--honey-500), var(--honey-600));
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 34px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.honey-card-media {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background-color: var(--honey-100);
}

.honey-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.honey-card:hover .honey-card-media img {
  transform: scale(1.05);
}

/* Badge dostupnosti */
.stock-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.stock-in {
  background: rgba(236, 253, 245, 0.92);
  color: var(--forest-green);
  border: 1px solid rgba(5, 150, 105, 0.3);
}

.stock-out {
  background: rgba(254, 242, 242, 0.92);
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.3);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--forest-green);
  box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.7);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(5, 150, 105, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(5, 150, 105, 0);
  }
}

.honey-card-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.honey-type-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--honey-700);
}

.honey-name {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--stone-900);
  margin-top: 0.2rem;
  margin-bottom: 0.3rem;
}

.honey-tagline {
  font-size: 0.85rem;
  color: var(--stone-500);
  font-weight: 500;
  margin-bottom: 0.9rem;
}

.honey-desc {
  font-size: 0.92rem;
  color: var(--stone-700);
  line-height: 1.55;
  margin-bottom: 1.2rem;
}

.honey-benefits {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.honey-benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--stone-600);
}

.honey-benefits li svg {
  width: 16px;
  height: 16px;
  color: var(--forest-green);
  flex-shrink: 0;
}

.honey-card-footer {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--stone-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--stone-900);
}

.price-unit {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--stone-500);
}

.btn-add-order {
  background-color: var(--honey-100);
  color: var(--honey-800);
  border: 1px solid var(--honey-300);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-add-order:hover {
  background-color: var(--honey-500);
  border-color: var(--honey-500);
  color: #ffffff;
  transform: translateY(-1px);
}

/* --- VYPRODANÉ & SKRYTÉ PRODUKTY --- */
.honey-card.is-hidden,
.order-row.is-hidden {
  display: none !important;
}

.honey-card.is-sold-out {
  border-color: #cbd5e1 !important;
  background-color: #f8fafc !important;
  box-shadow: none !important;
}

.honey-card.is-sold-out:hover {
  transform: none !important;
  box-shadow: none !important;
}

.honey-card.is-sold-out .card-ribbon {
  display: none !important;
}

.honey-card.is-sold-out .honey-card-media img {
  filter: grayscale(90%) contrast(80%) opacity(0.5) !important;
}

.honey-card.is-sold-out .honey-name,
.honey-card.is-sold-out .price-value {
  color: #64748b !important;
}

/* Velký nepřehlédnutelný banner přes vyprodaný med */
.sold-out-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(2px);
  z-index: 4;
}

.sold-out-badge-banner {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.45);
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-sold-out {
  background-color: #e2e8f0 !important;
  color: #64748b !important;
  border: 1px solid #cbd5e1 !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
  transform: none !important;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
}

/* Úprava řádku v kalkulačce */
.order-row.is-sold-out {
  background-color: #f1f5f9 !important;
  border-color: #cbd5e1 !important;
  opacity: 0.65;
}

.order-row.is-sold-out .order-thumb {
  filter: grayscale(85%) opacity(0.5);
}

.order-row.is-sold-out .btn-qty {
  background-color: #e2e8f0 !important;
  color: #94a3b8 !important;
  cursor: not-allowed !important;
  pointer-events: none;
}

.sold-out-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  background-color: #fee2e2;
  color: #dc2626;
  border: 1px solid #fca5a5;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-left: 0.5rem;
  text-transform: uppercase;
  vertical-align: middle;
}

.badge-dot-red {
  display: inline-block;
  margin-right: 2px;
  color: #dc2626;
  font-weight: 900;
}

/* ==========================================================================
   O MNĚ & PŘÍBĚH VČELAŘE
   ========================================================================== */
.section-about {
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.about-image-wrapper img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  max-height: 520px;
}

.about-badge-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--honey-500);
  background: linear-gradient(135deg, var(--honey-500), var(--honey-600));
  color: #ffffff;
  padding: 1.2rem 1.6rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 24px rgba(217, 119, 6, 0.35);
  max-width: 220px;
  text-align: center;
}

.badge-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.badge-label {
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.2rem;
  opacity: 0.95;
}

.lead-text {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--stone-700);
  margin-bottom: 2rem;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 2.2rem;
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.point-icon {
  font-size: 1.5rem;
  line-height: 1;
  background-color: var(--honey-100);
  border: 1px solid var(--honey-200);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.point-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--stone-900);
  margin-bottom: 0.25rem;
}

.point-content p {
  font-size: 0.9rem;
  color: var(--stone-600);
  margin-bottom: 0;
  line-height: 1.5;
}

.about-quote {
  background-color: var(--honey-50);
  border-left: 4px solid var(--honey-500);
  padding: 1.2rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.about-quote p {
  font-style: italic;
  color: var(--stone-800);
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.quote-author {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--honey-700);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   JAK MED ZÍSKAT (KROKY)
   ========================================================================== */
.section-how {
  background-color: var(--bg-page);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  position: relative;
  background-color: var(--bg-card);
  padding: 2.4rem 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--honey-300);
}

.step-num {
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--honey-300);
  line-height: 1;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  line-height: 1;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--stone-900);
  margin-bottom: 0.6rem;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--stone-600);
  line-height: 1.55;
  margin-bottom: 0;
}

/* ==========================================================================
   INTERAKTIVNÍ KALKULAČKA & OBJEDNÁVKA
   ========================================================================== */
.section-order {
  background: linear-gradient(180deg, var(--bg-page) 0%, var(--honey-50) 100%);
}

.order-box-wrapper {
  background-color: #ffffff;
  border-radius: var(--radius-xl);
  border: 2px solid var(--honey-200);
  box-shadow: var(--shadow-xl);
  padding: 3.5rem 3rem;
  max-width: 860px;
  margin: 0 auto;
}

.order-items-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.4rem;
  background-color: var(--stone-50);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.order-row:hover {
  border-color: var(--honey-400);
  background-color: var(--honey-50);
}

.order-item-info {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex: 1;
}

.order-thumb {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--stone-200);
}

.order-item-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--stone-900);
  margin-bottom: 0.2rem;
}

.order-item-weight {
  font-size: 0.8rem;
  color: var(--stone-500);
  font-weight: 500;
}

/* Čítač kusů */
.order-counter {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #ffffff;
  border: 1px solid var(--stone-300);
  border-radius: var(--radius-full);
  padding: 3px;
  margin: 0 1.5rem;
}

.btn-qty {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--honey-100);
  color: var(--honey-800);
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.btn-qty:hover {
  background-color: var(--honey-500);
  color: #ffffff;
}

.input-qty {
  width: 44px;
  border: none;
  background: transparent;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--stone-900);
  -moz-appearance: textfield;
}

.input-qty::-webkit-outer-spin-button,
.input-qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.order-row-total {
  min-width: 90px;
  text-align: right;
}

.row-total-val {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--honey-700);
}

/* Souhrnná lišta */
.order-summary-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--forest-900), var(--stone-900));
  color: #ffffff;
  padding: 1.4rem 2rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}

.summary-count span,
.summary-price span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.2rem;
}

.summary-count strong {
  font-size: 1.2rem;
  font-weight: 700;
}

.summary-price strong {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--honey-300);
}

/* Formulářová pole */
.order-form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--stone-700);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--stone-300);
  background-color: #ffffff;
  color: var(--stone-900);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--honey-600);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.18);
}

/* Odesílací tlačítka */
.order-action-buttons {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.order-action-buttons .btn {
  width: 100%;
}

.order-action-buttons .btn-ghost {
  background-color: var(--stone-100);
  color: var(--stone-800);
  border-color: var(--stone-300);
}

.order-action-buttons .btn-ghost:hover {
  background-color: var(--stone-200);
  color: var(--stone-900);
}

.order-box-disclaimer {
  font-size: 0.82rem;
  color: var(--stone-500);
  line-height: 1.5;
}

/* ==========================================================================
   KONTAKTNÍ SEKCE
   ========================================================================== */
.section-contact {
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
}

.contact-card-main {
  background: linear-gradient(135deg, var(--forest-900) 0%, var(--stone-900) 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 4rem 3.5rem;
  box-shadow: var(--shadow-xl);
}

.contact-card-main .section-title {
  color: #ffffff;
}

.contact-lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin-bottom: 3rem;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.contact-method-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: var(--transition);
  color: #ffffff;
}

.contact-method-item:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--honey-400);
  transform: translateY(-4px);
  color: #ffffff;
}

.method-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-phone {
  background: rgba(245, 158, 11, 0.2);
  color: var(--honey-400);
}

.icon-whatsapp {
  background: rgba(37, 211, 102, 0.2);
  color: #25d366;
}

.icon-email {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

.icon-pin {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
}

.method-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
  display: block;
}

.method-val {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  display: block;
  word-break: break-word;
}

.method-hint {
  font-size: 0.75rem;
  color: var(--honey-300);
  display: block;
  margin-top: 0.2rem;
}

/* ==========================================================================
   ČASTÉ DOTAZY (FAQ)
   ========================================================================== */
.section-faq {
  background-color: var(--bg-page);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  border-color: var(--honey-300);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.6rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--stone-900);
  cursor: pointer;
  user-select: none;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  font-size: 1.2rem;
  color: var(--honey-600);
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.6rem 1.4rem;
  color: var(--stone-700);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   PATIČKA (FOOTER)
   ========================================================================== */
.site-footer {
  background-color: var(--stone-900);
  color: rgba(255, 255, 255, 0.75);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
}

.footer-tagline {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-legal {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

.footer-contact h4,
.footer-links h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: var(--honey-300);
}

.footer-contact a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--honey-300);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.back-to-top {
  color: var(--honey-400);
  font-weight: 600;
}

.back-to-top:hover {
  color: #ffffff;
}

/* ==========================================================================
   MOBILNÍ PLOVOUCÍ LIŠTA (STICKY BAR)
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(28, 25, 23, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.75rem 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 99;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
  align-items: center;
  justify-content: space-between;
}

.mobile-bar-info {
  display: flex;
  flex-direction: column;
}

.mobile-bar-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.mobile-bar-price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--honey-300);
}

.mobile-bar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-ghost-phone {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-radius: var(--radius-full);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   TOAST NOTIFIKACE
   ========================================================================== */
.toast-notice {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--stone-900);
  color: #ffffff;
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--honey-400);
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.toast-notice.show {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVNÍ STYLY (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .contact-methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 70px;
  }
  
  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: rgba(251, 249, 244, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-light);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-lg);
  }

  .main-nav.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-section {
    min-height: auto;
    padding: 4rem 0 4.5rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .honey-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .order-box-wrapper {
    padding: 2rem 1.4rem;
  }

  .order-row {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .order-counter {
    margin-left: auto;
    margin-right: 0;
  }

  .order-form-fields {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .order-action-buttons {
    grid-template-columns: 1fr;
  }

  .contact-card-main {
    padding: 2.5rem 1.5rem;
  }

  .contact-methods-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding-bottom: 5rem; /* místo pro sticky bar */
  }

  .mobile-sticky-bar {
    display: flex;
  }
}

/* ==========================================================================
   ADMINISTRACE PRO VČELAŘE
   ========================================================================== */
.footer-bottom-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn-admin-trigger {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-admin-trigger:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--honey-300);
  border-color: var(--honey-400);
  transform: translateY(-1px);
}

/* Modal backdrop & dialog */
.admin-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(28, 25, 23, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.admin-modal-backdrop.active {
  display: flex;
}

.admin-modal-dialog {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--honey-200);
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalPop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.admin-dashboard-dialog {
  max-width: 920px;
}

@keyframes modalPop {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.admin-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.6rem;
  border-bottom: 1px solid var(--stone-200);
  background-color: var(--honey-50);
}

.modal-title-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.modal-title-group h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--stone-900);
}

.modal-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.admin-status-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  background-color: var(--forest-100);
  color: var(--forest-green);
  border: 1px solid rgba(5, 150, 105, 0.3);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

.modal-close {
  background: transparent;
  border: none;
  font-size: 1.3rem;
  color: var(--stone-500);
  cursor: pointer;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.modal-close:hover {
  background-color: var(--stone-200);
  color: var(--stone-900);
}

.admin-modal-header .header-btns {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.admin-login-form {
  padding: 1.8rem;
}

.login-desc {
  font-size: 0.9rem;
  color: var(--stone-600);
  margin-bottom: 1.2rem;
}

.login-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--stone-500);
  margin-top: 0.4rem;
}

.login-hint code {
  background-color: var(--honey-100);
  color: var(--honey-800);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}

.login-error {
  background-color: #fee2e2;
  color: #dc2626;
  border: 1px solid #fca5a5;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  margin-top: 1rem;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

/* Dashboard body */
.admin-dashboard-body {
  padding: 1.6rem 1.8rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.admin-section {
  background-color: var(--stone-50);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-md);
  padding: 1.4rem;
}

.admin-section-header {
  margin-bottom: 1.2rem;
}

.admin-section-header h4 {
  font-size: 1.05rem;
  color: var(--stone-900);
  margin-bottom: 0.2rem;
}

.admin-section-header p {
  font-size: 0.82rem;
  color: var(--stone-500);
}

.admin-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

@media (max-width: 860px) {
  .admin-products-grid {
    grid-template-columns: 1fr;
  }
}

.admin-site-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

@media (max-width: 700px) {
  .admin-site-images-grid {
    grid-template-columns: 1fr;
  }
}

.admin-product-card {
  background: #ffffff;
  border: 1px solid var(--stone-300);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: var(--shadow-sm);
}

.admin-product-card:hover {
  border-color: var(--honey-400);
}

.admin-prod-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-prod-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--stone-900);
}

/* Přepínač stavu skladu (Toggle Switch) */
.stock-toggle-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #cbd5e1;
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 24px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked + .toggle-slider {
  background-color: var(--forest-green);
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(20px);
}

.admin-thumb-wrapper {
  position: relative;
  height: 120px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: var(--stone-100);
  border: 1px solid var(--stone-200);
}

.admin-thumb-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-upload-label {
  display: block;
  text-align: center;
  background: var(--stone-800);
  color: #ffffff;
  padding: 0.45rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 0.2rem;
}

.btn-upload-label:hover {
  background: var(--honey-600);
}

.file-input-hidden {
  display: none;
}

.admin-contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .admin-contacts-grid {
    grid-template-columns: 1fr;
  }
}

.admin-dashboard-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1.2rem 1.8rem;
  background-color: var(--honey-50);
  border-top: 1px solid var(--stone-200);
}

.save-status-msg {
  margin-right: auto;
  font-size: 0.9rem;
  font-weight: 700;
}

.save-status-msg.success {
  color: var(--forest-green);
}

.save-status-msg.error {
  color: #dc2626;
}

.admin-texts-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-text-subblock {
  background: #ffffff;
  border: 1px solid var(--stone-300);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.admin-subblock-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--stone-900);
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--honey-200);
  margin-bottom: 0.2rem;
}

textarea.form-control {
  resize: vertical;
  min-height: 70px;
  font-family: inherit;
  line-height: 1.5;
}

