/* ============================================================
   WatchVS — Luxury Watch Comparison Site
   Dark theme with gold accents, premium feel
   ============================================================ */

/* --- CSS Variables --- */
:root {
    --bg-primary: #0d0f14;
    --bg-secondary: #141720;
    --bg-card: #1a1d28;
    --bg-card-hover: #21253a;
    --bg-surface: #1e2130;
    --bg-input: #161924;

    --text-primary: #e8e6e3;
    --text-secondary: #9a9da6;
    --text-muted: #6b6e7a;
    --text-heading: #f0ede8;

    --gold: #c9a96e;
    --gold-light: #ddc28e;
    --gold-dark: #a88a4e;
    --gold-subtle: rgba(201, 169, 110, 0.12);

    --accent-blue: #4a90c4;
    --accent-green: #5cb87a;
    --accent-red: #d45d5d;

    --border-color: #2a2d3a;
    --border-light: #333648;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 20px rgba(201, 169, 110, 0.08);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Georgia', 'Times New Roman', serif;

    --container-max: 1260px;
    --header-height: 72px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

a:hover {
    color: var(--gold-light);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-heading);
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: 2.2rem; letter-spacing: -0.02em; }
h2 { font-size: 1.6rem; letter-spacing: -0.01em; }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }

p { margin-bottom: 0.8em; }

/* --- Container --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Header --- */
.site-header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    background: rgba(20, 23, 32, 0.92);
}

.site-header .container {
    display: flex;
    align-items: center;
    height: var(--header-height);
    gap: 24px;
}

.site-header .logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.site-header .logo:hover {
    color: var(--gold-light);
    text-decoration: none;
}

.site-header .tagline {
    display: none;
}

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}

.main-nav a:hover {
    color: var(--gold);
    background: var(--gold-subtle);
    text-decoration: none;
}

/* --- Main Content --- */
.site-main {
    padding: 32px 0 48px;
    min-height: calc(100vh - var(--header-height) - 200px);
}

/* --- Footer --- */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 40px 0 32px;
    margin-top: 40px;
}

.site-footer .container {
    text-align: center;
}

.site-footer p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.site-footer .disclaimer {
    color: var(--text-muted);
    font-size: 0.75rem;
    opacity: 0.7;
}

.footer-brands {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 12px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.footer-brands a {
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: color 0.2s;
}

.footer-brands a:hover {
    color: var(--gold);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 20px;
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
    margin-bottom: 24px;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    font-size: 0.82rem;
}

.breadcrumbs li {
    color: var(--text-muted);
}

.breadcrumbs li::after {
    content: '\203A';
    margin: 0 8px;
    color: var(--text-muted);
    opacity: 0.5;
}

.breadcrumbs li:last-child::after {
    content: '';
    margin: 0;
}

.breadcrumbs li a {
    color: var(--text-secondary);
}

.breadcrumbs li a:hover {
    color: var(--gold);
}

.breadcrumbs .active {
    color: var(--text-primary);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    text-align: center;
    padding: 64px 0 48px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-top: 12px;
}

.hero-stats strong {
    color: var(--text-heading);
    font-weight: 700;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 600px;
    margin: 16px auto 0;
}

/* ============================================================
   WATCH CARD GRID
   ============================================================ */
.watch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.watch-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.watch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    opacity: 0;
    transition: opacity 0.25s;
}

.watch-card:hover {
    border-color: var(--gold-dark);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-md), var(--shadow-glow);
    transform: translateY(-2px);
}

.watch-card:hover::before {
    opacity: 1;
}

.watch-card a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.watch-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 6px;
    line-height: 1.3;
}

