h1,
h2,
h3 {
    color: #5C5B5B;
}

.header {
    background-color: #EEEEEE;
    position: sticky;
    top: 0;
}

.top-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.bottom-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.header-top-logo {
    width: 50%;
}

.logo-image {
    width: 100%;
    height: auto;
}

.header-top-buttons button {
    padding: 10px;
    background-color: #008754;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    max-width: 150px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-bottom: 20px;
}

.bi {
    font-size: 35px;
    transition: color 0.3s;
}
.bi-telephone-fill{
    color: #25D366;
}
.bi-telegram {
    color: #24A1DE;
}

.bi-whatsapp {
    color: #25D366;
}

/* PRODUCT DETAIL PAGE */
.product-image img {
    width: 100%;
    height: auto;
}

.product-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #5C5B5B;
}

.product-description {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #5C5B5B;
}

details summary::-webkit-details-marker,
details summary::marker {
    content: "☟";
    font-size: 30px;
}

.product-file-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.file-type {
    font-weight: bold;
    color: #5C5B5B;
    margin-bottom: 5px;
    align-self: center;

    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
}

.file-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #5C5B5B;

}

.download-file-btn {
    background-color: #008754;
    color: white;
    border: none;
    cursor: pointer;
    text-align: right;
    text-decoration: none;
    padding: 10px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    align-self: end;
}

.product-guarantee-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.guarantee-item-date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    margin-bottom: 10px;
}

.description-text {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    line-height: 20px;
    color: #5C5B5B;
}

.description-text.expanded {
    -webkit-line-clamp: unset;
    /* Показує весь текст */
    overflow: visible;
    text-overflow: unset;
}

.read-more-btn {
    display: block;
    /* text-decoration: none; */
    color: #5C5B5B;
    /* text-align: right; */
    margin-right: 5px;
    font-size: 16px;
    font-weight: bold;
}

.read-more-btn.hidden {
    display: none;
}
.guarantee{
    display: flex;
    justify-content: space-between;
}

.guarantee-label {
    /* Додайте відступ, якщо потрібно, щоб маркер не налягав на заголовок */
    margin-top: 10px;
    margin-bottom: 20px; /* Відступ від наступного блоку */
    display: flex; /* Для центрування/вирівнювання, якщо потрібно більше елементів */
    justify-content: center; /* Центруємо напис по горизонталі */
    align-items: center; /* Центруємо напис по вертикалі */
    height: 50px; /* Приблизна висота прямокутника */
}

.guarantee-status {
    padding: 10px 20px; /* Внутрішні відступи для тексту */ /* Колір тексту */
    font-weight: bold; /* Жирний шрифт */
    border-radius: 8px; /* Заокруглені кути */
    transform: rotate(-20deg); /* Поворот на -20 градусів */
    display: inline-block; /* Щоб transform працював коректно */
    white-space: nowrap; /* Щоб текст не переносився на наступний рядок */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Легка тінь */
}

.guarantee-status.valid {
    color: #28a745;
    border:1px dashed #28a745; /* Зелений колір для дійсної гарантії */
}

.guarantee-status.invalid {
    color: #dc3545;
    border:1px dashed #dc3545; /* Червоний колір для недійсної гарантії */
}

/* END PRODUCT DETAIL PAGE */

.footer {
    display: flex;
    flex-direction: column;
    background-color: #5C5B5B;
    color: white;
    padding: 20px;
}

.footer-company-name {
    font-size: 20px;
}

.footer-company-address,
.footer-company-phone,
.footer-company-email,
.footer-company-site {
    font-size: 16px;
    line-height: 25px;
}

.footer-company-site a {
    text-decoration: none;
    color: white;
}