




/* === Jednotná velikost písma v e-shopu === */
:root{
  --font-size-base: 16px; /* ← změň si na 15px / 17px podle potřeby */
}

html{ font-size: var(--font-size-base); }

body{
  font-size: 1rem;
  line-height: 1.55;
}

/* sjednocení pro běžné textové prvky */
body, p, a, li, span, label, small, strong, em{
  font-size: 1rem;
}

/* sjednocení formulářů (často mají vlastní velikost) */
input, select, textarea, button{
  font-size: 1rem;
}

/* Phoca Cart – typické texty (když by něco ujíždělo) */
.phocacart, .ph-item, .ph-item-title, .ph-item-price, .ph-item-desc,
.ph-cart, .ph-checkout, .ph-account{
  font-size: 1rem;
}


#vlevo div.row {width: 250px;}
.ph-cart-link-checkout{/*! width: 200px; */text-align: center;}


/* -------------------------------------------------
   ZÁKLAD – společné styly (desktop design)
   ------------------------------------------------- */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* Obrázky responsivně */
img {
  max-width: 100%;
  height: auto;
}
.khk  {
  background: #fff; padding:10px
}

#Vrstva_1 {
  height: 100px;
  width: 100%;
}

.ph-desc a {
  font-weight: bold;
}

.ph-product-header {
  margin: 0;
  font-variant-caps: all-petite-caps;
}

.ph-item-desc {
  margin: 0;
  text-align: center;
}

.ph-product-header a {
  color: #d22e32;
}

#vlevo a {
  color: #d22e32;
}



.top-logout-form{display:inline;margin:0}
.top-logout-btn{
  background:none;
  border:0;
  padding:0;
  margin:0;
  font:inherit;
  color:inherit;
  cursor:pointer;
  text-decoration:underline;
}
.top-logout-btn:hover{opacity:.85}


.partners-strip{
  width:100%;
  padding:18px 22px;
  display:flex;
  flex-wrap:wrap;            /* ✅ umožní zalamování */
  gap:14px;
  align-items:stretch;
  justify-content:flex-start;
  overflow:visible;          /* už není potřeba scroll */
}

.partner-box{
  width:auto;                /* width už neřešíme */
  height:96px;
  background:#fff;
  border-radius:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:8px;
  font:800 12px/1.15 system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  color:#111;
  box-shadow:0 6px 18px rgba(0,0,0,.25);

  flex:0 0 calc((100% - 14px*3) / 4); /* ✅ desktop 4 vedle sebe */
}

.partner-box span{display:block}

/* Tablet: 3 vedle sebe */
@media (max-width: 980px){
  .partners-strip{
    padding:16px 16px;
    gap:12px;
  }
  .partner-box{
    flex-basis:calc((100% - 12px*2) / 3);
  }
}

/* Mobil: 2 vedle sebe */
@media (max-width: 640px){
  .partners-strip{
    padding:14px 14px;
    gap:10px;
  }
  .partner-box{
    height:90px;
    font-size:11px;
    flex-basis:calc((100% - 10px) / 2); /* ✅ 2 na řádek */
  }
}

/* =========================================================
   ROZCESTNÍK – NOVÝ DESIGN (logo 100% na střed)
   ========================================================= */

.rc-nav{
  background:#fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.14);
  position: relative;
  z-index:980;
  height: 70px;
}

.rc-wrap{
  --rc-max: 1100px;
  --rc-pad: 12px;
  --rc-logo: 92px;          /* velikost loga */
  --rc-logo-lift: 28px;     /* jak moc je logo “nad lištou” */
  --rc-gap: 10px;

  max-width: var(--rc-max);
  margin: 0 auto;
  padding: 26px var(--rc-pad) 18px;
  position: relative;
}

/* LOGO – absolutně na 50% (tohle je ten klíč) */
.rc-logo{
  position: absolute;
  left: 50%;
  top: 15px;
  transform: translate(-50%, calc(-1 * var(--rc-logo-lift)));
  width: var(--rc-logo);
  height: var(--rc-logo);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 14px 26px rgba(0,0,0,.18);
  display: grid;
  place-items: center;
  text-decoration: none;
}

.rc-logo img{
  width: calc(var(--rc-logo) - 18px);
  height: calc(var(--rc-logo) - 18px);
  object-fit: contain;
  display:block;
}

/* MENU (desktop/tablet) */
.rc-menu{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 18px;
}

/* levá/pravá část: odsazení od loga, aby to nikdy “nelezlo” pod něj */
.rc-col{
  display: flex;
  gap: var(--rc-gap);
  flex-wrap: wrap;
  align-items: center;
}

.rc-col--left{
  justify-content: flex-end;
  padding-right: calc(var(--rc-logo) / 2 + 18px);
}
.rc-col--right{
  justify-content: flex-start;
  padding-left: calc(var(--rc-logo) / 2 + 18px);
}

/* chip odkazy */
.rc-col a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
}

.rc-col a:hover{
  background: #eef2ff;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0,0,0,.10);
}

