/**
 * ============================================================================
 * СТИЛИ МОДУЛЯ ОТЗЫВОВ V2 — ГАЛЕРЕЯ ПОДАРКОВ
 * ============================================================================
 * 
 * @file        web/css/v2/reviews.css
 * @description Стили для страниц отзывов: галерея, просмотр, добавление
 * @version     1.0 (Декабрь 2025)
 * 
 * ============================================================================
 * СТРУКТУРА:
 * 1. Страница галереи (index)     — .v2-review-page, .v2-review-grid
 * 2. Карточка отзыва              — .v2-review-card
 * 3. Страница просмотра (show)    — .v2-review-show-*
 * 4. Страница добавления (add)    — .v2-review-add-*, .v2-upload-*
 * 5. Рейтинг                      — .v2-review-rating, .v2-review-rate-*
 * 6. Фильтры                      — .v2-review-filters
 * 7. Light Theme                  — .v2-theme-light .v2-review-*
 * 8. Responsive                   — @media
 * ============================================================================
 */

/* ==========================================================================
   1. СТРАНИЦА ГАЛЕРЕИ
   ========================================================================== */

.v2-review-page {
    padding: 20px 0;
}

/* Header галереи */
.v2-review-page .v2-page-header-count {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--v2-text-muted);
}

/* Сетка отзывов */
.v2-review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

/* ==========================================================================
   2. КАРТОЧКА ОТЗЫВА
   ========================================================================== */

.v2-review-card {
    display: flex;
    flex-direction: column;
    background: var(--v2-bg-card);
    border-radius: var(--v2-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all var(--v2-duration-normal) var(--v2-ease-smooth);
    text-decoration: none;
    color: inherit;
}

.v2-review-card:hover {
    transform: translateY(-4px);
    border-color: var(--v2-gold);
    box-shadow: var(--v2-shadow-hover);
    text-decoration: none;
    color: inherit;
}

/* Изображение карточки */
.v2-review-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--v2-bg-elevated);
}

.v2-review-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--v2-duration-normal);
}

.v2-review-card:hover .v2-review-card-image img {
    transform: scale(1.05);
}

.v2-review-card-image-count {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

/* Контент карточки */
.v2-review-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

/* Текст отзыва */
.v2-review-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--v2-text);
    flex: 1;
}

/* Автор */
.v2-review-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.v2-review-card-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.v2-review-card-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.v2-review-card-author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--v2-text);
}

.v2-review-card-author-city {
    font-size: 12px;
    color: var(--v2-text-dim);
}

/* Мета информация */
.v2-review-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.v2-review-card-exchange {
    font-size: 12px;
    color: var(--v2-text-dim);
}

/* Footer карточки */
.v2-review-card-footer {
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.v2-review-card-read-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--v2-gold);
    display: flex;
    align-items: center;
    gap: 4px;
}

.v2-review-card-read-more span {
    transition: transform var(--v2-duration-fast);
}

.v2-review-card:hover .v2-review-card-read-more span {
    transform: translateX(4px);
}

/* ==========================================================================
   3. РЕЙТИНГ (подарки вместо звёзд)
   ========================================================================== */

.v2-review-rating {
    display: flex;
    gap: 4px;
}

.v2-review-rating-gift {
    font-size: 16px;
    opacity: 0.3;
    filter: grayscale(1);
    transition: all var(--v2-duration-fast);
}

.v2-review-rating-gift.active {
    opacity: 1;
    filter: grayscale(0);
}

.v2-review-rating-gift.half {
    opacity: 0.6;
    filter: grayscale(0.5);
}

/* ==========================================================================
   4. ФИЛЬТРЫ
   ========================================================================== */

.v2-review-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: var(--v2-bg-card);
    border-radius: var(--v2-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.v2-review-filters-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.v2-review-filters-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.v2-filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.v2-filter-label {
    font-size: 13px;
    color: var(--v2-text-muted);
}

.v2-filter-select {
    background: var(--v2-bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--v2-radius-sm);
    padding: 8px 32px 8px 12px;
    font-size: 13px;
    color: var(--v2-text);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    transition: border-color var(--v2-duration-fast);
}

.v2-filter-select:focus {
    outline: none;
    border-color: var(--v2-gold);
}

.v2-filter-select:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

/* Кнопка перемешивания */
.v2-btn.active {
    background: var(--v2-gold-glow);
    border-color: var(--v2-gold);
    color: var(--v2-gold);
}

/* ==========================================================================
   5. СТРАНИЦА ПРОСМОТРА ОТЗЫВА
   ========================================================================== */

.v2-review-show-page {
    padding: 20px 0;
}

/* Layout */
.v2-review-show-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 24px;
    margin-top: 24px;
}

