/* nejsme vcerejsi, pouzivame moderni a intuitivni box model */
html { box-sizing: border-box; }
*, ::after, ::before { box-sizing: inherit; }

body {
    text-rendering: optimizeLegibility;
}

/*
 BARVY
 svetle sede pozadi      #f5f5f5
 tmavsi seda             #959595
 barevny prechod nahore  #06d7c1
 barevny prechod dole    #50cc49
 zelena cara             #06d7c1
 oranzova                #f15f42

 PISMO
 Rubik - pouzite rezy pisma regular 400 a medium 500
 https://fonts.google.com/specimen/Rubik
*/

/* ----- zde zacni psat vlastni css ----- */
body{
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f5f5f5;
}
.zbozi{
    display: flex;
    max-width: 670px;
    max-height: 440px;
    border-radius: 5px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.vizual{
    position: relative;
    background-image: linear-gradient(to bottom, #06d7c1, #50cc49);
    width: 50%;
    border-radius: 5px 0 0 5px;
    padding: 30px;
    box-sizing: border-box;
}
.logo{
    width: 100%;
    height: auto;
    margin-bottom: 30px;   
}
.slogan{
    color: white;
    font-size: 16px;
    font-weight: 500;
    
}
.bota img{
    position: relative;
    right: 100px;
   
}
.cenovka{
    right: 30px;
    bottom: 30px;
    position: absolute;
    color: white;
}
.cena{
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: right;
}
.zaruka{
    font-size: 12px;
    font-weight: 400;
}










/*levo*/

.detaily{
box-sizing: border-box;
padding-left: 30px;
padding-top: 30px;
padding-right: 30px;
padding-bottom: 30px;
display: flex;
    flex-direction: column;
    justify-content: space-between;
width: 50%;
}
.nazev{
    margin-top: 0;
    margin-bottom: 10px;
    text-transform: uppercase;

    font-size: 20px;
    font-weight: 500;
    
}
.produkt{
margin: 0 0 20px 0;
color: #9496AD;
}
.popis{
    margin: 0 0 20px 0;
    padding-bottom: 40px;
    border-bottom: #06d7c1 solid 2px;
}
.parametr {
    
    font-size: 16px;
    
    font-weight: 500;
    text-transform: uppercase;
    margin: 30px 0 10px 0;
    
   
}
.velikosti {
    
    display: flex;
    gap: 10px;
    margin: 0 0 20px 0;
    padding: 0;
    list-style: none;
    transition: all .3s ease-in-out;
    list-style: none;
}
.velikosti li {
    padding: 8px 8px;
    border: 1px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

/*.velikosti li:hover {
    background-color: #f15f42;
    border: 1px solid #f15f42;
    color: white;
}*/
.velikosti .vybrana:hover {
    
    border: 1px solid #f15f42;
    font-weight: 500;
    color: #f15f42;
    transition: all .3s ease-in-out;
}



.tlacitko{
    display: inline-block;
    padding: 18px 30px 14px 30px;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    background-color: #f15f42;
    color: white;
    border-radius: 6px;
    transition: all .3s ease-in-out;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    
}
.tlacitko:hover{
    background-color: white;
    color: #f15f42;
    box-shadow: 0 2px 5px rgba(0,0,0,0.25);
    transition: all .3s ease-in-out;
}
.tlacitko:active{
    background-color:  #50cc49;
    color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    transition: all .3s ease-in-out;
    
}