* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}


/* **** *//* **** */
/* **** *//* HR 1 */
/* **** *//* **** */

.hr01 {
    width: 80%;
    margin: 0 auto;
    border: none;
    background-color: rgb(0, 0, 0);
    height: 2px;
    margin-bottom: 20px;
}

/* **** *//* **** */
/* **** *//* HR 2 */
/* **** *//* **** */

.hr02 {
    width: 80%;
    margin: 0 auto;
    border: none;
    background-color: rgb(0, 0, 0);
    height: 2px;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* **** *//* **** */
/* **** *//* PRODUKT NENÍ */
/* **** *//* **** */

.produkt-neni {
    text-align: center;
    font-style: italic;
    margin: 40px auto;
    background-color: rgb(68, 67, 67);
    padding: 30px;
    color: white;
    font-size: 1.3rem;
}

/* **** *//* **** */
/* **** *//* ŠIPKA ZPĚT */
/* **** *//* **** */

.sipka-zpet {
  position: absolute;
  top: 100px;
  left: 100px;
  font-size: 24px;
  text-decoration: none;
  background: rgb(219, 219, 219);
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  color: black;
  z-index: 1;
}

.sipka-zpet:hover {
    font-size: 26px;
}


/* **** *//* **** */
/* **** *//* BARVY */
/* **** *//* **** */

.header.kuze, 
.uvod-text.kuze,
.info.kuze {
    background-color: #d0c999;
}

.header.plech, 
.uvod-text.plech,
.info.plech {
    background-color: #36a07f;
}

.header.termo, 
.uvod-text.termo,
.info.termo {
    background-color: #167da8;
}

.header.bizu, 
.uvod-text.bizu,
.info.bizu {
    background-color: #db9807;
}

.header.obl, 
.uvod-text.obl,
.info.obl {
    background-color: #d3453e;
}

.header.ost, 
.uvod-text.ost,
.info.ost {
    background-color: #963854;
}

.header.vypr, 
.uvod-text.vypr,
.info.vypr {
    background-color: #ffa5a5;
}



/* **** *//* **** */
/* **** *//* HEADER */
/* **** *//* **** */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background-color: #d0c999;
    box-shadow: 0px 10px 10px rgba(0,0,0,0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: transform 0.3s ease;
}

.header.hide {
  transform: translateY(-100%);
}

.header-kontakt {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 15px;
    font-family: 'Quicksand';
    display: flex;
}

.header-ikony {
    display: flex;
    gap: 40px;
}

.header-ikony img {
    width: 30px;
    height: auto;
    cursor: pointer;
}

.header-kontakt a {
   color: black;
   font-weight: bold;
   text-decoration: none;
}

/* **** *//* **** */
/* **** *//* LOGO */
/* **** *//* **** */

.logo {
    display: flex;
    height: 80vh;
    justify-content: center;
    align-items: center;
    
    margin-top: 50px;
}

.img-logo {
    max-width: 100%;
}

.img-logo img {
    width: 500px;
}

/* **** *//* **** */
/* **** *//* MENU */
/* **** *//* **** */

/* CLOSE-BTN */

.menu-close {
    background: none;
    border: none;
    font-size: 30px;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

/* MENU */

.menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: rgb(255, 255, 255);
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: right 0.6s ease-in-out;
    
}

.menu::after {
    content: "";
    position: absolute;
    background: url(img/Logo/img-logo-3.png) no-repeat center;
    background-size: contain;
    bottom: 20px;
    left: 50%;
    width: 120px;
    height: 120px;
    transform: translate(-50%);
    opacity: 0.3;
}

.menu.open {
    right: 0;
}

.menu-main {
    padding: 20px;
    overflow-y: auto;
    height: 100%;
}

.menu-list {
    list-style: none;
    padding: 0px;
    margin-top: 50px;
}

.menu-list li {
    margin-bottom: 15px;
    
}

.kategorie-main {
    font-weight: bold;
    cursor: pointer;
    padding: 10px;
    background-color: #f4f4f4;
    border-radius: 4px;
    position: relative;
    font-family: 'Quicksand';
}

.menu-list li a {
    display: block;
    padding: 12px;
    text-decoration: none;
    color: black;
    background-color: #f4f4f4;
    border-radius: 4px;
    transition: background 0.2s ease;
    font-family: 'Quicksand';
}


.submenu {
    display: none;
    list-style: none;
    padding-left: 15px;
    margin-top: 5px;
}

.submenu li a {
    display: block;
    padding: 8px;
    color: black;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Quicksand';
}

.kuze:hover {
    background: linear-gradient(to left, #d0c999 0%, #d0c999 50%, transparent 100%);
}

.hrnek:hover {
    background: linear-gradient(to left, #36a07f 0%, #36a07f 50%, transparent 100%);
}

.termosky:hover {
    background: linear-gradient(to left, #167da8 0%, #167da8 50%, transparent 100%);
}

.bizuterie:hover {
    background: linear-gradient(to left, #db9807 0%, #db9807 50%, transparent 100%);
}

.obleceni:hover {
    background: linear-gradient(to left, #d3453e 0%, #d3453e 50%, transparent 100%);
}

.ostatni:hover {
    background: linear-gradient(to left, #963854 0%, #963854 50%, transparent 100%);
}

.vyprodej:hover {
    background: linear-gradient(to left, #ffa5a5 0%, #ffa5a5 50%, transparent 100%);
}

/* **** *//* **** */
/* **** *//* ÚVOD - TEXT */
/* **** *//* **** */

.uvod-text {
    background-color: #d0c999;
    padding: 20px;
    text-align: center;
    box-shadow: 0px -10px 10px rgba(0,0,0,0.2);
    padding-top: 80px;           
}

.uvod-text h1 {
    font-size: 28px;
    font-family: 'Quicksand';
    margin-top: 43px;
}

.uvod-text-index {
    background-color: #d0c999;
    padding: 20px;
    text-align: center;
    box-shadow: 0px -10px 10px rgba(0,0,0,0.2);
    padding-top: 65px;  
    font-family: 'Quicksand';
}






/* **** *//* **** */
/* **** *//* PRODUKTY-ÚVOD */
/* **** *//* **** */

.produkty-vybrane {
    padding: 60px 20px;
    background-color: #d0c999;
    text-align: center;
    justify-content: center;
    box-shadow: 0px 10px 10px rgba(0,0,0,0.2);
}

.produkty-vybrane h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    font-family: 'Quicksand';
}

.produkty-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}


.produkt-karta {
    width: 280px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    flex-direction: column;
}

.produkt-karta img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 5/5;
}

.produkt-info {
    padding: 16px;
}

.produkt-info h3 {
    margin: 0;
    font-size: 1.1rem;
    font-family: 'Quicksand';
    color: #222;
}

.kategorie-label {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 10px;
    font-size: 1rem;
    border-radius: 5px;
}

.kategorie-hrnek {
    background-color: #36a07f;
}

.kategorie-kuze {
    background-color: #d0c999;
}

.kategorie-bizuterie {
    background-color: #db9807;
}

.kategorie-termosky {
    background-color: #167da8;
}

.kategorie-obleceni {
    background-color: #d3453e;
}

.kategorie-ostatni {
    background-color: #963854;
}

.cena {
    margin: 12px 0;
    font-weight: bold;
    font-size: 1rem;
}

.btn-zobrazit {
    display: inline-block;
    padding: 10px 16px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-zobrazit:hover {
    background-color: #555;
}

/* **** *//* **** */
/* **** *//* PRODUKT - PLECH */
/* **** *//* **** */

.produkty-plech {
    padding: 60px 20px;
    background-color: #36a07f;
    text-align: center;
    justify-content: center;
    box-shadow: 0px 10px 10px rgba(0,0,0,0.2);
}

.produkty-plech h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    font-family: 'Quicksand';
}

/* **** *//* **** */
/* **** *//* PRODUKT - TERMOSKY */
/* **** *//* **** */

.produkty-termosky {
    padding: 60px 20px;
    background-color: #167da8;
    text-align: center;
    justify-content: center;
    box-shadow: 0px 10px 10px rgba(0,0,0,0.2);
}

.produkty-termosky h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    font-family: 'Quicksand';
}

/* **** *//* **** */
/* **** *//* PRODUKT - OBLEČENÍ */
/* **** *//* **** */

.produkty-obleceni {
    padding: 60px 20px;
    background-color: #d3453e;
    text-align: center;
    justify-content: center;
    box-shadow: 0px 10px 10px rgba(0,0,0,0.2);
}

.produkty-obleceni h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    font-family: 'Quicksand';
}


/* **** *//* **** */
/* **** *//* PRODUKT - OSTATNI */
/* **** *//* **** */

.produkty-ostatni {
    padding: 60px 20px;
    background-color: #963854;
    text-align: center;
    justify-content: center;
    box-shadow: 0px 10px 10px rgba(0,0,0,0.2);
}

.produkty-ostatni h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    font-family: 'Quicksand';
}

/* **** *//* **** */
/* **** *//* PODKATEGORIE - PRODUKT */
/* **** *//* **** */

.podkategorie-produkt {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
    cursor: pointer;
}

.podkategorie-produkt img {
    width: 250px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    object-fit: cover;
}

.podkategorie-produkt img:hover {
    scale: 1.02;
    transition: 0.3s ease;
}

.podkategorie-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 25px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease;
}

.podkategorie-btn:hover {
    background-color: #555;
}

/* **** *//* **** */
/* **** *//* PODKATEGORIE - KŮŽE */
/* **** *//* **** */

.podkategorie-kuze {
    margin-bottom: 60px;
    text-align: center;
    background-color: #d0c999;
    box-shadow: 0px 10px 10px rgba(0,0,0,0.2);
    padding-bottom: 50px;
}

.podkategorie-kuze h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    padding-top: 40px;
    font-family: 'Quicksand';
}

