:root {
  --rb: #573b16;
  --rb-dark: #3d2a0f;
  --rb-deep: #160b00;
  --rg: #fbcc01;
  --rg-dim: #d4a90a;
  --rc: #f5efe0;
  --rc-dark: #e8dcc8;
  --rw: #ffffff;
  --rt: #573b16;
  --rt-light: #8a7560;
  --r-max: 1280px;
}

body {
  background: url('https://res.cloudinary.com/damzmyoqv/image/upload/f_auto,q_auto,w_1920/v1776411863/brxa/textured-wooden-background.jpg') center top / cover no-repeat fixed;
  color: var(--rt);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}

.site-header {
  display: none !important;
}

.r-topbar,
.r-nav,
.r-mobile-menu,
.r-nav-panel,
.ri,
.r-socials,
.r-copyright {
  max-width: var(--r-max);
  margin-left: auto;
  margin-right: auto;
}

main,
.site-footer {
  max-width: var(--r-max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.r-topbar {
  background: var(--rb);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  line-height: 1em;
  color: var(--rg);
  padding: 9px 30px;
}

.r-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.r-topbar-left {
  display: flex;
  gap: 20px;
  align-items: center;
}

.r-topbar-phone,
.r-topbar-email,
.r-topbar-cart {
  color: var(--rg);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  font-size: 13px;
  transition: opacity 0.3s;
}

.r-topbar-phone:hover,
.r-topbar-email:hover,
.r-topbar-cart:hover {
  opacity: 0.7;
}

.r-topbar-right {
  display: flex;
  align-items: center;
}

.r-nav {
  background: var(--rb);
  padding: 0 30px;
  position: relative;
  z-index: 200;
}

.r-nav-inner {
  display: flex;
  align-items: center;
  min-height: 48px;
}

.r-nav-logo {
  flex-shrink: 0;
  margin-right: 24px;
}

.r-nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.r-nav-items {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: space-between;
}

.r-nav-link {
  color: var(--rw);
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 16px 10px;
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
  transition: opacity 0.2s;
  line-height: 1;
}

.r-nav-link:hover { opacity: 0.7; }
.r-nav-link svg { margin-top: 1px; }

.r-nav-dropdown { position: relative; }

.r-nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--rb);
  min-width: 220px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  z-index: 300;
  padding: 6px 0;
}

.r-nav-dropdown:hover .r-nav-dropdown-menu { display: block; }

.r-nav-dropdown-link {
  display: block;
  color: var(--rw);
  text-decoration: none;
  font-size: 12px;
  padding: 8px 18px;
  transition: background 0.2s;
  white-space: nowrap;
}

.r-nav-dropdown-link:hover { background: rgba(255,255,255,0.08); }

.r-nav-search {
  color: var(--rw);
  margin-left: auto;
  padding: 10px;
  display: flex;
  align-items: center;
  opacity: 0.8;
  transition: opacity 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}

.r-nav-search:hover { opacity: 1; }

.r-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--rw);
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.r-mobile-menu {
  display: none;
  background: var(--rc);
  padding: 0;
  max-height: 70vh;
  overflow-y: auto;
}

.r-mobile-menu.r-mobile-open {
  display: block;
}

.r-mobile-link {
  display: block;
  color: var(--rt);
  text-decoration: none;
  font-size: 15px;
  padding: 14px 30px;
  border-bottom: 1px solid var(--rc-dark);
}

.r-mobile-parent {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--rc-dark);
}

.r-mobile-parent .r-mobile-link {
  flex: 1;
  border-bottom: none;
}

.r-mobile-expand {
  background: none;
  border: none;
  color: var(--rt-light);
  cursor: pointer;
  padding: 14px 20px;
  border-left: 1px solid var(--rc-dark);
  transition: transform 0.2s;
}

.r-mobile-expanded .r-mobile-expand {
  transform: rotate(180deg);
}

.r-mobile-children {
  display: none;
}

.r-mobile-expanded .r-mobile-children {
  display: block;
}

.r-mobile-sub {
  display: block;
  color: var(--rt-light);
  text-decoration: none;
  font-size: 14px;
  padding: 12px 30px 12px 50px;
  border-bottom: 1px solid var(--rc-dark);
}

.r-nav-panel {
  overflow: hidden;
  line-height: 0;
  background: var(--rb);
}

.r-nav-panel-img {
  max-height: 90px;
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
}

.rh {
  background: var(--rb);
  padding: 0;
  text-align: center;
}

.rh-inner { padding: 24px 30px 32px; }

.rh-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.2rem, 4vw, 2.2rem);
  font-weight: 600;
  color: var(--rg);
  margin: 0 0 20px;
  line-height: 1.2;
}

.rh-hero-img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 16px;
  filter: drop-shadow(4px 4px 12px rgba(0,0,0,0.4));
}

.rh-mobile { display: none; }
.rh-hero-mobile-stack { display: none; }
.rh-badges-mobile { display: none; }

.rh-badge-img {
  width: 100%;
  max-width: 640px;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 2px 18px rgba(0,0,0,0.3);
}

.rb {
  background: var(--rb);
  padding: 40px 30px;
}

.rb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.rb-card {
  background: var(--rc);
  border-radius: 3px;
  overflow: hidden;
  text-decoration: none;
  color: var(--rt);
  box-shadow: 6px 6px 18px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
}

.rb-card:hover {
  transform: translateY(-3px);
  box-shadow: 6px 8px 24px rgba(0,0,0,0.4);
}

.rb-card-img { overflow: hidden; }

.rb-card-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.rb-card:hover .rb-card-img img { transform: scale(1.03); }

.rb-card-body {
  padding: 20px 24px 24px;
  text-align: center;
}

.rb-card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--rb);
  margin: 0 0 8px;
  text-transform: uppercase;
}

.rb-card-body p {
  font-size: 14px;
  color: var(--rt-light);
  margin: 0;
  line-height: 1.5;
}

.ry {
  background: linear-gradient(to bottom, #5d3925 0%, #6b4a34 25%, #8a6e55 50%, #b09a82 70%, #d4c5b4 85%, #ede2d9 100%);
  padding: 0 30px 40px;
}

.r-gradient {
  display: none;
}

.ry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ry-item {
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 4px 4px 16px rgba(0,0,0,0.3);
}

.ry-item iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: 0;
}

.ry-item-img {
  overflow: hidden;
}

.ry-item-img a { display: block; height: 100%; }

.ry-plagat {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.rc {
  background: #ede2d9;
  padding: 48px 30px 60px;
  position: relative;
}

.rc-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rt);
  text-align: center;
  margin: 0 0 32px;
}

.rc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.rc-card {
  background: var(--rw);
  border: 2px solid var(--rc-dark);
  border-radius: 3px;
  overflow: hidden;
  text-decoration: none;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: block;
}

.rc-card:hover {
  border-color: var(--rg);
  box-shadow: 4px 4px 16px rgba(0,0,0,0.25);
}

.rc-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--rw);
}

.rc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.rc-card-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--rt);
  padding: 10px 8px;
  margin: 0;
  text-transform: uppercase;
  line-height: 1.3;
  background: var(--rc);
}

.rc-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--rc-dark);
  color: var(--rt-light);
}

.ra {
  background: var(--rb);
  padding: 60px 30px;
  color: var(--rc);
}

.ra-inner {
  max-width: 800px;
  margin: 0 auto;
}

.ra-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rg);
  margin: 0 0 24px;
  text-align: center;
}

.ra-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--rg);
  text-align: justify;
}

.ra-text p { margin: 0 0 16px; }

.rs-hero {
  background: var(--rb);
  padding: 48px 30px 36px;
  text-align: center;
}

.rs-hero-inner {
  max-width: var(--r-max);
  margin: 0 auto;
}

.rs-hero-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--rg);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.rs-hero-desc {
  font-size: 14px;
  color: var(--rc);
  margin: 0;
  line-height: 1.5;
}

.rs {
  background: var(--rb);
  padding: 0 30px 60px;
}

.rs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--r-max);
  margin: 0 auto;
}

.rs-card {
  background: var(--rc);
  border-radius: 3px;
  overflow: hidden;
  color: var(--rt);
  box-shadow: 6px 6px 18px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
}

.rs-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--rc-dark);
}

.rs-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rs-card-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.rs-card-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--rb);
  margin: 0 0 10px;
  text-transform: uppercase;
}

.rs-card-desc {
  font-size: 14px;
  color: var(--rt-light);
  margin: 0 0 16px;
  line-height: 1.5;
  flex: 1;
}

.rs-card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--rb);
  border-top: 1px solid var(--rc-dark);
  padding-top: 12px;
  margin-top: auto;
}

.rs-empty {
  text-align: center;
  color: var(--rc);
  padding: 60px 0;
  max-width: var(--r-max);
  margin: 0 auto;
}

.ri {
  background: var(--rb);
  padding: 48px 30px;
  border-top: 2px solid var(--rg-dim);
}

.ri-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: start;
}

.ri-heading { font-size: 1rem; font-weight: 700; color: var(--rg); margin: 0 0 10px; }
.ri-value { font-size: 14px; color: var(--rg); margin: 0; line-height: 1.8; }
.ri-value a { color: var(--rg); text-decoration: none; }
.ri-value a:hover { text-decoration: underline; }
.ri-spacer { margin-top: 12px !important; }
.ri-logo-col { text-align: center; display: flex; align-items: center; justify-content: center; }
.ri-logo-img { max-width: 200px; height: auto; }
.ri-col-right { margin-left: auto; text-align: right; }
.ri-map { margin-top: 16px; border-radius: 3px; overflow: hidden; }
.ri-map iframe { display: block; border: 0; }

.r-socials {
  background: var(--rb);
  padding: 32px 30px;
  border-top: 2px solid var(--rg-dim);
}

.r-socials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.r-social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--rg);
  padding: 20px;
  border: 2px solid var(--rg-dim);
  border-radius: 3px;
  transition: background 0.2s;
}

.r-social-item:hover { background: rgba(251,204,1,0.08); }
.r-social-item span { font-size: 13px; font-weight: 600; }

.r-copyright {
  background: var(--rb);
  padding: 20px 30px;
  text-align: center;
  color: var(--rg);
  font-size: 13px;
}

