.wildlands-reviews-section {
    padding: 60px 0;
}

.wildlands-reviews-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.wildlands-reviews-subtitle {
    text-align: center;
    color: #7a7a7a;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.wildlands-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}

.wildlands-review-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 200px;
}
.wildlands-product-link2 {
    color: #8d6e63;
    font-weight: 600;
    font-size: 13px;
}
.wildlands-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.wildlands-review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.wildlands-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wildlands-author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #e8e5e0;
    flex-shrink: 0;
}

.wildlands-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wildlands-author-info {
    display: flex;
    flex-direction: column;
}

.wildlands-author-name {
font-weight: 600;
color: inherit;
    margin-bottom: 2px;
    font-size: 14px;
}

.wildlands-review-date {
    font-size: 0.85rem;
    color: #9a9a9a;
}

.wildlands-review-rating {
color: #8d6e63;
    font-size: 14px;
    letter-spacing: 1px;
}

.wildlands-review-content {
    margin-bottom: 15px;
    flex-grow: 1;
    min-height: 80px;
}

.wildlands-review-content p {
    line-height: 1.5;
    color: var(--wf-main-color);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-style: italic;
    font-size: 12px;
}

.wildlands-review-photos {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.wildlands-review-photo {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #e8e5e0;
    flex-shrink: 0;
}

.wildlands-review-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wildlands-review-photo:hover img {
    transform: scale(1.05);
}

/* Новый стиль для информации о товаре - всегда внизу */
.wildlands-product-info {
    border-top: 1px solid #f5f5f5;
    padding-top: 15px;
    margin-top: auto;
    flex-shrink: 0;
}

.wildlands-product-image {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e8e5e0;
    margin-right: 12px;
    flex-shrink: 0;
}

.wildlands-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wildlands-product-details {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wildlands-product-text {
    flex-grow: 1;
}

.wildlands-product-category {
    font-size: 0.8rem;
    color: #9a9a9a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.wildlands-product-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0;
}

.wildlands-product-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wildlands-product-name a:hover {
    color: #d4af37;
}

.wildlands-product-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: #d4af37;
    white-space: nowrap;
}

.wildlands-reviews-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.wildlands-btn-reviews {
    padding: 12px 30px;
    background: #2c2c2c;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #2c2c2c;
    cursor: pointer;
    font-size: 1rem;
}

.wildlands-btn-reviews:hover {
    background: white;
    color: #2c2c2c;
}

.wildlands-btn-reviews:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.wildlands-btn-external {
    padding: 12px 30px;
    background: transparent;
    color: #2c2c2c;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #d4af37;
}

.wildlands-btn-external:hover {
    background: #d4af37;
    color: white;
}

/* Компактный вариант когда есть фото */
.wildlands-review-card.has-photos .wildlands-product-details {
    align-items: flex-start;
}

.wildlands-review-card.has-photos .wildlands-product-text {
    min-width: 0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .wildlands-reviews-section {
        padding: 50px 0;
    }
    
    .wildlands-reviews-title {
        font-size: 2rem;
    }
    
    .wildlands-reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .wildlands-review-card {
        padding: 20px;
        min-height: 250px;
    }
    
    .wildlands-product-details {
        flex-wrap: wrap;
    }
    
    .wildlands-product-price {
        margin-left: 62px; /* Выравнивание с текстом товара */
        margin-top: 5px;
    }
    
    .wildlands-reviews-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .wildlands-btn-reviews, .wildlands-btn-external {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .wildlands-review-card {
        min-height: 220px;
    }
    
    .wildlands-review-content p {
        -webkit-line-clamp: 2;
    }
    
    .wildlands-product-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .wildlands-product-price {
        margin-left: 0;
        margin-top: 0;
    }
}