
@font-face {
  font-family: Bellota;
  src: url(Baloo-Regular.ttf);
}
@font-face {
  font-family: Bookman old style;
  src: url(bookmanoldstyle.ttf);
}
@font-face {
  font-family: Microsoft YaHei;
  src: url(msyh.ttc);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
.slider-container { position: relative; width: 100%; overflow: hidden; }
        .slides { display: flex; transition: transform 0.5s ease-in-out; }
        .slide { min-width: 100%; position: relative; text-align: center; color: white; }
        .slide img { width: 100%;  object-fit: cover; }
        .slide-text { position: absolute; bottom: 280px; left: 20%; transform: translateX(-50%); font-size: 24px; background: rgba(0,0,0,0.6); padding: 10px; border-radius: 5px; }
        .slide-button { position: absolute; bottom: 230px; left: 16.7%; transform: translateX(-50%); background: #ff7f50; color: white; padding: 10px 20px; border: none; cursor: pointer; font-size: 16px; }
        .indicators { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 5px; }
        .indicator { width: 10px; height: 10px; background: gray; border-radius: 50%; cursor: pointer; }
        .active { background: white; }
        .nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); color: white; border: none; padding: 10px; cursor: pointer; }
        .prev { left: 10px; }
        .next { right: 10px; }
html{
  background-color: rgb(219, 219, 219);
}
/* Celá horná lišta */
.header {
  display: flex;
  justify-content: space-between; /* logo vľavo, košík vpravo */
  align-items: center;
  padding: 10px 40px; /* viac miesta zľava a sprava */
  background-color: #fff; /* môžeš zmeniť */
  border-bottom: 1px solid #ddd;
  position: relative;
  z-index: 10;
}

/* Logo */
.logo img {
  height: 50px; /* veľkosť loga */
  width: auto;
  margin-left: 30px;
}

/* Košík a počet produktov */
.topNav {
  display: flex;
  align-items: center;
  position: relative;
  margin-right: 30px; /* dodatočné odsadenie od pravej hrany */
}

.topNav img {
  height: 30px;
  width: auto;
  cursor: pointer;
}

.topNav p {
  margin-left: 8px;
  font-weight: bold;
  color: #333;
}

/* Náhľad košíka (skrytý, objaví sa hoverom alebo klikom) */
.kosikDetail {
  display: none;
  position: absolute;
  top: 40px; /* pod ikonou košíka */
  right: 0;
  width: 400px;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 15px;
  z-index: 100;
}

/* ukážeme pri hover */
.topNav:hover .kosikDetail {
  display: block;
}



/* Položky v košíku */
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.cart-item img {
  width: 40px;
  height: auto;
  margin: 0 10px;
}

.cart-item-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cart-item-price {
  font-weight: bold;
}

.total {
  font-weight: bold;
  margin-top: 10px;
  text-align: right;
}

.obrazokHore {
    position: relative; /* zmenené z absolute na relative */
    width: 100%;
}

.obrazokHore img {
    width: 100%;
    display: block;
    height: auto; /* zachová pomer strán */
}

.buttonWrapper {
    position: absolute;
    top: 60%; /* pozícia tlačidla ako % z výšky obrázku */
    left: 50%;
    transform: translate(-50%, -50%); /* vertikálne aj horizontálne centrovanie */
    text-align: center;
    width: max-content; /* prispôsobí sa veľkosti tlačidla */
}

.buttonHoreObrazok {
    padding: 10px 20px;
    background-color: #626657;
    border: none;
    border-radius: 15px;
    color: white;
    font-size: 1.5vw; /* dynamická veľkosť podľa šírky okna */
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-style: italic;
    cursor: pointer;
}

.buttonHoreObrazok:hover {
    animation: pulse 1.5s infinite;
}


@keyframes pulse {
    0% { transform: scale(1); }
    70% { transform: scale(1.05); }
    100% { transform: scale(1); }
}



/* Responzívne pre menšie obrazovky */
@media (max-width: 1024px) {
    .buttonHoreObrazok {
        font-size: 18px;
        padding: 12px 25px;
    }
}

@media (max-width: 680px) {
    .buttonHoreObrazok {
        font-size: 16px;
        padding: 10px 20px;
    }
}



a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}
.produkty {
    display: flex;
    flex-wrap: wrap; /* umožní lámať produkty do ďalších riadkov */
    justify-content: center; /* centrovanie riadkov */
    gap: 20px; /* medzera medzi produktmi */
    padding: 50px 20px; /* vnútorné okraje */
    background-color: rgb(219, 219, 219);
}