.r-copyright a { color: var(--rg); }

.site-footer { display: none !important; }

main { background: transparent; }
#main-content { background: transparent !important; }

:root {
  --esh-bg: #f5efe0;
  --esh-card-bg: #ffffff;
  --esh-card-bg-alt: #faf7f2;
  --esh-text: #573b16;
  --esh-text-2: #6b5a42;
  --esh-text-3: #8a7560;
  --esh-accent: #d4a90a;
  --esh-line: #e8dcc8;
  --esh-line-2: #d4c5b4;
}

.esh-wrap {
  background: var(--esh-bg) !important;
  padding: 32px 30px 60px !important;
}

.esh-sidebar {
  background: var(--esh-card-bg) !important;
  border-color: var(--esh-line) !important;
  border-radius: 4px !important;
}

.esh-sb-section {
  border-color: var(--esh-line) !important;
}

.esh-sb-section-hd {
  background: none !important;
  border: none !important;
  color: var(--esh-text) !important;
}

.esh-sb-title {
  color: var(--esh-text) !important;
  font-size: 11px !important;
}

.esh-sb-mobile-head {
  color: var(--esh-text) !important;
}

.esh-sb-mobile-title {
  color: var(--esh-text) !important;
}

.esh-sb-close {
  color: var(--esh-text-2) !important;
}

.esh-filter-row {
  color: var(--esh-text-2) !important;
}

.esh-filter-row:hover {
  color: var(--esh-text) !important;
}

.esh-native-input {
  accent-color: var(--rg) !important;
}

.esh-cat-heading {
  color: var(--esh-text) !important;
  font-size: 24px !important;
  line-height: 1.15 !important;
  text-transform: uppercase !important;
}

.esh-breadcrumb {
  color: var(--esh-text-3) !important;
}

.esh-breadcrumb a {
  color: var(--esh-text-2) !important;
  text-decoration: none;
}

.esh-card {
  background: var(--esh-card-bg) !important;
  border-color: var(--esh-line) !important;
  border-radius: 4px !important;
}

.esh-card:hover {
  border-color: var(--rg) !important;
  box-shadow: 2px 4px 12px rgba(0,0,0,0.12) !important;
  transform: translateY(-2px) !important;
}

.esh-card-body {
  background: var(--esh-card-bg) !important;
}

.esh-card-name {
  color: var(--esh-text) !important;
  font-size: 13px !important;
  -webkit-line-clamp: unset !important;
  display: block !important;
}

.esh-card-price strong {
  color: #2a7d2a !important;
  font-size: 16px !important;
}

.esh-card-footer {
  background: var(--esh-card-bg) !important;
}

.esh-detail-btn {
  color: var(--esh-text) !important;
  border-color: var(--esh-line-2) !important;
  border-radius: 4px !important;
  font-size: 11px !important;
}

.esh-card:hover .esh-detail-btn {
  border-color: var(--rg) !important;
  background: var(--rg) !important;
  color: var(--esh-text) !important;
}

.esh-cart-icon-btn {
  border-color: var(--esh-line-2) !important;
  color: var(--esh-text-2) !important;
  border-radius: 4px !important;
}

.esh-cart-icon-btn:hover {
  border-color: var(--rg) !important;
  color: var(--rg) !important;
}

.esh-price-input {
  background: var(--esh-card-bg) !important;
  border-color: var(--esh-line) !important;
  color: var(--esh-text) !important;
  border-radius: 4px !important;
}

.esh-reset-btn {
  border-color: var(--esh-line-2) !important;
  color: var(--esh-text-3) !important;
  border-radius: 4px !important;
}

.esh-reset-btn:hover {
  border-color: var(--esh-text) !important;
  color: var(--esh-text) !important;
}

.esh-gallery-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 8px;
  padding: 9px 14px;
  background: none;
  border: 1px solid var(--esh-line-2);
  border-radius: 4px;
  color: var(--esh-text);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: border-color 0.15s, color 0.15s;
}

.esh-gallery-btn:hover {
  border-color: var(--rg);
  color: var(--rg);
}

.esh-back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  padding: 9px 14px;
  background: none;
  border: 1px solid var(--esh-line-2);
  border-radius: 4px;
  color: var(--esh-text);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: border-color 0.15s, color 0.15s;
}

.esh-back-btn:hover {
  border-color: var(--rg);
  color: var(--rg);
}

.esh-sidebar-extra {
  margin-top: 20px;
  border-top: 1px solid var(--esh-line);
  padding-top: 16px;
}

.esh-sidebar-extra h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--esh-text);
  margin: 0 0 12px;
}

.esh-sidebar-extra img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 12px;
}

.esh-count {
  color: var(--esh-text-3) !important;
}

.esh-cat-nav-link {
  color: var(--esh-text-2) !important;
}

.esh-cat-nav-link:hover {
  color: var(--rg) !important;
}

.esh-filter-toggle {
  background: var(--esh-card-bg) !important;
  border-color: var(--esh-line) !important;
  color: var(--esh-text) !important;
}

.esh-card-cat {
  color: var(--rg) !important;
}

.esh-card-old {
  color: var(--esh-text-3) !important;
}

.esh-card-noimg {
  color: var(--esh-text-3) !important;
  background: var(--esh-card-bg) !important;
}

.esh-empty-global,
.esh-empty-filter {
  color: var(--esh-text-3) !important;
}

.esh-badge-sale { background: #dc2626 !important; color: #fff !important; }
.esh-badge-feat { background: var(--rg) !important; color: var(--esh-text) !important; }

.esh-sb-badge {
  background: var(--rg) !important;
  color: var(--esh-text) !important;
}

.esh-sb-chevron {
  color: var(--esh-text-3) !important;
}

.esh-card-img-wrap {
  background: var(--esh-card-bg) !important;
}

.esh-card-img-wrap img {
  object-fit: contain !important;
}

.esd-page {
  background: var(--esh-bg) !important;
}

.esd-title {
  color: var(--esh-text) !important;
}

.esd-price {
  color: #2a7d2a !important;
}

.esd-add-btn {
  background: #2e7d32 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  padding: 14px 32px !important;
  font-family: Georgia, serif !important;
}

.esd-add-btn:hover {
  background: #1b5e20 !important;
}

.esd-ornament {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  padding: 0;
}

.esd-ornament img { width: 280px; height: auto; }

.esd-brxa-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
}

.esd-brxa-logos img {
  width: 130px;
  height: auto;
  object-fit: contain;
  flex: 0 0 auto;
}

.esd-dostupnost {
  text-align: center;
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.5px;
  color: #2a7d2a;
  padding: 12px 0 6px;
}

.esd-dostupnost-icon {
  display: flex;
  justify-content: center;
  padding: 6px 0 12px;
}
.esd-dostupnost-icon img {
  width: 48px;
  height: auto;
}

.esd-info-title {
  text-align: center;
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: 0.5px;
  color: var(--esh-text);
  padding: 16px 0;
}

.esd-attr-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--esh-line);
}

.esd-attr-label {
  font-weight: 700;
  font-size: 14px;
  color: var(--esh-text);
}

.esd-attr-value {
  font-size: 14px;
  color: var(--esh-text-2);
  font-style: italic;
}

.esd-venovanie {
  padding: 16px 0;
  font-size: 13px;
  color: var(--esh-text-2);
}

.esd-venovanie input {
  width: 100%;
  margin-top: 6px;
  padding: 8px 12px;
  border: 1px solid var(--esh-line);
  border-radius: 4px;
  font-size: 14px;
  color: var(--esh-text);
  background: var(--esh-card-bg);
}

.esd-price-summary {
  padding: 16px 0;
  border-top: 1px solid var(--esh-line);
}

.esd-price-line {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 14px;
  color: var(--esh-text);
}

.esd-price-line strong { font-weight: 700; }

.esd-datepicker {
  padding: 12px 0;
  font-size: 13px;
  color: var(--esh-text-2);
}

.esd-datepicker input {
  width: 100%;
  margin-top: 6px;
  padding: 8px 12px;
  border: 1px solid var(--esh-line);
  border-radius: 4px;
  font-size: 14px;
  color: var(--esh-text);
  background: var(--esh-card-bg);
}

.esd-extra-btns {
  display: flex;
  gap: 10px;
  margin: 16px 0;
  padding: 0;
}

.esd-extra-btn {
  flex: 1;
  text-align: center;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  color: #fbcc01;
  background: #573b16;
  border: none;
  font-family: Georgia, serif;
  transition: background 0.3s;
}

