.cart-cross-confirm {
  background: var(--bgseda1);
  padding: 2rem 1.5rem;
  border-radius: 0;
  
  margin: 2rem auto;
}

.cart-cross-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cart-cross-product {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cart-cross-img {
  width: 180px;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  background: var(--bg);
  padding: 0.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.cart-cross-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: ar(--ink);;
}

.cart-cross-name {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--ink);
}

.cart-cross-variant {
  color: var(--muted);
  font-size: 1rem;
}

.cart-cross-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.btncrt {
  padding: 0.8rem 1.6rem;
  border-radius: 0;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btncrt.btn-primary {
  background: var(--primary);
  color: var(--bg);
}
.btn.btn-primary{
  background: var(--primary);
  color: var(--bg);
  font-size: 1.5rem;
  width:100%;
}
.kosiktable_top_obj_pokracovat .btn.btn-primary
{
  margin-top: 20px;  
  width:200px;
  border: 0;
}
.btn.btn-nocomplete{
  background: var(--bgseda3);
  color: var(--bg);
  font-size: 1.5rem;
  width:100%;
}

.btn.btn-fav {
  background: var(--blue);
  color: var(--bg);
  font-size: 1.5rem;
  width:100%;
}




/* ---------------------------- */
/* KROK 1 */
.cart-container {
  max-width: var(--maxsirka);
  margin: 0 auto;
  padding: 2rem;
}

.cart-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* aby se zarovnaly nahoře */
  gap: 3rem; /* mezera mezi bloky */
}
.cart-items {
   flex: 1; 
  min-width: 0;
}
.cart-error {
  padding:10px;
  font-size: 1.4rem;
  color:var(--primary);
  background: var(--bgseda);
  border: 1px solid var(--seda);
  box-shadow: 0 8px 22px var(--bgseda);
}
/* Položka v košíku */
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr 120px 100px 30px;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #eeeeee;
}

.cart-item__img img {
  border-radius: 0px;
}

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

.cart-item__name a {
  color: var(--ink);
  text-decoration: none;
}


.cart-item__code {
  font-size: 0.875rem;
  color: var(--bgseda3);
  margin-top: 0.25rem;
}

.cart-item__stock {
  font-size: 0.9rem;
  color: var(--tmzelena);
  margin-top: 0.25rem;
}

.cart-item__stock span {
  display: block;
  color: var(--bgseda3);
  font-size: 0.85rem;
}

/* Počet kusů */
.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
      border-radius: 0;
    font-size: 2rem;
    background: var(--bg);
    color: var(--ink);
    border: 0;
    padding: 5px;
    font-size: 2rem;
    font-weight: 700;
    cursor: pointer;
}

.qty-input {
      margin: 0;
    font-size: 1.2rem;
    height: 55px;
    width: 50px;
    color: var(--muted);
}

/* Cena a odstranění */
.cart-item .cart-item__price {
  font-weight: 400;
  text-align: right;
  font-size: 1.2rem;
  color: var(--ink);
}

.cart-item__remove {
  background: none;
  border: none;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  transition: color 0.2s;
}

.cart-item__remove:hover {
  color: #333333;
}

.cart-item__add {
  background: none;
  border: none;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.2s;
}

.cart-item__add:hover {
  color: #333333;
}

/* Voucher */
.cart-voucher {
  margin: 0;
  padding:0;
  font-size: 0.95rem;
  color: #333333;
}

.cart-voucher label {
  cursor: pointer;
}

/* Doprava zdarma */
.cart-delivery-free {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.cart-delivery-icon {
  font-size: 1.4rem;
}

.cart-delivery-text {
  font-size: 0.95rem;
  line-height: 1.4;
}

.cart-delivery-text strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.cart-delivery-text span {
  font-weight: 700;
  color: #111111;
}

/* Progress bar */
.cart-progress {
  flex-grow: 1;
  background-color: #eeeeee;
  height: 6px;
  border-radius: 3px;
  margin-top: 0.5rem;
  overflow: hidden;
}

.cart-progress-bar {
  background-color: var(--modra);
  height: 6px;
  border-radius: 0px;
  width: 15%;
  transition: width 0.3s ease;
}

/* Souhrn */
.cart-summary {
  flex: 0 0 400px; 
  margin: 0;
  text-align: right;
  border-top: 0;
  border-bottom: 1px solid var(--bgseda1);
}

.cart-summary__label {
  font-weight: 500;
  font-size: 1rem;
  color:  var(--ink);
}

.cart-summary__value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
}