.produkt, .produkt2 {
    flex: 1 1 30%; /* základná šírka ~30% pre desktop */
    max-width: 300px; /* maximálna šírka */
    display: flex;
    flex-direction: column;
    align-items: center; /* centrovanie obsahu */
    margin-bottom: 30px;
}
/* Desktop */
@media (min-width: 1025px) {
    .produkt, .produkt2 {
        flex: 1 1 45%; /* približne polovica */
        max-width: 45%;
    }
}
/* Tablet: max 2 produkty na riadok */
@media (max-width: 1024px) {
    .produkt, .produkt2 {
        flex: 1 1 45%; /* približne polovica */
        max-width: 45%;
    }
}

/* Mobil: 1 produkt na riadok */
@media (max-width: 680px) {
    .produkt, .produkt2 {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.produkty h2 {
    text-align: center;
    font-size: 38px;
    font-family: 'Bookman old style';
    margin-bottom: 50px;
}

.produkty-grid {
    display: flex;
    flex-wrap: wrap;       /* umožní viac riadkov */
    justify-content: center; 
    gap: 30px 20px;        /* medzera medzi riadkami a medzi produktmi */
}

.produkt {
    flex: 1 1 30%;         /* zabezpečí max 3 produkty v jednom riadku */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}


.produkt img,
.produkt2 img {
    width: 70%;       /* zmenšené obrázky */
    height: auto;     /* zachová pomer strán */
    display: block;   /* potrebné pre margin auto */
    margin: 0 auto;   /* horizontálne centrovanie */
    transition: transform 0.5s;
}

.produkt img:hover,
.produkt2 img:hover {
    transform: scale(1.05) rotate(2deg); /* jemný efekt pri hover */
}



.produkt p {
    font-family: 'Bookman old style';
    font-weight: bold;
    text-align: center;
    font-size: 20px;
    margin: 10px 0;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/*SELECT*/
.produkty select {
    display: block;
    margin: 10px auto 20px auto; /* vycentrovanie */
    padding: 10px 40px 10px 15px; /* miesto na šípku */
    font-size: 18px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23555" height="12" viewBox="0 0 24 24" width="12" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 22px;
    transition: background 0.3s;
}

/* Chrome, Safari, Edge */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.produkty select:hover {
    background-color: #f0f0f0;
}


/* INPUT SPINNER */
.input-spinner, 
.input-spinner2 {
    display: flex;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f0f0f0;
    width: 120px; /* fixná šírka */
    margin: 0 auto 10px auto;
}

.input-spinner input,
.input-spinner2 input {
    border: none;
    width: 50px;
    text-align: center;
    font-size: 16px;
    background: transparent;
    outline: none;
}

.input-spinner button,
.input-spinner2 button {
    border: none;
    background-color: #626657;
    color: #fff;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.input-spinner button:hover,
.input-spinner2 button:hover {
    background-color: #535f3a;
    transform: scale(1.1);
}

/* BUTTON */
.submitButt, .submitButt2 {
    width: 100%;
    padding: 10px 10px;
    margin: 0 auto;
    display: block;
    background-color: #626657;
    border: none;
    border-radius: 18px;
    color: white;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Bookman old style', sans-serif;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.submitButt:hover, 
.submitButt2:hover {
    background-color: #535f3a;
    transform: scale(1.05);
}

@media screen and (max-width: 768px) {
    .produkt {
        width: 45%;
    }
}

@media screen and (max-width: 480px) {
    .produkt {
        width: 90%;
    }
}


.recenzie {
  width: 100%;
  background-color: #626657;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  gap: 20px;
  flex-wrap: wrap;
}

.lavaRecenzia, .pravaRecenzia {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: center;
  color: white;
}

/* Texty */
.pravaRecenzia h2, 
.pravaRecenzia h3 {
  font-size: 64px;
  font-family: "Bookman Old Style", serif;
  margin: 0;
  color: white;
}

.pravaRecenzia h3 {
  font-size: 47px;
  margin-top: 10px;
}

.list {
  margin-top: 20px;
  width: 150px;
}

/* Slideshow obsah */
.mySlides {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;
  text-align: center;
}

.stars {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
  flex-shrink: 0;   /* hviezdičky sa nikdy nezmenšujú */
}

.stars img {
  width: 20px;      /* pevná šírka */
  height: 20px;     /* pevná výška */
  object-fit: contain;
}

.autor {
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
  font-size: clamp(18px, 2.5vw, 28px);
}

.textRecenzie {
  color: white;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.4;
  overflow-wrap: break-word;
  max-width: 100%;
}

/* Dots */
.dots {
  margin-top: 15px;
}
.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background 0.3s ease;
}
.dot.active, .dot:hover {
  background-color: white;
}

/* Responzívne prispôsobenie */
@media (max-width: 768px) {
  .pravaRecenzia h2 {
    font-size: 48px;
  }
  .pravaRecenzia h3 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .recenzie {
    flex-direction: column;
  }
  .pravaRecenzia h2 {
    font-size: 36px;
  }
  .pravaRecenzia h3 {
    font-size: 22px;
  }
}


.ikony {
  width: 100%;
  background-color: rgb(219, 219, 219);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px; /* medzera medzi ikonami */
  padding: 60px 20px;
  flex-wrap: wrap; /* umožní zalomenie na menších obrazovkách */
}

.ikona {
  flex: 1 1 250px; /* flexibilná šírka – min 250px, max podľa miesta */
  max-width: 300px;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.ikona img {
  width: 80px; /* fixná veľkosť ikonky */
  height: auto;
  margin-bottom: 15px;
}

.ikona p {
  font-family: "Bookman Old Style", serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: bold;
  margin: 0;
}

.onas {
  width: 100%;
  min-height: 700px;
  position: relative; /* overlay bude relatívne k tomuto */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.onasBackground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.onasOverlay {
  position: absolute; /* nad obrázkom */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(98, 102, 87, 0.5); /* jemný overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  z-index: 2;
}

.onasTextContainer {
  max-width: 800px;
  color: white;
  text-align: justify;
}

.onasTextContainer h1 {
  font-family: Bookman old style;
  font-size: clamp(24px, 5vw, 80px);
  margin-bottom: 20px;
}

.onasTextContainer p {
  font-family: Microsoft YaHei;
  font-weight: lighter;
  font-size: clamp(14px, 2vw, 21px);
  line-height: 1.4;
}

/* Responsívne správanie */
@media (max-width: 768px) {
  .onasTextContainer {
    max-width: 95%;
  }
  .onasTextContainer h1 {
    font-size: clamp(20px, 6vw, 60px);
  }
}




/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  width: 80%;
  height: 370px;
  top: 40px;
  position: relative;
  margin: auto;
  border-radius: 20px;
  border: white solid 4px;
}
.slide-text{
  font-family: Microsoft YaHei;
}

.slide-button{
font-family: Microsoft YaHei;
}
/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 28px;
  padding: 8px 12px;
  top: 70px;
  position: absolute;
  width: 90%;
  left: 4%;
  text-align: center;
  font-family: Microsoft YaHei;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}


.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}

/*
background-color: #414833; - tmavo zelena / #535F3A
background-color: #CB8529; - medova / #D9953D
background-color: #7B291D; - cervena / #91372A
background-color: #642F09; - hneda / #7C4015
*/

#sojaBg{
  background-color: #626657;
}
#medBg{
  background-color: #CB8529;;
}
#chiliBg{
  background-color: #7B291D;
}
#solBg{
  background-color: #642F09;
}
#sojaBgLow{
  background-color: #535F3A;
}
#medBgLow{
  background-color: #D9953D;
}
#chiliBgLow{
  background-color: #91372A;
}
#solBgLow{
  background-color: #7C4015;
}