.esd-extra-btn:hover { background: #3d2a0f; color: #fbcc01; }

.esd-qty {
  border-color: var(--esh-line) !important;
}

.esd-qty-btn {
  color: var(--esh-text) !important;
  border-color: var(--esh-line) !important;
}

.esd-cat {
  color: var(--rg) !important;
}

.esd-bc a {
  color: var(--esh-text-2) !important;
}

.esd-desc-title {
  color: var(--esh-text) !important;
}

.esd-desc-body {
  color: var(--esh-text-2) !important;
}

.esd-related-title {
  color: var(--esh-text) !important;
}

.esd-gallery-main,
.esd-gallery-main img {
  border-radius: 0 !important;
  border-color: var(--esh-line) !important;
}

.esd-gallery-thumb,
.esd-gallery-thumb img {
  border-radius: 0 !important;
}

.esd-qty-val {
  background: var(--esh-card-bg) !important;
  color: var(--esh-text) !important;
}

.esd-qty-btn {
  background: var(--esh-card-bg) !important;
}
:root {
  --pd-surface: var(--esh-card-bg) !important;
  --pd-overlay-dark: rgba(87,59,22,0.8) !important;
}

.esd-gallery-main {
  border-radius: 4px !important;
  border-color: var(--esh-line) !important;
}

.esd-gallery-main img {
  border-radius: 0 !important;
}

.esd-gallery-thumbs img {
  border-radius: 4px !important;
}

.esd-qty {
  border-radius: 4px !important;
  background: var(--esh-card-bg) !important;
}

.esd-qty-btn {
  background: var(--esh-card-bg) !important;
}

.esd-qty input {
  background: var(--esh-card-bg) !important;
  color: var(--esh-text) !important;
}

.esd-related-card {
  border-radius: 4px !important;
  background: var(--esh-card-bg) !important;
}

.esd-related-card-body {
  background: var(--esh-card-bg) !important;
  color: var(--esh-text) !important;
}

.esd-related-card-name {
  color: var(--esh-text) !important;
}

.esd-related-card-price {
  color: #2a7d2a !important;
}
body.tpl-remeselnik {
  --pd-surface: var(--esh-card-bg);
  --pd-surface-2: var(--esh-card-bg);
  --pd-overlay-dark: rgba(87,59,22,0.6);
  --pd-text: var(--esh-text);
  --pd-text-2: var(--esh-text-2);
  --pd-text-3: var(--esh-text-3);
  --pd-line: var(--esh-line);
  --pd-line-2: var(--esh-line-2);
  --pd-radius: 4px;
}
body.tpl-remeselnik {
  --bsc-primary: var(--rg);
  --bsc-primary-dark: var(--rg-dim);
  --color-primary: var(--rg);
}

.tpl-remeselnik .esd-zoom-btn {
  background: var(--rb) !important;
  color: var(--rg) !important;
  border-radius: 4px !important;
}

.tpl-remeselnik .esd-related-card {
  border-radius: 4px !important;
  border: 1px solid var(--esh-line) !important;
}

.tpl-remeselnik .esd-related-card-body {
  background: var(--esh-card-bg) !important;
  color: var(--esh-text) !important;
}

.tpl-remeselnik .esd-related-card-price {
  color: #2a7d2a !important;
}

.tpl-remeselnik .esd-gallery-active {
  border-color: var(--rg) !important;
}
body.tpl-remeselnik {
  --pd-bg: #f5efe0;
  --pd-surface: #ffffff;
  --pd-text: #573b16;
  --pd-text-2: #6b5a42;
  --pd-text-3: #8a7560;
  --pd-accent: #d4a90a;
  --pd-on-accent: #573b16;
  --pd-line: #e8dcc8;
  --pd-radius: 4px;
  --pd-overlay: rgba(87,59,22,0.5);
  --pd-overlay-dark: rgba(87,59,22,0.8);
  --pd-stock-in: #2a7d2a;
  --pd-badge-sale: #dc2626;
}
body.tpl-remeselnik [class*="related"] [class*="price"] {
  color: #2a7d2a !important;
}
body.tpl-remeselnik .esd-gallery-main {
  border-radius: 4px !important;
}

body.tpl-remeselnik .esd-gallery-main img {
  border-radius: 0 !important;
}

body.tpl-remeselnik .esd-thumb {
  border-radius: 4px !important;
}

body.tpl-remeselnik .esd-thumb img {
  border-radius: 2px !important;
}

body.tpl-remeselnik .esd-related-item {
  border-radius: 4px !important;
  border: 1px solid var(--esh-line) !important;
}

body.tpl-remeselnik .esd-related-item img {
  border-radius: 0 !important;
}
body.tpl-remeselnik .esd-rel-card {
  border-radius: 4px !important;
  background: var(--esh-card-bg) !important;
  border-color: var(--esh-line) !important;
}

body.tpl-remeselnik .esd-rel-card .esd-rel-price {
  color: #2a7d2a !important;
}

body.tpl-remeselnik .esd-rel-img {
  border-radius: 0 !important;
  background: var(--esh-card-bg) !important;
}
body.tpl-remeselnik .esd-main-img {
  border-radius: 4px !important;
}

body.tpl-remeselnik .esd-main-img img {
  object-fit: contain !important;
}

body.tpl-remeselnik .esd-thumb {
  border-radius: 4px !important;
}

body.tpl-remeselnik .esd-rel-card {
  border-radius: 4px !important;
}

body.tpl-remeselnik .esd-rel-img {
  border-radius: 0 !important;
}
body.tpl-remeselnik .esd-rel-img img {
  object-fit: contain !important;
}
body.tpl-remeselnik .esh-sb-section-body {
  max-height: 600px !important;
  padding-bottom: 8px !important;
}
body.tpl-remeselnik .esh-drawer-cta {
  background: var(--rb) !important;
  color: var(--rg) !important;
  border-radius: 4px !important;
}
body.tpl-remeselnik {
  --chk-accent: #573b16;
  --chk-accent-dark: #3d2a0f;
  --chk-accent-text: #fbcc01;
  --chk-accent-soft: rgba(87,59,22,0.08);
  --chk-bg: #f5efe0;
  --chk-success-bg: #2a7d2a;
  --chk-success-text: #2a7d2a;
  --chk-surface: #ffffff;
}
body.tpl-remeselnik .chk-btn {
  background: #573b16 !important;
  color: #fbcc01 !important;
}

body.tpl-remeselnik .chk-btn:hover {
  background: #3d2a0f !important;
}

body.tpl-remeselnik .chk-step-btn.active .chk-step-num {
  background: #573b16 !important;
  color: #fbcc01 !important;
}

body.tpl-remeselnik .chk-back:hover {
  color: #573b16 !important;
}
body.tpl-remeselnik .chk-step-btn.done .chk-step-num {
  background: #2a7d2a !important;
  color: #ffffff !important;
}

body.tpl-remeselnik .chk-step-btn.done .chk-step-label {
  color: #2a7d2a !important;
}
body.tpl-remeselnik .chk-billing-fields {
  display: block !important;
}

body.tpl-remeselnik .chk-company-fields {
  display: grid !important;
}

body.tpl-remeselnik .chk-billing-fields[hidden],
body.tpl-remeselnik .chk-company-fields[hidden] {
  display: none !important;
}
body.tpl-remeselnik {
  --dk-accent: #573b16;
  --dk-accent-text: #fbcc01;
  --dk-accent-shadow: rgba(87,59,22,0.25);
  --dk-accent-hover: rgba(87,59,22,0.2);
  --dk-bg: #f5efe0;
  --dk-surface: #ffffff;
}
body.tpl-remeselnik .dk-hero h1 {
  font-size: 1.5rem !important;
  line-height: 1.3 !important;
  word-break: break-word !important;
}

body.tpl-remeselnik .dk-table {
  font-size: 12px !important;
  table-layout: fixed !important;
  width: 100% !important;
}

body.tpl-remeselnik .dk-table td,
body.tpl-remeselnik .dk-table th {
  padding: 8px 4px !important;
  word-break: break-word !important;
}

body.tpl-remeselnik .dk-card {
  overflow-x: auto !important;
}
body.tpl-remeselnik .dk-table-wrap {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
}

body.tpl-remeselnik .dk-table {
  min-width: 400px !important;
  font-size: 13px !important;
}

body.tpl-remeselnik .dk-table td:last-child,
body.tpl-remeselnik .dk-table th:last-child {
  white-space: nowrap !important;
}
body.tpl-remeselnik .dk-card {
  overflow-x: auto !important;
  padding: 16px 12px !important;
}

body.tpl-remeselnik .dk-items {
  font-size: 12px !important;
}

body.tpl-remeselnik .dk-items td,
body.tpl-remeselnik .dk-items th {
  padding: 8px 4px !important;
  word-break: break-word !important;
}
@media (max-width: 980px) {
  .rh-desktop { display: none; }
  .rh-mobile { display: block; }
  .rh-hero-mobile-stack { display: flex; flex-direction: column; gap: 0; width: 100%; }
  .rh-hero-mobile-stack img { width: 100%; height: auto; display: block; }
  .rh-badges-mobile { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 16px 0 0; }
  .r-topbar-left { flex-direction: column; gap: 4px; align-items: flex-start; }
  .rb-grid { grid-template-columns: 1fr; }
  .ry-grid { grid-template-columns: 1fr; }
  .rc-grid { grid-template-columns: repeat(3, 1fr); }
  .rs-grid { grid-template-columns: repeat(2, 1fr); }
  .ri-grid { grid-template-columns: 1fr; text-align: center; }
  .ri-logo-col { order: -1; }
  .r-socials-grid { grid-template-columns: repeat(2, 1fr); }
  .r-nav-items { display: none; }
  .r-nav-search { display: none; }
  .r-nav-toggle { display: flex; }
  .r-nav-panel { display: none; }
  .r-nav { background: var(--rc); }
  .r-nav-toggle { color: var(--rt); }
  .r-nav-logo-img { filter: brightness(0); }
}

@media (max-width: 768px) {
  .r-nav-inner { min-height: 57px; }
  .r-nav-logo-img { height: 36px; }
  .r-nav-toggle { padding: 8px 10px; }
  .r-nav-toggle svg { width: 28px; height: 28px; }
}

@media (max-width: 640px) {
  .rc-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .r-socials-grid { grid-template-columns: repeat(2, 1fr); }
  .rh-title { font-size: 1rem; }
  .rs-grid { grid-template-columns: 1fr; gap: 16px; }
  .rs-hero { padding: 32px 20px 24px; }
  .rs { padding: 0 20px 40px; }
  .rs-hero-title { font-size: 1.3rem; }
}

/* Custom pages (o-nas atd.) — obsah na plnu sirku + obnoveny footer */
body.tpl-remeselnik .cp-section {
  padding: 0 !important;
}
body.tpl-remeselnik .cp-section > .container {
  max-width: none !important;
  padding: 0 !important;
  width: 100%;
}
body.tpl-remeselnik .cp-article {
  max-width: 100%;
  margin: 0;
}
body.tpl-remeselnik .bh-page-header {
  display: none !important;
}
body.tpl-remeselnik:has(.cp-section) .site-footer {
  display: block !important;
}

/* Footer na custom pages - silnejsi selektor */
body.tpl-remeselnik:has(.cp-section) footer.site-footer,
body.tpl-remeselnik:has(.cp-article) footer.site-footer {
  display: block !important;
  visibility: visible !important;
}

/* Mobile responzivita pre o-nas a ine custom pages */
@media (max-width: 768px) {
  body.tpl-remeselnik .cp-article [style*="grid-template-columns:1fr 1fr"],
  body.tpl-remeselnik .cp-article [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  body.tpl-remeselnik .cp-article [style*="padding:40px"],
  body.tpl-remeselnik .cp-article [style*="padding: 40px"] {
    padding: 20px !important;
  }
  body.tpl-remeselnik .cp-article [style*="padding:60px 40px"],
  body.tpl-remeselnik .cp-article [style*="padding: 60px 40px"] {
    padding: 30px 20px !important;
  }
  body.tpl-remeselnik .cp-article [style*="padding:40px 40px 0"] {
    padding: 20px !important;
  }
  body.tpl-remeselnik .cp-article [style*="padding-right:40px"],
  body.tpl-remeselnik .cp-article [style*="padding-left:40px"] {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  body.tpl-remeselnik .cp-article img[style*="max-height:280px"],
  body.tpl-remeselnik .cp-article img[style*="max-height:350px"] {
    max-height: none !important;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  body.tpl-remeselnik .cp-article h2[style*="font-size:2rem"] {
    font-size: 1.4rem !important;
  }
  body.tpl-remeselnik .cp-article h2[style*="font-size:2.5rem"] {
    font-size: 1.75rem !important;
  }
  body.tpl-remeselnik .cp-article img[style*="max-height:600px"] {
    max-height: 280px !important;
  }
}

/* Mobile: prehodenie poradia v sekciach kde je fotka vlavo */
@media (max-width: 768px) {
  body.tpl-remeselnik .cp-article [style*="grid-template-columns:1fr 1fr"]:has(> div:first-child[style*="align-items:center"][style*="justify-content:center"]) {
    display: flex !important;
    flex-direction: column-reverse !important;
  }
}

/* Boxed footer - rovnaká šírka ako pôvodne mal v HomePage */
body.tpl-remeselnik .ri,
body.tpl-remeselnik .r-socials,
body.tpl-remeselnik .r-copyright {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

body.tpl-remeselnik #gdpr-manage {
  color: #fbcc01;
  opacity: 1;
  font-size: inherit;
  text-decoration: none;
  margin-left: 12px;
}
body.tpl-remeselnik #gdpr-manage:hover {
  text-decoration: underline;
}

html body.tpl-remeselnik .ri,
html body.tpl-remeselnik .r-socials,
html body.tpl-remeselnik .r-copyright {
  max-width: var(--r-max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

html body.tpl-remeselnik .mb-section a {
  display: inline-block !important;
  width: auto !important;
  background: #fff !important;
  color: #573b16 !important;
  padding: 10px 24px !important;
  border: 1px solid #573b16 !important;
  border-radius: 3px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

html body.tpl-remeselnik .mb-section[style*="background:#3d2a0f"] a {
  background: #f5efe0 !important;
  color: #573b16 !important;
  border: none !important;
}
@media (max-width: 768px) {
  html body.tpl-remeselnik .mb-section {
    display: flex !important;
    flex-direction: column !important;
  }
  html body.tpl-remeselnik .mb-section > div:first-child {
    order: 1;
  }
  html body.tpl-remeselnik .mb-section > div:last-child {
    order: 2;
  }
  html body.tpl-remeselnik .mb-section[style*="background:#3d2a0f"] > div:first-child {
    order: 2;
  }
  html body.tpl-remeselnik .mb-section[style*="background:#3d2a0f"] > div:last-child {
    order: 1;
  }
}

@media (max-width: 768px) {
  html body.tpl-remeselnik .mb-section[style*="background:#f5efe0"] {
    display: flex !important;
    flex-direction: column-reverse !important;
  }
}

@media (max-width: 768px) {
  html body.tpl-remeselnik .mb-section a {
    margin: 24px 20px !important;
  }
}

@media (max-width: 768px) {
  html body.tpl-remeselnik .mb-section h2 {
    margin-top: 24px !important;
  }
}

@media (max-width: 768px) {
  html body.tpl-remeselnik .pb-layout {
    grid-template-columns: 1fr !important;
  }
  html body.tpl-remeselnik .pb-content {
    padding: 24px 20px !important;
  }
  html body.tpl-remeselnik .pb-gallery {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

html body.tpl-remeselnik .pb-content a[href*="/eshop"],
html body.tpl-remeselnik .pb-content a[href*="Detail"] {
  display: inline-block !important;
  background: #573b16 !important;
  color: #fbcc01 !important;
  padding: 12px 28px !important;
  border: none !important;
  border-radius: 6px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  letter-spacing: 0.05em !important;
}

html body.tpl-remeselnik .pb-content a[href*="/eshop"]:hover,
html body.tpl-remeselnik .pb-content a[href*="Detail"]:hover {
  background: #3d2a0f !important;
}

html body.tpl-remeselnik .mb-section a {
  background: #573b16 !important;
  color: #fbcc01 !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 12px 28px !important;
  letter-spacing: 0.05em !important;
}

html body.tpl-remeselnik .mb-section a:hover {
  background: #3d2a0f !important;
}

html body.tpl-remeselnik .pb-content a:not([href$=".jpg"]):not([href$=".png"]) {
  display: inline-block !important;
  background: #573b16 !important;
  color: #fbcc01 !important;
  padding: 12px 28px !important;
  border: none !important;
  border-radius: 6px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  letter-spacing: 0.05em !important;
}

html body.tpl-remeselnik .pb-content a:not([href$=".jpg"]):not([href$=".png"]):hover {
  background: #3d2a0f !important;
}

@media (max-width: 768px) {
  html body.tpl-remeselnik .pb-content h1,
  html body.tpl-remeselnik .pb-content h2,
  html body.tpl-remeselnik .pb-content h3 {
    line-height: 1.3 !important;
  }
  html body.tpl-remeselnik .pb-content h2 {
    font-size: 1.4rem !important;
  }
}

@media (max-width: 768px) {
  html body.tpl-remeselnik .of-two {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

html body.tpl-remeselnik .cp-article .brxa-nav-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  background: #f2e5cc !important;
  color: #573b16 !important;
  padding: 16px 40px !important;
  border: none !important;
  border-radius: 6px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  letter-spacing: 0.08em !important;
  min-width: 200px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.15s, box-shadow 0.15s;
}

html body.tpl-remeselnik .cp-article .brxa-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

html body.tpl-remeselnik .cp-article .brxa-nav-btn::before {
  content: "»";
  font-size: 20px;
  line-height: 1;
}

.ri-col:last-child {
  text-align: right;
}
.ri-col:last-child .ri-heading,
.ri-col:last-child .ri-value {
  text-align: right;
}

.ri-logo-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
}

.r-socials-grid {
  justify-content: center;
}

.ri-logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ri-logo-img {
  width: 300px !important;
  height: 300px !important;
  max-width: none !important;
  object-fit: contain !important;
}

.r-photo-strip {
  width: 100%;
  max-width: var(--r-max);
  margin: 0 auto;
  overflow: hidden;
  line-height: 0;
}
.r-photo-strip-inner {
  display: flex;
  width: 100%;
}
.r-photo-strip-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 900px) {
  .ri-col:last-child,
  .ri-col:last-child .ri-heading,
  .ri-col:last-child .ri-value {
    text-align: center;
  }
}

body.tpl-remeselnik .gdpr-inner {
  background: #573b16;
  color: #f5efe0;
  border: 1px solid #3d2a0f;
  border-radius: 12px;
  padding: 24px 30px;
  max-width: 700px;
  flex-direction: column;
  align-items: stretch;
}
body.tpl-remeselnik .gdpr-content {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
body.tpl-remeselnik .gdpr-text,
body.tpl-remeselnik .gdpr-text p {
  color: #f5efe0;
}
body.tpl-remeselnik .gdpr-title {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 8px;
  color: #fbcc01;
}
body.tpl-remeselnik .gdpr-icon {
  color: #fbcc01;
}
body.tpl-remeselnik .gdpr-link {
  color: #fbcc01;
  text-decoration: underline;
}
body.tpl-remeselnik .gdpr-toggles {
  display: flex;
  gap: 16px;
  margin: 16px 0;
  flex-wrap: wrap;
}
body.tpl-remeselnik .gdpr-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  user-select: none;
}
body.tpl-remeselnik .gdpr-toggle input[type="checkbox"] {
  width: 36px;
  height: 20px;
  appearance: none;
  -webkit-appearance: none;
  background: #2a1a08;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
  margin: 0;
  flex-shrink: 0;
}
body.tpl-remeselnik .gdpr-toggle input[type="checkbox"]:checked {
  background: #fbcc01;
}
body.tpl-remeselnik .gdpr-toggle input[type="checkbox"]::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: #f5efe0;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 0.3s;
}
body.tpl-remeselnik .gdpr-toggle input[type="checkbox"]:checked::after {
  transform: translateX(16px);
}
body.tpl-remeselnik .gdpr-toggle input[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
body.tpl-remeselnik .gdpr-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
body.tpl-remeselnik .gdpr-btn {
  padding: 8px 20px;
  font-family: Georgia, serif;
  font-size: 0.85rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  border: none;
  font-weight: 600;
}
body.tpl-remeselnik .gdpr-btn-accept {
  background: #fbcc01;
  color: #3d2a0f;
}
body.tpl-remeselnik .gdpr-btn-accept:hover {
  background: #e6b800;
}
body.tpl-remeselnik .gdpr-btn-save {
  background: transparent;
  color: #f5efe0;
  border: 1px solid #f5efe0;
}
body.tpl-remeselnik .gdpr-btn-save:hover {
  background: rgba(245,239,224,0.1);
}
body.tpl-remeselnik .gdpr-btn-reject {
  background: transparent;
  color: #f5efe0;
  border: 1px solid rgba(245,239,224,0.3);
}
body.tpl-remeselnik .gdpr-btn-reject:hover {
  background: rgba(245,239,224,0.05);
}

body.tpl-remeselnik .product-desc-block {
  margin-top: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(87, 59, 22, 0.25);
  font-size: 0.95rem;
  line-height: 1.7;
  color: #3a2e0f;
}

body.tpl-remeselnik .product-desc-block .product-desc-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #573b16;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

body.tpl-remeselnik .product-desc-block .product-desc-body {
  white-space: pre-wrap;
  color: #3a2e0f;
}

body.tpl-remeselnik .product-desc-block p {
  margin: 0 0 12px;
}

body.tpl-remeselnik .product-desc-block strong {
  color: #573b16;
}

body.tpl-remeselnik .esd-video-thumb {
  position: relative;
  cursor: pointer;
  padding: 0;
  border: 1px solid var(--esh-line);
  background: #000;
  overflow: hidden;
}

body.tpl-remeselnik .esd-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
}

body.tpl-remeselnik .esd-video-thumb:hover img {
  opacity: 1;
}

body.tpl-remeselnik .esd-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

body.tpl-remeselnik .esd-play-icon svg {
  width: 18px;
  height: 18px;
}

body.tpl-remeselnik .esd-audio-player {
  margin-top: 16px;
  padding: 16px 20px;
  background: #3a2e0f;
  border: 1px solid rgba(251, 204, 1, 0.3);
  border-radius: 8px;
}

body.tpl-remeselnik .esd-audio-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fbcc01;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

body.tpl-remeselnik .esd-audio-player audio {
  width: 100%;
  max-width: 100%;
  border-radius: 6px;
  filter: sepia(20%) saturate(70%) brightness(0.9);
}

body.tpl-remeselnik .esd-audio-player audio::-webkit-media-controls-panel {
  background: #573b16;
}

body.tpl-remeselnik .esd-direct-video {
  margin-top: 12px;
}

body.tpl-remeselnik .esd-direct-video video {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--esh-line);
  display: block;
  background: #000;
}

body.tpl-remeselnik .cg-wrap {
  background: #573B16;
  min-height: 100vh;
  padding: 30px 20px;
}

body.tpl-remeselnik .cg-header {
  text-align: center;
  padding: 10px 0 24px;
}

body.tpl-remeselnik .cg-header h2,
body.tpl-remeselnik .cg-header h1 {
  color: #fbcc01;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: Georgia, serif;
}

body.tpl-remeselnik .cg-back {
  text-align: center;
  margin-bottom: 20px;
}

body.tpl-remeselnik .cg-back a {
  display: inline-block;
  background: #573b16;
  color: #fbcc01;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}

body.tpl-remeselnik .cg-back a:hover {
  background: #3d2a0f;
}

body.tpl-remeselnik .cg-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  body.tpl-remeselnik .cg-grid { grid-template-columns: repeat(6, 1fr); }
}

@media (max-width: 768px) {
  body.tpl-remeselnik .cg-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 480px) {
  body.tpl-remeselnik .cg-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Prehľad galérií — karty kategórií (.gf-grid): na mobile 2 v riadku.
   Override inline <style> z custom_page obsahu cez vyššiu špecificitu. */
@media (max-width: 480px) {
  body.tpl-remeselnik .gf-grid { grid-template-columns: repeat(2, 1fr); }
}

body.tpl-remeselnik .cg-item {
  position: relative;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  aspect-ratio: 1;
}

body.tpl-remeselnik .cg-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}

body.tpl-remeselnik .cg-item-name {
  display: none;
}


body.tpl-remeselnik .cg-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 99999;
  overflow: hidden;
}
body.tpl-remeselnik .cg-lightbox.open {
  display: grid;
  grid-template-columns: 1fr 280px;
}
body.tpl-remeselnik .cg-lb-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 20px;
  min-height: 0;
  overflow: hidden;
}
body.tpl-remeselnik .cg-lb-img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  width: 100%;
}
body.tpl-remeselnik #cgLbImg {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}
body.tpl-remeselnik .cg-lb-title {
  color: #ccc;
  font-size: 0.85rem;
  padding: 8px 0;
  text-align: center;
}
body.tpl-remeselnik .cg-lb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 8px 0;
}
body.tpl-remeselnik .cg-lb-prev,
body.tpl-remeselnik .cg-lb-next {
  background: none;
  border: 1px solid #666;
  color: #ccc;
  font-size: 1.2rem;
  padding: 6px 14px;
  cursor: pointer;
  border-radius: 3px;
}
body.tpl-remeselnik .cg-lb-prev:hover,
body.tpl-remeselnik .cg-lb-next:hover {
  border-color: #fbcc01;
  color: #fbcc01;
}
body.tpl-remeselnik .cg-lb-counter {
  color: #999;
  font-size: 0.85rem;
}
body.tpl-remeselnik .cg-lb-close {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1.8rem;
  color: #ccc;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100000;
}
body.tpl-remeselnik .cg-lb-close:hover {
  color: #fff;
}
body.tpl-remeselnik .cg-lb-sidebar {
  background: #1a1a1a;
  padding: 20px;
  overflow-y: auto;
  border-left: 1px solid #333;
}
body.tpl-remeselnik .cg-lb-album-badge {
  display: inline-block;
  color: #fbcc01;
  background: rgba(251, 204, 1, 0.15);
  border: 1px solid rgba(251, 204, 1, 0.3);
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 0.75rem;
  margin-bottom: 16px;
  float: right;
}
body.tpl-remeselnik .cg-lb-info {
  color: #ccc;
  font-size: 0.85rem;
  margin-bottom: 16px;
  clear: both;
}
body.tpl-remeselnik .cg-lb-info strong {
  display: block;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 4px;
}
body.tpl-remeselnik .cg-lb-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  max-height: 300px;
  overflow-y: auto;
}
body.tpl-remeselnik .cg-lb-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  border-radius: 2px;
}
body.tpl-remeselnik .cg-lb-thumbs img.active {
  opacity: 1;
  border-color: #fbcc01;
}
@media (max-width: 768px) {
  body.tpl-remeselnik .cg-lightbox.open {
    display: flex !important;
    flex-direction: column;
  }
  body.tpl-remeselnik .cg-lb-sidebar {
    display: none !important;
  }
  body.tpl-remeselnik .cg-lb-main {
    flex: 1;
    padding: 50px 10px 10px;
  }
  body.tpl-remeselnik #cgLbImg {
    max-height: 60vh;
  }
  body.tpl-remeselnik .cg-lb-close {
    position: fixed;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  body.tpl-remeselnik .cg-lb-prev,
  body.tpl-remeselnik .cg-lb-next {
    color: #fbcc01;
    border-color: #fbcc01;
  }
  body.tpl-remeselnik .cg-lb-title {
    color: #ccc;
    font-size: 0.8rem;
  }
  body.tpl-remeselnik .cg-header h1 {
    font-size: clamp(1.2rem, 4vw, 2rem);
    word-break: break-word;
    padding: 0 10px;
  }
}

