/**
 * TechnoAccuracy - Unified Smartwatch Review CSS
 * Version 2.0 - Optimized and streamlined
 */

/* =========================================
   SECTION 1: FONTS & VARIABLES
   ========================================= */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@300;400;500;600;700&family=Orbitron:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* === VARIABLES === */
:root {
    /* Primary colors */
    --primary-color: #ffed00; /* Consistent yellow */
    --primary-dark: #e6d500;
    --primary-light: rgba(255, 237, 0, 0.15);
    --primary-gradient: linear-gradient(120deg, #ffed00, #ff9500);
    --secondary-color: #000000; /* Black */
    --accent-color: #ff2d55; /* Highlight color */
    --text-color: #ffffff;
    
    /* Feature colors - all using the same yellow */
    --hr-color: #ffed00;
    --gps-color: #ffed00;
    --precision-color: #ffed00;
    --battery-color: #ffed00;
    --tech-color: #ffed00;
    
    /* Grayscale palette */
    --gray-dark: #1c1c1e;
    --gray-medium: #2c2c2e;
    --gray-light: #3a3a3c;
    --gray-accent: #48484a;
    
    /* Backgrounds */
    --bg-black: #000000;
    --bg-dark: #0c0c0c;
    --bg-card: #111111;
    --bg-elevated: #1a1a1a;
    
    /* Borders and styling */
    --border-radius-sm: 6px;
    --border-radius: 12px;
    --border-radius-lg: 24px;
    --border-light: rgba(255, 255, 255, 0.1);
    --border-accent: rgba(255, 237, 0, 0.3);
    
    /* Effects */
    --box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    --glow-effect: 0 0 20px rgba(255, 237, 0, 0.4);
    --neon-glow: 0 0 15px rgba(255, 237, 0, 0.8);
    --transition-speed: 0.3s;
    
    /* Layout */
    --max-content-width: 1380px;
    --header-height: 60px;
    --header-height-mobile: 50px;
    --content-spacing: 100px;
}

/* =========================================
   SECTION 2: RESET & BASE STYLES
   ========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-black);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 300;
}

h1, h2, h3, h4, h5 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

h6 {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

.container {
    width: 100%;
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 0 30px;
}

img {
    max-width: 100%;
    height: auto;
}

/* === FIXES FOR NOTIFICATION BANNERS === */
.recommendation-badge, 
.yellow-notice, 
.custom-notice-box,
.notification-bar,
.admin-notice,
.site-announcement, 
.top-banner-container, 
.theme-notice, 
.update-nag, 
.notice, 
.info-message, 
#wpadminbar, 
div[style*="position: fixed; top: 0"], 
div[style*="background-color: yellow"],
div[class*="recommendation"],
div[class*="recommended"],
span[class*="badge"],
.highly-recommended,
.verdict-section .recommendation-badge,
.verdict-section [class*="badge"],
.hero [class*="badge"],
div[style*="background-color: #ffed00"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    z-index: -999 !important;
}

/* =========================================
   SECTION 3: BACKGROUND EFFECTS
   ========================================= */

.tech-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

/* Simplified grid pattern - keeping only subtle dots */
.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.2;
}

/* Remove tech circuits background */
.tech-circuits {
    display: none;
}

/* Keep only thin digital lines */
.digital-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

.digital-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: horizontalScan 10s linear infinite;
    opacity: 0.3;
}

.digital-line:nth-child(1) {
    top: 20%;
    width: 100%;
    animation-delay: 0s;
}

.digital-line:nth-child(2) {
    top: 40%;
    width: 100%;
    animation-delay: -3s;
}

.digital-line:nth-child(3) {
    top: 60%;
    width: 100%;
    animation-delay: -6s;
}

.digital-line:nth-child(4) {
    top: 80%;
    width: 100%;
    animation-delay: -9s;
}

.vertical-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(0deg, transparent, var(--primary-color), transparent);
    animation: verticalScan 15s linear infinite;
    opacity: 0.3;
}

.vertical-line:nth-child(5) {
    left: 20%;
    animation-delay: -2s;
}