.header{
  width: 100%;
  height: 50px;
  position: fixed;
  background-color: rgb(219, 219, 219);
  z-index: 1;
  margin: 0;
  padding: 0;
  left: 0px;
  top: 0px;
  transition: height 1s ease-in-out;
}

.scrolled .header{
  height: 50px;
}


@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/*FOOTER*/
.footer {
  width: 100%;
  background-color: rgb(219, 219, 219);
  padding: 40px 5%;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; /* aby sa to zalamovalo na mobile */
  gap: 20px;
}

.informacie, .kontakt, .instagram {
  flex: 1 1 250px; /* každý blok má min. šírku 250px a vie sa prispôsobiť */
}

.informacie h3, .kontakt h3, .instagram h3 {
  font-family: "Bookman Old Style", serif;
  font-size: 28px;
  margin-bottom: 15px;
}

.informacie p, .kontakt p {
  font-size: 18px;
  font-family: "Microsoft YaHei", sans-serif;
  margin: 6px 0;
}

.kontakt div {
  display: flex;
  align-items: center;
  margin: 5px 0;
}

.kontakt img {
  width: 24px;
  margin-right: 10px;
}

.footer {
  width: 100%;
  background-color: rgb(219, 219, 219);
  padding: 40px 5%;
  display: flex;
  justify-content: space-between; /* rovnomerné rozmiestnenie divov */
  align-items: flex-start;
  flex-wrap: wrap;               /* pre menšie obrazovky */
  box-sizing: border-box;
  gap: 20px;                     /* medzera pri zbalení */
}