/* Tlačítka dole */
.cart-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.4rem;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.2s;
}


.btn-secondary {
  background-color: var(--bg);
  color:var(--ink);
}

.btn:hover {
  opacity: 0.9;
}
.cart-voucher {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.cart-voucher label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.voucher-form {
  display: flex;
  align-items: stretch;
  margin-top: 0.6rem;
  background: var(--bgseda1);
  border-radius: 0px;
  overflow: hidden;
  max-width: 450px;
}

.voucher-input {
  flex: 1;
  border: none;
  padding: 0.8rem;
  background: transparent;
  font-size: 1rem;
  outline: none;
}

.voucher-btn {
  background: var(--primary);
  color: var(--bg);
  border: none;
  border-radius:0;
  padding: 0 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.voucher-btn:hover {
  opacity: 0.9;
}

.hidden {
  display: none;
}
.cart-right {
  flex-shrink: 0;
  text-align: left; 
}
.cart-summary__btn
{
   margin-top:30px;
}
.cart-summary__podminky
{
   margin-top:30px;
   font-size: 0.85rem;
}
.cart-summary__podminky a
{
    color: var(--ink);
    cursor: pointer;
    text-decoration: underline;
}
.cart-summary__shipping
{
   background: var(--bgseda1); 
   text-align: right;
   margin-top:30px;
   padding:15px 0 15px 15px;
}

.cart-summary__shipping-doprava
{
    font-size: 1rem;
    font-weight: 400;
    color: var(--ink);
    cursor: pointer;
    display: flex ;
    align-items: center;
    gap: 22px;
    padding: 0 0 15px 0;
}
.cart-summary__shipping-expedice
{
  font-size: 1rem;
    font-weight: 400;
    color: var(--ink);
    cursor: pointer;
    display: flex ;
    align-items: center;
    text-align: left;
    gap: 15px;
    padding: 0;
}
/* Modal */
.shipping-modal {
  display: none; /* Skryté ve výchozím stavu */
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.shipping-modal.is-open {
  display: flex;
}

.shipping-modal__content {
  background: #fff;
  padding: 0px 15px;
  border-radius: 0px;
  max-width: 420px;
  width: 90%;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  position: relative;
  animation: fadeIn 0.25s ease;
}

.shipping-modal__close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 3rem;
  background: none;
  border: none;
  cursor: pointer;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-10px);}
  to {opacity: 1; transform: translateY(0);}
}
/* --- Souhrn --- */
.cart-summary__price {
  margin-top: 30px;
}


