/*   Стили cookies   */

.cookie-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background-color: #fff;
    color: #333;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    display: none; /* Скрыто по умолчанию, показывается через JS */
    border: 1px solid #e0e0e0;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-icon {
    color: #4a6cf7; /* Приятный синий цвет */
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text h3 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.cookie-text p {
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
    color: #666;
}

.cookie-text a {
    color: #4a6cf7;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    border: none;
    transition: all 0.2s ease;
}

.accept-btn {
    background-color: #4a6cf7;
    color: white;
}

.accept-btn:hover {
    background-color: #3a5bd9;
}

.configure-btn {
    background-color: transparent;
    color: #4a6cf7;
    border: 1px solid #e0e0e0;
}

.configure-btn:hover {
    background-color: #f5f7ff;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: flex-end;
    }
}
/*   Кнопка Смотреть каталог    */
.catalog-button-wrap {
    display: flex;
    justify-content: center;
    margin-top: 80px;
}
.catalog-button {
    border-radius: 10px;
    background: #e12d2e;
    color: #fff;
    text-align: center;
    border: 1px solid #7b0001;
    padding: 10px 40px;
    font-weight: 600;
    font-size: 25px;
    line-height: 30px;
    white-space: normal;
    font-family: 'Gilroy', Tahoma, sans-serif;
    -webkit-transition: color 0.1s ease-in-out, background 0.1s ease-in-out, border-color 0.1s ease-in-out;
    transition: color 0.1s ease-in-out, background 0.1s ease-in-out, border-color 0.1s ease-in-out;
	-webkit-box-shadow: 0px 0px 8px 0px rgba(225, 45, 46, 0.8), 0px 0px 8px 0px rgba(255, 255, 255, 0.8) inset;
	-moz-box-shadow: 0px 0px 8px 0px rgba(225, 45, 46, 0.8), 0px 0px 8px 0px rgba(255, 255, 255, 0.8) inset;
	box-shadow: 0px 0px 8px 0px rgba(225, 45, 46, 0.8), 0px 0px 8px 0px rgba(255, 255, 255, 0.8) inset;
}
.catalog-button:hover {
	background: #fff;
	color: #e12d2e;
	border: 1px solid #e12d2e;
	-webkit-box-shadow: 0px 0px 8px 0px rgba(225, 45, 46, 0.8) inset;
	-moz-box-shadow: 0px 0px 8px 0px rgba(225, 45, 46, 0.8) inset;
	box-shadow: 0px 0px 8px 0px rgba(225, 45, 46, 0.8) inset;
}

/*   Наши приемущества   */

.advantage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.advantage-description {
    display: flex;
    flex-direction: column;
    align-self: center;
    align-items: center;
}
.advantage-item .advantage-info {
    text-align: center;
}

/*   Политика конфиденциальности   */

.privacy-policy {
    display: flex;
    justify-content: center;
}
.privacy-policy a {
    display: flex;
    justify-content: center;
	align-items: center;
	align-self: center;
	color: #fff;
}
.privacy-policy a:hover {
	color: #e12d2e;
}