/* ========================================
   RoomSharp Documentation - Components
   ======================================== */

/* === Header === */
.header {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    height: var(--header-height);
    background-color: var(--color-bg-elevated);
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.95);
}

[data-theme="dark"] .header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .header {
    background-color: rgba(9, 9, 11, 0.8);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.header-logo img {
    height: 32px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.sidebar-toggle {
    display: none;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--color-border);
    background: var(--color-bg-tertiary);
    color: var(--color-text-primary);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    font-weight: var(--font-weight-semibold);
}

.sidebar-toggle:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.sidebar-toggle-icon {
    width: 18px;
    height: 2px;
    background: currentColor;
    position: relative;
    display: inline-block;
}

.sidebar-toggle-icon::before,
.sidebar-toggle-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: currentColor;
}

.sidebar-toggle-icon::before {
    top: -6px;
}

.sidebar-toggle-icon::after {
    top: 6px;
}

@media (max-width: 1024px) {
    .sidebar-toggle {
        display: inline-flex;
    }
}

.header-nav a {
    color: var(--color-text-secondary);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

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

/* === Preview Notice Banner === */
.preview-notice {
    background: linear-gradient(90deg, #f59e0b 0%, #ea580c 100%);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    text-align: center;
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-sm);
    position: relative;
    z-index: var(--z-fixed);
}

.preview-notice a {
    color: white;
    text-decoration: underline;
    font-weight: var(--font-weight-bold);
    margin-left: var(--space-xs);
}

.preview-notice a:hover {
    opacity: 0.9;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.625rem 1.25rem;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-family-base);
    text-align: center;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
    line-height: 1.2;
}

.btn-primary {
    background: linear-gradient(120deg, #6366f1, #8b5cf6);
    color: white;
    box-shadow: 0 10px 30px -14px rgba(99, 102, 241, 0.6);
}

.btn-primary:hover {
    background: linear-gradient(120deg, #4f46e5, #7c3aed);
    transform: translateY(-1px);
    box-shadow: 0 12px 32px -12px rgba(99, 102, 241, 0.75);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.04);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(6px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.07);
    border-color: var(--color-border-hover);
    transform: translateY(-1px);
}

.btn-large {
    padding: 0.875rem 1.75rem;
    font-size: var(--font-size-base);
}

/* === Cards === */
.card {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.04), rgba(6, 182, 212, 0.03)), var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-xl);
    padding: var(--space-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.card:hover {
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.card-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-lg);
    background: var(--color-bg-tertiary);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: var(--font-size-xl);
    transition: all var(--transition-base);
}

.card:hover .card-icon {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1) rotate(-5deg);
}

/* === Feature Cards === */
.feature-card {
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card p {
    flex-grow: 1;
    margin-bottom: 0;
}

/* === Code Block with Copy Button === */
.code-block-wrapper {
    position: relative;
    margin-bottom: var(--space-xl);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.code-block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-bg-tertiary);
    padding: var(--space-sm) var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.code-block-lang {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.copy-btn {
    padding: 4px 8px;
    font-size: var(--font-size-xs);
    background-color: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.copy-btn:hover {
    background-color: var(--color-bg-secondary);
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.code-block-wrapper pre {
    margin: 0;
    border-radius: 0;
    border: none;
    padding: var(--space-lg);
}

/* === Hero Section === */
.hero {
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.06) 0%, rgba(6, 182, 212, 0.04) 40%, transparent 80%),
        var(--color-bg-primary);
    border-bottom: 1px solid var(--color-border);
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(28px);
    opacity: 0.9;
}

.hero::before {
    width: 340px;
    height: 340px;
    top: 6%;
    left: 10%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.16), transparent 60%);
}

.hero::after {
    width: 360px;
    height: 360px;
    bottom: 4%;
    right: 12%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.14), transparent 60%);
}

.hero-aurora {
    position: absolute;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
}

.hero-aurora-1 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, transparent 60%);
    top: -120px;
    left: -140px;
}