/* HAMBURGER (default skrytý na desktopu) */
.rc-burger{
  display: none;
  position: absolute;
  left: var(--rc-pad);
  top: 10px;
  width: 44px;
  height: 44px;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 18px rgba(0,0,0,.08);
  cursor: pointer;
}

.rc-burger span{
  display:block;
  height: 2px;
  background: #111827;
  margin: 6px 10px;
  border-radius: 999px;
}

/* =========================================================
   MOBIL
   ========================================================= */
@media (max-width: 699px){

  .rc-wrap{
    --rc-logo: 78px;
    --rc-logo-lift: 18px;
    padding: 18px var(--rc-pad) 12px;
  }

  /* burger viditelný */
  .rc-burger{ display: block; }

  /* mobilní menu: default skryté, otevře hamburger */
  .rc-menu{
    display: none;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 58px;
    padding-top: 10px;
    border-top: 1px solid #eef0f3;
    background: #0009;
    padding: 10px;
    position: absolute;
    bottom: 30px;
    width: 100%;
  }
  .rc-menu.is-open{ display: grid; }

  /* na mobilu vše do jedné kolony – ať je to přehledné */
  .rc-col{
    justify-content: center;
    padding: 0 !important;
  }

  /* lehce menší chipy */
  .rc-col a{
    padding: 10px 12px;
    font-size: 1.02em;
  }
}

/* =========================================================
   TABLET jemné doladění
   ========================================================= */
@media (max-width: 980px){
  .rc-wrap{ --rc-logo: 76px; }
  .rc-col a{ padding: 9px 12px; }
}

/* CTA tlačítko Aktuální nabídka / indexodzak */
a.indexodzak,
a.indexodkaz {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  border-radius: 999px;
  background: linear-gradient(-220deg, #d91f5c 35%, #f21414 100%);
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  border: none;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

a.indexodzak:hover,
a.indexodzak:focus,
a.indexodzak:hover,
a.indexodzak:focus,
a.indexodkaz:hover,
a.indexodkaz:focus {
  background: linear-gradient(-220deg, #22a144 35%, #689332 100%);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

a.indexodzak:active,
a.indexodzak:active,
a.indexodkaz:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

/* Horní kontaktní lišta */
.kontakttop {
  background-color: #fff;
  color: #888;
  padding-top: 10px;
  padding-bottom: 10px;
  height: 40px;
  font-size: 1.1em;
}

.kontakttop a {
  color: #888;
}

.kontakttopleft {
  width: 50%;
  float: left;
}

.kontakttopright {
  width: 50%;
  float: right;
  text-align: right;
}

.mena .phoca {
  display: none;
}

.pc-status-skladem {
  color: #00c100;
  font-weight: bold;
}

#phItemCurrencyBoxBtn {
  display: none;
}

.ph-item-price-panel {
  padding: 10px;
  border: 1px solid #dadbdd;
  box-shadow: 2px 2px 8px 0 rgba(138, 138, 138, 0.2);
  text-shadow: 1px 1px #fff;
  text-align: center;
  background-image: linear-gradient(#fdfdfd, #ececec99);
}

/* Rozcestník a logo Orlické hory */
.rozcestnik {
  background: white;
  width: 100%;
  position: relative;
  padding: 10px 0;
  box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
  height: 50px;
}

.original {
  position: absolute;
  top: -28px;
  background: white;
  border-radius: 50%;
  height: 130px;
  width: 130px;
  margin: 0 auto;
  left: 0;
  right: 0;
  z-index: 10;
  box-shadow: 0 6px 2px -2px rgba(0, 0, 0, 0.2);
}

.rozcestnika {
  float: left;
  width: 43.5%;
  padding: 0;
  margin: 0;
  position: relative;
}

.rozcestnikb {
  float: left;
  width: 13%;
  margin: 0 auto;
}

.rozcestnikc {
  float: right;
  width: 40.5%;
  text-align: left;
}

#rozcestniktext {
  float: inline-start;
  padding-right: 9%;
  margin: 0;
  position: relative;
  padding-top: 5px;
  font-size: 1.32em;
  color: #091c3d;
  font-weight: bold;
  text-decoration-line: none;
}

/* Krabice s produkty */
.ph-item-box {
  box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2% 5px;
  margin: 10px 0;
}

.ph-item-price-panel h1 {
  font-variant-caps: petite-caps;
  color: #e8236d;
  text-shadow: 2px 2px #fff;
  text-align: center;
}

.ph-category-module-box {
  background: white;
  padding: 10px;
}

.ph-price-txt {
  display: none;
}

.ph-price-brutto {
  font-variant-caps: petite-caps;
  color: #868484;
  text-shadow: 2px 2px #fff;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  font-size: 1.52em;
}

.ph-top {
  margin-bottom: 1em;
}

#paticka .odkazy {
  float: left;
  width: 70%;
}

#logo_hlavicka {
  font-family: calibri;
  display: flex;
  background-color: #fff;
  height: 109px;
  width: 100%;
  padding: 9px;
  background-size: cover;
}

#ph-pc-category-box #phItemTopBoxForm {
  padding-bottom: 20px;
}