.podkategorie-kuze p {
    font-size: 1.2rem;
    font-family: 'Quicksand';
}



/* **** *//* **** */
/* **** *//* PODKATEGORIE - BIŽUTERIE *//* **** *//* **** */

.podkategorie-bizuterie {
    margin-bottom: 60px;
    text-align: center;
    background-color: #db9807;
    box-shadow: 0px 10px 10px rgba(0,0,0,0.2);
    padding-bottom: 50px;
}

.podkategorie-bizuterie h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    padding-top: 40px;
    font-family: 'Quicksand';
}

.podkategorie-bizuterie p {
    font-size: 1.2rem;
    font-family: 'Quicksand';
}

/* **** *//* **** */
/* **** *//* PODKATEGORIE - OBLEČENÍ *//* **** *//* **** */

.podkategorie-obleceni {
    margin-bottom: 60px;
    text-align: center;
    background-color: #d3453e;
    box-shadow: 0px 10px 10px rgba(0,0,0,0.2);
    padding-bottom: 50px;
}

.podkategorie-obleceni h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    padding-top: 40px;
    font-family: 'Quicksand';
}

.podkategorie-obleceni p {
    font-size: 1.2rem;
    font-family: 'Quicksand';
}

/* **** *//* **** */
/* **** *//* PODKATEGORIE - OSTATNÍ *//* **** *//* **** */