.cart-summary__price--small {
  color: var(--bgseda2);
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

/* --- Doprava zdarma --- */
.cart-delivery-free {
  text-align: center;
  background: var(--bgseda);
  border-radius: 8px;
  padding: 1rem;
  flex: 1;
}

.cart-delivery-icon {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.cart-delivery-text {
  font-size: 0.95rem;
  line-height: 1.4;
}

.cart-delivery-text strong {
  display: block;
  color: var(--ink);
}

.cart-delivery-text span {
  font-weight: 700;
}

.cart-progress {
  background: var(--bgseda);
  height: 6px;
  border-radius: 3px;
  margin-top: 0.5rem;
  overflow: hidden;
}

.cart-progress-bar {
  background: var(--zelena);
  height: 6px;
  border-radius: 3px;
}

/* --- Tlačítka --- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.4rem;
  border-radius: 0px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: opacity 0.2s;
}




.btn:hover {
  opacity: 0.9;
}


/* -----------------------------------------------------
   Horní lišta s kroky (checkout progress)
----------------------------------------------------- */
.checkout-steps {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.checkout-steps__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  max-width: var(--maxsirka);
  margin: 0 auto 0.75rem;
}

.checkout-step {
  flex: 1;
  color: var(--bgseda2);
  font-weight: 500;
  font-size: 1.3rem;
  position: relative;
  text-align: center;
}

.checkout-step .num {
  font-weight: 600;
  margin-right: 0.15rem;
}

.checkout-step.is-active {
  color: var(--blue);
  font-weight: 600;
}

.checkout-step.is-active .num {
  color: var(--blue);
}

.checkout-step.completed {
  color: var(--ink);
}

.checkout-step.completed .num {
  color: var(--blue);
}

/* Progress bar pod kroky */
.checkout-progress {
  width: 100%;
  height: 3px;
  background-color: var(--bgseda1);
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.checkout-progress__bar {
  height: 3px;
  background-color: var(--blue);
  width: 0%;
  border-radius: 2px;
  transition: width 0.3s ease;
}
.cart-bootom
{
  display: flex;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 20px;
}
/* Kosik zalozky*/
.checkout-categories
{
  display: flex;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--bgseda1); 
}

.checkout-categories__links
{ 
  float:left;
  margin-right:20px;
  font-size: 1.4rem;
  width: 280px;
}
.checkout-categories_link
{ 
  background-color: var(--bgseda1);
  padding:10px;
}
.checkout-categories_link::before {
  content: "→ ";
  display: inline-block;
  margin-right: 7px;
  color: currentColor; /* převezme barvu textu odkazu */
  font-weight: bold;   /* volitelné */
}
.linkactive
{
  background-color: var(--accent);
  color:var(--bg)
}
 .cart-checkbox,
 .os_fakturacni,
 .po_firma,
 .os_firma,
 .za_firma,
 .za_dodaci,
 .za_prihlasovaci,
 #zakaznik_pozn,
 #zakaznik_novinky,
 #zakaznik_tipy,
 #zakaznik_dotaznik,
 #zakaznik_passwd,
 #zakaznik_newdod
 {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid var(--bgseda2); /* tmavě šedý rámeček */
  background-color: transparent;
  display: inline-block;
  position: relative;
  cursor: pointer;
  vertical-align: middle;
  transition: border-color 0.2s ease, background-color 0.2s ease;
 }
.cart-checkbox:checked::after, 
.os_fakturacni:checked::after,
.po_firma:checked::after,
.os_firma:checked::after,
.za_firma:checked::after,
.za_dodaci:checked::after,
.za_prihlasovaci:checked::after,
#zakaznik_pozn:checked::after,
#zakaznik_pozn:checked::after,
#zakaznik_novinky:checked::after,
#zakaznik_tipy:checked::after,
#zakaznik_dotaznik:checked::after,
#zakaznik_passwd:checked::after,
#zakaznik_newdod:checked::after
{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: var(--ink);
  transform: translate(-50%, -50%);
}
.zakaznik_udaje_form_dataadr {
  display: flex;
  align-items: center;
  gap: 10px;        /* mezera mezi radio a textem */
  padding: 10px 0; /* svislá mezera mezi adresami */
}

/* obal radio */
.zakaznik_udaje_form_data_radio {
  flex-shrink: 0; /* aby se neměnil rozměr */
}

/* text */
.zakaznik_udaje_form_data_radiotxt {
  font-size: 1rem;
  line-height: 1.4;
  color: var(--ink);
}
.zakaznik_udaje_form_data_radioedit
{
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    gap: 5px;
}

/* samotný odkaz */
.zakaznik_udaje_form_data_radioedit a
{
    position: relative;
    color: var(--primary);
    text-decoration: underline;
    font-size: 1rem;
    font-weight: 500;
    padding-left: 0px; /* místo pro šipku */
}

/* šipka před textem */



/* hover efekt */
.zakaznik_udaje_form_data_radioedit a:hover::before
{
    transform: translate(2px, -50%) rotate(-45deg);
}


.dodadr {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid var(--bgseda2);
  background-color: transparent;
  border-radius: 50%; /* kulatý tvar */
  display: inline-block;
  position: relative;
  cursor: pointer;
  vertical-align: middle;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

/* puntík uvnitř */
.dodadr:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: var(--ink);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
/* zarovnání s textem */
label.radio-label {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.2;
}

/* --- celý blok --- */
.gift-box {
  border: 0;
  border-radius: 0px;
  padding: 0;
  margin: 1.5rem 0;
  font-family: inherit;
  color: var(--ink);
  width:450px;
}

/* --- záhlaví s rozbalením --- */
.gift-header {
  margin-bottom: 0.5rem;
}

.gift-toggle {
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 400;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0;
}

.gift-toggle:hover {
  color: var(--ink);
}

/* --- šipka vpravo/vlevo --- */
.gift-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
  font-size: 1.3rem;
  color: var(--primary);
  line-height: 0.8rem;
}

.gift-toggle[aria-expanded="true"] .gift-arrow {
  transform: rotate(90deg);
}

/* --- obsah s výběrem dárku --- */
.gift-content {
  margin-top: 0.8rem;
}

.gift-form {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
}

.cert_sel {
  flex: 1;
  padding: 0.6rem 0.8rem;
  border: 0;
  background: var(--bgseda1);
  border-radius: 0px;
  font-size: 1rem;
  min-width: 250px;
}

.gift-btn {
  background-color: var(--primary);
  color: var(--bg);
  border: none;
  border-radius: 0px;
  padding: 0 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.voucher-msg {
  margin-top: 6px;
  font-size: 1rem;
  line-height: 1.4;
}

.voucher-msg.ok {
  color: var(--tmzelena);
}

.voucher-msg.error {
  color: var(--primary);
}

.voucher-msg.info {
  color: var(--ink);
}


/* KORK 2 */
/* Výběr země */
.country-select select {
  width: 100%;
  padding: 15px;
  border: 2px solid var(--accent);
  border-radius: 0px;
  font-size: 1.2rem;
  background-color: #fff;
  cursor: pointer;
}
.zakaznik_udaje_form_data .country-select select {
    padding: 3px;
}
/* Box dopravy / platby */
.shipping-option,
.payment-option {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--bgseda2);
  border-radius: 0px;
  padding: 0.8rem 1rem 0.8rem 2.5rem;
  margin-bottom: 0.6rem;
  background: var(--bg);
  cursor: pointer;
  transition: all 0.2s ease;
}

.shipping-option:hover,
.payment-option:hover {
  border-color: var(--bgseda3);
}

.shipping-option.is-active,
.payment-option.is-active {
  border: 2px solid var(--accent);
  background: var(--bgseda);
}

/* Skrytý input */
.shipping-option input,
.payment-option input {
  display: none;
}

/* Vlastní radio button */
.radio-mark {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--bgseda3);
  background: var(--bg);
}

.is-active .radio-mark {
  border-color: var(--primary);
  background: radial-gradient(var(--primary) 45%, var(--bg) 46%);
}

.shipping-option__info,
.payment-option__info {
  display: flex;
  flex-direction: column;
}

.shipping-option__title,
.payment-option__title {
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.payment-option__title img,
.shipping-option__title img {
  display: block;
  height: 25px;
  width: auto;           /* zachová poměr stran */
  
}
.payment-option__title span,
.shipping-option__title span {
  display: inline-block;
  font-size: 0.95rem;
  line-height: 1.6;
  min-width: 180px; 
  padding-left:10px;
}
.shipping-option__title span span
{
  text-decoration: underline;
  color: var(--primary);
}

.shipping-option__desc,
.payment-option__desc {
  font-size: 0.85rem;
  color: var(--bgseda3);
  padding-left:10px;
}

.shipping-option__price,
.payment-option__price {
  font-weight: 600;
  white-space: nowrap;
  min-width: 60px;
  text-align: right;
}

/* Souhrn */

.cart-summary__section {
  border-bottom: 1px dashed var(--bgseda2);
}

.cart-summary__section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cart-summary__items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cart-summary__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed var(--bgseda2);
  padding: 0.4rem 0;
}

.cart-summary__item:last-child {
  border-bottom: none;
}

.item-name {
  flex: 1;
  font-size: 0.95rem;
  margin-right: 0.5rem;
}

.item-qty {
  width: 2rem;
  font-size: 0.95rem;
  text-align: right;
  color: var(--ink);
}

.item-price {
  width: 4rem;
  font-size: 0.95rem;
  text-align: right;
  font-weight: 600;
}

.summary-line,
.discount-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  padding: 0.3rem 0;
}
.summary_pobocka
{
  font-size: 0.75rem;
}
.discount-amount {
  color: var(--primary);
  font-weight: 600;
}