.vertical-line:nth-child(6) {
    left: 40%;
    animation-delay: -5s;
}

.vertical-line:nth-child(7) {
    left: 60%;
    animation-delay: -8s;
}

.vertical-line:nth-child(8) {
    left: 80%;
    animation-delay: -11s;
}

/* Particles container - keeping subtle moving dots */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tech-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 50%;
    animation: floatParticle 15s linear infinite;
    opacity: 0.2;
}

/* Remove glow orbs */
.glow-orb {
    display: none;
}

/* =========================================
   SECTION 4: STICKY HEADER & NAVIGATION
   ========================================= */

.combined-sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #000000;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    height: var(--header-height);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transform: translateY(-100%);
    opacity: 0;
}

.combined-sticky-header.visible {
    transform: translateY(0);
    opacity: 1;
}

.sticky-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    max-width: var(--max-content-width);
    margin: 0 auto;
}

/* Brand logo container - completely hidden in sticky header */
.brand-logo-container {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Device Info */
.sticky-device-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sticky-device-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
    padding: 2px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-accent);
}

.sticky-device-name {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-color);
}

/* Navigation Tabs */
.sticky-tabs {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 10px;
    background: #000000;
    width: 100%;
}

.sticky-tabs::-webkit-scrollbar {
    display: none;
}

.tab-button {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 15px;
    white-space: nowrap;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: transparent;
    color: #ffffff;
    border: 1px solid var(--border-light);
    cursor: pointer;
    position: relative;
    visibility: visible !important;
    opacity: 1 !important;
}

.tab-button.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(255, 237, 0, 0.3);
    border-color: var(--primary-color);
}

.tab-button:hover:not(.active) {
    background: rgba(255, 237, 0, 0.1);
    color: var(--primary-color);
}

.section-indicator {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    margin-top: 5px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
    position: absolute;
    bottom: 0;
    left: 0;
}

.tab-button.active .section-indicator {
    transform: scaleX(1);
}

/* Call to action */
.sticky-cta {
    flex-shrink: 0;
}

.sticky-buy-button {
    padding: 8px 16px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    font-family: 'Chakra Petch', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 237, 0, 0.2);
}

.sticky-buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 237, 0, 0.3);
}

/* =========================================
   SECTION 5: HERO SECTION & WATCH SHOWCASE
   ========================================= */

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    min-height: 100vh;
    padding: 100px 0 50px;
    max-width: var(--max-content-width);
    margin: 0 auto;
}

/* WATCH SHOWCASE */
.watch-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.watch-image-container {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* Remove watch ring */
.watch-ring {
    display: none;
}

.watch-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: watchFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
    z-index: 2;
    transition: transform 0.5s ease;
}

.watch-image:hover {
    transform: scale(1.05) rotate(5deg);
}

/* Remove flash effect */
.watch-image-flash {
    display: none;
}

/* SPEC BOXES */
.spec-boxes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.spec-box {
    position: absolute;
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 0.85rem;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 500;
    box-shadow: 0 0 10px rgba(255, 237, 0, 0.15);
    z-index: 3;
    transition: all 0.3s ease;
    pointer-events: auto;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.spec-box:hover {
    transform: scale(1.05);
    background-color: rgba(35, 35, 35, 0.9);
    box-shadow: 0 0 15px rgba(255, 237, 0, 0.3);
    border-color: var(--primary-color);
}

.spec-box.box-1 {
    top: 15%;
    left: 0;
    animation: boxFloat 7s ease-in-out infinite;
}

.spec-box.box-2 {
    top: 85%;
    left: 10%;
    animation: boxFloat 7s ease-in-out infinite reverse;
    animation-delay: -2s;
}

.spec-box.box-3 {
    top: 25%;
    right: 0;
    animation: boxFloat 7s ease-in-out infinite;
    animation-delay: -4s;
}

.spec-box.box-4 {
    top: 75%;
    right: 10%;
    animation: boxFloat 7s ease-in-out infinite reverse;
    animation-delay: -6s;
}

.spec-label {
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 2px;
    font-weight: 600;
}

.spec-value {
    font-size: 0.9rem;
    font-weight: 600;
}

/* WATCH DETAILS */
.watch-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-family: 'Chakra Petch', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: var(--glow-effect);
    margin-bottom: 25px;
    align-self: flex-start;
}