#ph-pc-category-box .kategorie {
  background: white;
  padding: 1px 10px;
  box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
}

.titulek_left {
  font-weight: bold;
  color: black;
  font-size: 1.1em;
  text-transform: uppercase;
  background: yellow;
  box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 10px;
  margin-top: 23px;
}

.left_menu {
  background: white;
  box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 10px;
  font-size: 1.1em;
}

/* Úvodní modul */
.uvodmodul {
  width: 100%;
  box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 10px;
  background: white;
}

.uvodmodul h2 {
  text-transform: uppercase;
  line-height: 0;
}

#mod-custom129 {
  margin-top: -22px;
}

#mod-custom137 {
  height: 100%;
  box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 10px;
  background: white;
}

.tucne {
  font-weight: bold;
  color: black;
}

/* Doporučené produkty */
#doporucene {
  display: flow-root;
  columns: 3;
  text-align: center;
  margin: 0;
  padding: 0;
}

#doporucene h3 {
  text-align: center;
  padding: 10px 0;
  display: inline-block;
  color: grey;
  font-size: 1em;
  font-weight: inherit;
  height: 62px;
}

#doporucene .ph-item-box {
  padding: 5px;
  background: white;
  margin: 0 0 14px 0;
  height: 420px;
  box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
  display: flex;
}

#doporucene .ph-product-module-box {
  padding: 0;
  margin: 0;
}

#doporucene .phIBox {
  background: white;
  height: 235px;
}

#doporucene .ph-thumbnail {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
  background: white;
}

#doporucene .ph-image {
  box-shadow: 0 3px 8px -8px #000;
  height: 250px;
}

/* Phoca index */
.pc-category-viewindex .ph-cb {
  display: none;
}

.pc-category-viewindex #phItemTopBoxForm {
  display: none;
}

.pc-category-viewindex .ph-header {
  display: none;
}

.pc-category-viewindex .ph-top {
  display: none;
}

/* Tělo stránky – desktop */
body {
  font-family: Calibri, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #111;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9)),
    url("/templates/monika_vrkoslavova_sablona/images/slider02.jpg")
      no-repeat center top fixed;
  background-size: cover;
  margin: 0;
  padding: 0;
}

/* Rychlý kontakt (šedý pruh) */
#rychly_kontakt {
  background: #d6d4d5;
  display: flex;
  padding: 0;
  font-size: 0.9em;
}

.container {
  width: 1100px;
  margin: 0 auto;
}

.napiste {
  width: 30%;
  float: left;
  padding-top: 10px;
}

.nabidka {
  width: 70%;
  float: right;
  text-align: right;
  font-size: 1.2em;
  font-weight: bold;
}

.jazyk a {
  color: black;
}

.ph-currency-list a:hover {
  background: yellow;
  border-radius: 0.2rem;
}

.jazyk a:hover {
  background: yellow;
  border-radius: 0.2rem;
  padding: 5px;
}

.nabidka_prodkuktu {
  padding: 10px;
  background: yellow;
  box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
  font-size: 15px;
  font-weight: bold;
  margin-top: 23px;
  margin-bottom: 23px;
}

.ph-currency-list-suffix {
  display: inline-block;
  font-weight: 400;
  line-height: 1.1;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
}

.ph-currency-list-box a {
  text-decoration-line: none;
  color: black;
}

.jazyk,
.mena {
  float: right;
  text-align: right;
  padding-top: 7px;
  margin-right: 10px;
  display: flex;
}

.jazyktit,
.menatit {
  float: left;
  font-weight: revert;
  color: #aeaeae;
  padding-right: 14px;
  text-transform: uppercase;
  font-size: 1em;
}

.kosik,
.mena,
.ph-currency-list-suffix {
  float: right;
  text-align: right;
}

/* Top bar */
#top {
  height: 70px;
  border: 0.5px solid #d0d0d0;
}

/* Logo */
.logo > div:nth-child(1) > svg:nth-child(1) {
  color: white;
  padding: 10px;
}

.logo {
  width: 50%;
  margin: 0 auto;
  height: auto;
}

.logo img {
  margin: 0 auto;
  padding-top: 8px;
}

div.ph-cart-module-box:nth-child(2) > div:nth-child(1) > div:nth-child(2) {
  width: 294px;
}

.login a {
  margin: 0 auto;
  text-align: center;
  text-decoration-line: none;
  position: absolute;
}

div.login {
  width: 20%;
  display: flex;
  float: right;
}

div.com-users-login {
  width: 100%;
  display: block;
  margin: 10px;
}

/* Střed stránky */
.stred {
  background: white;
}

#center {
  content: "";
  display: table;
  clear: both;
  margin-bottom: 2%;
  width: 100%;
  padding-top: 7%;
}

#center a {
  text-decoration-line: none;
}

.card-header {
  list-style: none;
  background: #cecece;
  padding: 21px;
  margin: 3px;
  color: #464444;
  font-weight: normal;
  font-family: Calibri;
}

.card {
  width: 100%;
}

/* Levý sloupec */
#vlevo {
  float: left;
  color: #111;
  width: 25%;
}

#vlevo .dropdown {
  background: white;
}

