body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0d0d0f;
    color: #fff;
}

.header {
    padding: 24px;
    text-align: center;
    background: #111216;
    border-bottom: 1px solid #23242a;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
}

.title {
    font-size: 30px;
    opacity: 0.85;
}

.reviews-block {
    max-width: 850px;
    margin: 40px auto;
    padding: 0 20px;
}

.review {
    background: #14151a;
    border: 1px solid #1f2025;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;

    opacity: 0;
    transform: translateY(15px);
    animation: fadeUp 0.45s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.review-name {
    font-weight: bold;
    font-size: 16px;
}

.review-date {
    font-size: 14px;
    opacity: 0.6;
}

.review-text {
    font-size: 15px;
    line-height: 1.5;
}

.review-image {
    width: 100%;
    border-radius: 8px;
    margin-top: 10px;
}

.footer {
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
    background: #111216;
    border-top: 1px solid #23242a;
}

.reviews-note {
    text-align: center;
    margin: 20px 0;
    font-size: 16px;
    color: #ccc;
}

.reviews-note a {
    color: #4c8dff;
    text-decoration: underline;
    transition: 0.2s;
}

.reviews-note a:hover {
    color: #3a7bff;
}

.footer-copy {
    display: flex;
    justify-content: center; /* общий центр */
    align-items: center;
    font-size: 15px;
    color: #888;
    opacity: 0.8;
    padding: 10px 20px;
    position: relative;
}

.footer-left {
    position: absolute;
    left: 33%; /* регулируй расположение кнопки */
}

.footer-center {
    text-align: center;
}

.nav-btn {
    color: #888;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 6px;
    transition: 0.2s;
}

.nav-btn:hover {
    background: rgba(76, 141, 255, 0.2);
    color: #fff;
}

@media (max-width: 768px) {
    .footer-left {
        position: static; /* на мобилках позиция обычная */
        margin-bottom: 5px;
    }
    .footer-copy {
        flex-direction: column;
    }
}

.footer-center {
    margin: 0 auto;
}



.review-stars {
    margin: 5px 0 12px 0;
}

.star {
    font-size: 18px;
    color: #3a3b40;
    margin-right: 3px;
    transition: color 0.25s ease;
}

.star.filled {
    color: #f5c542;
    text-shadow: 0 0 6px rgba(245, 197, 66, 0.5);
}

footer {
    background: #0b0c10;
    padding: 60px 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #d0d0d0;
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s ease;
}

.footer-links a:hover {
    color: #4c8dff;
}

.footer-copy {
    color: #888;
    font-size: 15px;
    opacity: 0.8;
}
.review-product {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 8px;
}
