/**
 * TechnoAccuracy Reviews Listing Page Styles
 * Matches the existing site design with yellow accents and tech aesthetic
 */

/* === REVIEWS HERO SECTION === */
.reviews-hero {
    min-height: 40vh;
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-black), var(--gray-dark));
    margin-bottom: 0;
}

.reviews-hero-content {
    z-index: 10;
    width: 100%;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
}

.reviews-title {
    font-size: 4.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1;
    color: var(--text-color);
    position: relative;
    animation: fadeInUp 0.8s forwards 0.4s;
}

.reviews-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background-color: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.reviews-description {
    font-size: 1.2rem;
    margin: 40px auto 0;
    color: #999;
    animation: fadeInUp 0.8s forwards 0.6s;
}

/* === REVIEWS DASHBOARD === */
.reviews-dashboard {
    background: var(--bg-card);
    border-bottom: 2px solid var(--primary-color);
    position: relative;
    padding: 30px 0;
    z-index: 100;
}

.dashboard-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Quick Stats */
.reviews-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: space-around;
}

.stat-card {
    display: flex;
    align-items: center;
    background-color: rgba(255, 237, 0, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 15px 20px;
    flex: 1;
    max-width: 300px;
    min-width: 200px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 237, 0, 0.15);
    box-shadow: 0 5px 15px rgba(255, 237, 0, 0.2);
}

.stat-icon {
    font-size: 2rem;
    margin-right: 15px;
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaa;
}

/* Search & Filters */
.reviews-filters {
    position: relative;
    margin-bottom: 20px;
}

.search-filters-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.review-search {
    position: relative;
    flex: 1;
    max-width: 600px;
}

.review-search-input {
    width: 100%;
    background-color: var(--bg-black);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    padding: 12px 50px 12px 20px;
    font-size: 1rem;
    color: var(--text-color);
    font-family: 'Chakra Petch', sans-serif;
    transition: all 0.3s ease;
}

.review-search-input:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(255, 237, 0, 0.3);
}

.review-search-button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.review-search-button:hover {
    transform: translateY(-50%) scale(1.1);
}

.filter-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.toggle-filters-button {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--bg-black);
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-filters-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 237, 0, 0.3);
}

.filter-icon {
    margin-right: 8px;
    display: flex;
    align-items: center;
}

.sort-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-control label {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.9rem;
    color: #aaa;
}

.sort-select {
    background-color: var(--bg-black);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    padding: 8px 15px;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    outline: none;
    cursor: pointer;
}

.sort-select:focus {
    box-shadow: 0 0 10px rgba(255, 237, 0, 0.2);
}

/* Advanced Filters */
.advanced-filters {
    background-color: var(--gray-dark);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    display: none;
    animation: fadeIn 0.5s forwards;
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.filter-title::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
}

.brand-filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
}

.brand-filter-item {
    position: relative;
}

.brand-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.brand-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    background-color: rgba(255, 237, 0, 0.05);
    border: 1px solid transparent;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 0.9rem;
    height: 100%;
}

.brand-checkbox:checked + .brand-label {
    background-color: rgba(255, 237, 0, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 237, 0, 0.2);
}

.brand-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 10px;
    background: transparent;
}

.brand-name {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.3;
}

.brand-count {
    color: #aaa;
    font-size: 0.75rem;
}

/* Price Range Filter */
.price-slider-container {
    padding: 0 15px;
}

.price-range {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #aaa;
    font-size: 0.9rem;
}

.price-slider {
    height: 6px;
    background-color: var(--gray-light);
    border-radius: 3px;
    position: relative;
    margin-bottom: 20px;
}

.price-slider .ui-slider-range {
    position: absolute;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.price-slider .ui-slider-handle {
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    outline: none;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-input {
    width: 80px;
    padding: 8px 10px;
    background-color: var(--bg-black);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-color);
    font-size: 0.9rem;
}

.price-separator {
    color: #aaa;
}

/* Rating Filter */
.rating-slider-container {
    padding: 0 15px;
    margin-top: 30px;
}

.rating-slider {
    height: 6px;
    background-color: var(--gray-light);
    border-radius: 3px;
    position: relative;
    margin-bottom: 10px;
}

.rating-slider .ui-slider-range {
    position: absolute;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.rating-slider .ui-slider-handle {
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    outline: none;
}

.rating-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.rating-label {
    font-size: 0.8rem;
    color: #aaa;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.rating-label:hover, .rating-label.active {
    color: var(--primary-color);
    font-weight: 500;
}

/* Features Filter */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.feature-checkbox-item {
    position: relative;
}

.feature-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.feature-label {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: rgba(255, 237, 0, 0.05);
    border: 1px solid transparent;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-checkbox:checked + .feature-label {
    background-color: rgba(255, 237, 0, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 237, 0, 0.2);
}

.feature-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

.feature-name {
    font-size: 0.9rem;
    color: #fff;
}

.filter-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.apply-filters-button {
    background-color: var(--primary-color);
    color: var(--bg-black);
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 25px;
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply-filters-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 237, 0, 0.3);
}

.reset-filters-button {
    background-color: transparent;
    color: #aaa;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 25px;
    border: 1px solid #aaa;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.reset-filters-button:hover {
    color: #fff;
    border-color: #fff;
}

/* Active Filters */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    min-height: 40px;
}

.active-filter {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--bg-black);
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.filter-remove {
    margin-left: 8px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
}

.filter-remove:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.clear-all-filters {
    background-color: var(--gray-light);
    color: #fff;
}

/* === TOP PICKS SECTION === */
.top-picks-section {
    background: linear-gradient(180deg, var(--bg-card), var(--bg-black));
    padding: var(--content-spacing) 0;
    position: relative;
    overflow: hidden;
}

.top-picks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.top-pick-card {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

.top-pick-card:nth-child(1) {
    animation-delay: 0.1s;
}

.top-pick-card:nth-child(2) {
    animation-delay: 0.2s;
}

.top-pick-card:nth-child(3) {
    animation-delay: 0.3s;
}

.top-pick-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 237, 0, 0.3);
}