/* Boxy (košík, uživatel, vizitka) */
.ph-cart-module-box,
.userdata {
  box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2% 5px;
  margin: 10px 0;
  border-radius: 20px;
}

.vizitka {
  box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding:
  3% 5px;
  margin: 10px 0;
  border-radius: 20px;
}

.vizitkafotka {
  float: left;
  width: 100px;
}

img.vizitkafotka {
  width: 54%;
  margin: auto 23%;
}

.vizitkatext {
  font-weight: bold;
  font-size: 1.25em;
  text-align: center;
  color: #d22e32;
}

.vizitkatext2 {
  font-size: 1.1em;
  font-style: italic;
  text-align: center;
  padding: 8px 0;
  color: #111;
}

.vizitkatext3 {
  font-size: 0.9em;
  font-style: normal;
  text-align: center;
  color: #111;
}

/* Tlačítko v košíku */
#phItemCartBoxBtn {
  color: #7dc891;
}

/* Obsahová stránka */
.stranka {
  background: white;
  margin: 10px 0;
  padding: 10px;
  color: #111;
  width: 100%;
}

/* Patička */
#paticka {
  background: #424242;
  color: #b7b7b7;
  padding-top: 1%;
  padding-bottom: 1%;
}

#paticka a {
  color: grey;
  font-weight: normal;
}

/* Pravý sloupec */
#vpravo {
  float: right;
  color: #111;
  width: 25%;
}

.fotokontakt {
  display: block;
  color: #111;
  margin-top: 5px;
  width: 100%;
  box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
  height: auto;
}

/* Hlavní obsah */
#komponenty {
  float: right;
  width: 73%;
  font-size: 1.1em;
  display: block;
}

.com-content-article {
  background: white;
  padding: 10px;
}

.com-content-category-blog {
  background: #fff;
  padding: 20px;
}

.kontakt {
  padding-bottom: 30px;
  margin: 10px;
  color: #000;
}

/* Copy v patičce */
.copy {
  color: #757575;
}

.copy a {
  color: #757575;
}

/* Ikony */
img.ikony {
  padding: 14px 3px 0 4px;
  width: 30px;
  float: left;
  height: auto;
  margin: 0;
}

div.kon {
  font-size: 1em;
}

/* Andílek */
.andilek {
  position: relative;
  top: -130%;
  width: 140px;
  float: right;
  border-radius: 50%;
  height: 140px;
  margin: 0 auto;
}

.andilek > img {
  position: absolute;
  width: 170px;
  float: left;
  background: white;
  border-radius: 50%;
  height: 170px;
  margin: 0 auto;
  padding: 15%;
  display: none;
}

/* Menu vlevo */
#menul {
  background: linear-gradient(-280deg, rgb(23, 23, 23) 35%, rgb(49, 51, 49) 100%);
  display: block;
  box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
  margin-top: -5px;
  width: 100%;
  border-radius: 20px;
}

#menul a.tit {
  font-weight: 600;
  border-bottom: 2px solid rgba(0, 0, 0, 0.25);
  width: 100%;
  display: inline flow-root list-item;
  padding-bottom: 10px;
  font-size: 1.2em;
}

#menul a.eshop {
  font-weight: 600;
  width: 100%;
  display: inline flow-root list-item;
  padding-bottom: 10px;
  font-size: 1.4em;
}

#menul.mod-list li {
  list-style: none;
  padding: 20px 0;
  border-bottom: 1px solid white;
  text-shadow: 1px 1px #4d4d4d;
}

#menul a {
  color: #fff;
  margin: 11px;
  font-size: 1.2em;
}

.active a {
  color: #fff;
}

#menul ul {
  padding: 0;
}

.mod-list li {
  font-weight: bold;
  color: #fffb00;
  text-shadow: 1px 1px 0 #2d2d2d;
}

.mod-list li a {
  color: #fff;
  text-shadow: 1px 1px 3px #101d35;
  padding: 10px;
  text-decoration-line: none;
}

/* Slider misc */
.sl01 {
  float: left;
  width: 45%;
  margin-top: 20px;
  padding-top: 3%;
}

.sl0 {
  float: right;
  width: 48%;
  text-align: right;
  margin: 20px;
  padding-top: 3%;
  color: white;
}

/* Partneři */
.partneri {
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
}

.partneri > div {
  margin-top: 5%;
  margin-bottom: 5%;
  padding: 2% 0;
  margin: 0 auto;
}

/* -------------------------------------------------
   SLIDER – když tam není .indexslidtext, zkrátit
   ------------------------------------------------- */
.slider:not(:has(.indexslidtext)) {
  background: none !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
}

.slider:not(:has(.indexslidtext)) .sliders {
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
}

.slider:not(:has(.indexslidtext)) .indexslid {
  height: auto !important;
  padding: 0 !important;
}

/* =========================================================
   DESKTOP + TABLET – od 700 px nahoru
   ========================================================= */