body.tpl-remeselnik .r-search-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  z-index: 99998;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
}
body.tpl-remeselnik .r-search-overlay.open {
  display: flex;
}
body.tpl-remeselnik .r-search-box {
  width: 90%;
  max-width: 600px;
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  align-items: center;
}
body.tpl-remeselnik .r-search-box input {
  flex: 1;
  padding: 14px 20px;
  font-size: 1.1rem;
  border: 2px solid #fbcc01;
  border-radius: 4px;
  background: #fff;
  color: #333;
  outline: none;
}
body.tpl-remeselnik .r-search-box input:focus {
  border-color: #fbcc01;
  box-shadow: 0 0 0 3px rgba(251, 204, 1, 0.3);
}
body.tpl-remeselnik .r-search-close {
  font-size: 2rem;
  color: #ccc;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 10px;
  line-height: 1;
}
body.tpl-remeselnik .r-search-close:hover {
  color: #fff;
}
body.tpl-remeselnik .r-search-results {
  width: 90%;
  max-width: 600px;
  max-height: 60vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 4px;
}
body.tpl-remeselnik .r-search-results:empty {
  display: none;
}
body.tpl-remeselnik .r-search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #333;
  transition: background 0.15s;
}
body.tpl-remeselnik .r-search-item:last-child {
  border-bottom: none;
}
body.tpl-remeselnik .r-search-item:hover {
  background: #f5efe0;
}
body.tpl-remeselnik .r-search-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
body.tpl-remeselnik .r-search-item-info {
  flex: 1;
  min-width: 0;
}
body.tpl-remeselnik .r-search-item-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #573b16;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body.tpl-remeselnik .r-search-item-price {
  font-size: 0.85rem;
  color: #573b16;
  font-weight: 700;
  white-space: nowrap;
}
body.tpl-remeselnik .r-search-item-type {
  font-size: 0.7rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
body.tpl-remeselnik .r-search-empty,
body.tpl-remeselnik .r-search-loading {
  padding: 20px;
  text-align: center;
  color: #999;
  font-size: 0.9rem;
}
body.tpl-remeselnik .r-mobile-search {
  text-align: left;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

body.tpl-remeselnik .vb-nav {
  background: #573B16;
  padding: 20px 24px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  box-shadow: 0 12px 18px -6px rgba(0,0,0,0.15);
}
body.tpl-remeselnik .vb-nav a {
  display: inline-flex;
  align-items: center;
  background: #F5EFE0;
  color: #573B16;
  padding: 10px 22px;
  border-radius: 10px;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 200ms ease;
}
body.tpl-remeselnik .vb-nav a:hover {
  background: #ffcf9a;
}
body.tpl-remeselnik .vb-nav a svg {
  vertical-align: middle;
  margin-right: 8px;
}
body.tpl-remeselnik .vb-hero {
  height: 560px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: inset 0 -412px 500px -270px #160b00;
}
body.tpl-remeselnik .vb-section {
  background: #160b00;
}
body.tpl-remeselnik .vb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  align-items: center;
}
body.tpl-remeselnik .vb-grid-32 {
  grid-template-columns: 3fr 2fr;
  align-items: stretch;
}
body.tpl-remeselnik .vb-grid-23 {
  grid-template-columns: 2fr 3fr;
}
body.tpl-remeselnik .vb-card {
  border: 4px solid #ffcf9a;
  padding: 60px 40px;
}
body.tpl-remeselnik .vb-card h1 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 60px;
  font-weight: 400;
  color: #ffebd6;
  line-height: 1.2;
  margin: 0 0 30px;
}
body.tpl-remeselnik .vb-section h2 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 42px;
  font-weight: 400;
  color: #ffebd6;
  line-height: 1.2;
  margin: 0 0 24px;
}
body.tpl-remeselnik .vb-body {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.8em;
  color: rgba(255,207,154,0.7);
  max-width: 550px;
  margin: 0 0 32px;
}
body.tpl-remeselnik .vb-small {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffcf9a;
  line-height: 1.2em;
  margin: 0;
}
body.tpl-remeselnik .vb-img-col {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 3px;
  padding: 60px 40px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 320px;
}
body.tpl-remeselnik .vb-btn-dark {
  display: inline-block;
  background: #160b00;
  color: #ffcf9a;
  padding: 17px 27px;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 6px 6px 18px 0 rgba(0,0,0,0.3);
  transition: all 200ms ease;
}
body.tpl-remeselnik .vb-btn-dark:hover {
  background: #ffcf9a;
  color: #160b00;
}
body.tpl-remeselnik .vb-btn-outline {
  display: inline-block;
  background: transparent;
  color: #ffcf9a;
  padding: 14px 28px;
  border: 2px solid #ffcf9a;
  border-radius: 3px;
  text-decoration: none;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 200ms ease;
}
body.tpl-remeselnik .vb-btn-outline:hover {
  background: #ffcf9a;
  color: #160b00;
}
body.tpl-remeselnik .vb-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px;
}
body.tpl-remeselnik .vb-logo {
  width: 240px;
  height: auto;
  display: block;
  margin: 0 0 28px;
}
body.tpl-remeselnik .vb-erb-wrap {
  border: 4px solid #ffcf9a;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.tpl-remeselnik .vb-erb-wrap img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  body.tpl-remeselnik .vb-hero {
    height: 300px;
  }
  body.tpl-remeselnik .vb-grid,
  body.tpl-remeselnik .vb-grid-32,
  body.tpl-remeselnik .vb-grid-23 {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 16px;
  }
  body.tpl-remeselnik .vb-card {
    padding: 24px 16px;
    border-width: 2px;
  }
  body.tpl-remeselnik .vb-card h1 {
    font-size: 2rem;
    margin: 0 0 20px;
  }
  body.tpl-remeselnik .vb-section h2 {
    font-size: 1.5rem;
    margin: 0 0 16px;
  }
  body.tpl-remeselnik .vb-body {
    font-size: 14px;
    margin: 0 0 20px;
  }
  body.tpl-remeselnik .vb-nav {
    gap: 8px;
    padding: 12px 10px;
  }
  body.tpl-remeselnik .vb-nav a {
    font-size: 0.75rem;
    padding: 8px 14px;
    letter-spacing: 0.5px;
  }
  body.tpl-remeselnik .vb-img-col {
    order: -1;
    padding: 30px 20px;
    min-height: 220px;
  }
  body.tpl-remeselnik .vb-btn-dark {
    padding: 12px 20px;
    font-size: 13px;
  }
  body.tpl-remeselnik .vb-btn-outline {
    padding: 10px 20px;
    font-size: 13px;
  }
  body.tpl-remeselnik .vb-logo {
    width: 180px;
    margin: 0 0 20px;
  }
  body.tpl-remeselnik .vb-erb-wrap {
    padding: 24px;
    border-width: 2px;
  }
  body.tpl-remeselnik .vb-fujary .vb-erb-wrap {
    order: -1;
  }
}