.cart-summary__divider {
  border: none;
  border-top: 1px solid var(--seda);
  margin: 1rem 0;
}
.cart-summary__back{
  margin-top:25px;
  color:var(--ink);
  font-weight: 600;
}
.item-price {
  width: 4rem;
  text-align: right;
  font-weight: 600;
}
.cart-summary__ceny {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    padding: 0.3rem 0;
}

.cart-summary__text
{
  font-size: 1.1rem;
  color: var(--bgsed3);
}
.cart-summary__cena
{
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
}

/* SKUPINY */
.shipping-group__title,
.payment-group__title {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-top: 1rem;
  padding-bottom: 0.25rem;
  color: #222;
}
.shipping-logos img,
.payment-logos img {
  height: 22px;
  margin-right: 6px;
  opacity: 0.9;
}
.shipping-logos,
.payment-logos {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 0.3rem;
}
.checkout-methods__change
{
    display: inline-block;
    padding: 0.8rem 1.4rem;
    border-radius: 0px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    color: var(--bg);
    font-size: 1rem;
     cursor: pointer;
    background-color: var(--bgseda3);
}
.checkout-methods h2
{
  margin:0px;
  padding: 0px;
  padding-top: 30px;
}

/*************************** ZAKAZNIK  */
#zakaznik_all_form,
#zakaznik_udaje_next,
#zakaznik_udaje_next1,
#zakaznik_udaje_next2,
#zakaznik_udaje_newdod,
#zakaznik_udaje_newdodin,
#zakaznik_udaje_pswd,
#zakaznik_udaje_pswdsl,
#zakaznik_udaje_next2,
.zakaznik_najitemail_logko,   
.zakaznik_najitemail_log,
#zakaznik_udaje_poznamka,
.zakaznik_udaje_form_data_pozn
{
   display:none;
}
#zakaznik_udaje_newdod { display:none; }
#zakaznik_udaje_newdod.is-open { display:block; }
#zakaznik_udaje_pswdsl
{
   display:block;
}
#finishorderbut{
  border:none;
}
.zakaznik_najitemail_log
{
      display:none;
      margin-top:30px;
      background-color: var(--zluta);
      padding:15px;
      min-height:18px;
      font-size:1.1rem;
}
.top_login_formular_login
{
   cursor:pointer;
    color:var(--primary);
    text-decoration: underline;
}
.zakaznik_udaje_form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 32px;
    margin: 32px 0;
}