@media only screen and (min-width: 700px) {

  .slider {
    /*! background-image: url(/templates/monika_vrkoslavova_sablona/images/slider01.jpg); */
    /*! background-size: cover; */
    /*! background-position: center; */
    height: 620px;
  }

  .slider .indexslid {
    /*! padding-top:0%; */
    padding-bottom: 5%;
    height: 700px;
    background-size: cover;
    background-position: bottom;
    float: left;
    width: 50%;
    display: contents;
  }

  .indexslid > img {
    padding-top: 11%;
    padding-bottom: 0;
  }

  .indexslidtext {
    float: left;
    font-size: 2.253em;
    color: #fff;
    padding: 17% 0 0 0;
    font-variant-caps: all-petite-caps;
    text-align: center;
    text-shadow: 0 0 5px black;
    font-weight: bold;
    margin: 0 auto;
    align-items: center;
    width: 100%;
  }

  .indextext {
    padding-bottom: 10%;
  }

  /* Tlačítko "Aktuální nabídka" */
  a.indexodkaz {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    border-radius: 999px;
    background: linear-gradient(-220deg, #d91f5c 35%, #f21414 100%);
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 1.4rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease,
                box-shadow 0.15s ease;
  }

  a.indexodkaz:hover,
  a.indexodkaz:focus {
    background: linear-gradient(-220deg, #22a144 35%, #689332 100%);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
  }

  a.indexodkaz:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  }

  .kontakttop {
    background-color: #fff;
    color: #888;
    padding-top: 10px;
    padding-bottom: 10px;
    height: 40px;
    font-size: 1.1em;
    margin-bottom: 2px;
  }

  .kontakttop a {
    color: #888;
  }

  .kontakttopleft {
    width: 80%;
    float: left;
  }

  .kontakttopright {
    width: 110px;
    float: right;
    text-align: right;
  }

  .mena .phoca {
    display: none;
  }

  .pc-status-skladem {
    color: #00c100;
    font-weight: bold;
  }

  #phItemCurrencyBoxBtn {
    display: none;
  }

  .ph-item-price-panel {
    padding: 10px;
    border: 1px solid #dadbdd;
    box-shadow: 2px 2px 8px 0 rgba(138, 138, 138, 0.2);
    text-shadow: 1px 1px #fff;
    text-align: center;
    background-image: linear-gradient(#fdfdfd, #ececec99);
  }

  .rozcestnik {
    background: white;
    width: 100%;
    position: relative;
    padding: 10px 0;
    box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
    height: 50px;
  }

  .original {
    position: absolute;
    top: -28px;
    background: white;
    border-radius: 50%;
    height: 130px;
    margin: 0 auto;
    z-index: 10;
    box-shadow: 0 6px 2px -2px rgba(0, 0, 0, 0.2);
  }

  .rozcestnika {
    float: left;
    width: 43.5%;
    padding: 0;
    margin: 0;
    position: relative;
  }

  .rozcestnikb {
    float: left;
    width: 13%;
    margin: 0 auto;
  }

  .rozcestnikc {
    float: right;
    width: 40.5%;
    text-align: left;
  }

  #rozcestniktext {
    float: inline-start;
    padding-right: 9%;
    margin: 0;
    position: relative;
    padding-top: 5px;
    font-size: 1.32em;
    color: #091c3d;
    font-weight: bold;
    text-decoration-line: none;
  }

  .ph-item-box {
    box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 2% 5px;
    margin: 10px 0;
  }

  .ph-item-price-panel h1 {
    font-variant-caps: petite-caps;
    color: #e8236d;
    text-shadow: 2px 2px #fff;
    text-align: center;
  }

  .ph-category-module-box {
    background: white;
    padding: 10px;
  }

  .ph-price-txt {
    display: none;
  }

  .ph-price-brutto {
    font-variant-caps: petite-caps;
    color: #868484;
    text-shadow: 2px 2px #fff;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    font-size: 1.52em;
  }

  .ph-top {
    margin-bottom: 1em;
  }

  #paticka .odkazy {
    float: left;
    width: 70%;
  }

  #logo_hlavicka {
    font-family: calibri;
    display: flex;
    background-color: #fff;
    height: 109px;
    width: 100%;
    padding: 9px;
    background-size: cover;
  }

  #ph-pc-category-box #phItemTopBoxForm {
    padding-bottom: 20px;
  }

  #ph-pc-category-box .kategorie {
    background: white;
    padding: 1px 10px;
    box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
  }

  .titulek_left {
    font-weight: bold;
    color: black;
    font-size: 1.1em;
    text-transform: uppercase;
    background: yellow;
    box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 10px;
    margin-top: 23px;
  }

  .left_menu {
    background: white;
    box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 10px;
    font-size: 1.1em;
  }

  .uvodmodul {
    width: 400px;
    box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
    width: 100%;
    padding: 10px;
    background: white;
  }

  .uvodmodul h2 {
    text-transform: uppercase;
    line-height: 0;
  }

  #mod-custom129 {
    margin-top: -22px;
  }

  #mod-custom137 {
    height: 100%;
    box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 10px;
    background: white;
  }

  .tucne {
    font-weight: bold;
    color: black;
  }

  #doporucene {
    display: flow-root;
    columns: 3;
    text-align: center;
    margin: 0;
    padding: 0;
  }

  #doporucene h3 {
    text-align: center;
    padding: 10px 0;
    height: auto;
    display: inline-block;
    color: grey;
    font-size: 1em;
    font-weight: inherit;
    height: 62px;
  }

  #doporucene .ph-item-box {
    padding: 5px;
    background: white;
    margin: 0 0 14px 0;
    height: 420px;
    box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
    display: flex;
  }

  #doporucene .ph-product-module-box {
    padding: 0;
    margin: 0;
  }

  #doporucene .phIBox {
    background: white;
    height: 235px;
  }

  #doporucene .ph-thumbnail {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    background: white;
  }

  #doporucene .ph-image {
    box-shadow: 0 3px 8px -8px #000;
    height: 250px;
  }

  .pc-category-viewindex .ph-cb {
    display: none;
  }

  .pc-category-viewindex #phItemTopBoxForm {
    display: none;
  }

  .pc-category-viewindex .ph-header {
    display: none;
  }

  .pc-category-viewindex .ph-top {
    display: none;
  }

  body {
    font-family: Calibri, system-ui, -apple-system, "Segoe UI", sans-serif;
    color: #111;
    background:
      linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9)),
      url("/templates/monika_vrkoslavova_sablona/images/slider02.jpg") no-repeat center top fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
  }

  #rychly_kontakt {
    background: #d6d4d5;
    display: flex;
    padding: 0;
    font-size: 0.9em;
  }

  .container {
    width: 1100px;
    margin: 0 auto;
  }

  .napiste {
    width: 30%;
    float: left;
    padding-top: 10px;
  }

  .nabidka {
    width: 70%;
    float: right;
    text-align: right;
    font-size: 1.2em;
    font-weight: bold;
  }

  .jazyk a {
    color: black;
  }

  #paticka .odkazy {
    float: left;
    width: 70%;
  }

  .ph-currency-list a:hover {
    background: yellow;
    border-radius: 0.2rem;
  }

  .jazyk a:hover {
    background: yellow;
    border-radius: 0.2rem;
    padding: 5px;
  }

  .nabidka_prodkuktu {
    padding: 10px;
    background: yellow;
    box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
    font-size: 15px;
    font-weight: bold;
    margin-top: 23px;
    margin-bottom: 23px;
  }

  .ph-currency-list-suffix {
    display: inline-block;
    font-weight: 400;
    line-height: 1.1;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
  }

  .ph-currency-list-box {
  }

  .ph-currency-list-box a {
    text-decoration-line: none;
    color: black;
  }

  .jazyk,
  .mena {
    float: right;
    text-align: right;
    padding-top: 7px;
    margin-right: 10px;
    display: flex;
  }

  .jazyktit,
  .menatit {
    float: left;
    font-weight: revert;
    color: #aeaeae;
    padding-right: 14px;
    text-transform: uppercase;
    font-size: 1em;
  }

  .kosik,
  .mena,
  .ph-currency-list-suffix {
    float: right;
    text-align: right;
  }

  #top {
    height: 70px;
    border: 0.5px solid #d0d0d0;
  }

  .logo > div:nth-child(1) > svg:nth-child(1) {
    color: white;
    padding: 10px;
  }

  .logo {
    width: 50%;
    margin: 0 auto;
    height: auto;
  }

  .logo img {
    margin: 0 auto;
    padding-top: 8px;
  }

  div.ph-cart-module-box:nth-child(2) > div:nth-child(1) > div:nth-child(2) {
    width: 294px;
  }

  .login a {
    margin: 0 auto;
    text-align: center;
    text-decoration-line: none;
    position: absolute;
  }

  div.login {
    width: 85%;
    display: flex;
    float: right;
  }

  div.com-users-login {
    width: 100%;
    display: block;
    margin: 10px;
  }

  .stred {
    background: white;
  }

  #center {
    content: "";
    display: table;
    clear: both;
    margin-bottom: 2%;
    width: 100%;
    padding-top: 7%;
  }

  #center a {
    text-decoration-line: none;
  }

  .card-header {
    list-style: none;
    background: #cecece;
    padding: 21px;
    margin: 3px;
    color: #464444;
    font-weight: normal;
    font-family: Calibri;
  }

  .card-body {
  }

  #vlevo {
    float: left;
    color: #111;
    width: 25%;
  }

  #vlevo .dropdown {
    background: white;
  }

  .ph-cart-module-box,
  .userdata {
    box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 2% 5px;
    margin: 10px 0;
    border-radius: 20px;
  }

  .vizitka {
    box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 3% 5px;
    margin: 10px 0;
    border-radius: 20px;
  }

  .vizitkafotka {
    float: left;
    width: 100px;
  }

  img.vizitkafotka {
    width: 54%;
    margin: auto 23%;
  }

  .vizitkatext {
    font-weight: bold;
    font-size: 1.25em;
    text-align: center;
    color: #d22e32;
  }

  .vizitkatext2 {
    font-size: 1.1em;
    font-style: italic;
    text-align: center;
    padding: 8px 0;
    color: #111;
  }

  .vizitkatext3 {
    font-size: 0.9em;
    font-style: normal;
    text-align: center;
    color: #111;
  }

  #phItemCartBoxBtn {
    color: #7dc891;
  }

  .stranka {
    background: white;
    margin: 10px 0;
    padding: 10px;
    color: #111;
    width: 100%;
  }

  #paticka {
    background: #424242;
    color: #b7b7b7;
    padding-top: 1%;
    padding-bottom: 1%;
  }

  #paticka a {
    color: grey;
    font-weight: normal;
  }

  #vpravo {
    float: right;
    color: #111;
    width: 25%;
  }

  .fotokontakt {
    display: block;
    color: #111;
    margin-top: 5px;
    width: 100%;
    box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
    height: auto;
  }

  #komponenty {
    float: right;
    width: 73%;
    font-size: 1.1em;
    display: block;
  }

  .com-content-article {
    background: white;
    padding: 10px;
  }

  .com-content-category-blog {
    background: #fff;
    padding: 20px;
  }

  .kontakt {
    padding-bottom: 30px;
    margin: 10px;
    color: #000;
  }

  .copy {
    color: #757575;
  }

  .copy a {
    color: #757575;
  }

  img.ikony {
    padding: 14px 3px 0 4px;
    width: 30px;
    float: left;
    height: auto;
    margin: 0;
  }

  div.kon {
    font-size: 1em;
  }

  .card {
    width: 100%;
  }

  .andilek {
    position: relative;
    top: -130%;
    width: 140px;
    float: right;
    border-radius: 50%;
    height: 140px;
    margin: 0 auto;
  }

  .andilek > img {
    position: absolute;
    width: 170px;
    float: left;
    background: white;
    border-radius: 50%;
    height: 170px;
    margin: 0 auto;
    padding: 15%;
    display: none;
  }

  .partneri {
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
  }

  .partneri > div {
    margin-top: 5%;
    margin-bottom: 5%;
    padding: 2% 0;
    margin: 0 auto;
  }
}