.watch-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    margin-top: 0;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--text-color) 0%, #999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.watch-description {
    font-size: 1.1rem;
    color: #bbb;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
}

/* =========================================
   SECTION 6: RATING & METRICS
   ========================================= */

.techno-rating {
    background: var(--bg-dark);
    border: 1px solid var(--border-accent);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.rating-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.rating-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--primary-color);
}

.rating-score {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    text-shadow: var(--glow-effect);
}

.rating-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.rating-section {
    background: var(--bg-dark);
    border-radius: var(--border-radius);
    padding: 20px;
    border: 1px solid var(--border-light);
}

/* Rating bars */
.rating-bars {
    flex: 1;
}

.rating-bar {
    margin-bottom: 15px;
}

.bar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.bar-label {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.85rem;
    color: #ccc;
}

.bar-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
}

.bar-track {
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 4px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* =========================================
   SECTION 7: RADAR CHART
   ========================================= */

.radar-chart {
    position: relative;
    height: 220px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.radar-bg {
    width: 200px;
    height: 200px;
}

.radar-background {
    fill: rgba(255, 255, 255, 0.05);
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 1;
}

.radar-data {
    fill: rgba(255, 237, 0, 0.2);
    stroke: var(--primary-color);
    stroke-width: 2;
}

/* Radar chart components */
.radar-icon {
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 12px;
    transition: all 0.3s ease;
}

.radar-icon:hover {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 10px rgba(255, 237, 0, 0.4);
}

.radar-tooltip {
    position: absolute;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    pointer-events: none;
}

.radar-icon:hover .radar-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Icon positions */
.icon-gps {
    top: 10%;
    left: 50%;
}

.icon-hr {
    top: 37.5%;
    left: 5%;
}

.icon-battery {
    top: 80%;
    left: 20%;
}

.icon-features {
    top: 80%;
    left: 80%;
}

.icon-design {
    top: 37.5%;
    left: 95%;
}

/* =========================================
   SECTION 8: PRICE AND CTA
   ========================================= */

.bottom-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.price-box {
    background: var(--bg-dark);
    border: 1px solid var(--border-accent);
    border-radius: var(--border-radius);
    padding: 15px 25px;
    backdrop-filter: blur(10px);
}

.price-label {
    font-size: 0.8rem;
    font-family: 'Chakra Petch', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ccc;
    margin-bottom: 5px;
}

.price-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.current-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
}

.discount-badge {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 3px 10px;
    border-radius: 12px;
    font-family: 'Chakra Petch', sans-serif;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-button, .primary-button, .secondary-button {
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Chakra Petch', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.primary-button, .cta-button.primary-button {
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(255, 237, 0, 0.3);
}

.primary-button:hover, .cta-button.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 237, 0, 0.4);
    color: var(--secondary-color);
}

.secondary-button, .cta-button.secondary-button {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.secondary-button:hover, .cta-button.secondary-button:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    color: var(--text-color);
}

/* =========================================
   SECTION 9: MAIN SECTIONS CONTAINER
   ========================================= */

.main-sections-container {
    position: relative;
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 0 30px;
}

/* TAB CONTENT */
.tab-content-container {
    position: relative;
}