/* -------------------------------------------
   NADPIS SEKCÍ
------------------------------------------- */

.zakaznik_udaje_form_nad {
    grid-column: 1 / -1;
    font-size: 22px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--ink);
}

/* -------------------------------------------
   ŘÁDEK S POLEM
------------------------------------------- */

.zakaznik_udaje_form_data {
    display: flex;
    flex-direction: column;
}

.zakaznik_udaje_form_data_nad,
.zakaznik_najitemail_text
 {
    font-weight: 500;
    margin-bottom: 4px;
    font-size: 1.1rem;
    color: var(--ink);
}

.zakaznik_udaje_form_data_nad span {
    color: var(--primary);
}

/* -------------------------------------------
   INPUT WRAPPER
------------------------------------------- */

/* ============================
   ŘÁDEK INPUT + HLÁŠKA
=============================== */

.zakaznik_najitemail_inp,
[class^="zakaznik_udaje_form_data_inp"],
[class^="zakaznik_udaje_form_data_ch"],
[class^="zakaznik_udaje_form_data_chdt"]
{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
}
[class^="zakaznik_udaje_form_data_ch"],
[class^="zakaznik_udaje_form_data_chdt"]
{
  margin-top: 15px;
}
.zakaznik_najitemail_inpsam,
[class^="zakaznik_udaje_form_data_inp"] input,
[class^="zakaznik_udaje_form_data_inp"] textarea
{
    flex: 1; /* 50 % */
}
.zakaznik_najitemail_kon,
.validatedata {
    flex: 1; /* 50 % */
    font-size: 0.9rem;
    min-height: 20px;
    padding-top: 0px;
    color: var(--ink);
}
.zakaznik_najitemail_kon,
[class^="zakaznik_udaje_form_data_ch_txt"]
{
  padding-top: 10px;  
  font-size: 1.1rem;
  cursor: pointer;
}
[class^="zakaznik_udaje_form_data_ch_in"]
{
  padding-top: 7px;  
}
/* Zabrání natažení TEXTU na celou šířku */
.zakaznik_najitemail_kon span,
.validatedata span {
    display: block;
    line-height: 1.4;
}
.zakaznik_udaje_form_data_inp span
{
  padding-top:10px;
}

