/* Reviews Page Styles */

.review-filters {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.filter-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.filter-tab {
    background: #f8f9fa;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    color: #6c757d;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-tab.active {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
}

.filter-tab:hover {
    background: rgba(255, 107, 53, 0.1);
    color: #FF6B35;
}

.filter-tab.active:hover {
    background: linear-gradient(135deg, #FF8E53, #FFB347);
    color: white;
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

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

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    position: relative;
}

.reviewer-avatar img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border: 3px solid #f8f9fa;
}

.points-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    white-space: nowrap;
}

.points-badge-static {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    margin-left: 8px;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.08);
    white-space: nowrap;
}

.reviewer-details h6 {
    margin: 0;
    font-weight: 600;
    color: #2c3e50;
}

.review-time {
    color: #6c757d;
    font-size: 13px;
}

.shop-info {
    text-align: right;
}

.shop-badge {
    background: #f8f9fa;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    color: #495057;
    margin-bottom: 5px;
    display: inline-block;
}

.shop-name-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.shop-name {
    color: #FF6B35;
    font-weight: 600;
    margin: 0;
}

.review-rating .stars {
    color: #ffc107;
}

.review-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #495057;
}

.review-images {
    margin-bottom: 15px;
}

.image-grid {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.review-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.review-img-placeholder {
    background: #f8f9fa;
    border: 1px dashed #d1d5db;
    color: #adb5bd;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.like-btn, .share-btn, .reply-btn {
    background: none;
    border: none;
    color: #6c757d;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.like-btn:hover, .share-btn:hover, .reply-btn:hover {
    color: #FF6B35;
}

.like-btn.liked {
    color: #dc3545;
}

.stats-summary {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-item {
    text-align: center;
    padding: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 5px;
}

.stat-label {
    color: #6c757d;
    font-size: 14px;
}

/* Custom Breadcrumb */
.custom-breadcrumb {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 12px 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.custom-breadcrumb .breadcrumb {
    margin: 0;
    background: none;
    padding: 0;
}

.custom-breadcrumb .breadcrumb-item a {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.custom-breadcrumb .breadcrumb-item a:hover {
    color: #FF8E53;
}

.page-header {
    background: linear-gradient(135deg, #ffd899 0%, #feac55 100%);
    color: white;
    padding: 120px 0 60px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .filter-tabs {
        justify-content: center;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .shop-info {
        text-align: left;
    }
    
    .page-title {
        font-size: 2rem;
    }
} 