.v2-review-show-main {
    min-width: 0;
}

.v2-review-show-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Карточка отзыва */
.v2-review-show-card {
    position: relative;
}

/* Бейдж модерации */
.v2-review-moderation-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(168, 85, 247, 0.2);
    color: var(--v2-purple);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

/* Галерея фото */
.v2-review-photo-gallery {
    margin-bottom: 24px;
}

.v2-review-photo-main {
    position: relative;
    width: 100%;
    height: 400px;
    background: var(--v2-bg-elevated);
    border-radius: var(--v2-radius-lg) var(--v2-radius-lg) 0 0;
    overflow: hidden;
}

.v2-review-photo-main-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    transition: opacity var(--v2-duration-fast);
}

.v2-review-photo-main-link:hover {
    opacity: 0.95;
}

.v2-review-photo-main-link:hover .v2-review-photo-zoom-hint {
    opacity: 1;
}

.v2-review-photo-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--v2-bg-deep);
    pointer-events: none;
}

/* Подсказка о зуме */
.v2-review-photo-zoom-hint {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transition: opacity var(--v2-duration-fast);
    backdrop-filter: blur(4px);
    pointer-events: none;
}

.v2-review-photo-zoom-icon {
    font-size: 14px;
}

.v2-review-photo-zoom-text {
    white-space: nowrap;
}

.v2-review-photo-thumbs {
    display: flex;
    gap: 8px;
    padding: 12px;
    background: var(--v2-bg-elevated);
    border-radius: 0 0 var(--v2-radius-lg) var(--v2-radius-lg);
    overflow-x: auto;
    justify-content: center;
}

.v2-review-photo-thumb {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: var(--v2-radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--v2-duration-fast);
    text-decoration: none;
    display: block;
}

.v2-review-photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.v2-review-photo-thumb:hover {
    border-color: var(--v2-gold);
    transform: scale(1.05);
}

.v2-review-photo-thumb.active,
.v2-review-photo-thumb-active {
    border-color: var(--v2-gold);
    box-shadow: 0 0 0 2px var(--v2-gold-glow);
    cursor: pointer;
}

.v2-review-photo-thumb-active {
    opacity: 1;
    display: block;
}

.v2-review-photo-thumb-active:hover {
    transform: scale(1.05);
    border-color: var(--v2-gold-light);
}

.v2-review-filters-left label.v2-filter-label{
    margin-bottom: 0rem;
}
/* Секция рейтинга */
.v2-review-rating-section {
    display: flex;
    flex-wrap: wrap;;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.v2-review-rating-label {
    font-size: 13px;
    color: var(--v2-text-muted);
}

.v2-review-rating-value {
    font-size: 13px;
    color: var(--v2-text-dim);
    margin-left: auto;
}

/* Текст отзыва */
.v2-review-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--v2-text);
    margin-bottom: 24px;
}

/* Секция автора */
.v2-review-author-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--v2-bg-elevated);
    border-radius: var(--v2-radius-md);
    margin-bottom: 24px;
}

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

.v2-review-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.v2-review-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.v2-review-author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--v2-text);
}

.v2-review-author-city {
    font-size: 13px;
    color: var(--v2-text-dim);
}

.v2-review-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.v2-review-meta-item {
    font-size: 13px;
    color: var(--v2-text-dim);
}

/* Секция оценки */
.v2-review-rate-section {
    padding: 20px;
    background: var(--v2-bg-elevated);
    border-radius: var(--v2-radius-md);
    text-align: center;
    margin-bottom: 24px;
}

.v2-review-rate-label {
    font-size: 14px;
    color: var(--v2-text-muted);
    margin-bottom: 12px;
}

.v2-review-rate-gifts {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.v2-review-rate-gift {
    font-size: 28px;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    opacity: 0.3;
    filter: grayscale(1);
    transition: all var(--v2-duration-fast);
}

.v2-review-rate-gift:hover {
    transform: scale(1.2);
    opacity: 0.7;
    filter: grayscale(0.5);
}

.v2-review-rate-gift.active {
    opacity: 1;
    filter: grayscale(0);
}

.v2-review-rate-hint {
    font-size: 12px;
    color: var(--v2-text-dim);
}

/* Статистика */
.v2-review-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.v2-review-stat {
    font-size: 13px;
    color: var(--v2-text-dim);
}

/* Похожие отзывы */
.v2-review-related-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.v2-review-related-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--v2-bg-elevated);
    border-radius: var(--v2-radius-sm);
    text-decoration: none;
    transition: all var(--v2-duration-fast);
}