.top-pick-medal {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 0 15px rgba(255, 237, 0, 0.5);
    color: var(--bg-black);
    animation: pulseEffect 3s infinite;
}

@keyframes pulseEffect {
    0% {
        box-shadow: 0 0 15px rgba(255, 237, 0, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 237, 0, 0.7);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 15px rgba(255, 237, 0, 0.5);
        transform: scale(1);
    }
}

.top-pick-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 2px solid var(--primary-color);
    background: rgba(0, 0, 0, 0.5);
}

.top-pick-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-pick-logo {
    width: 35px;
    height: 35px;
    object-fit: contain;
    background: transparent;
}

.top-pick-brand-name {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.top-pick-score {
    background: var(--primary-color);
    color: var(--bg-black);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 237, 0, 0.3);
    transform: scale(1);
    transition: transform 0.3s ease;
}

.top-pick-card:hover .top-pick-score {
    transform: scale(1.1);
}

.top-pick-image-container {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: var(--bg-black);
}

.top-pick-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.top-pick-card:hover .top-pick-image {
    transform: scale(1.05);
}

.top-pick-type {
    position: absolute;
    left: 15px;
    bottom: 15px;
    background: var(--primary-color);
    color: var(--bg-black);
    font-weight: 600;
    border-radius: 30px;
    padding: 5px 12px;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.top-pick-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: linear-gradient(135deg, rgba(255, 237, 0, 0.1), transparent);
}

.top-pick-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    line-height: 1.3;
    color: var(--primary-color);
    text-align: center;
    font-weight: 700;
}