.tab-content {
    display: none;
    margin-bottom: 60px;
    padding-top: 30px;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

/* Section anchors for navigation */
.section-anchor {
    display: block;
    height: 0;
    margin-top: -100px;
    padding-top: 100px;
    visibility: hidden;
    pointer-events: none;
}

/* =========================================
   SECTION 10: CONTENT SECTIONS
   ========================================= */

.section {
    background: linear-gradient(145deg, var(--bg-dark), var(--bg-black));
    border-radius: var(--border-radius);
    border: 1px solid var(--border-accent);
    padding: 40px;
    margin: 40px 0;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.section-content {
    margin-bottom: 30px;
}

.section-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-text {
    color: #ccc;
    line-height: 1.8;
}

/* CENTER BOXES */
.center-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* PROS AND CONS */
.pros-section, .cons-section {
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    max-width: 350px;
    background: var(--bg-dark);
}

.pros-section {
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.cons-section {
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.pros-section h3, .cons-section h3 {
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Chakra Petch', sans-serif;
}

.pros-section h3 {
    color: #28a745;
}

.cons-section h3 {
    color: #dc3545;
}

.pros-list, .cons-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.pros-list li, .cons-list li {
    padding: 10px 0 10px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.pros-list li::before, .cons-list li::before {
    position: absolute;
    left: 0;
    top: 11px;
}

.pros-list li::before {
    content: '✓';
    color: #28a745;
}

.cons-list li::before {
    content: '✕';
    color: #dc3545;
}

/* FEATURE BOXES */
.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-dark);
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 220px;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.feature-box.has-feature {
    border-left: 3px solid #28a745;
}

.feature-box.no-feature {
    border-left: 3px solid #dc3545;
}

.feature-tick {
    font-size: 20px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-tick.has-feature {
    color: #28a745;
}

.feature-tick.no-feature {
    color: #dc3545;
}

.feature-name {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
}

/* =========================================
   SECTION 11: SPECIFICATIONS
   ========================================= */

.specs-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition-speed);
    background-color: var(--bg-dark);
    border: 1px solid var(--border-light);
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--transition-speed);
    border-bottom: 1px solid var(--border-light);
}

.accordion-header h3 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.1rem;
    margin: 0;
}

.accordion-header:hover {
    background-color: rgba(255, 237, 0, 0.05);
}

.accordion-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform var(--transition-speed);
}

.accordion-icon::before, .accordion-icon::after {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
}

.accordion-icon::after {
    transform: translateY(-50%) rotate(90deg);
    transition: transform var(--transition-speed);
}