.zakaznik_najitemail input{

  width:100%;  
  height: 44px;
}
.zakaznik_udaje_form input[type="text"],
.zakaznik_udaje_form input[type="password"],
.zakaznik_udaje_form select
{
  height: 40px;
}
.zakaznik_udaje_formvyhody ul
{
   margin:15px 0 0 0;
   padding:0
}
.zakaznik_udaje_formvyhody ul li
{
   
   margin-top:10px;
   font-size: 1rem;
   line-height: 1.4;
   color: var(--ink);
   list-style: none;
}

.top_login_nadpis
{
   font-size: 1.5rem;
   font-weight: 600;
   float: left; 
   color: var(--ink);
   margin-top:20px;
   width: 100%;
}
.top_login_text
{
  float: left; 
  font-size: 1.1rem;
   line-height: 1.4;
   color: var(--ink);
   margin-top:10px;
   margin-bottom:10px;
   width: 100%;
}
#togglePassword1,
#togglePassword2
{
    cursor:pointer;
    padding-top: 5px;
    font-size: 1.3rem;
    color: var(--bgseda3);
}
#genheslo
{
    cursor:pointer;
    color: var(--primary);
    text-decoration: underline;
}

/* ONLINE ZAPLATIT – Comgate */
.btn_comgate
{
  margin:20px 0 20px 0;
}
/* =====================================================
   ONLINE PLATBA – hlavní CTA
===================================================== */

#btn_comgate_pay.button_odeslat_big {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 24px;
  border-radius: 0px;

  border: 1px solid var(--tmzelena);
  background: var(--tmzelena);
  color: var(--bg);

  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;

  cursor: pointer;
  transition: all .15s ease;

  box-shadow: 0 6px 18px rgba(0,0,0,.10);
}

/* jemnější hover */
#btn_comgate_pay.button_odeslat_big:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 8px 22px rgba(0,0,0,.12);
}

/* active */
#btn_comgate_pay.button_odeslat_big:active {
  transform: translateY(0);
  filter: brightness(.98);
}

/* focus */
#btn_comgate_pay.button_odeslat_big:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(0,0,0,.12),
    0 6px 18px rgba(0,0,0,.10);
}


/* Disabled */
#btn_comgate_pay.button_odeslat_big:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
  filter: none;
  box-shadow: none;
}

/* Loading stav */
#btn_comgate_pay.button_odeslat_big.loading {
  pointer-events: none;
  opacity: .8;
}

#btn_comgate_pay.button_odeslat_big.loading::after {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.5);
  border-top: 2px solid #fff;
  border-radius: 0;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* -------------------------------------------------------
  Potvrzení objednávky + blok platby (převod + QR)
------------------------------------------------------- */