.hero-aurora-2 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, transparent 60%);
    bottom: -160px;
    right: -140px;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.4rem 0.9rem;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-full);
    box-shadow: var(--shadow-sm);
    width: fit-content;
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--border-radius-full);
    background: var(--color-success);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.12);
}

.hero-title {
    font-size: 3.25rem;
    font-weight: var(--font-weight-extrabold);
    margin-bottom: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--color-text-secondary);
    line-height: 1.8;
    max-width: 48rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.45rem 0.9rem;
    border-radius: var(--border-radius-full);
    background: var(--color-bg-tertiary);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
}

.hero-pill.ghost {
    background: transparent;
    color: var(--color-text-secondary);
}

.hero-cta {
    display: flex;
    gap: var(--space-sm);
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-md);
}

.hero-metric {
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.metric-label {
    font-size: var(--font-size-xs);
    color: var(--color-text-secondary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.metric-value {
    font-size: 2rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--color-text-primary);
}

.metric-subtext {
    color: var(--color-text-tertiary);
    font-size: var(--font-size-sm);
}

.hero-right {
    display: flex;
    justify-content: flex-end;
}

.hero-panel {
    width: 100%;
    max-width: 520px;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-2xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.hero-panel::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.18), transparent 60%);
    top: -120px;
    right: -80px;
    filter: blur(30px);
    opacity: 0.8;
    pointer-events: none;
}

.panel-header {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.panel-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.35rem 0.85rem;
    border-radius: var(--border-radius-full);
    background: var(--color-bg-tertiary);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
    font-size: var(--font-size-xs);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.panel-pill.ghost {
    color: var(--color-text-secondary);
}

.hero-visual {
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-xl);
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
}

.hero-visual img {
    width: 100%;
    display: block;
    border-radius: var(--border-radius-lg);
}

.panel-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.panel-footer-stat {
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.panel-label {
    font-size: var(--font-size-xs);
    color: var(--color-text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.panel-value {
    color: var(--color-text-primary);
    font-weight: var(--font-weight-semibold);
    line-height: 1.4;
}

/* === Search / Command Palette === */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: var(--space-2xl) var(--space-lg);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
    z-index: 1100;
}

.search-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.search-dialog {
    width: min(760px, 100%);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-2xl);
    box-shadow: 0 20px 50px -18px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    animation: fadeInUp 0.2s ease;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

[data-theme="dark"] .search-dialog {
    background: rgba(24, 24, 27, 0.9);
}

.search-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-bg-tertiary);
}

.search-input-wrap {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.search-input {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    background: var(--color-bg-elevated);
    font-size: var(--font-size-base);
    color: var(--color-text-primary);
    outline: none;
    transition: border-color var(--transition-fast);
}

.search-input:focus {
    border-color: var(--color-primary);
}

.search-shortcut-hint {
    position: absolute;
    right: 3.9rem;
    font-size: var(--font-size-xs);
    color: var(--color-text-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-full);
    padding: 0.35rem 0.6rem;
}


.search-icon {
    position: absolute;
    left: 0.85rem;
    width: 18px;
    height: 18px;
    color: var(--color-text-secondary);
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.search-close {
    position: absolute;
    right: 0.75rem;
    border: 1px solid var(--color-border);
    background: var(--color-bg-elevated);
    color: var(--color-text-secondary);
    border-radius: var(--border-radius-full);
    padding: 0.35rem 0.7rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: var(--font-size-xs);
}

.search-close:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.search-body {
    max-height: 60vh;
    overflow-y: auto;
    background: var(--color-bg-elevated);
}

.search-results {
    display: flex;
    flex-direction: column;
    scrollbar-width: thin;
    scrollbar-color: var(--color-border) transparent;
}

.search-result {
    text-align: left;
    padding: var(--space-md) var(--space-lg);
    border: none;
    border-bottom: 1px solid var(--color-border);
    background: transparent;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.search-result:hover,
.search-result.active {
    background: var(--color-bg-secondary);
}

.search-result-title {
    color: var(--color-text-primary);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-xs);
}

.search-result-snippet {
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
}

.search-result-snippet em,
.search-result-title em {
    font-style: normal;
    color: var(--color-primary);
    background: var(--color-bg-tertiary);
    padding: 0 2px;
    border-radius: var(--border-radius-sm);
}

.search-results::-webkit-scrollbar {
    width: 8px;
}

.search-results::-webkit-scrollbar-track {
    background: transparent;
}

.search-results::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: var(--border-radius-full);
}

.search-result,
.search-header,
.search-body {
    width: 100%;
}

@media (max-width: 640px) {
    .search-dialog {
        width: 100%;
        margin: 0 var(--space-md);
    }

    .search-header {
        padding: var(--space-md);
    }

    .search-input {
        padding-right: 7.5rem;
    }

    .search-close {
        right: 0.5rem;
    }
}

.search-result-meta {
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
}

.search-result-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.2rem 0.6rem;
    border-radius: var(--border-radius-full);
    border: 1px solid var(--color-border);
    background: var(--color-bg-tertiary);
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.search-empty {
    padding: var(--space-xl);
    color: var(--color-text-secondary);
    text-align: center;
}

.search-status {
    padding: var(--space-xl);
    color: var(--color-text-tertiary);
    text-align: center;
}

.search-fab {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.75rem 1rem;
    background: var(--color-bg-elevated);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-full);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 1090;
}