.watch-card .watch-brand {
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.watch-card .watch-collection {
    color: var(--text-secondary);
    font-size: 0.82rem;
    margin-bottom: 4px;
}

.watch-card .watch-ref {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-family: monospace;
    margin-bottom: 6px;
}

.watch-card .watch-specs {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}

.watch-card .watch-year {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-top: 6px;
}

.watch-card .watch-price {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.05rem;
    margin-top: 8px;
}

.watch-card.compact {
    padding: 14px 16px;
}

.watch-card.compact h3 {
    font-size: 0.92rem;
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
section h2 {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.page-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 24px;
}

/* ============================================================
   BRAND / COLLECTION / CATEGORY GRIDS
   ============================================================ */
.brand-grid,
.collection-grid,
.category-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 32px;
}

.brand-item,
.collection-item,
.category-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.brand-item:hover,
.collection-item:hover,
.category-item:hover {
    background: var(--gold-subtle);
    border-color: var(--gold-dark);
    color: var(--gold);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.count {
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* ============================================================
   SPECS TABLE (Watch Detail)
   ============================================================ */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0 24px;
}

.specs-table th,
.specs-table td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.92rem;
}

.specs-table th {
    width: 38%;
    color: var(--text-secondary);
    font-weight: 500;
    background: rgba(201, 169, 110, 0.03);
}

.specs-table td {
    color: var(--text-primary);
}

.specs-table tr:hover {
    background: rgba(201, 169, 110, 0.04);
}

/* ============================================================
   COMPARE TABLE
   ============================================================ */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.compare-table thead th {
    background: var(--bg-surface);
    color: var(--gold);
    font-weight: 600;
    padding: 14px 16px;
    font-size: 0.92rem;
    border-bottom: 2px solid var(--border-color);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.compare-table thead th:first-child {
    color: var(--text-secondary);
    text-transform: none;
    letter-spacing: 0;
}

.compare-table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-primary);
}

.compare-table td:first-child {
    font-weight: 500;
    color: var(--text-secondary);
    background: rgba(0,0,0,0.15);
    white-space: nowrap;
}

.compare-table tbody tr:hover {
    background: rgba(201, 169, 110, 0.04);
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table .highlight-better {
    color: var(--accent-green);
    font-weight: 600;
}

.compare-table .highlight-worse {
    color: var(--text-muted);
}

/* ============================================================
   COMPARE PAGE HEADER
   ============================================================ */
.compare-header {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 28px 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.compare-watch {
    flex: 1;
    text-align: center;
    padding: 28px 20px;
}

.compare-watch h2 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    border: none;
    padding-bottom: 0;
}

.compare-watch h2::after {
    display: none;
}

.compare-watch h2 a {
    color: var(--text-heading);
}

.compare-watch h2 a:hover {
    color: var(--gold);
}

.compare-watch .watch-brand {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.compare-watch .watch-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-top: 8px;
}

.compare-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-muted);
    padding: 0 24px;
    background: var(--bg-surface);
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    letter-spacing: 0.05em;
}

/* ============================================================
   COMPARISON TEXT
   ============================================================ */
.comparison-text {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
    margin: 32px 0;
}

.comparison-text h2 {
    margin-bottom: 20px;
}

.comparison-text h3 {
    color: var(--gold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 28px 0 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.comparison-text h3:first-of-type {
    margin-top: 8px;
    padding-top: 0;
    border-top: none;
}

.comparison-text p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 12px;
}

/* ============================================================
   WATCH DETAIL PAGE
   ============================================================ */
.watch-detail .watch-header {
    margin-bottom: 28px;
}

.watch-detail .watch-header h1 {
    margin-bottom: 8px;
}

.watch-brand-ref {
    color: var(--text-secondary);
    font-size: 1rem;
}

.watch-detail .watch-description {
    margin-bottom: 32px;
}

.watch-detail .watch-description h2 {
    margin-bottom: 14px;
}

.watch-detail .watch-description p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

.watch-detail .watch-specs h2 {
    margin-top: 32px;
}

.watch-detail .watch-specs h3 {
    color: var(--gold);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 24px 0 8px;
    padding-bottom: 0;
    border-bottom: none;
}

.watch-detail .watch-specs h3::after {
    display: none;
}

/* Watch Detail Layout */
.watch-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 36px;
    margin-top: 24px;
}

.watch-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    align-self: start;
}