.accordion-item.open .accordion-icon::after {
    transform: translateY(-50%) rotate(0);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-item.open .accordion-content {
    max-height: 2000px;
}

.specs-grid {
    padding: 20px;
}

.spec-row {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-name {
    flex: 0 0 40%;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 500;
    color: #999;
}

.spec-value {
    flex: 0 0 60%;
    font-weight: 400;
    color: var(--text-color);
}

/* =========================================
   SECTION 12: BATTERY SECTION
   ========================================= */

.battery-section {
    background: linear-gradient(145deg, var(--bg-dark), var(--bg-black));
    border-radius: var(--border-radius);
    border: 1px solid var(--border-accent);
    padding: 40px;
    margin: 40px 0;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.battery-header {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.battery-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.battery-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.battery-description {
    color: #ccc;
    max-width: 800px;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.battery-modes {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.battery-mode {
    background: var(--bg-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 20px;
    width: 220px;
    text-align: center;
    transition: all 0.3s ease;
}

.battery-mode:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    border-color: var(--primary-color);
}

.mode-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 237, 0, 0.1);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
}

.mode-name {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.mode-duration {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.mode-details {
    font-size: 0.9rem;
    color: #999;
}

.battery-charts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.battery-chart-container {
    background: var(--bg-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 20px;
    min-height: 350px;
}

.chart-header {
    margin-bottom: 20px;
}

.chart-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.chart-description {
    font-size: 0.9rem;
    color: #999;
}

.chart-canvas-container {
    height: 250px;
    position: relative;
}

.battery-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.battery-stat {
    background: var(--bg-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 20px;
    flex: 1;
    min-width: 180px;
    text-align: center;
    transition: all 0.3s ease;
}

.battery-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    border-color: var(--primary-color);
}

.stat-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 10px;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-caption {
    font-size: 0.8rem;
    color: #999;
}

/* =========================================
   SECTION 13: SENSORS ACCURACY
   ========================================= */

.accuracy-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.accuracy-intro h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.accuracy-description {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
}

.accuracy-summary {
    margin-bottom: 50px;
}

.accuracy-score-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 30px;
    background: var(--bg-dark);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-accent);
    max-width: 800px;
    margin: 0 auto;
}

.accuracy-score {
    text-align: center;
}

.score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary-color);
    background: rgba(255, 237, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 237, 0, 0.2);
    position: relative;
    animation: pulseGlow 3s infinite;
}

.score-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.score-max {
    font-size: 1rem;
    color: #777;
}

.accuracy-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.metric-item {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 15px;
    text-align: center;
    min-width: 130px;
    transition: all 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.metric-label {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 5px;
}

.metric-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* =========================================
   SECTION 14: ANALYSIS GRID
   ========================================= */

.hr-analysis-grid, 
.gps-analysis-grid {
    display: grid;
    gap: 20px;
    margin: 40px 0;
}

.hr-analysis-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.gps-analysis-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.analysis-card {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-accent);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.analysis-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    border-color: var(--primary-color);
}

.analysis-card img {
    width: 64px;
    height: 64px;
    margin-bottom: 15px;
    border-radius: 5px;
    object-fit: cover;
}

.analysis-card strong {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.analysis-metrics {
    display: inline-block;
    padding: 8px 15px;
    background-color: rgba(255, 237, 0, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 10px;
}

.analysis-card.disabled {
    background-color: rgba(0, 0, 0, 0.2);
    border-color: var(--border-light);
    cursor: default;
    opacity: 0.7;
}

.analysis-card.disabled:hover {
    transform: none;
    box-shadow: none;
}

.analysis-placeholder {
    color: #777;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SENSOR ANALYSIS NAV */
.sensor-analysis-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0 30px;
}

.analysis-nav-btn {
    padding: 12px 25px;
    background: var(--bg-dark);
    color: var(--text-color);
    border: 1px solid var(--border-light);
    border-radius: 30px;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.analysis-nav-btn.active,
.analysis-nav-btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.detailed-analysis {
    display: none;
}

.detailed-analysis.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* ANALYSIS MODE SECTION */
.analysis-mode-section {
    margin: 30px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--bg-dark);
    border: 1px solid var(--border-accent);
}

.analysis-mode-header {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.analysis-mode-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.analysis-mode-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.analysis-mode-title h3 {
    margin: 0;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Fix activity tabs to match original */
.analysis-activity-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px;
    background: #000; /* Black background as requested */
    justify-content: center;
}

.analysis-activity-tab {
    padding: 8px 20px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.8rem;
    color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.analysis-activity-tab.active {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.analysis-activity-tab:hover:not(.active) {
    background-color: rgba(255, 237, 0, 0.1);
    border-color: var(--border-accent);
}

.analysis-content {
    padding: 20px;
}

.analysis-activity-content {
    display: none;
}

.analysis-activity-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.analysis-iframe {
    width: 100%;
    height: 450px;
    border: 1px solid var(--border-accent);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.iframe-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 450px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: var(--border-radius);
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 237, 0, 0.2);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* =========================================
   SECTION 15: VERDICT SECTION
   ========================================= */

.verdict-section {
    text-align: center;
    background: linear-gradient(145deg, var(--bg-dark), var(--bg-black));
    border-radius: var(--border-radius);
    padding: 60px 40px;
    margin: 60px 0;
    border: 1px solid var(--border-accent);
    position: relative;
    overflow: hidden;
}

.verdict-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.recommendation-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.recommendation-score-box {
    background: var(--bg-dark);
    border: 1px solid var(--border-accent);
    border-radius: var(--border-radius);
    padding: 30px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.recommendation-score-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color);
}

.score-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ccc;
    margin-bottom: 10px;
}

.score-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.performance-metrics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px auto;
    max-width: 800px;
    animation: fadeIn 0.5s ease;
}

.metric-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 20px;
    min-width: 150px;
    flex: 1;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.verdict-text {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: left;
    position: relative;
    z-index: 1;
    color: #ccc;
    line-height: 1.8;
}

.buy-button-container {
    position: relative;
    z-index: 1;
}

.buy-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: var(--border-radius);
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 237, 0, 0.3);
}

.buy-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 237, 0, 0.4);
    color: var(--secondary-color);
}

/* =========================================
   SECTION 16: COMPARISON SECTION (HIDDEN)
   ========================================= */

/* Hide comparison section completely */
.enhanced-comparison {
    display: none !important;
}

.competitor-cards, 
.comparison-search, 
.comparison-table-container,
.comparison-table-wrapper {
    display: none !important;
}

/* =========================================
   SECTION 17: RELATED DEVICES
   ========================================= */

.related-devices {
    padding: 60px 0;
    background: linear-gradient(145deg, var(--bg-dark), var(--bg-black));
}

.related-devices .section-title {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.related-devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.related-device-card {
    background: linear-gradient(145deg, var(--bg-dark), #111);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    height: 100%;
}

.related-device-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-color: var(--primary-color);
}

.related-device-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: var(--text-color);
    text-decoration: none;
}

.related-device-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}