body.tpl-remeselnik .fu-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #573b16;
  color: #f5efe0;
  padding: 10px 24px;
  font-family: Georgia, serif;
  font-size: 0.85rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
  letter-spacing: 0.03em;
  margin: 4px 8px 4px 0;
}

body.tpl-remeselnik .fu-label:hover {
  background: #3d2a0f;
}

body.tpl-remeselnik .fu-label input[type="file"] {
  display: none;
}

body.tpl-remeselnik .fu-label .fu-name {
  font-size: 0.8rem;
  opacity: 0.7;
  font-style: italic;
}

/* =========================================================
   Course player (LMS) — /kurz/[slug]
   ========================================================= */
body.tpl-remeselnik .kz-wrap {
  display: grid;
  grid-template-columns: 320px 1fr;
  grid-template-rows: auto 1fr;
  min-height: calc(100vh - 60px);
  background: #f5efe0;
  padding-top: 30px;
}
body.tpl-remeselnik .kz-sidebar {
  grid-column: 1;
  grid-row: 1 / 3;
  background: #3d2a0f;
  color: #f5efe0;
  padding: 24px 20px;
  overflow-y: auto;
  max-height: 100vh;
  position: sticky;
  top: 0;
}
body.tpl-remeselnik .kz-course-title {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  color: #fbcc01;
  margin: 0 0 16px;
  line-height: 1.35;
}
body.tpl-remeselnik .kz-progress-bar {
  height: 6px;
  background: #2a1a08;
  border-radius: 3px;
  overflow: hidden;
  margin: 0 0 6px;
}
body.tpl-remeselnik .kz-progress-fill {
  height: 100%;
  background: #fbcc01;
  transition: width 0.3s ease;
}
body.tpl-remeselnik .kz-progress-text {
  font-size: 0.8rem;
  opacity: 0.7;
  margin: 0 0 20px;
}
body.tpl-remeselnik .kz-lesson-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
body.tpl-remeselnik .kz-lesson-item a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  color: #f5efe0;
  text-decoration: none;
  font-size: 0.85rem;
  border-radius: 4px;
  transition: background 0.2s;
  line-height: 1.3;
}
body.tpl-remeselnik .kz-lesson-item a:hover {
  background: rgba(245, 239, 224, 0.1);
}
body.tpl-remeselnik .kz-lesson-item.active a {
  background: #573b16;
  font-weight: 700;
}
body.tpl-remeselnik .kz-lesson-num {
  min-width: 22px;
  opacity: 0.5;
  font-size: 0.75rem;
}
body.tpl-remeselnik .kz-lesson-title {
  flex: 1;
  min-width: 0;
}
body.tpl-remeselnik .kz-lesson-dur {
  opacity: 0.5;
  font-size: 0.75rem;
  white-space: nowrap;
}
body.tpl-remeselnik .kz-lesson-item.completed .kz-check {
  color: #fbcc01;
  font-size: 0.85rem;
  font-weight: 700;
}
body.tpl-remeselnik .kz-main {
  grid-column: 2;
  grid-row: 2;
  background: #f5efe0;
  padding: 0;
  min-width: 0;
}
body.tpl-remeselnik .kz-video-wrap {
  grid-column: 2;
  grid-row: 1;
  background: #000;
  width: 100%;
  aspect-ratio: 16 / 9;
}
body.tpl-remeselnik .kz-video-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}
body.tpl-remeselnik .kz-video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #f5efe0;
  padding: 24px;
}
body.tpl-remeselnik .kz-lesson-body {
  padding: 24px 30px 30px;
  max-width: 900px;
}
body.tpl-remeselnik .kz-lesson-heading {
  font-family: Georgia, serif;
  color: #573b16;
  font-size: 1.5rem;
  margin: 0 0 14px;
}
body.tpl-remeselnik .kz-lesson-desc {
  color: #3d2a0f;
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 24px;
  white-space: pre-line;
}
body.tpl-remeselnik .kz-nav-buttons {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(87, 59, 22, 0.2);
}
body.tpl-remeselnik .kz-btn {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid #573b16;
  color: #573b16;
  background: transparent;
  text-decoration: none;
  font-family: Georgia, serif;
  font-size: 0.85rem;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s;
}
body.tpl-remeselnik .kz-btn:hover {
  background: rgba(87, 59, 22, 0.1);
}
body.tpl-remeselnik .kz-btn-primary {
  background: #573b16;
  color: #fbcc01;
  border-color: #573b16;
}
body.tpl-remeselnik .kz-btn-primary:hover {
  background: #3d2a0f;
}
body.tpl-remeselnik .kz-locked {
  background: #f5efe0;
  min-height: 60vh;
  padding: 30px 0 0;
  max-width: none;
  margin: 0;
}
body.tpl-remeselnik .kz-locked-hero {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 30px 20px;
  text-align: center;
}
body.tpl-remeselnik .kz-locked-title {
  font-family: Georgia, serif;
  color: #573b16;
  font-size: 2rem;
  margin: 0 0 12px;
  line-height: 1.2;
}
body.tpl-remeselnik .kz-locked-sub {
  color: #3d2a0f;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 20px;
}
body.tpl-remeselnik .kz-locked-meta {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  color: #573b16;
  font-size: 0.9rem;
  margin: 0 0 20px;
}
body.tpl-remeselnik .kz-locked-meta span {
  background: rgba(87, 59, 22, 0.08);
  padding: 6px 14px;
  border-radius: 4px;
}
body.tpl-remeselnik .kz-locked-warn {
  color: #b04a1c;
  background: rgba(176, 74, 28, 0.08);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  display: inline-block;
  margin: 0 0 16px;
}
body.tpl-remeselnik .kz-locked-actions {
  margin-top: 12px;
}
body.tpl-remeselnik .kz-locked-lessons {
  max-width: 760px;
  margin: 0 auto;
  background: #3d2a0f;
  border-radius: 8px;
  padding: 24px;
  color: #f5efe0;
}
body.tpl-remeselnik .kz-locked-lessons h2 {
  font-family: Georgia, serif;
  color: #fbcc01;
  font-size: 1.2rem;
  margin: 0 0 14px;
}
body.tpl-remeselnik .kz-locked-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
body.tpl-remeselnik .kz-locked-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(245, 239, 224, 0.1);
  font-size: 0.9rem;
}
body.tpl-remeselnik .kz-locked-item:last-child {
  border-bottom: none;
}
body.tpl-remeselnik .kz-locked-item.preview {
  background: rgba(251, 204, 1, 0.05);
}
body.tpl-remeselnik .kz-locked-num {
  opacity: 0.5;
  min-width: 24px;
}
body.tpl-remeselnik .kz-locked-icon {
  width: 22px;
  text-align: center;
  color: #fbcc01;
}
body.tpl-remeselnik .kz-locked-item.locked .kz-locked-icon {
  color: #f5efe0;
  opacity: 0.45;
}
body.tpl-remeselnik .kz-locked-name {
  flex: 1;
}
body.tpl-remeselnik .kz-locked-dur {
  opacity: 0.5;
  font-size: 0.8rem;
  min-width: 42px;
  text-align: right;
}
body.tpl-remeselnik .kz-locked-action {
  background: #fbcc01;
  color: #3d2a0f;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
body.tpl-remeselnik .kz-locked-action:hover {
  background: #ffd83a;
}
body.tpl-remeselnik .kz-locked-action.muted {
  background: transparent;
  color: #f5efe0;
  opacity: 0.5;
  border: 1px solid rgba(245, 239, 224, 0.25);
}

/* Preview mode — single preview lesson player */
body.tpl-remeselnik .kz-preview {
  background: #f5efe0;
  min-height: 60vh;
  padding: 30px 0 0;
  max-width: none;
  margin: 0;
}
body.tpl-remeselnik .kz-preview-video {
  background: #000;
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  margin: 0;
  box-shadow: none;
  overflow: hidden;
}
body.tpl-remeselnik .kz-preview-video video {
  width: 100%;
  height: 100%;
  display: block;
}
body.tpl-remeselnik .kz-preview-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 20px 40px;
  text-align: center;
}
body.tpl-remeselnik .kz-preview-eyebrow {
  color: #fbcc01;
  background: #3d2a0f;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 14px;
}
body.tpl-remeselnik .kz-preview-title {
  font-family: Georgia, serif;
  color: #573b16;
  font-size: 1.6rem;
  margin: 0 0 12px;
}
body.tpl-remeselnik .kz-preview-desc {
  color: #3d2a0f;
  line-height: 1.6;
  margin: 0 0 24px;
}
body.tpl-remeselnik .kz-preview-cta {
  background: #3d2a0f;
  color: #f5efe0;
  padding: 24px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
body.tpl-remeselnik .kz-preview-cta p {
  margin: 0;
}
body.tpl-remeselnik .kz-preview-cta strong {
  color: #fbcc01;
}
body.tpl-remeselnik .kz-preview-cta .kz-btn {
  color: #f5efe0;
  border-color: #f5efe0;
}
body.tpl-remeselnik .kz-preview-cta .kz-btn:hover {
  background: rgba(245, 239, 224, 0.1);
}
body.tpl-remeselnik .kz-preview-cta .kz-btn-primary {
  background: #fbcc01;
  color: #3d2a0f;
  border-color: #fbcc01;
}
body.tpl-remeselnik .kz-preview-cta .kz-btn-primary:hover {
  background: #ffd83a;
}

@media (max-width: 600px) {
  body.tpl-remeselnik .kz-locked-title { font-size: 1.4rem; }
  body.tpl-remeselnik .kz-locked-lessons { padding: 16px; }
  body.tpl-remeselnik .kz-locked-item { flex-wrap: wrap; }
  body.tpl-remeselnik .kz-locked-name { flex: 1 1 100%; order: 3; }
  body.tpl-remeselnik .kz-locked-action { margin-left: auto; }
}

body.tpl-remeselnik .kz-mobile-toggle {
  display: none;
}

@media (max-width: 768px) {
  body.tpl-remeselnik .kz-wrap {
    display: flex;
    flex-direction: column;
  }
  body.tpl-remeselnik .kz-video-wrap {
    order: 1;
    position: sticky;
    top: 0;
    z-index: 50;
  }
  body.tpl-remeselnik .kz-main {
    order: 2;
  }
  body.tpl-remeselnik .kz-sidebar {
    order: 3;
    position: relative;
    max-height: none;
    padding: 16px;
  }
  body.tpl-remeselnik .kz-lesson-body {
    padding: 20px 16px 24px;
  }
  body.tpl-remeselnik .kz-lesson-heading {
    font-size: 1.1rem;
    margin: 0 0 10px;
  }
  body.tpl-remeselnik .kz-lesson-desc {
    font-size: 13px;
    margin: 0 0 18px;
  }
  body.tpl-remeselnik .kz-progress-bar {
    margin: 0 0 6px;
  }
  body.tpl-remeselnik .kz-lesson-item a {
    padding: 8px 10px;
    font-size: 0.8rem;
  }
  body.tpl-remeselnik .kz-nav-buttons {
    flex-direction: column;
    padding-top: 14px;
  }
  body.tpl-remeselnik .kz-nav-buttons > * {
    width: 100%;
  }
  body.tpl-remeselnik .kz-btn {
    display: block;
    text-align: center;
    width: 100%;
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  body.tpl-remeselnik .kz-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #2a1a08;
    color: #f5efe0;
    border: none;
    padding: 12px 16px;
    font-family: Georgia, serif;
    font-size: 0.9rem;
    border-radius: 6px;
    cursor: pointer;
    margin: 8px 0 12px;
    transition: background 0.2s;
  }
  body.tpl-remeselnik .kz-mobile-toggle:hover {
    background: #1f1306;
  }
  body.tpl-remeselnik .kz-mobile-toggle::after {
    content: '▾';
    font-size: 0.8rem;
    margin-left: 8px;
    color: #fbcc01;
    transition: transform 0.2s;
  }
  body.tpl-remeselnik .kz-mobile-toggle.open::after {
    transform: rotate(180deg);
  }
  body.tpl-remeselnik .kz-mobile-toggle .kz-mobile-count {
    background: #fbcc01;
    color: #3d2a0f;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: auto;
    margin-right: 6px;
  }
}

/* ─── Course chat (student floating panel) ───────────────────────────────── */
body.tpl-remeselnik .kz-chat-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #573b16;
  color: #fbcc01;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: background 0.3s;
}
body.tpl-remeselnik .kz-chat-toggle:hover {
  background: #3d2a0f;
}
body.tpl-remeselnik .kz-chat-panel {
  position: fixed;
  bottom: 70px;
  right: 20px;
  width: 360px;
  height: 450px;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  z-index: 101;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
body.tpl-remeselnik .kz-chat-header {
  background: #573b16;
  color: #f5efe0;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Georgia, serif;
  font-size: 0.9rem;
}
body.tpl-remeselnik .kz-chat-close {
  background: none;
  border: none;
  color: #f5efe0;
  font-size: 1rem;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}
body.tpl-remeselnik .kz-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  background: #fafafa;
}
body.tpl-remeselnik .kz-chat-msg {
  max-width: 80%;
  padding: 8px 14px;
  border-radius: 12px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  line-height: 1.5;
  word-wrap: break-word;
}
body.tpl-remeselnik .kz-chat-msg.student {
  background: #f3f4f6;
  color: #1f2937;
  align-self: flex-start;
}
body.tpl-remeselnik .kz-chat-msg.admin {
  background: #573b16;
  color: #f5efe0;
  align-self: flex-end;
}
body.tpl-remeselnik .kz-chat-msg .kz-chat-time {
  font-size: 0.65rem;
  opacity: 0.55;
  margin-top: 4px;
}
body.tpl-remeselnik .kz-chat-input-wrap {
  display: flex;
  padding: 8px;
  border-top: 1px solid #e5e7eb;
  gap: 8px;
  background: #fff;
}
body.tpl-remeselnik .kz-chat-input {
  flex: 1;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.85rem;
  font-family: inherit;
}
body.tpl-remeselnik .kz-chat-send {
  background: #573b16;
  color: #fbcc01;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 0.85rem;
}
body.tpl-remeselnik .kz-chat-send:hover {
  background: #3d2a0f;
}
@media (max-width: 768px) {
  body.tpl-remeselnik .kz-chat-panel {
    width: calc(100% - 20px);
    right: 10px;
    bottom: 70px;
    height: 60vh;
    max-height: 480px;
  }
  body.tpl-remeselnik .kz-chat-toggle {
    bottom: 14px;
    right: 14px;
    padding: 10px 18px;
    font-size: 0.8rem;
  }
}