/* --- Tags / Complications --- */
.tag,
.complications-tags .tag {
    display: inline-block;
    background: var(--gold-subtle);
    color: var(--gold);
    border: 1px solid rgba(201, 169, 110, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 3px 2px;
    font-weight: 500;
}

/* --- Badge --- */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.badge.discontinued {
    background: rgba(212, 93, 93, 0.15);
    color: var(--accent-red);
    border: 1px solid rgba(212, 93, 93, 0.25);
}

/* ============================================================
   PRICE BOX (Sidebar)
   ============================================================ */
.price-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 16px;
}

.price-box h3 {
    color: var(--text-heading);
    font-size: 1rem;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 12px;
}

.price-value.market {
    color: var(--gold);
}

/* ============================================================
   AFFILIATE BOXES
   ============================================================ */
.affiliate-box {
    margin-bottom: 10px;
}

.affiliate-link {
    display: block;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--bg-primary);
    padding: 14px 16px;
    text-align: center;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.25s;
    letter-spacing: 0.02em;
}

.affiliate-link:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--bg-primary);
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(201, 169, 110, 0.3);
    transform: translateY(-1px);
}

.affiliate-row {
    display: flex;
    gap: 12px;
    margin: 20px 0;
}

.affiliate-row a {
    flex: 1;
}

.affiliate-row.bottom {
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 32px;
}

.affiliate-row.bottom .affiliate-box {
    flex: 1;
}

/* ============================================================
   AD BLOCKS
   ============================================================ */
.ad-block {
    margin: 32px 0;
    text-align: center;
    padding: 16px;
    background: var(--bg-card);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-sm);
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-block.sidebar-ad {
    margin: 20px 0;
}

/* ============================================================
   BROWSE PAGE LAYOUT
   ============================================================ */
.browse-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 36px;
}

.browse-filters {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    align-self: start;
    max-height: calc(100vh - var(--header-height) - 40px);
    overflow-y: auto;
}

.browse-filters h3 {
    color: var(--text-heading);
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.filter-group {
    margin-bottom: 24px;
}

.filter-group h4 {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.filter-list {
    list-style: none;
}

.filter-list li {
    margin: 0;
}

.filter-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    margin: 1px 0;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.88rem;
    transition: all 0.15s;
}

.filter-list li a:hover {
    background: var(--gold-subtle);
    color: var(--gold);
    text-decoration: none;
}

.filter-list span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ============================================================
   BRAND VS BRAND
   ============================================================ */
.brand-vs-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 24px;
}

.brand-column h2 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.brand-column h2 a {
    color: var(--text-heading);
}

.brand-column h2 a:hover {
    color: var(--gold);
}

.watch-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ============================================================
   COMPARISON LIST
   ============================================================ */
.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.15s;
}