.podkategorie-ostatni {
    margin-bottom: 60px;
    text-align: center;
    background-color: #963854;
    box-shadow: 0px 10px 10px rgba(0,0,0,0.2);
    padding-bottom: 50px;
}

.podkategorie-ostatni h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    padding-top: 40px;
    font-family: 'Quicksand';
}

.podkategorie-ostatni p {
    font-size: 1.2rem;
    font-family: 'Quicksand';
}



/* **** *//* **** */
/* **** *//* PRODUKT */
/* **** *//* **** */

.produkt-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
    margin-top: 20px;
    margin-bottom: 40px;
}

.produkt-nazev {
    font-size: 2rem;
    margin-bottom: 40px;
    margin-top: 80px;
    font-family: 'Quicksand';
    text-align: center;
}

.produkt-flex {
    display: flex;
    
    gap: 20px;
    align-items: center;
}

.produkt-obrazek {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.produkt-hlavni {
    width: 80%;
    max-width: auto;
    object-fit: contain;
    border: 1px solid black;
    margin-bottom: 2rem;
    border-radius: 15px;
}

.produkt-detail {
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
}

.produkt-detail img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    cursor: pointer;
    border: 1px solid black;
    padding: 5px;
    border-radius: 8px;
}

.produkt-detail img:hover {
    border-color: #888;
}

.produkt-popis {
    width: 800px;
}

.produkt-ul {
    font-size: 1.3rem;
    font-family: 'Quicksand';
    margin-bottom: 15px;
    text-align: left;
}

.produkt-ul li {
    list-style: none;
    margin-left: 10px;
    margin-top: 2px;
    font-size: 1.2rem;
    
}

.produkt-cena {
    font-size: 1.7rem;
    font-style: bold;
    margin-bottom: 20px;
    margin-top: 40px;
}

.koupit {
    background-color: #333;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 8px;
}

.koupit:hover {
    background-color: #555;
}




/* **** *//* **** */
/* **** *//* O NÁS*/
/* **** *//* **** */

.onas {
    padding: 100px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    line-height: 1,7;
    font-family: 'Quicksand';
}

.onas h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
}

.onas p {
    font-size: 1rem;
    margin-top: 10px;
}

/* **** *//* **** */
/* **** *//* INFO */
/* **** *//* **** */