.related-device-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    padding: 20px;
}

.related-device-card:hover .related-device-image img {
    transform: scale(1.05);
}

.related-device-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.related-device-info h3 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--primary-color);
}

.related-device-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.related-device-price {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

.related-device-rating {
    padding: 3px 8px;
    background: rgba(255, 237, 0, 0.1);
    border-radius: 5px;
    font-weight: 600;
    color: var(--primary-color);
}

.related-device-desc {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
    flex: 1;
}

/* =========================================
   SECTION 18: ENHANCED SCROLL TO TOP BUTTON
   ========================================= */

.scroll-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0.9;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    opacity: 1;
}

/* =========================================
   SECTION 19: ANIMATIONS
   ========================================= */

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes horizontalScan {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 0.7; }
    100% { transform: translateX(100%); opacity: 0; }
}

@keyframes verticalScan {
    0% { transform: translateY(-100%); opacity: 0; }
    50% { opacity: 0.7; }
    100% { transform: translateY(100%); opacity: 0; }
}

@keyframes floatParticle {
    0% { transform: translate(0, 0); opacity: 0; }
    25% { opacity: 0.8; }
    50% { transform: translate(50px, 50px); opacity: 0.7; }
    75% { opacity: 0.8; }
    100% { transform: translate(100px, 0); opacity: 0; }
}

@keyframes watchFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes boxFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 5px rgba(255, 237, 0, 0.2); }
    50% { box-shadow: 0 0 15px rgba(255, 237, 0, 0.5); }
    100% { box-shadow: 0 0 5px rgba(255, 237, 0, 0.2); }
}