.comparison-list li:hover {
    background: var(--gold-subtle);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list li a {
    color: var(--text-primary);
    font-size: 0.95rem;
}

.comparison-list li a:hover {
    color: var(--gold);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin: 36px 0;
    flex-wrap: wrap;
}

.pagination a {
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}

.pagination a:hover {
    background: var(--gold-subtle);
    border-color: var(--gold-dark);
    color: var(--gold);
    text-decoration: none;
}

.pagination a.active {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
    font-weight: 700;
}

.pagination a.active:hover {
    background: var(--gold-light);
}

/* ============================================================
   ERROR PAGE
   ============================================================ */
.error-page {
    text-align: center;
    padding: 80px 0;
}

.error-page h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-page p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.error-page a {
    color: var(--gold);
    font-weight: 600;
}

/* ============================================================
   BRAND PAGE
   ============================================================ */
.brand-page h1 {
    margin-bottom: 8px;
}

.brand-page .brand-categories {
    margin-bottom: 32px;
}

.brand-page .brand-categories h3 {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

/* ============================================================
   COLLECTION PAGE
   ============================================================ */
.collection-page h1 {
    margin-bottom: 8px;
}

/* ============================================================
   CATEGORY PAGE
   ============================================================ */
.category-page h1 {
    margin-bottom: 8px;
}

/* ============================================================
   BROWSE FILTERED PAGE
   ============================================================ */
.browse-filtered-page h1 {
    margin-bottom: 8px;
}

/* ============================================================
   PRICE RANGE BADGES (inline)
   ============================================================ */
.price-badge {
    display: inline-block;
    background: var(--gold-subtle);
    color: var(--gold);
    border: 1px solid rgba(201, 169, 110, 0.2);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 600;
}

/* ============================================================
   QUICK COMPARE (used in brand-vs-brand suggested pairs)
   ============================================================ */
.existing-comparisons {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 32px;
}

.existing-comparisons h2 {
    font-size: 1.2rem;
}

/* ============================================================
   FEATURED SECTION ON HOMEPAGE
   ============================================================ */
.featured-watches {
    margin-top: 48px;
}

.brands-list {
    margin-top: 48px;
}

.categories-list {
    margin-top: 48px;
}

.recent-comparisons {
    margin-top: 48px;
}

.recent-comparisons .comparison-list {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

/* ============================================================
   RELATED WATCHES & COLLECTION ON DETAIL
   ============================================================ */
.related-watches,
.collection-watches {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

/* ============================================================
   SCROLLBAR STYLING (Webkit)
   ============================================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 1024px) {
    .watch-layout {
        grid-template-columns: 1fr 280px;
        gap: 24px;
    }

    .browse-layout {
        grid-template-columns: 220px 1fr;
        gap: 24px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .container {
        padding: 0 20px;
    }
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }

    .site-header .container {
        flex-wrap: wrap;
        height: auto;
        padding-top: 12px;
        padding-bottom: 12px;
        gap: 8px;
    }

    .site-header .logo {
        font-size: 1.2rem;
    }

    .main-nav {
        margin-left: 0;
        width: 100%;
        gap: 4px;
    }

    .main-nav a {
        padding: 6px 12px;
        font-size: 0.82rem;
    }

    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }

    .hero {
        padding: 40px 0 32px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-stats {
        font-size: 1rem;
    }

    .watch-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .watch-layout {
        grid-template-columns: 1fr;
    }

    .watch-sidebar {
        position: static;
    }

    .browse-layout {
        grid-template-columns: 1fr;
    }

    .browse-filters {
        position: static;
        max-height: none;
    }

    .brand-vs-columns {
        grid-template-columns: 1fr;
    }

    .compare-header {
        flex-direction: column;
    }

    .compare-vs {
        padding: 12px 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }

    .affiliate-row {
        flex-direction: column;
    }

    .affiliate-row.bottom {
        flex-direction: column;
    }

    .brand-grid,
    .collection-grid,
    .category-grid {
        gap: 8px;
    }

    .brand-item,
    .collection-item,
    .category-item {
        padding: 8px 12px;
        font-size: 0.82rem;
    }

    .compare-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .compare-table th,
    .compare-table td {
        padding: 8px 10px;
        font-size: 0.82rem;
        min-width: 120px;
    }

    .compare-table td:first-child {
        min-width: 100px;
        position: sticky;
        left: 0;
        background: var(--bg-surface);
        z-index: 1;
    }

    .specs-table th,
    .specs-table td {
        padding: 8px 10px;
        font-size: 0.85rem;
    }

    .comparison-text {
        padding: 20px;
    }

    .price-box {
        padding: 16px;
    }

    .site-footer {
        padding: 28px 0 24px;
    }

    .footer-brands {
        gap: 4px 10px;
    }
}

/* ============================================================
   RESPONSIVE — Small phones
   ============================================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .watch-card {
        padding: 14px;
    }

    .compare-watch {
        padding: 16px 12px;
    }

    .compare-watch h2 {
        font-size: 1rem;
    }

    .price-value {
        font-size: 1.3rem;
    }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
    .site-header,
    .site-footer,
    .ad-block,
    .affiliate-box,
    .affiliate-row,
    .main-nav {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .watch-card {
        border: 1px solid #ccc;
        break-inside: avoid;
    }

    .compare-table th,
    .compare-table td {
        border: 1px solid #ccc;
    }

    a { color: #000; }
}