/* =========================================================
   MOBIL – do 699 px
   ========================================================= */
@media (max-width: 699px) {

  /* KONTEJNER A HLAVIČKA */
  .container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 12px;
  }

  #top {
    height: auto;
    padding: 5px 0;
  }

  /* horní kontaktní strip (telefon + mail + přihlášení) */
  .kontakttop {
    height: auto;
    font-size: 0.9em;
    line-height: 1.4;
    text-align: center;
  }

  .kontakttopleft,
  .kontakttopright {
    width: 100%;
    float: none;
    text-align: center;
  }

  /* logo Bylinky */
  #logo_hlavicka {
    height: auto;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .logo {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .logo img {
    max-width: 80%;
    padding-top: 5px;
  }

  /* mobilní menu (Mobile Menu CK) – vycentrovat pod logo */
  .mobilemenuck-bar {
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    margin: 8px 0 4px;
    text-align: center;
  }

  .mobilemenuck-bar-button {
    position: static !important;
    display: inline-block;
    margin: 0 auto;
  }

  div.login {
    width: 100%;
    float: none;
    display: block;
    text-align: center;
    margin-top: 5px;
  }

  .login a {
    position: static;
    margin: 0 auto;
  }

  /* RYCHLÝ KONTAKT */
  #rychly_kontakt {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5px 10px;
    font-size: 0.85em;
  }

  .napiste,
  .nabidka {
    width: 100%;
    float: none;
    text-align: center;
    padding-top: 3px;
  }

  /* ROZLOŽENÍ STRÁNKY – vše pod sebe */
  #center {
    padding-top: 20px;
    margin-bottom: 20px;
  }

  #vlevo,
  #komponenty,
  #vpravo {
    float: none;
    width: 100%;
  }

  .ph-cart-module-box,
  .userdata,
  .vizitka,
  .stranka,
  .fotokontakt {
    margin: 10px 0;
  }

  /* SLIDER (hero) */
  .slider {
    height: auto !important;
    min-height: 0 !important;
    padding: 15px 0 25px 0;
  }

  .slider .indexslid {
    float: none;
    width: 100%;
    display: block;
    height: auto;
    padding-bottom: 0;
  }

  .indexslid > img {
    padding-top: 10px;
    padding-bottom: 0;
    margin: 0 auto;
    display: block;
    max-width: 100%;
  }

  /* NADPIS NA SLIDERU – na telefonu BÍLE */
  .indexslidtext {
    float: none;
    padding: 10px 10px 0 10px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    font-size: 1.6em;
    color: #ffffff !important;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
  }

  .indextext {
    padding-bottom: 8%;
  }

  /* CTA tlačítko – trochu menší */
  a.indexodzak,
  a.indexodkaz {
    font-size: 1.1rem;
    padding: 0.6rem 1.4rem;
    width: auto;
    max-width: 100%;
  }

  /* ROZCESTNÍK POD SLIDEREM – jen kulaté logo */
  .rozcestnik {
    height: auto;
    padding-top: 30px;
    padding-bottom: 20px;
    text-align: center;
  }

  .rozcestnika,
  .rozcestnikc,
  #rozcestniktext {
    display: none;
  }

  .rozcestnikb {
    float: none;
    width: 100%;
    margin: 0 auto;
  }

  .original {
    position: relative;
    top: 0;
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }

  .original img {
    width: 100%;
    height: auto;
  }

  /* DOPORUČENÉ – jeden sloupec */
  #doporucene {
    columns: 1;
  }

  #doporucene .ph-item-box {
    height: auto;
    display: block;
  }

  #doporucene .ph-image {
    height: auto;
    max-height: 250px;
  }

  /* Slider text/obrázky dole */
  .sl01,
  .sl0 {
    float: none;
    width: 100%;
    text-align: center;
    margin: 10px 0;
    padding-top: 10px;
    color: white;
  }

  /* PATIČKA – na střed */
  #paticka .odkazy {
    float: none;
    width: 100%;
    text-align: center;
  }

  .copy {
    text-align: center;
  }

  .andilek {
    display: none;
  }
}

