/* ============================================
   БАЗОВЫЕ СТИЛИ
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oswald', sans-serif;
    background: #f8f9fa;
    color: #222;
    line-height: 1.6;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #ff6918;
    color: #fff;
}
.btn-primary:hover {
    background: #e05a0e;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.btn-secondary:hover {
    background: #fff;
    color: #ff6918;
}

.btn-outline {
    background: transparent;
    color: #ff6918;
    border: 2px solid #ff6918;
}
.btn-outline:hover {
    background: #ff6918;
    color: #fff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

/* ============================================
   ШАПКА
   ============================================ */
.landing-header {
    background: #1a1a1a;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.landing-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-header .logo {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff6918;
    text-decoration: none;
}

.landing-header .logo span {
    color: #fff;
}

.landing-header nav a {
    color: #aaa;
    text-decoration: none;
    margin-left: 25px;
    font-size: 0.95rem;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.landing-header nav a:hover {
    color: #ff6918;
}

/* ============================================
   ГЕРОЙ
   ============================================ */
.landing-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #868686 100%);
    color: #fff;
    padding: 80px 0 60px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 105, 24, 0.2);
    color: #ff6918;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

.hero-text p {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.hero-stats div {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ff6918;
}

.stat-label {
    font-size: 0.85rem;
    color: #888;
}

.hero-image {
    flex: 0 0 300px;
    text-align: center;
    font-size: 12rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 20px;
    line-height: 1;
}

/* ============================================
   ПРЕИМУЩЕСТВА
   ============================================ */
.landing-features {
    padding: 80px 0;
    background: #fff;
}

.features-header {
    text-align: center;
    margin-bottom: 50px;
}

.features-badge {
    display: inline-block;
    background: rgba(255, 105, 24, 0.12);
    color: #ff6918;
    padding: 4px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.features-header .section-title {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.features-header .section-subtitle {
    font-size: 1.1rem;
    color: #777;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 28px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6918, #f43702);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(255, 105, 24, 0.08);
    border-color: #ff6918;
}

.feature-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.feature-icon {
    font-size: 3rem;
    line-height: 1;
}

.feature-number {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ccc;
    background: #f8f9fa;
    padding: 2px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Oswald', sans-serif;
    color: #222;
}

.feature-card > p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.5;
}

.feature-details {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}

.feature-details li {
    padding: 6px 0 6px 28px;
    font-size: 0.92rem;
    color: #444;
    position: relative;
    line-height: 1.5;
    border-bottom: 1px solid #f5f5f5;
}

.feature-details li:last-child {
    border-bottom: none;
}

.feature-details li::before {
    content: "✓";
    position: absolute;
    left: 4px;
    color: #ff6918;
    font-weight: 700;
    font-size: 1rem;
}

.feature-details li strong {
    color: #222;
}

.feature-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.feature-tag {
    display: inline-block;
    background: #f8f9fa;
    color: #555;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
}

.feature-tag:hover {
    background: rgba(255, 105, 24, 0.1);
    color: #ff6918;
}

/* ============================================
   ПОПУЛЯРНЫЕ МОДЕЛИ
   ============================================ */
.landing-products {
    padding: 80px 0;
    background: #f8f9fa;
}

.products-header {
    text-align: center;
    margin-bottom: 50px;
}

.products-badge {
    display: inline-block;
    background: rgba(255, 105, 24, 0.12);
    color: #ff6918;
    padding: 4px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.products-header .section-title {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.products-header .section-subtitle {
    font-size: 1.1rem;
    color: #777;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.product-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(255, 105, 24, 0.08);
    border-color: #ff6918;
}

.product-image-wrapper {
    position: relative;
    padding: 30px 20px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #f1f3f5);
    border-bottom: 1px solid #eee;
}

.product-emoji {
    font-size: 4rem;
    display: block;
    line-height: 1;
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 12px;
    border-radius: 20px;
    background: #ff6918;
    color: #fff;
}

.product-badge.popular {
    background: #4caf50;
}

.product-badge.new {
    background: #2196f3;
}

.product-info {
    padding: 20px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 6px;
    font-family: 'Oswald', sans-serif;
    color: #222;
}

.product-desc {
    font-size: 0.92rem;
    color: #666;
    margin-bottom: 12px;
    flex-grow: 1;
}

.product-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.spec-item {
    font-size: 0.8rem;
    background: #f1f3f5;
    padding: 3px 12px;
    border-radius: 4px;
    color: #555;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 14px;
}

.feature-check {
    font-size: 0.88rem;
    color: #444;
    padding: 3px 0;
}

.feature-check::before {
    content: "✓ ";
    color: #ff6918;
    font-weight: 700;
}

.product-price-block {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6918;
}

.product-old-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.product-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 60px;
}

.product-actions .btn {
    flex: 1;
    text-align: center;
    font-size: 0.9rem;
    padding: 10px 18px;
    min-width: 120px;
}

.product-actions .btn-outline {
    background: transparent;
    color: #ff6918;
    border: 2px solid #ff6918;
}

.product-actions .btn-outline:hover {
    background: #ff6918;
    color: #fff;
}

/* ============================================
   ПОЧЕМУ НАМ ДОВЕРЯЮТ — РАСШИРЕННЫЙ
   ============================================ */
.landing-advantages {
    padding: 80px 0;
    background: #1a1a1a;
    color: #fff;
}

.advantages-header {
    text-align: center;
    margin-bottom: 50px;
}

.advantages-badge {
    display: inline-block;
    background: rgba(255, 105, 24, 0.15);
    color: #ff6918;
    padding: 4px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.landing-advantages .section-title {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.landing-advantages .section-subtitle {
    color: #999;
    font-size: 1.1rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.advantage-card:hover {
    background: rgba(255, 105, 24, 0.08);
    border-color: rgba(255, 105, 24, 0.3);
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 2.8rem;
    margin-bottom: 12px;
    display: block;
}

.advantage-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Oswald', sans-serif;
    color: #fff;
}

.advantage-card p {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   ОТЗЫВЫ
   ============================================ */
.landing-reviews {
    padding: 80px 0;
    background: #fff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.review-stars {
    color: #ff6918;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.review-text {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
}

.review-author {
    font-weight: 600;
    color: #222;
    font-size: 0.95rem;
}

/* ============================================
   КОНТАКТЫ
   ============================================ */
.landing-contacts {
    padding: 80px 0;
    background: #fff;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 30px;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 50px;
    text-align: center;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    font-family: 'Oswald', sans-serif;
    color: #222;
}

.contact-item p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.contact-item a {
    color: #ff6918;
    text-decoration: none;
}
.contact-item a:hover {
    text-decoration: underline;
}

.contacts-form {
    background: #f8f9fa;
    padding: 35px 30px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.contacts-form h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

.contacts-form .form-group {
    margin-bottom: 18px;
}

.contacts-form label {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #333;
}

.contacts-form input,
.contacts-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Oswald', sans-serif;
    background: #fff;
    transition: border-color 0.3s;
}

.contacts-form input:focus,
.contacts-form textarea:focus {
    outline: none;
    border-color: #ff6918;
}

.contacts-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contacts-form .btn {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    padding: 14px;
}

/* ============================================
   ПОДВАЛ
   ============================================ */
.landing-footer {
    background: #111;
    color: #888;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

.landing-footer a {
    color: #ff6918;
    text-decoration: none;
}

/* Отзывы */
.reviews-badge {
    font-size: 30px;
}

/* ============================================
   АДАПТИВ
   ============================================ */

/* Планшеты (768–992px) — 2 колонки */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text p {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image {
        flex: 0 0 auto;
        font-size: 8rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-header .section-title {
        font-size: 2.2rem;
    }

    .products-header .section-title {
        font-size: 2.2rem;
    }

    .landing-advantages .section-title {
        font-size: 2.2rem;
    }
}

/* Мобильные (< 768px) — 1 колонка */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .landing-header .container {
        flex-direction: column;
        gap: 10px;
    }

    .landing-header nav a {
        margin: 0 10px;
        font-size: 0.82rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 10px;
    }

    .features-header .section-title {
        font-size: 2rem;
    }

    .products-header .section-title {
        font-size: 2rem;
    }

    .landing-advantages .section-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .product-card {
        max-width: 100%;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
        text-align: center;
        min-width: unset;
    }

    .contacts-form {
        padding: 25px 18px;
    }

    .feature-details li {
        font-size: 0.88rem;
        padding: 5px 0 5px 26px;
    }

    .feature-footer {
        flex-wrap: wrap;
        gap: 6px;
    }

    .feature-tag {
        font-size: 0.72rem;
        padding: 3px 12px;
    }

    .product-specs {
        gap: 10px;
    }

    .spec-item {
        font-size: 0.75rem;
        padding: 2px 10px;
    }

    .product-features .feature-check {
        font-size: 0.82rem;
    }

    .product-price {
        font-size: 1.2rem;
    }

    .product-old-price {
        font-size: 0.9rem;
    }

    .advantage-card {
        padding: 22px 18px;
    }

    .advantage-icon {
        font-size: 2.4rem;
    }
}

/* Очень маленькие экраны (< 480px) */
@media (max-width: 480px) {
    .landing-header nav a {
        margin: 0 6px;
        font-size: 0.72rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .features-header .section-title,
    .products-header .section-title,
    .landing-advantages .section-title,
    .section-title {
        font-size: 1.6rem;
    }

    .feature-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .feature-number {
        align-self: flex-start;
    }

    .product-image-wrapper {
        padding: 20px 15px 15px;
    }

    .product-emoji {
        font-size: 3rem;
    }

    .product-info {
        padding: 16px;
    }

    .product-info h3 {
        font-size: 1.2rem;
    }

    .product-desc {
        font-size: 0.85rem;
    }

    .contacts-form {
        padding: 20px 14px;
    }

    .contacts-form input,
    .contacts-form textarea {
        font-size: 0.9rem;
        padding: 8px 12px;
    }

    .contact-item {
        gap: 12px;
    }

    .contact-icon {
        font-size: 1.4rem;
        width: 36px;
    }

    .advantage-card {
        padding: 18px 14px;
    }

    .advantage-icon {
        font-size: 2rem;
    }

    .advantage-card h4 {
        font-size: 1rem;
    }

    .advantage-card p {
        font-size: 0.85rem;
    }
}

/* ============================================
   МОДАЛЬНОЕ ОКНО СОГЛАСИЯ 152-ФЗ
   ============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: flex;
}

.modal-window {
    background: #fff;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-window .modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    color: #999;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    transition: color 0.3s;
}

.modal-window .modal-close:hover {
    color: #ff6918;
}

.modal-window h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
    color: #222;
}

.modal-window p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

.modal-window .modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.modal-window .btn-accept {
    background: #ff6918;
    color: #fff;
    padding: 12px 35px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s;
}

.modal-window .btn-accept:hover {
    background: #e05a0e;
}

.modal-window .btn-decline {
    background: transparent;
    color: #888;
    padding: 12px 25px;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    text-decoration: underline;
    transition: color 0.3s;
}

.modal-window .btn-decline:hover {
    color: #222;
}

/* ============================================
   COOKIES-БАННЕР
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    color: #ddd;
    padding: 15px 0;
    z-index: 999;
    display: none;
    border-top: 2px solid #ff6918;
}

.cookie-banner.active {
    display: block;
}

.cookie-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner p {
    font-size: 0.9rem;
    color: #aaa;
    margin: 0;
    flex: 1;
}

.cookie-banner a {
    color: #ff6918;
    text-decoration: underline;
}

.cookie-banner .cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-banner .btn-cookie {
    padding: 8px 24px;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.cookie-banner .btn-cookie-accept {
    background: #ff6918;
    color: #fff;
}

.cookie-banner .btn-cookie-accept:hover {
    background: #e05a0e;
}

.cookie-banner .btn-cookie-decline {
    background: transparent;
    color: #aaa;
    border: 1px solid #555;
}

.cookie-banner .btn-cookie-decline:hover {
    background: rgba(255,255,255,0.05);
}

@media (max-width: 768px) {
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner p {
        margin-bottom: 10px;
    }
    
    .modal-window {
        padding: 25px 20px;
    }
}

/* ============================================
   МОДАЛЬНОЕ ОКНО УВЕДОМЛЕНИЙ
   ============================================ */
.notification-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}

.notification-modal.active {
    display: flex;
}

.notification-window {
    background: #fff;
    max-width: 300px;
    width: 90%;
    border-radius: 16px;
    padding: 40px 35px;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalFadeIn 0.3s ease;
}

.notification-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 1.6rem;
    color: #ccc;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    transition: color 0.3s;
}

.notification-close:hover {
    color: #ff6918;
}

.notification-icon {
    font-size: 4rem;
    margin-bottom: 12px;
    display: block;
}

.notification-window h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
    color: #222;
}

.notification-window p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-notification {
    background: #ff6918;
    color: #fff;
    padding: 10px 35px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s;
}

.btn-notification:hover {
    background: #e05a0e;
}

/* Стили для разных типов уведомлений */
.notification-window.error .notification-icon {
    color: #dc3545;
}

.notification-window.error .btn-notification {
    background: #dc3545;
}

.notification-window.error .btn-notification:hover {
    background: #b02a37;
}

.notification-window.success .notification-icon {
    color: #28a745;
}

.notification-window.success .btn-notification {
    background: #28a745;
}

.notification-window.success .btn-notification:hover {
    background: #1e7e34;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: flex;
}

.modal-window {
    background: #fff;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-window .modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    color: #999;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    transition: color 0.3s;
}

.modal-window .modal-close:hover {
    color: #ff6918;
}

.modal-window h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
    color: #222;
}

.modal-window p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

.modal-window .modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.modal-window .btn-accept {
    background: #ff6918;
    color: #fff;
    padding: 12px 35px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s;
}

.modal-window .btn-accept:hover {
    background: #e05a0e;
}

.modal-window .btn-decline {
    background: transparent;
    color: #888;
    padding: 12px 25px;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    text-decoration: underline;
    transition: color 0.3s;
}

.modal-window .btn-decline:hover {
    color: #222;
}