.info {
    background-color: #d0c999;
    color: black;
    padding: 40px 20px;
    font-family: 'Quicksand';
    box-shadow: 0px -10px 10px rgba(0,0,0,0.2);
}

.info-main {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.info-main h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: black;
}

.info-main ul {
    list-style: none;
    padding: 0;
}

.info-main ul li {
    margin-bottom: 10px;
}

.info-main ul li a {
    color: black;
    text-decoration: none;
}

.info-main ul li a:hover {
    text-decoration: underline;
}

/* **** *//* **** */
/* **** *//* OP   */
/* **** *//* **** */

.obchodni-podminky,
.gdpr,
.cookies {
  max-width: 800px;
  margin: 60px auto;
  padding: 20px;
  line-height: 1.7;
  font-size: 16px;
  color: #222;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.obchodni-podminky h1,
.gdpr h1,
.cookies h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.obchodni-podminky h3,
.gdpr h3,
.cookies h3 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #444;
  border-left: 4px solid #444;
  padding-left: 10px;
}

.obchodni-podminky p,
.gdpr p,
.cookies p {
  margin: 10px 0;
}

.obchodni-podminky a,
.gdpr a,
.cookies a {
  color: #006699;
  text-decoration: underline;
  transition: color 0.3s;
}

.obchodni-podminky a:hover,
.gdpr a:hover
.cookies a:hover {
  color: #003344;
}

/* **** *//* **** */
/* **** *//* KOŠÍK */
/* **** *//* **** */



#kosik-stranka {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  margin-top: 150px;
}

/* Název */
#kosik-stranka h1 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  font-family: 'Quicksand';
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  padding: 2rem; /* nebo kolik chceš */
}

/* Produkty */
#kosik-obsah div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  font-size: 18px;
  font-family: 'Quicksand';
}

#kosik-obsah .produkt-mazat {
  cursor: pointer;
  color: #d33;
  font-weight: bold;
  margin-left: 10px;
  transition: color 0.2s;
}

#kosik-obsah .produkt-mazat:hover {
  color: #a00;
}

/* Součet */
#kosik-cena-soucet {
  font-weight: bold;
  font-size: 20px;
  text-align: right;
  margin-top: 15px;
  font-family: 'Quicksand';
}

/* Tlačítka */
button {
  padding: 10px 16px;
  margin: 10px 5px 0 0;
  border: none;
  border-radius: 5px;
  background-color: #333;
  color: white;
  cursor: pointer;
  font-size: 15px;
  transition: background-color 0.3s;
  font-family: 'Quicksand';
}

button:hover {
  background-color: #555;
}

/* Widget Zásilkovny */
.packeta-selector-value {
  font-size: 16px;
  font-weight: 500;
  color: #444;
  margin-top: 15px;
  border-left: 3px solid #900;
  padding-left: 10px;
  font-family: 'Quicksand';
}


#objednavkovy-formular {
  max-width: 600px;
  margin: 3rem auto;
  padding: 2rem;
  border: 1px solid #ddd;
  border-radius: 12px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  font-family: 'Quicksand';
}

#objednavkovy-formular h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  color: #333;
  font-family: 'Quicksand';
}

.form-group {
  margin-bottom: 1.5rem;
  
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #444;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fff;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #888;
  outline: none;
}


.doprava-vyber {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1rem;
}

.doprava-vyber label {
  display: block;
  margin-bottom: 5px;
}

.doprava-vyber select {
  padding: 10px;
  width: 100%;
  max-width: 400px;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.osobni-odber-info {
    font-family: 'Quicksand';
}


/* **** *//* **** */
/* **** *//* FOOTER */
/* **** *//* **** */

.footer {
    background-color: black;
    text-decoration: none;
    color: white;
    padding: 10px 10px;
    font-size: 0.9em;
    text-align: center;
    font-family: 'Quicksand';
}

.footer a {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s;
}

.footer a:hover {
    border-bottom: 1px solid white;
}

@media (max-width: 900px) {
    .img-logo img {
        width: 300px;
        margin-bottom: -50px;
    }

    .produkt-flex {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .produkt-popis {
        text-align: center;
        max-width: 300px;
        margin-left: 0px;
    }

    .produkt-hlavni {
        border-radius: 8px;
        max-width: 500px;
    }

    .produkt-detail img {
        width: 70px;
        height: 70px;
        padding: 2px;
        border-radius: 5px;
    }

    .sipka-zpet {
        position: absolute;
        top: 80px;
        left: 10px;
        z-index: 1;

    }
    
    
}

@media (max-width: 1100px) {
    .produkt-flex {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .produkt-popis {
        text-align: center;
        
    }

}