.top-pick-price {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.top-pick-accuracy {
    margin-top: auto;
    margin-bottom: 20px;
}

.top-pick-bar {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.bar-label {
    width: 40px;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.9rem;
    color: #aaa;
    flex-shrink: 0;
}

.bar-track {
    flex: 1;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin: 0 10px;
}

.bar-fill {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 5px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.bar-value {
    width: 30px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: var(--primary-color);
    flex-shrink: 0;
    text-align: right;
    font-weight: 600;
}

.top-pick-view {
    text-align: center;
    background-color: var(--primary-color);
    color: var(--bg-black);
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px;
    border-radius: var(--border-radius-sm);
    margin-top: 10px;
    transition: all 0.3s ease;
}

.top-pick-card:hover .top-pick-view {
    background-color: #fff;
}

/* === REVIEWS LISTING === */
.reviews-listing {
    background: linear-gradient(180deg, var(--bg-black), var(--gray-dark));
    padding: var(--content-spacing) 0;
    position: relative;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.review-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.review-card {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid var(--border-accent);
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s forwards;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 237, 0, 0.2);
    border-color: var(--primary-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 2px solid var(--primary-color);
    background: var(--bg-black);
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
    background: transparent;
}

.review-brand {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

.review-score {
    background: var(--primary-color);
    color: var(--bg-black);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 237, 0, 0.5);
    transform: scale(1);
    transition: transform 0.3s ease;
}

.review-card:hover .review-score {
    transform: scale(1.1);
}

.review-image-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    overflow: hidden;
    background-color: var(--bg-black);
}

.review-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.review-card:hover .review-image {
    transform: scale(1.05);
}

.review-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.view-details {
    background: var(--primary-color);
    color: var(--bg-black);
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.review-card:hover .review-hover-overlay {
    opacity: 1;
}

.review-card:hover .view-details {
    transform: translateY(0);
}

.review-type {
    position: absolute;
    left: 15px;
    bottom: 15px;
    background: var(--primary-color);
    color: var(--bg-black);
    font-weight: 600;
    border-radius: 30px;
    padding: 5px 12px;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.review-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: linear-gradient(135deg, rgba(255, 237, 0, 0.05), transparent);
}

.review-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    line-height: 1.3;
    color: var(--primary-color);
    text-align: center;
}

.review-price {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
}

.review-accuracy {
    margin-top: auto;
    border-top: 1px solid var(--border-light);
    padding-top: 15px;
    margin-bottom: 15px;
}

.accuracy-bars {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accuracy-bar {
    width: 100%;
}

.bar-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.bar-name {
    font-size: 0.75rem;
    color: #999;
}

.bar-value {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
}

.bar-track {
    height: 6px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: var(--primary-color);
}

.review-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.feature-tag {
    font-size: 1.2rem;
    background-color: rgba(255, 237, 0, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.review-card:hover .feature-tag {
    background-color: rgba(255, 237, 0, 0.2);
    border-color: var(--primary-color);
}

.load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.load-more-button {
    background-color: var(--primary-color);
    color: var(--bg-black);
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 237, 0, 0.4);
}

.load-more-button:disabled {
    background-color: #555;
    color: #aaa;
    transform: none;
    box-shadow: none;
    cursor: not-allowed;
}

.loading-indicator {
    display: none;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 237, 0, 0.3);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-indicator span {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--primary-color);
    font-size: 1rem;
}

.no-reviews-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px 0;
    color: #999;
    font-size: 1.2rem;
    background-color: rgba(255, 237, 0, 0.05);
    border: 1px solid var(--border-accent);
    border-radius: var(--border-radius);
}

/* === BRANDS SHOWCASE === */
.brands-showcase {
    background: linear-gradient(180deg, var(--gray-dark), var(--bg-black));
    padding: var(--content-spacing) 0;
    position: relative;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.brand-card {
    background-color: var(--bg-card);
    border: 2px solid var(--border-accent);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s forwards;
    cursor: pointer;
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 237, 0, 0.2);
    border-color: var(--primary-color);
}

.brand-logo-container {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.brand-logo-large {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    background: transparent;
}

.brand-card:hover .brand-logo-large {
    transform: scale(1.1);
}

.brand-info {
    text-align: center;
    width: 100%;
}

.brand-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.brand-stats {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid var(--border-light);
    padding-top: 15px;
}

.brand-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
}

.stat-label {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.8rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === METHODOLOGY SECTION === */
.methodology-section {
    background: linear-gradient(180deg, var(--bg-black), var(--gray-dark));
    padding: var(--content-spacing) 0;
    position: relative;
    overflow: hidden;
}

.methodology-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
}

.methodology-content {
    grid-column: 1 / span 6;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

.methodology-desc {
    color: #999;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.methodology-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.methodology-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.5s forwards;
}

.methodology-feature:nth-child(1) {
    animation-delay: 0.2s;
}

.methodology-feature:nth-child(2) {
    animation-delay: 0.3s;
}

.methodology-feature:nth-child(3) {
    animation-delay: 0.4s;
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 237, 0, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--primary-color);
}

.feature-desc {
    font-size: 0.85rem;
    color: #999;
}

.methodology-image {
    grid-column: 7 / span 6;
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.2s;
}

.methodology-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    z-index: 2;
    position: relative;
    border: 2px solid var(--primary-color);
}

.methodology-image::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    top: -20px;
    right: -20px;
    z-index: 0;
    opacity: 0.2;
    transform: translateY(30px);
    animation: fadeIn 0.8s forwards 0.6s;
}

/* === RESPONSIVE STYLES === */
@media (max-width: 1380px) {
    .reviews-title {
        font-size: 4rem;
    }
    
    .methodology-container {
        display: flex;
        flex-direction: column;
    }
    
    .methodology-content,
    .methodology-image {
        width: 100%;
    }
    
    .methodology-image {
        margin-top: 40px;
    }
}

@media (max-width: 1200px) {
    .reviews-title {
        font-size: 3.5rem;
    }
    
    .search-filters-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .review-search {
        max-width: 100%;
    }
    
    .filter-controls {
        justify-content: space-between;
    }
    
    .reviews-stats {
        justify-content: center;
    }
    
    .stat-card {
        min-width: 150px;
    }
}

@media (max-width: 992px) {
    .reviews-title {
        font-size: 3rem;
    }
    
    .reviews-description {
        font-size: 1.1rem;
    }
    
    .top-picks-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .methodology-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .reviews-title {
        font-size: 2.5rem;
    }
    
    .reviews-description {
        font-size: 1rem;
    }
    
    .reviews-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-card {
        width: 100%;
        max-width: 100%;
    }
    
    .filters-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-filter-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }
    
    .filter-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .apply-filters-button,
    .reset-filters-button {
        width: 100%;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .reviews-title {
        font-size: 2rem;
    }
    
    .reviews-hero-content {
        padding: 50px 15px;
    }
    
    .top-pick-card,
    .review-card,
    .brand-card {
        transform: none !important;
        box-shadow: none !important;
    }
    
    .sort-control {
        width: 100%;
        justify-content: space-between;
    }
    
    .sort-select {
        flex: 1;
    }
    
    .review-accuracy {
        margin-top: 15px;
    }
    
    .load-more-button {
        width: 100%;
    }
}