@keyframes highlight-pulse {
    0% { background-color: transparent; }
    25% { background-color: rgba(255, 237, 0, 0.2); }
    100% { background-color: transparent; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.animated-tick {
    animation: tick-animation 0.5s ease-in-out;
}

@keyframes tick-animation {
    0% { transform: scale(0); }
    50% { transform: scale(1.5); }
    100% { transform: scale(1); }
}

/* =========================================
   SECTION 20: RESPONSIVE STYLES
   ========================================= */

/* Large desktop */
@media (max-width: 1380px) {
    :root {
        --content-spacing: 80px;
    }
    
    .hero {
        gap: 30px;
    }
    
    .watch-name {
        font-size: 3.5rem;
    }
    
    .watch-image-container {
        width: 320px;
        height: 320px;
    }
    
    /* Adjust feature stat positions */
    .spec-box.box-1 {
        top: 20%;
        left: 5%;
    }
    
    .spec-box.box-2 {
        top: 80%;
        left: 5%;
    }
    
    .spec-box.box-3 {
        top: 20%;
        right: 5%;
    }
    
    .spec-box.box-4 {
        top: 80%;
        right: 5%;
    }
}

/* Medium desktop and tablet landscape */
@media (max-width: 1200px) {
    :root {
        --content-spacing: 60px;
    }
    
    .hero {
        display: flex;
        flex-direction: column;
        padding-top: 80px;
    }
    
    .watch-showcase, .watch-details {
        width: 100%;
    }
    
    .watch-showcase {
        margin-bottom: 30px;
    }
    
    .watch-image-container {
        width: 280px;
        height: 280px;
    }
    
    .watch-name {
        font-size: 3rem;
        text-align: center;
    }
    
    .watch-description {
        text-align: center;
        margin: 0 auto 30px;
    }
    
    .brand-badge {
        align-self: center;
    }
    
    .rating-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .battery-charts {
        grid-template-columns: 1fr;
    }
    
    .bottom-actions {
        flex-direction: column;
        gap: 20px;
    }
    
    .price-box {
        width: 100%;
        text-align: center;
    }
    
    .price-content {
        justify-content: center;
    }
    
    .cta-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* Tablet portrait */
@media (max-width: 992px) {
    .combined-sticky-header .sticky-container {
        flex-wrap: wrap;
        padding: 10px;
        height: auto;
        background: #000000;
    }
    
    .sticky-device-info {
        order: 1;
        flex: 1;
    }
    
    .sticky-tabs {
        order: 3;
        width: 100%;
        margin-top: 10px;
        background: #000000;
    }
    
    .sticky-cta {
        order: 2;
    }
    
    .combined-sticky-header.multi-line {
        background: #000000;
    }
    
    .watch-image-container {
        width: 240px;
        height: 240px;
    }
    
    .watch-name {
        font-size: 2.5rem;
    }
    
    .rating-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .rating-score {
        font-size: 3rem;
    }
    
    .spec-box {
        transform: scale(0.9);
    }
    
    .battery-modes {
        gap: 10px;
    }
    
    .battery-mode {
        width: 180px;
        padding: 15px;
    }
    
    .battery-stats {
        flex-direction: column;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hr-analysis-grid, .gps-analysis-grid {
        grid-template-columns: 1fr;
    }
    
    .sensor-analysis-nav {
        flex-direction: column;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .analysis-activity-tabs {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 15px 10px;
    }
    
    .analysis-activity-tab {
        flex-shrink: 0;
    }
    
    .analysis-iframe {
        height: 350px;
    }
    
    .accuracy-score-card {
        flex-direction: column;
    }
}

/* Mobile landscape */
@media (max-width: 768px) {
    :root {
        --header-height: var(--header-height-mobile);
    }
    
    .container, .main-sections-container {
        padding: 0 15px;
    }
    
    .section, .battery-section, .verdict-section {
        padding: 30px 20px;
    }
    
    .watch-image-container {
        width: 220px;
        height: 220px;
    }
    
    .watch-name {
        font-size: 2.2rem;
    }
    
    .rating-score {
        font-size: 2.5rem;
    }
    
    .spec-box {
        padding: 8px 12px;
        transform: scale(0.8);
    }
    
    .battery-modes {
        flex-direction: column;
        max-width: 220px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .battery-mode {
        width: 100%;
    }
    
    .analysis-mode-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .analysis-mode-title {
        flex-direction: column;
    }
    
    .analysis-iframe {
        height: 300px;
    }
    
    .related-devices-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .performance-metrics {
        flex-direction: column;
        max-width: 280px;
    }
    
    .brand-name {
        font-size: 0.8rem;
    }
    
    .brand-logo, .brand-logo-fallback {
        width: 24px;
        height: 24px;
        margin-right: 5px;
    }
}

/* Mobile portrait */
@media (max-width: 576px) {
    .watch-image-container {
        width: 180px;
        height: 180px;
    }
    
    .watch-name {
        font-size: 1.8rem;
    }
    
    .tab-button {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .sticky-device-name {
        font-size: 0.8rem;
    }
    
    .sticky-device-image {
        width: 30px;
        height: 30px;
    }
    
    .sticky-buy-button {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .rating-content {
        padding: 15px;
    }
    
    .spec-box {
        display: none;
    }
    
    .accuracy-metrics {
        flex-direction: column;
        align-items: center;
    }
    
    .metric-item {
        width: 100%;
    }
    
    .verdict-section h2 {
        font-size: 2rem;
    }
    
    .buy-button {
        width: 100%;
    }
}

/* Fix for reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}