/* ─── Course product card — CTA block in right column, under lesson list ── */
body.tpl-remeselnik .esd-course-cta {
  text-align: center;
  margin-top: 24px;
}
body.tpl-remeselnik .esd-course-cta .esd-price-block {
  margin: 0 0 8px;
}
body.tpl-remeselnik .esd-course-cta .esd-price {
  font-size: 2rem;
}
body.tpl-remeselnik .esd-course-tagline {
  color: #573b16;
  font-size: 14px;
  margin: 8px 0 20px;
}
body.tpl-remeselnik .esd-course-cta .esd-add-btn {
  width: 100%;
}

/* ─── Course content on product page ─────────────────────────────────────── */
body.tpl-remeselnik .esd-course-info {
  background: #3d2a0f;
  border-radius: 8px;
  padding: 24px;
  margin: 0 0 24px;
  color: #f5efe0;
}
body.tpl-remeselnik .esd-course-title {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  color: #fbcc01;
  margin: 0 0 12px;
}
body.tpl-remeselnik .esd-course-meta {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 16px;
}
body.tpl-remeselnik .esd-course-lessons {
  list-style: none;
  padding: 0;
  margin: 0;
}
body.tpl-remeselnik .esd-course-lesson {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(245, 239, 224, 0.1);
  font-size: 0.85rem;
}
body.tpl-remeselnik .esd-course-lesson:last-child {
  border-bottom: none;
}
body.tpl-remeselnik .esd-cl-num {
  opacity: 0.5;
  min-width: 24px;
}
body.tpl-remeselnik .esd-cl-title {
  flex: 1;
}
body.tpl-remeselnik .esd-cl-dur {
  opacity: 0.5;
  font-size: 0.8rem;
}
body.tpl-remeselnik .esd-cl-preview {
  background: #fbcc01;
  color: #3d2a0f;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}
body.tpl-remeselnik .esd-cl-preview:hover {
  background: #ffd83a;
}
body.tpl-remeselnik .esd-course-lesson.preview {
  background: rgba(251, 204, 1, 0.05);
}
body.tpl-remeselnik .esd-course-note {
  font-size: 0.8rem;
  opacity: 0.6;
  margin: 16px 0 0;
  font-style: italic;
}

/* ─── Certifikát ──────────────────────────────────────────────────────────── */
body.tpl-remeselnik .cert-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5efe0;
  padding: 40px 20px;
}
body.tpl-remeselnik .cert-card {
  max-width: 700px;
  width: 100%;
  background: #fff;
  border: 3px solid #573b16;
  border-radius: 8px;
  padding: 50px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
body.tpl-remeselnik .cert-header {
  border-bottom: 2px solid #573b16;
  padding-bottom: 24px;
  margin-bottom: 30px;
}
body.tpl-remeselnik .cert-logo {
  max-width: 120px;
  margin-bottom: 16px;
}
body.tpl-remeselnik .cert-header h1 {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  color: #573b16;
  margin: 0;
}
body.tpl-remeselnik .cert-body p {
  color: #573b16;
  margin: 6px 0;
}
body.tpl-remeselnik .cert-name {
  font-family: Georgia, serif;
  font-size: 2rem;
  color: #573b16;
  font-weight: 700;
  margin: 24px 0 8px;
}
body.tpl-remeselnik .cert-course {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  color: #fbcc01;
  background: #573b16;
  display: inline-block;
  padding: 8px 24px;
  border-radius: 6px;
  margin: 16px 0;
}
body.tpl-remeselnik .cert-date {
  color: #573b16;
  font-size: 0.9rem;
  margin: 16px 0 4px;
}
body.tpl-remeselnik .cert-code {
  color: #999;
  font-size: 0.8rem;
  font-family: monospace;
}
body.tpl-remeselnik .cert-footer {
  border-top: 2px solid #573b16;
  padding-top: 20px;
  margin-top: 30px;
  color: #573b16;
  font-size: 0.85rem;
}
body.tpl-remeselnik .cert-footer p {
  margin: 4px 0;
}
@media (max-width: 600px) {
  body.tpl-remeselnik .cert-card { padding: 30px 20px; }
  body.tpl-remeselnik .cert-name { font-size: 1.5rem; }
  body.tpl-remeselnik .cert-course { font-size: 1.1rem; padding: 6px 16px; }
  body.tpl-remeselnik .cert-header h1 { font-size: 1.3rem; }
}

/* ─── Product card buttons — mobile layout fix ───────────────────────────── */
@media (max-width: 600px) {
  body.tpl-remeselnik .esd-actions {
    flex-wrap: wrap;
    gap: 10px;
  }
  body.tpl-remeselnik .esd-actions .esd-qty {
    width: 100%;
    justify-content: center;
  }
  body.tpl-remeselnik .esd-add-btn {
    width: 100% !important;
    padding: 14px 20px !important;
    flex: 1 1 100% !important;
  }
  body.tpl-remeselnik .esd-extra-btns {
    flex-direction: column;
    align-items: stretch;
  }
  body.tpl-remeselnik .esd-extra-btn {
    text-align: center;
  }
}

/* ─── Workshop registration ─────────────────────────────────────────────── */
body.tpl-remeselnik .ws-registration {
  background: #f5efe0;
  padding: 40px 30px;
  max-width: 100%;
  margin: 0;
  box-sizing: border-box;
}
body.tpl-remeselnik .ws-form {
  max-width: 100%;
}
body.tpl-remeselnik .ws-date-card {
  max-width: 100%;
}
body.tpl-remeselnik .ws-title {
  font-family: Georgia, serif;
  color: #573b16;
  font-size: 1.6rem;
  text-align: center;
  margin: 0 0 30px;
}
body.tpl-remeselnik .ws-dates-heading {
  font-family: Georgia, serif;
  color: #573b16;
  font-size: 1.1rem;
  margin: 0 0 12px;
}
body.tpl-remeselnik .ws-date-card {
  background: #3d2a0f;
  color: #f5efe0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
body.tpl-remeselnik .ws-date-card.full {
  opacity: 0.55;
}
body.tpl-remeselnik .ws-date-info {
  flex: 1 1 240px;
}
body.tpl-remeselnik .ws-date-day {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fbcc01;
  display: block;
  margin-bottom: 4px;
}
body.tpl-remeselnik .ws-date-time,
body.tpl-remeselnik .ws-date-location {
  font-size: 0.85rem;
  opacity: 0.85;
  display: block;
}
body.tpl-remeselnik .ws-date-spots {
  text-align: right;
}
body.tpl-remeselnik .ws-spots-left {
  color: #fbcc01;
  font-size: 0.85rem;
  font-weight: 600;
  display: block;
}
body.tpl-remeselnik .ws-spots-full {
  color: #e74c3c;
  font-weight: 700;
}
body.tpl-remeselnik .ws-price {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fbcc01;
  margin-top: 4px;
}
body.tpl-remeselnik .ws-select-btn {
  background: #fbcc01;
  color: #3d2a0f;
  border: none;
  border-radius: 6px;
  padding: 10px 24px;
  font-family: Georgia, serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}
body.tpl-remeselnik .ws-select-btn:hover {
  background: #ffd83a;
}
body.tpl-remeselnik .ws-form {
  margin-top: 30px;
  background: #fff;
  border: 1px solid #d4c5a0;
  border-radius: 8px;
  padding: 30px;
}
body.tpl-remeselnik .ws-form h3 {
  font-family: Georgia, serif;
  color: #573b16;
  margin: 0 0 20px;
}
body.tpl-remeselnik .ws-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
body.tpl-remeselnik .ws-field label {
  display: block;
  font-size: 0.85rem;
  color: #573b16;
  font-weight: 600;
  margin-bottom: 4px;
}
body.tpl-remeselnik .ws-field input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d4c5a0;
  border-radius: 6px;
  font-size: 14px;
  color: #3d2a0f;
  background: #faf8f3;
  font-family: inherit;
}
body.tpl-remeselnik .ws-field input:focus {
  outline: 2px solid #573b16;
  outline-offset: -1px;
  background: #fff;
}
body.tpl-remeselnik .ws-consents {
  margin-bottom: 20px;
}
body.tpl-remeselnik .ws-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: #3d2a0f;
  cursor: pointer;
  line-height: 1.5;
}
body.tpl-remeselnik .ws-consent input[type="checkbox"] {
  margin-top: 3px;
  min-width: 18px;
  min-height: 18px;
  accent-color: #573b16;
}
body.tpl-remeselnik .ws-payment-info {
  background: #faf8f3;
  border: 1px solid #d4c5a0;
  border-radius: 6px;
  padding: 16px;
  font-size: 0.85rem;
  color: #573b16;
  margin-bottom: 20px;
  line-height: 1.6;
}
body.tpl-remeselnik .ws-submit {
  background: #573b16;
  color: #fbcc01;
  border: none;
  border-radius: 6px;
  padding: 12px 30px;
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
  display: block;
  width: 100%;
}
body.tpl-remeselnik .ws-submit:hover:not(:disabled) {
  background: #3d2a0f;
}
body.tpl-remeselnik .ws-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
body.tpl-remeselnik .ws-msg {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
}
body.tpl-remeselnik .ws-msg-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
body.tpl-remeselnik .ws-msg-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
@media (max-width: 768px) {
  body.tpl-remeselnik .ws-title {
    font-size: 1.2rem;
    line-height: 1.35;
  }
  body.tpl-remeselnik .ws-form-grid {
    grid-template-columns: 1fr;
  }
  body.tpl-remeselnik .ws-date-card {
    flex-direction: column;
    text-align: center;
    align-items: stretch;
    gap: 12px;
    padding: 16px;
  }
  body.tpl-remeselnik .ws-date-info {
    flex: 0 1 auto;
  }
  body.tpl-remeselnik .ws-date-spots {
    text-align: center;
  }
  body.tpl-remeselnik .ws-select-btn {
    width: 100%;
  }
}