@media (max-width: 640px) {
    html {
        overflow-x: hidden;
    }
}

.search-fab:hover {
    border-color: var(--color-primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.search-fab-label {
    font-weight: var(--font-weight-semibold);
}

.search-fab-hint {
    font-size: var(--font-size-xs);
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-full);
    padding: 0.1rem 0.5rem;
}


/* === Stat Cards === */
.stat-card {
    background: var(--color-bg-elevated);
    color: var(--color-text-primary);
    text-align: center;
    padding: var(--space-2xl) var(--space-xl);
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--color-border);
    transition: transform var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary-light);
}

.stat-value {
    font-size: 3rem;
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--space-xs);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    font-weight: var(--font-weight-medium);
}

/* === Comparison Table === */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: var(--space-xl);
    background-color: var(--color-bg-elevated);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.comparison-table thead {
    background-color: var(--color-bg-tertiary);
}

.comparison-table th,
.comparison-table td {
    padding: var(--space-lg);
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-table td {
    color: var(--color-text-secondary);
    font-weight: var(--font-weight-medium);
}

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

.comparison-table tbody tr:hover {
    background-color: var(--color-bg-secondary);
}

.comparison-table tbody tr:nth-child(odd) {
    background: var(--color-bg-tertiary);
}

.comparison-table thead th {
    position: sticky;
    top: 0;
    background: var(--color-bg-elevated);
    z-index: 1;
}

.check-icon {
    color: var(--color-success);
    font-weight: bold;
    font-size: 1.2em;
}

.cross-icon {
    color: var(--color-text-tertiary);
    opacity: 0.5;
}

/* === Footer === */
.footer {
    background-color: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    padding: var(--space-4xl) 0 var(--space-2xl);
    margin-top: var(--space-4xl);
}

.footer-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-text-secondary);
    font-weight: var(--font-weight-medium);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
    color: var(--color-text-tertiary);
    font-size: var(--font-size-sm);
}

/* === Badge === */
.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.25rem 0.75rem;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--border-radius-full);
    background-color: var(--color-bg-tertiary);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
    transition: all var(--transition-fast);
}

.badge:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.badge-primary {
    background: var(--color-primary);
    color: white;
    border: none;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-right {
        justify-content: flex-start;
    }

    .hero-title {
        font-size: 2.8rem;
    }
}

/* === Responsive === */
@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: var(--font-size-lg);
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-panel {
        padding: var(--space-lg);
    }

    .comparison-table {
        display: block;
        overflow-x: auto;
    }
}

/* Custom Scrollbar for Sidebar */
.search-body::-webkit-scrollbar {
    width: 6px;
}

.search-body::-webkit-scrollbar-track {
    background: transparent;
}

.search-body::-webkit-scrollbar-thumb {
    background-color: var(--color-border);
    border-radius: 20px;
}

.search-body::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-text-tertiary);
}