.v2-review-related-item:hover {
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
}

.v2-review-related-thumb {
    width: 50px;
    height: 50px;
    border-radius: var(--v2-radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.v2-review-related-thumb-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--v2-bg-card);
    font-size: 20px;
}

.v2-review-related-content {
    flex: 1;
    min-width: 0;
}

.v2-review-related-text {
    font-size: 13px;
    color: var(--v2-text);
    line-height: 1.4;
    margin-bottom: 4px;
}

.v2-review-related-author {
    font-size: 12px;
    color: var(--v2-text-dim);
}

/* ==========================================================================
   6. СТРАНИЦА ДОБАВЛЕНИЯ ОТЗЫВА
   ========================================================================== */

.v2-review-add-page {
    padding: 20px 0;
    max-width: 700px;
    margin: 0 auto;
}

.v2-review-show-main .v2-card-body {
    padding-top: 20px;
}

/* Большое сообщение персонажа */
.v2-character-message-lg {
    padding: 24px;
    margin-bottom: 24px;
}

.v2-character-message-lg .v2-character-avatar {
    font-size: 48px;
}

.v2-character-message-lg .v2-character-text {
    font-size: 16px;
}

/* Информация об обмене */
.v2-review-exchange-info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--v2-bg-card);
    border-radius: var(--v2-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 24px;
}

.v2-review-exchange-icon {
    font-size: 32px;
}

.v2-review-exchange-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--v2-text);
}

.v2-review-exchange-subtitle {
    font-size: 13px;
    color: var(--v2-text-muted);
    margin-top: 4px;
}

/* Форма отзыва */
.v2-review-form {
    /* Использует общие стили v2-form-* из main.css */
}

.v2-form-textarea {
    width: 100%;
    min-height: 150px;
    padding: 16px;
    background: var(--v2-bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--v2-radius-md);
    font-family: inherit;
    font-size: 14px;
    line-height: 1.6;
    color: var(--v2-text);
    resize: vertical;
    transition: border-color var(--v2-duration-fast);
}

.v2-form-textarea:focus {
    outline: none;
    border-color: var(--v2-gold);
}

.v2-form-textarea::placeholder {
    color: var(--v2-text-dim);
}

.v2-form-hint {
    font-size: 12px;
    color: var(--v2-text-dim);
    margin-top: 8px;
}

/* Зона загрузки */
.v2-upload-zone {
    position: relative;
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: var(--v2-radius-md);
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all var(--v2-duration-fast);
}

.v2-upload-zone:hover,
.v2-upload-zone.dragover {
    border-color: var(--v2-gold);
    background: rgba(245, 200, 66, 0.05);
}

.v2-upload-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.v2-upload-content {
    pointer-events: none;
}

.v2-upload-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.v2-upload-text {
    font-size: 14px;
    color: var(--v2-text);
    margin-bottom: 8px;
}

.v2-upload-link {
    color: var(--v2-gold);
    font-weight: 600;
}

.v2-upload-hint {
    font-size: 12px;
    color: var(--v2-text-dim);
}

/* Превью загруженных файлов */
.v2-upload-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.v2-upload-preview-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 8px;
    background: var(--v2-bg-elevated);
    border-radius: var(--v2-radius-sm);
}

.v2-upload-preview-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--v2-radius-sm);
}