/* Text "Objednávka byla úspěšně..." */
.confirm_order_text{
  margin: 10px 0 18px;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 700;
  color: var(--ink);
}
.confirm_order_kontakt{
  margin: 10px 0 18px;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 700;
  color: var(--ink);
}
.confirm_order_kontakt a {
  text-decoration: underline;
  color: var(--primary);
}
.confirm_order_platba{
  margin: 10px 0 18px;
  font-size: 1.2rem;
  line-height: 1.45;
  font-weight: 700;
  color: var(--ink);
}
.confirm_order_platba a{
  color: var(--primary);
  text-decoration: underline;
}
.payment-separator {
    position: relative;
    text-align: center;
    margin: 40px 0; /* mezera nahoře i dole */
}

.payment-separator span {
    display: inline-block;
    padding: 0 20px;
    background: var(--bg); /* barva pozadí stránky */
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}
.payment-separator::before,
.payment-separator::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 100%;
    height: 1px;
    background: var(--bgseda2);
    left: 0;
    z-index: 1;
}


/* Wrapper pro platbu */
.boxplatba{
  display: grid;
  grid-template-columns: 1fr 260px 340px; /* info | mobil | QR */
  gap: 18px;

  margin: 18px 0 26px;
  padding: 18px 18px;

  border: 1px solid var(--bgseda);
  border-radius: 0;
  background: var(--bg);

  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

/* Levý sloupec s texty a údaji */
.boxplatbainfo{
  min-width: 0;
}

.boxplatbainfo h3{
  margin: 10px 0 0px 10px; 
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 900;
  color: var(--ink);
}


/* Uváděcí část (Využijte okamžitou platbu...) */
.provestplatbu{
  display: block;
  padding: 12px 14px;
  border-radius: 0;
  background: var(--bgseda1);
  border: 1px solid var(--bgseda);
  margin-bottom: 14px;
}

/* Pozor: máš uvnitř <span> vložené <h3> a <p> (HTML není ideální),
   ale CSS to zvládne */
.provestplatbu h3{
  margin: 10px 0 10px 0px !important;
  font-size: 1.3rem !important;
}
.provestplatbu div{
  margin: 0 !important;
  font-size: 1rem;
  color: var(--ink);
}

/* Řádky s kopírováním */
.platbaadd{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 5px 12px;
  margin: 8px 0;
  border-radius: 0;
  border: 1px solid var(--bgseda);
  background: var(--bg);
}

.platbaadd span{
  display: block;
  min-width: 0;
  font-size: 1rem;
  color: var(--ink)
}

.platbaadd strong{
  font-weight: 900;
}

/* částka */
.platbaadd .price{
  font-weight: 900;
}

/* ikonka copy */
.platbaadd img{
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  cursor: pointer;
  opacity: .85;
  transition: transform .12s ease, opacity .12s ease, filter .12s ease;
}

.platbaadd img:hover{
  opacity: 1;
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* Mobil obrázek */
.boxplatbaimg{
  display: flex;
  align-items: center;
  justify-content: center;

  border-left: 1px dashed var(--bgseda);
  padding-left: 18px;
}

.boxplatbaimg img{
  max-width: 100%;
  height: auto;
  border-radius: 0;
  display: block;
}

/* QR sloupec */
.boxplatbaqr{
  display: flex;
  align-items: center;
  justify-content: center;

  border-left: 1px dashed var(--bgseda);
  padding-left: 18px;
}

.boxplatbaqr img{
  width: 320px;
  height: 320px;
  max-width: 100%;
  height: auto;

  border-radius: 0;
  background: var(--bg);
  border: 1px solid var(--bgseda);
  box-shadow: 0 8px 22px var(--bgseda);
}
/* zvýraznění po kopírování */
.platbaadd.copied{
  border-color: var(--zelena);
  background: var(--bgseda);
  transition: all .2s ease;
}

.pay_section_title{
  margin: 50px 0 10px;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--ink);
}

.pay_section_note{
  margin: 0 0 14px;
  font-size: 1rem;
  color: var(--ink);
}

.pay_alt{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--bgseda);
}
.pay_alt .pay_section_note strong{
  font-weight: 900;
}