/* výška log partnerů */
.partneri img {
  height: 50px;
}

/* =========================================
   TABLET – 700 až 1199 px
   MENU L a obsah přes celou šířku
   ========================================= */
@media (max-width: 1199px) and (min-width: 700px) {

  /* kontejner trochu zúžit a přidat vnitřní okraje */
  .container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
  }

  /* horní pruh – menší výška */
  #top {
    height: auto;
    padding: 5px 0;
  }

  /* logo Bylinky – vycentrovat */
  #logo_hlavicka {
    height: auto;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    height: 130px;
  }

  .logo {
    width: 60%;
    margin: 0 auto;
    text-align: center;
  }

  .logo img {
    max-width: 70%;
    padding-top: 5px;
  }

  /* přihlášení pod logo */
  div.login {
    width: 100%;
    float: none;
    display: flex;
    justify-content: center;
    margin-top: 5px;
  }

  .login a {
    position: static;
    margin: 0 10px;
  }

  /* rychlý kontakt – na střed pod sebe */
  #rychly_kontakt {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5px 10px;
  }

  .napiste,
  .nabidka {
    width: 100%;
    float: none;
    text-align: center;
    padding-top: 5px;
  }

  /* ROZLOŽENÍ STRÁNKY – vše pod sebe,
     takže levé menu (#vlevo) + obsah + pravý sloupec přes celou šířku */
  #center {
    padding-top: 30px;
    margin-bottom: 20px;
  }

  #vlevo,
  #komponenty,
  #vpravo {
    float: none;
    width: 100%;
  }

  .ph-cart-module-box,
  .userdata,
  .vizitka,
  .stranka,
  .fotokontakt {
    margin: 10px 0;
  }

  /* SLIDER – menší výška, obrázek nad textem */
  .slider {
    height: 350px;
    min-height: 0;
    padding: 20px 0;
  }

  .slider .indexslid {
    float: none;
    width: 100%;
    display: block;
    height: auto;
    padding-bottom: 0;
  }

  .indexslid > img {
    padding-top: 15px;
    padding-bottom: 0;
    margin: 0 auto;
    display: block;
    max-width: 80%;
  }

  .indexslidtext {
    float: none;
    padding: 10px 0 0 0;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    font-size: 2em;
    padding-top: 38px;
  }

  /* DOPORUČENÉ – dva sloupce */
  #doporucene {
    columns: 2;
  }

  #doporucene .ph-item-box {
    height: auto;
    display: block;
  }

  #doporucene .ph-image {
    height: auto;
    max-height: 260px;
  }

  /* text/obrázky pod sliderem na střed */
  .sl01,
  .sl0 {
    float: none;
    width: 100%;
    text-align: center;
    margin: 10px 0;
    padding-top: 10px;
  }

  /* patička na střed */
  #paticka .odkazy {
    float: none;
    width: 100%;
    text-align: center;
  }

  .copy {
    text-align: center;
  }

  /* rozcestník – víc místa pro kulaté logo */
  .rozcestnik {
    height: auto;
    padding-top: 55px;
    display: none;
  }

  .original {
    top: -40px;
  }
}
/* =========================
   MOBIL FIX – odstranění pruhu vpravo + žádné přetékání
   ========================= */
html, body{
  max-width:100%;
  overflow-x:hidden;
}

/* obrázky / svg / iframy nesmí přetékat mimo mobil */
img, svg, iframe{
  max-width:100%;
}

/* Vlastní kontejnery (aby nezůstával "pruh" vpravo) */
@media (max-width: 820px){
  .container{
    width:100% !important;
    max-width:100% !important;
    margin-left:auto !important;
    margin-right:auto !important;
    padding-left:12px !important;
    padding-right:12px !important;
    box-sizing:border-box;
  }

  /* pokud máš sloupce řešené floaty/pevnými šířkami */
  #center, #vlevo, #komponenty{
    float:none !important;
    width:100% !important;
    max-width:100% !important;
    margin:0 !important;
    box-sizing:border-box;
  }

  /* Google mapa / embed – vždy na 100% */
  iframe{
    width:100% !important;
    height:auto !important;
  }
}