/* INFORMÁCIE O VÝROBKU heading — mobile downsize so the line doesn't wrap awkwardly */
@media (max-width: 768px) {
  body.tpl-remeselnik .esd-info-title {
    font-size: 1.1rem !important;
    word-break: normal;
    overflow-wrap: break-word;
  }
}

/* mobile: RÝCHLA DOSTUPNOSŤ line-overlap fix + footer logo/map overflow fix */
@media (max-width: 768px) {
  body.tpl-remeselnik .esd-dostupnost {
    font-size: 1.1rem;
    line-height: 1.4;
  }
  .ri-logo-img {
    max-width: 180px !important;
    height: auto !important;
  }
  .ri-map iframe {
    max-width: 100%;
  }
}
.bk-service-card {
  background: #fff !important;
  border: none !important;
  border-right: 1px solid var(--bsc-border, #d4c9b5) !important;
  border-bottom: 1px solid var(--bsc-border, #d4c9b5) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 28px 24px !important;
  transition: background 0.2s !important;
}
.bk-service-card:hover {
  background: var(--bsc-bg-cream, #f5f0e4) !important;
  transform: none !important;
  box-shadow: none !important;
  border-color: var(--bsc-border, #d4c9b5) !important;
}
.bk-service-card.bk-active,
.bk-service-card.bk-selected {
  background: var(--bsc-text-deep, #0a1c3a) !important;
  border-color: var(--bsc-text-deep, #0a1c3a) !important;
}
.bk-service-card.bk-active .bk-service-card-name,
.bk-service-card.bk-selected .bk-service-card-name {
  color: #fff !important;
}
.bk-service-card.bk-active .bk-service-card-price,
.bk-service-card.bk-selected .bk-service-card-price {
  color: var(--bsc-accent-gold, #a47e2a) !important;
}
.bk-service-card.bk-active .bk-service-card-desc,
.bk-service-card.bk-selected .bk-service-card-desc {
  color: rgba(255,255,255,0.7) !important;
}
.bk-service-card-icon { display: none !important; }
.bk-service-card-check { display: none !important; }
.bk-service-card-name {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-weight: 400 !important;
  color: var(--bsc-text-deep, #0a1c3a) !important;
  font-size: 22px !important;
  letter-spacing: -0.005em !important;
  margin-bottom: 8px !important;
}
.bk-service-card-desc {
  font-family: 'Lora', Georgia, serif !important;
  font-size: 14px !important;
  color: var(--bsc-text-muted, #6b6558) !important;
  line-height: 1.55 !important;
  margin-bottom: 12px !important;
}
.bk-service-card-price {
  font-family: 'Inter', sans-serif !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.18em !important;
  color: var(--bsc-accent-gold, #a47e2a) !important;
  font-weight: 500 !important;
}

@media (max-width: 768px) {
  body.tpl-remeselnik .esd-info > .esd-ornament,
  body.tpl-remeselnik .esd-info > .esd-brxa-logos,
  body.tpl-remeselnik .esd-info > .esd-dostupnost,
  body.tpl-remeselnik .esd-info > .esd-dostupnost-icon,
  body.tpl-remeselnik .esd-info > .esd-info-title { display: none; }
}
