* {
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

.logo-elite {
	display:flex;
	flex-direction: row;
}
.osaka-logo {
	
	margin: 20px;
}

.osaka-elite {
	
	align-items: center;
}

.container {
    display: block;
    margin: 20px auto;
    max-width: 1100px;
}

.top-block {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    margin: 0 auto;
    background-color: #ffffff; /* Залишаємо білий фон */
}

.conditioner-block {
    flex: 1 1 calc(33.333% - 30px);
    box-sizing: border-box;
    padding: 15px;
    text-align: center;
    background-color: #7b2900; /* Темно-коричневий фон */
    border: 1px solid #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.desc-prod h1 {
    font-family: Arial, sans-serif;
    font-size: 24px;
    color: #ffffff;
    text-align: center;
    margin: 0;
}

.gallery {
    display: flex;
    width: 100%;
    height: 260px;
    justify-content: center;
    align-items: center;
    margin: 10px auto;
    border-radius: 10px;
    background-color: #ffffff;
    position: relative;
}

.gallery img {
    border-radius: 10px;
    display: block;
    max-width: 250px;
    height: auto;
}

.warranty-sticker {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ff0000;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    padding: 5px;
    border-radius: 3px;
}

.price {
    width: 80%;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #ffffff; /* Білий колір для ціни */
    font-weight: bold;
    margin-bottom: 5px;
    margin-left: auto;
    margin-right: auto;
}

.desc-text {
    width: 95%;
    max-width: 1100px;
    margin: 5px auto;
    font-size: 14px;
    color: #ffffff;
    text-align: justify;
}

.desc-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.desc-text li {
    margin: 5px 0;
}

p {
    width: 90%;
    margin: 1em auto;
}

.table-hka {
    width: 80%;
    max-width: 1100px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    border: 1px solid #ffffff;
    border-radius: 4px;
    overflow: hidden;
    background-color: #ffffff;
}

.table-hka .row-h {
    display: flex;
    justify-content: space-between;
    padding: 10px 16px;
    border-bottom: 1px solid #dddddd;
    line-height: 1.5;
}

.table-hka .row-h:nth-child(even) {
    background-color: #cfcfcf;
}

.table-hka .col1 {
    flex: 1;
    color: #333333;
}

.table-hka .col2 {
    flex: 0 0 auto;
    max-width: 200px;
    text-align: right;
    color: #333333;
}

.order-form {
    width: 100%;
    margin: 10px 0;
    display: flex; /* Використовуємо Flexbox для точнішого центрування */
    justify-content: center; /* Центруємо кнопку по горизонталі */
}

.order-form button {
    height: 44px;
    padding: 0 10px;
    line-height: 42px;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    width: 180px;
    font-family: Arial, sans-serif;
    background-color: #00ff00; /* Зелений фон для кнопки */
}

/* Адаптивність */
@media (max-width: 768px) {
    .container {
        display: block;
        margin: 20px auto;
    }
    
    .top-block {
        width: 90vw;
        padding: 20px;
        height: auto;
    }

    .conditioner-block {
        flex: 1 1 100%;
    }

    .desc-prod h1 {
        font-size: 20px;
    }

    .gallery {
        height: 210px;
    }

    .gallery img {
        max-width: 200px;
    }

    .price {
        font-size: 16px;
    }

    .desc-text {
        width: 95%;
    }

    .table-hka {
        width: 95%;
    }

    .order-form button {
        width: 150px;
        font-size: 16px;
        height: 38px;
        line-height: 36px;
    }
}