/* Všetky tri hlavné sekcie */
.informacie, .kontakt, .instagram {
  flex: 1 1 30%;
  box-sizing: border-box;
}

/* Nadpisy */
.informacie h3, .kontakt h3, .instagram h3 {
  font-family: Bookman old style;
  font-size: 30px;
  margin-bottom: 10px;
}

/* Texty v sekciách */
.informacie p, .kontakt p, .instagram p {
  font-size: 22px;
  font-family: Microsoft YaHei;
  margin: 5px 0;
}

/* Sekcia kontakt */
.kontakt {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.kontakt div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.kontakt img {
  width: 24px;
  height: auto;
}

/* Sekcia instagram */
.instagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.instagram .topRow {
  display: flex;
  align-items: center;
  gap: 8px;
}

.instagram #ig {
  width: 30px;
  height: auto;
}

.instagram .bottomImage {
  margin-top: 10px;
  width: 200px;
  height: auto;
}





a {
  all: unset; /* Resetuje všetky štýly na východzie */
  display: inline; /* Ak je potrebné, nastav inline, pretože all: unset môže meniť display */
  color: inherit; /* Dedi farbu z rodičovského prvku */
  text-decoration: none; /* Odstráni podčiarknutie */
  cursor: pointer !important; /* Zmení kurzor na ukazovateľ */
}

a:hover, a:focus, a:active, a:visited {
  all: unset;
  color: inherit;
  text-decoration: none;
}

/*POP UP OKNO*/
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.popup-content {
  background: transparent;
  text-align: center;
  max-width: 90%;
}
.popup-content img {
  max-width: 50%;
  border-radius: 10px;
}


.btn-pulse {
  background-color: #626657;
  color: white;
}

.btn-pulse:hover {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 #626657; }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(155, 89, 182, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(155, 89, 182, 0); }
}

/* Reviews Widget CSS */
        .reviews-widget-wrapper-x7k9 {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: left;
            padding: 20px;
        }

        .reviews-container-x7k9 {
            max-width: 800px;
            width: 60%;
        }

        .reviews-title-x7k9 {
            text-align: center;
            color: white;
            margin-bottom: 40px;
            font-size: 2.5em;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .review-slider-box-x7k9 {
            background: white;
            border-radius: 20px;
            padding: 60px 50px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            position: relative;
            overflow: hidden;
        }

        .review-card-item-x7k9 {
            display: none;
            animation: reviewFadeIn-x7k9 0.6s ease-in-out;
        }

        .review-card-item-x7k9.active-review-x7k9 {
            display: block;
        }

        @keyframes reviewFadeIn-x7k9 {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .review-quote-icon-x7k9 {
            font-size: 60px;
            color: #667eea;
            opacity: 0.3;
            line-height: 1;
            margin-bottom: 20px;
        }

        .review-text-content-x7k9 {
            font-size: 1.2em;
            line-height: 1.8;
            color: #333;
            margin-bottom: 30px;
            font-style: italic;
        }

        .review-author-section-x7k9 {
            display: flex;
            align-items: left;
            justify-content: space-between;
            padding-top: 20px;
            border-top: 2px solid #f0f0f0;
        }

        .review-author-name-x7k9 {
            font-size: 1.1em;
            font-weight: 600;
            color: #667eea;
        }

        .review-stars-container-x7k9 {
            display: flex;
            gap: 5px;
        }

        .review-star-icon-x7k9 {
            font-size: 24px;
            color: #ddd;
        }

        .review-star-icon-x7k9.star-filled-x7k9 {
            color: #ffc107;
        }

        .review-navigation-x7k9 {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }

        .review-nav-button-x7k9 {
            background: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            color: #667eea;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .review-nav-button-x7k9:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
            background: #667eea;
            color: white;
        }

        .review-dots-container-x7k9 {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .review-dot-indicator-x7k9 {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .review-dot-indicator-x7k9.dot-active-x7k9 {
            background: white;
            width: 30px;
            border-radius: 6px;
        }

        @media (max-width: 600px) {
            .review-slider-box-x7k9 {
                padding: 40px 30px;
            }

            .reviews-title-x7k9 {
                font-size: 2em;
            }

            .review-text-content-x7k9 {
                font-size: 1em;
            }
        }