@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

button:hover{
    cursor: pointer;
}
input[type = "submit"]:hover{
    cursor: pointer;
}
p{
    line-height: 1.5;
}


.flex{
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex.active {
    background-color: var(--ColoBrown);
    color: var(--ColorYellow);
}
:root{
    --ColorYellow: #E1D1B9;
    --ColorWhite:white;
    --ColorBlack:black;
    --ColoBrown: #1C1A16;
    --MaxWidth:1300px;
    --ColorLightYellow: rgb(247, 240, 227);
    --Width:1300px;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
}


body {
    background-color: #E8DCC7;
    font-family: Arial, sans-serif;
}

.closet {
    background: #F3E8D5;
    border: 4px solid black;
    margin: 50px 0px 50px 0px;
    flex-direction: column;
    gap: 25px;
    justify-content: start !important;
    flex-direction: column;
    width: var(--Width);
    padding-bottom: 30px;
}

.closet-header {
    display: flex;
    font-weight: bold;
    gap: 15px;
    width: 100%;
    margin: 0px 25px;
}

.closet-header div{
    flex: 1;
    padding: 15px 20px;
}

#first-step{
    background-color: var(--ColoBrown);
    color: var(--ColorWhite);
}

.closet-header .step {
    flex: 1;
    text-align: center;
    padding: 10px;
    cursor: pointer;
}

.closet-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.closet-configurator {
    flex: 1;
    background: #E3D6C1;
    border: 2px solid black;
    height: 410px;
    align-self: flex-end;
    margin-right: 25px;
    min-width: 300px;
}

.closet-main-items{
    gap: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0px 25px;
}

.closet-slot{
    flex: 1 1 100px;
    max-width: 100px;
    min-width: 60px;
    width: auto !important;
}


.closet-items-header {
    background: black;
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    width: 100%;
}

.closet-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: start !important;
    align-items: start !important;
    padding-top: 10px;
}



.closet-items img {
    height: 140px;
    width: 70px;
}


button:hover {
    background-color: #E1D1B9;
}



#send-offer{
    display: none
}


#moduls{
    width: var(--Width);
    flex-direction: column;
    padding-bottom: 50px;
}

.closet-container{
    flex-direction: row;
    width: 100%;
    gap: 35px;
}

.closet-block{
    display: flex;
    gap: 25px;
    flex: 1;
    padding-left: 25px;
    flex-direction: column;
}

.closet-block h3{
    font-size: 16px;
    align-self: start !important;
}

.offer-info{
    padding-top: 30px;
    padding-bottom: 30px;
}

.closet-block:last-child{
    gap: 50px;
}
.closet-block form{
    width: 100%;
    align-items: start !important;
    justify-content: start !important;
}

.closet-block form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.ul-row{
    width: 100%;
    align-items: start !important;
    justify-content: start !important;
    gap: 50px;
    padding-left: 20px;
}

.ul-row ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.closet-block form .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.closet-block form label{
    width: 300px;
}

.closet-block input, select, textarea {
   -webkit-appearance: none; /* odstraní iOS styl */
   -moz-appearance: none;
   appearance: none;
    width: 100%;
    padding: 5px;
    border: 1px solid var(--ColoBrown);
    max-width: 400px;
    background-color: var(--ColorLightYellow);
    color: var(--ColoBrown);
    height: 30px;
}

.closet-block textarea {
    height: 100px;
    width: 100%;
    padding: 5px;
    border: 1px solid var(--ColoBrown);
    max-width: 400px;
    background-color: var(--ColorLightYellow);
    color: var(--ColoBrown);
}
.closet-block form div{
    width: 100%;
    justify-content: space-between;
    align-items: start;
}

.closet-block button{
    align-items: start !important;
    justify-content: start !important;
}


.closet-section{
    flex-direction: column;
    width: 100%;
}

.step{
    border-top: none;
    border-left: 1px solid var(--ColoBrown);
    border-right: 1px solid var(--ColoBrown);
    border-bottom: 1px solid var(--ColoBrown);
    height: 50px;

}
.step:hover{
    background-color: #B7A58C;
}


#doors{
    display: none;
    flex-direction: column;
    align-items: start !important;
    justify-content: start !important;
    gap: 50px;
}
.doors{
    flex-direction: row;
    gap: 25px;
}

.door-part{
    flex-direction: column;
    gap: 10px;
}

.door-part img{
    height: 40px;
    width: 60px;
}

.doors-input{
    gap: 15px;
    width: 100%;
    align-items: center !important;
    justify-content: start !important;
}

#submit-request{
    background-color: var(--ColoBrown);
    color: var(--ColorWhite);
}

#submit-request:hover{
    background-color: var(--ColorYellow);
    color: var(--ColoBrown);
    transition: 0.2s;
}

.instructions{
    width: var(--Width);
    flex-direction: column;
    align-items: start !important;
    justify-content: start !important;
    margin: 50px auto 0px auto;
    gap: 25px;
    background: #F3E8D5;
    padding: 25px;
    border: 2px solid var(--ColoBrown);
}

.instructions ul{
    flex-direction: column;
      align-items: start !important;
    justify-content: start !important;
    gap: 10px;
    padding-left: 20px;
}
.instructions h3{
    font-size: 17px;
}
.form-h3{
    padding-top: 40px;
}