/* ========================================
   INDIVIDUAL BAT REVIEW PAGES
   Matching BatDigest Theme & Style
   ======================================== */

/* ========== REVIEW CONTAINER ========== */
.review-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* ========== HERO SECTION (Pillar-Style Header) ========== */
.review-hero {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.review-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.01) 35px, rgba(255,255,255,.01) 70px);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    margin-bottom: 2rem;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li::after {
    content: '/';
    margin: 0 0.5rem;
    color: var(--text-tertiary);
}

.breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--primary-color-dark);
    text-decoration: underline;
}

/* Hero Main Content */
.hero-main {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-main {
        grid-template-columns: 1fr 1fr;
    }
}

/* Hero Text */
.hero-text {
    color: var(--text-primary);
}

.review-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .review-title {
        font-size: 2rem;
    }
}

/* Review Meta */
.review-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--primary-color);
}

.authority-badge {
    background: rgba(var(--primary-rgb), 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(var(--primary-rgb), 0.3);
}

.authority-badge i {
    color: #ffd700;
}

/* Hero Media */
.hero-media {
    position: relative;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.hero-image {
    position: relative;
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== VARIANTS SECTION (Our Ratings) ========== */
.variants-section {
    background: var(--bg-secondary);
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.variants-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.variants-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.variants-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Variants Tabs */
.variants-tabs {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-headers {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
    overflow-x: auto;
}

.tab-header {
    background: none;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.tab-header:hover {
    color: var(--primary-color);
}

.tab-header.active {
    color: var(--primary-color);
}

.tab-header.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.variant-count {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-left: 0.5rem;
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Variants Grid */
.variants-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

/* Variant Card */
.variant-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.variant-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Variant Image */
.variant-image {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.variant-image img {
    max-width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
}

/* Variant Header */
.variant-header {
    margin-bottom: 1.5rem;
}

.variant-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.variant-specs {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.league-badge,
.drop-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.league-badge {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
}

.league-badge.bbcor {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    border-color: rgba(13, 110, 253, 0.2);
}

.league-badge.usssa {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-color: rgba(40, 167, 69, 0.2);
}

.league-badge.usa {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-color: rgba(220, 53, 69, 0.2);
}

.drop-badge {
    background: var(--bg-secondary);
    color: var(--text-secondary);
}

/* Overall Badge */
.variant-overall-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Variant Ratings */
.variant-ratings {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.rating-ring {
    text-align: center;
}

.ring-container {
    position: relative;
    width: 44px;
    height: 44px;
    margin: 0 auto 0.5rem;
}

.ring-svg {
    transform: rotate(-90deg);
}

.ring-background {
    fill: none;
    stroke: var(--bg-tertiary);
    stroke-width: 3;
}

.ring-progress {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dasharray 0.6s ease;
}

.ring-power {
    stroke: #ff6b6b;
}

.ring-control {
    stroke: #4ecdc4;
}

.ring-quality {
    stroke: #45b7d1;
}

.ring-value {
    stroke: #f7b731;
}

.ring-grade {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.875rem;
    font-weight: 700;
}

.rating-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Variant Purchase Links */
.variant-purchase {
    margin-top: auto;
    padding-top: 1rem;
}

.variant-purchase-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0;
}

.variant-purchase-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 2px solid;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.variant-purchase-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Amazon */
.variant-purchase-btn.amazon {
    background: var(--amazon-primary, #FF9900);
    border-color: var(--amazon-primary, #FF9900);
    color: #000000;
}

.variant-purchase-btn.amazon:hover {
    background: var(--amazon-hover, #e88600);
    border-color: var(--amazon-hover, #e88600);
    color: #000000;
}

/* JustBats */
.variant-purchase-btn.justbats {
    background: var(--justbats-primary, #003831);
    border-color: var(--justbats-primary, #003831);
    color: white;
}

.variant-purchase-btn.justbats:hover {
    background: var(--justbats-hover, #00251f);
    border-color: var(--justbats-hover, #00251f);
    color: white;
}

/* Dick's Sporting Goods */
.variant-purchase-btn.dicks {
    background: var(--dicks-primary, #000000);
    border-color: var(--dicks-primary, #000000);
    color: white;
}

.variant-purchase-btn.dicks:hover {
    background: var(--dicks-hover, #333333);
    border-color: var(--dicks-hover, #333333);
    color: white;
}

/* SidelineSwap */
.variant-purchase-btn.sideline {
    background: var(--sidelineswap-primary, #00B67A);
    border-color: var(--sidelineswap-primary, #00B67A);
    color: white;
}

.variant-purchase-btn.sideline:hover {
    background: var(--sidelineswap-hover, #00a069);
    border-color: var(--sidelineswap-hover, #00a069);
    color: white;
}

/* Closeout Bats */
.variant-purchase-btn.closeout {
    background: var(--closeout-primary, #DC3545);
    border-color: var(--closeout-primary, #DC3545);
    color: white;
}

.variant-purchase-btn.closeout:hover {
    background: var(--closeout-hover, #c82333);
    border-color: var(--closeout-hover, #c82333);
    color: white;
}

.btn-icon {
    font-size: 1.1rem;
}

.btn-label {
    font-weight: 600;
}

/* Special styling for affiliate icons */
.variant-purchase-btn .btn-icon {
    margin-right: 0.25rem;
}

/* Grid layout for purchase buttons - responsive */
@media (min-width: 480px) {
    .variant-purchase-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 479px) {
    .variant-purchase-links {
        grid-template-columns: 1fr;
    }
    
    .variant-purchase-btn {
        padding: 0.75rem 1rem;
    }
}

.no-links {
    text-align: center;
    color: var(--text-tertiary);
    font-style: italic;
    padding: 1rem;
    font-size: 0.875rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    margin: 0;
}

/* ========== FALLBACK RATING DASHBOARD ========== */
.rating-dashboard {
    background: var(--bg-secondary);
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.rating-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.rating-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.rating-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.rating-card {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.rating-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.rating-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.rating-card.power .rating-icon {
    color: #ff6b6b;
}

.rating-card.control .rating-icon {
    color: #4ecdc4;
}

.rating-card.quality .rating-icon {
    color: #45b7d1;
}

.rating-card.value .rating-icon {
    color: #f7b731;
}

.rating-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.rating-score {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.rating-bar {
    width: 100%;
    height: 6px;
    background: var(--bg-tertiary);
    border-radius: 3px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: currentColor;
    transition: width 0.6s ease;
}

.rating-card.power .rating-fill {
    background: #ff6b6b;
}

.rating-card.control .rating-fill {
    background: #4ecdc4;
}

.rating-card.quality .rating-fill {
    background: #45b7d1;
}

.rating-card.value .rating-fill {
    background: #f7b731;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .review-hero {
        padding: 3rem 0 2rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-main {
        gap: 2rem;
    }
    
    .review-title {
        font-size: 1.75rem;
    }
    
    .variants-container,
    .rating-container {
        padding: 0 1rem;
    }
    
    .variants-grid {
        grid-template-columns: 1fr;
    }
    
    .variant-ratings {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tab-headers {
        padding-bottom: 0.5rem;
    }
    
    .tab-header {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .variant-purchase-links {
        grid-template-columns: 1fr;
    }
    
    .rating-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .meta-item {
        font-size: 0.8rem;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.variant-card,
.rating-card {
    animation: fadeIn 0.5s ease-out;
}

/* Tab switching animation */
.tab-content {
    animation: fadeIn 0.3s ease-out;
}

/* ========== MAIN REVIEW CONTENT ========== */
.review-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

@media (min-width: 992px) {
    .review-layout {
        grid-template-columns: 2fr 1fr;
    }
}

/* Review Content */
.review-content {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Section Styles */
.review-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.review-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.section-content {
    color: var(--text-secondary);
    line-height: 1.8;
}

.section-content p {
    margin-bottom: 1.25rem;
}

.section-content h3,
.section-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-content ul,
.section-content ol {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
}

.section-content li {
    margin-bottom: 0.5rem;
}

.section-content blockquote {
    background: var(--bg-secondary);
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
}

/* Purchase Section */
.purchase-section {
    background: var(--bg-secondary);
    padding: 3rem 0;
    margin: 3rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.purchase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.purchase-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-primary);
}

.purchase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.purchase-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border: 2px solid;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.purchase-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.purchase-btn .btn-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.purchase-btn .btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.purchase-btn .btn-label {
    font-size: 1rem;
    font-weight: 700;
}

.purchase-btn .btn-price {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Amazon */
.purchase-btn.amazon {
    background: var(--amazon-primary, #FF9900);
    border-color: var(--amazon-primary, #FF9900);
    color: #000000;
}

.purchase-btn.amazon:hover {
    background: var(--amazon-hover, #e88600);
    border-color: var(--amazon-hover, #e88600);
    color: #000000;
}

/* JustBats */
.purchase-btn.justbats {
    background: var(--justbats-primary, #003831);
    border-color: var(--justbats-primary, #003831);
    color: white;
}

.purchase-btn.justbats:hover {
    background: var(--justbats-hover, #00251f);
    border-color: var(--justbats-hover, #00251f);
    color: white;
}

/* Dick's Sporting Goods */
.purchase-btn.dicks {
    background: var(--dicks-primary, #000000);
    border-color: var(--dicks-primary, #000000);
    color: white;
}

.purchase-btn.dicks:hover {
    background: var(--dicks-hover, #333333);
    border-color: var(--dicks-hover, #333333);
    color: white;
}

/* SidelineSwap */
.purchase-btn.sideline {
    background: var(--sidelineswap-primary, #00B67A);
    border-color: var(--sidelineswap-primary, #00B67A);
    color: white;
}

.purchase-btn.sideline:hover {
    background: var(--sidelineswap-hover, #00a069);
    border-color: var(--sidelineswap-hover, #00a069);
    color: white;
}

/* Special Sections */
.recommendations {
    background: rgba(40, 167, 69, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.conclusion {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
}

/* ========== SIDEBAR ========== */
.review-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-title i {
    color: var(--primary-color);
}

.card-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.card-btn:hover {
    background: var(--primary-color-dark);
    transform: translateY(-1px);
}

/* Related Reviews */
.related-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-item {
    display: block;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-item:hover {
    background: var(--bg-tertiary);
    transform: translateX(5px);
}

.related-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.related-excerpt {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Authority Signals */
.authority-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.authority-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.authority-item i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-input {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-btn {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--primary-color-dark);
}

.newsletter-btn:disabled {
    background: var(--color-success);
    cursor: default;
}

/* ========== RELATED BATS SECTION ========== */
.related-bats-section {
    background: var(--bg-secondary);
    padding: 4rem 0;
    margin-top: 4rem;
}

.related-bats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.related-bats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.related-bat-card {
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.related-bat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.bat-image {
    background: white;
    padding: 1.5rem;
    text-align: center;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bat-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.bat-info {
    padding: 1.5rem;
}

.bat-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.bat-rating {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.bat-rating.a {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.bat-rating.b {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.bat-rating.c {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.bat-buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bat-buy-btn:hover {
    background: var(--primary-color-dark);
    transform: translateY(-1px);
}

/* ========== BACK TO TOP BUTTON ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-color-dark);
    transform: translateY(-2px);
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 992px) {
    .review-layout {
        grid-template-columns: 1fr;
    }
    
    .review-sidebar {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .review-content {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .purchase-links {
        grid-template-columns: 1fr;
    }
    
    .related-bats-grid {
        grid-template-columns: 1fr;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* ========== COMPACT PRICE TABLE SECTION ========== */
.price-table-section {
    margin: 1.5rem 0;
}

.price-table-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.price-table {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s ease;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row:hover {
    background: var(--bg-secondary);
}

.price-retailer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.retailer-icon {
    font-size: 1.125rem;
    width: 24px;
    text-align: center;
}

.retailer-name {
    font-weight: 500;
    color: var(--text-primary);
}

.price-action {
    flex-shrink: 0;
}

.price-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

/* Retailer-specific button colors */
.price-btn.amazon {
    background: #FF9900;
    color: #000000;
}

.price-btn.amazon:hover {
    background: #e88600;
    transform: translateY(-1px);
}

.price-btn.justbats {
    background: #003831;
    color: white;
}

.price-btn.justbats:hover {
    background: #00251f;
    transform: translateY(-1px);
}

.price-btn.sideline {
    background: #00B67A;
    color: white;
}

.price-btn.sideline:hover {
    background: #00a069;
    transform: translateY(-1px);
}

.price-btn.dicks {
    background: #0066cc;
    color: white;
}

.price-btn.dicks:hover {
    background: #0052a3;
    transform: translateY(-1px);
}

/* No links fallback row */
.price-row.no-links {
    color: var(--text-secondary);
    font-style: italic;
    justify-content: center;
    text-align: center;
}

.price-row.no-links .price-retailer {
    justify-content: center;
}

/* Mobile responsive for price table */
@media (max-width: 480px) {
    .price-row {
        padding: 0.625rem 0.75rem;
    }
    
    .retailer-name {
        font-size: 0.875rem;
    }
    
    .price-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }
}

/* ========== KEY SPECIFICATIONS SECTION (COMPACT) ========== */
.specs-card {
    background: var(--bg-primary);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.specs-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.specs-title i {
    color: var(--accent-primary);
    font-size: 1rem;
}

.specs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.spec-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border-radius: 6px;
    border: 1px solid var(--border-color);
    min-width: 100px;
    transition: all 0.2s ease;
}

.spec-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.spec-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.spec-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Mobile responsive for specs */
@media (max-width: 768px) {
    .specs-card {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .specs-grid {
        gap: 0.75rem;
    }
    
    .spec-item {
        padding: 0.5rem 0.75rem;
        min-width: 80px;
    }
    
    .specs-title {
        font-size: 1.125rem;
    }
    
    .spec-label {
        font-size: 0.6875rem;
    }
    
    .spec-value {
        font-size: 0.875rem;
    }
}

/* ========== EXPERT RECOMMENDATIONS SECTION ========== */
.expert-recommendations-card {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow);
    border: 2px solid var(--accent-primary);
    position: relative;
    overflow: hidden;
}

.expert-recommendations-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
}

.expert-recommendations-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.expert-recommendations-title i {
    color: var(--accent-primary);
    font-size: 1.25rem;
}

.expert-recommendations-content {
    color: var(--text-primary);
    line-height: 1.7;
}

.expert-recommendations-content p {
    margin-bottom: 1.25rem;
}

.expert-recommendations-content p:last-child {
    margin-bottom: 0;
}

.expert-recommendations-content ul,
.expert-recommendations-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.expert-recommendations-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.expert-recommendations-content strong {
    color: var(--accent-primary);
    font-weight: 600;
}

/* Mobile responsive for expert recommendations */
@media (max-width: 768px) {
    .expert-recommendations-card {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .expert-recommendations-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

/* ========== ANCILLARY SECTION (After main review) ========== */
.ancillary-section {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
    margin-top: 3rem;
}

.ancillary-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ancillary-section .row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.ancillary-section .col-md-6 {
    flex: 1;
    min-width: 300px;
}

/* Make sidebar cards in ancillary section match rest of page */
.ancillary-section .sidebar-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
}

.ancillary-section .card-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.ancillary-section .card-title i {
    color: var(--accent-primary);
    font-size: 1.25rem;
}

/* Related Reviews with thumbnails */
.related-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.related-item:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: inherit;
    text-decoration: none;
}

.related-thumbnail {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

.related-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.related-item:hover .related-thumbnail img {
    transform: scale(1.05);
}

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

.related-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-excerpt {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Mobile responsive for ancillary section */
@media (max-width: 768px) {
    .ancillary-section {
        padding: 2rem 0;
        margin-top: 2rem;
    }
    
    .ancillary-section .row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .ancillary-section .col-md-6 {
        min-width: auto;
    }
    
    .ancillary-section .sidebar-card {
        padding: 1.5rem;
    }
    
    .related-item {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .related-thumbnail {
        width: 50px;
        height: 50px;
    }
    
    .related-title {
        font-size: 0.9rem;
    }
    
    .related-excerpt {
        font-size: 0.8rem;
    }
}