/* 
    Цвета
 */
:root {
    --light-color: rgba(4, 0, 28, 1);
    --black-color: rgba(4, 0, 22, 1);
}
/* 
    Общие стили
*/
* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    text-decoration: none;
    color: white;
    font-family: sans-serif;
    flex-shrink: 0;
}
body {
    background-color: var(--light-color);
    /* padding: 10px; */
}
button {
    background-color: rgba(0, 0, 0, 0);
    border: none;
}

/* 
    Хедер
 */
.header {
    background-color: var(--black-color);
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 10px;
    border-radius: 5px;
    margin: 10px 10px 0px 10px;
}
.navButtons {
    display: flex;
    align-items: center;
    gap: 20px;
}
.translate-icon {
    position: relative;
}
.translate-window {
    position: absolute;
    top: 32px;
    left: -40px;
    color: white;
    background-color: var(--light-color);
    border: #040008 solid 2px;
    display: none;
    flex-direction: column;
}
.translate-window a {
    padding: 20px 20px;
}
/* 
    Меню
 */
.burgerMenuWindow{
    position: fixed;
    right: -100%;
    top: 0px;
    width: 100vw;
    height: 100vh;
    background-color: var(--light-color);
    z-index: 1;
    /* display: none; */
    transition: all 0.5s ease-in-out;
    /* transform: translateY(200px); */
}
.burgerMenuWindow.active{
    transform: translateX(-100%);
}
.burgerMenuNav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 60px 20px 20px 20px;
}
.burgerMenuNav a{
    background-color: var(--black-color);
    height: 60px;
    width: 100%;
    font-size: 22px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
/* 
    Герой
 */
.hero {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 15px;
    margin: 80px auto;
}
.hero h1 {
    font-size: 15px;
    font-weight: 900;
}
.hero span {
    text-decoration: underline #ffffff 1.5px;
}
/* 
    Товары
 */
.selectAreaDiv {
    background-color: var(--black-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 480px;
    border-radius: 5px;
    padding: 10px;
    margin: 0px 10px 20px 10px;
}
.selectAreaText {
    font-size: 18px;
    font-weight: 500;
    margin: 10px 0px 20px 0px;
}
.selectArea {
    height: 410px;
    width: 100%;
    overflow: scroll;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.selectAreaButton {
    height: 60px;
    display: flex;
    justify-content: space-between;
    padding: 0px 10px;
    background-color: var(--light-color);
    border-radius: 5px;
    width: 100%;
    align-items: center;
}
.selectArea img {
    border-radius: 5px;
}

/* 
    Секция оплаты
*/
.buyAreaDiv {
    border-radius: 5px;
    background-color: var(--black-color);
    margin: 0px 10px 10px 10px;
    padding: 0px 10px 10px 10px;
}
.buyAreaText {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    padding: 20px 0px 0px 0px;
}
.buyAreaDays {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}
.buyAreaButton {
    border-radius: 5px;
    background-color: var(--light-color);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.buyAreaLore {
    margin-top: 10px;
    gap: 10px;
    display: flex;
}
.buyAreaLore img {
    height: 50px;
    width: 50px;
    border-radius: 5px;
}
.buyAreaLoreText {
    background-color: var(--light-color);
    height: 50px;
    flex-grow: 1;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.buyAreaBuy{
    margin-top: 10px;
    gap: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

#price {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    background-color: var(--light-color);
}

#buy {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    background-color: black;
}