.v2-upload-preview-name {
    font-size: 11px;
    color: var(--v2-text-dim);
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Существующие изображения */
.v2-review-existing-images {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.v2-review-existing-image {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: var(--v2-radius-sm);
    overflow: hidden;
    transition: opacity var(--v2-duration-fast);
}

.v2-review-existing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-review-image-delete {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    background: rgba(220, 38, 38, 0.9);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    transition: opacity var(--v2-duration-fast);
}

.v2-review-existing-image:hover .v2-review-image-delete {
    opacity: 1;
}

/* Info Box и Alert — используем .v2-info-box и .v2-alert из components.css */

.v2-mb-16 {
    margin-bottom: 16px;
}

/* ==========================================================================
   7. LIGHT THEME
   ========================================================================== */

.v2-theme-light .v2-review-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
}

.v2-theme-light .v2-review-card:hover {
    border-color: var(--v2-gold);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.v2-theme-light .v2-review-card-image {
    background: #f1f5f9;
}

.v2-theme-light .v2-review-card-author {
    border-color: rgba(0, 0, 0, 0.06);
}

.v2-theme-light .v2-review-card-footer {
    border-color: rgba(0, 0, 0, 0.06);
}

.v2-theme-light .v2-review-filters {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
}

.v2-theme-light .v2-filter-select {
    background: #f8fafc;
    border-color: rgba(0, 0, 0, 0.12);
    color: #1e293b;
}

.v2-theme-light .v2-review-photo-main {
    background: #f1f5f9;
}

.v2-theme-light .v2-review-photo-main-img {
    background: #e2e8f0;
}

.v2-theme-light .v2-review-photo-thumbs {
    background: #f8fafc;
}

.v2-theme-light .v2-review-author-section,
.v2-theme-light .v2-review-rate-section {
    background: #f8fafc;
}

.v2-theme-light .v2-review-related-item {
    background: #f8fafc;
}

.v2-theme-light .v2-review-related-item:hover {
    background: #f1f5f9;
}

.v2-theme-light .v2-review-exchange-info {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
}

.v2-theme-light .v2-form-textarea {
    background: #f8fafc;
    border-color: rgba(0, 0, 0, 0.12);
    color: #1e293b;
}

.v2-theme-light .v2-upload-zone {
    border-color: rgba(0, 0, 0, 0.15);
}

.v2-theme-light .v2-upload-zone:hover,
.v2-theme-light .v2-upload-zone.dragover {
    background: rgba(245, 200, 66, 0.08);
}

.v2-theme-light .v2-upload-preview-item {
    background: #f8fafc;
    border-color: rgba(0, 0, 0, 0.08);
}

/* Light theme для .v2-info-box в components.css */

.v2-theme-light .v2-review-photo-zoom-hint {
    background: rgba(0, 0, 0, 0.7);
}

/* ==========================================================================
   8. LIGHTGALLERY КАСТОМИЗАЦИЯ
   ========================================================================== */

/* Переопределение стилей lightGallery для соответствия дизайну V2 */
.v2-review-show-page .lg-outer,
.v2-review-show-page .lg-backdrop {
    background-color: rgba(10, 15, 26, 0.95);
}

.v2-review-show-page .lg-toolbar {
    background-color: rgba(26, 35, 50, 0.9);
}

.v2-review-show-page .lg-sub-html {
    background-color: rgba(26, 35, 50, 0.8);
    color: var(--v2-text);
}

.v2-review-show-page .lg-prev,
.v2-review-show-page .lg-next {
    background-color: rgba(245, 200, 66, 0.2);
    border: 1px solid var(--v2-gold);
    color: var(--v2-gold);
}

.v2-review-show-page .lg-prev:hover,
.v2-review-show-page .lg-next:hover {
    background-color: rgba(245, 200, 66, 0.3);
    color: var(--v2-gold-light);
}

.v2-review-show-page .lg-close {
    color: var(--v2-text);
    background-color: rgba(26, 35, 50, 0.8);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    line-height: 32px;
}

.v2-review-show-page .lg-close:hover {
    background-color: rgba(220, 38, 38, 0.8);
    color: #fff;
}

.v2-review-show-page .lg-thumb-item.active,
.v2-review-show-page .lg-thumb-item:hover {
    border-color: var(--v2-gold);
}

/* Light theme для lightGallery */
.v2-theme-light .v2-review-show-page .lg-outer,
.v2-theme-light .v2-review-show-page .lg-backdrop {
    background-color: rgba(0, 0, 0, 0.85);
}

.v2-theme-light .v2-review-show-page .lg-toolbar,
.v2-theme-light .v2-review-show-page .lg-sub-html {
    background-color: rgba(255, 255, 255, 0.95);
    color: #1e293b;
}

/* ==========================================================================
   9. RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .v2-review-show-layout {
        grid-template-columns: 1fr;
    }
    
    .v2-review-show-sidebar {
        order: 2;
    }
}

@media (max-width: 768px) {
    .v2-review-grid {
        grid-template-columns: 1fr;
    }
    
    .v2-review-filters {
        flex-direction: column;
        gap: 12px;
    }
    
    .v2-review-filters-left,
    .v2-review-filters-right {
        width: 100%;
        justify-content: center;
    }
    
    .v2-review-photo-main {
        height: 300px;
    }
    
    .v2-review-author-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .v2-review-meta {
        align-items: flex-start;
        margin-top: 12px;
    }
    
    .v2-review-rate-gift {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .v2-review-card-image {
        height: 160px;
    }
    
    .v2-review-photo-main {
        height: 250px;
    }
    
    .v2-character-message-lg {
        padding: 16px;
    }
    
    .v2-character-message-lg .v2-character-avatar {
        font-size: 36px;
    }
    
    .v2-review-exchange-info {
        flex-direction: column;
        text-align: center;
    }
}