/* Idakadam Application Styles */

:root {
    --nav-blue: #0a4ccf;
    --nav-black: #000000;
    --page-bg: #ffffff;
    --text-white: #ffffff;
    --nav-height: 64px;
    --section-bg: #ffffff;
    --section-alt: #f6f7fb;
    --footer-bg: #0b0b0b;
    --footer-text: rgba(255, 255, 255, 0.8);
}

body {
    background-color: var(--page-bg);
    margin: 0;
}

.main-content {
    min-height: calc(100vh - 200px);
    /* padding: var(--space-2xl) 0; */
    background: var(--section-bg);
}

/* Universal nav */
.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    transition: background 0.25s ease, box-shadow 0.25s ease;
    background: var(--nav-blue);
    min-height: var(--nav-height);
}

.site-header.is-top {
    background: var(--nav-blue);
}

.site-header.is-scrolled {
    background: var(--nav-black);
}

.site-nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    min-height: var(--nav-height);
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    min-height: 44px;
}

.site-logo img {
    height: 38px;
    width: auto;
    display: block;
}

.logo-white {
    display: block;
    filter: brightness(0) invert(1);
}

.logo-color {
    display: none;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.site-header.is-scrolled .logo-white {
    display: none;
}

.site-header.is-scrolled .logo-color {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-links a {
    color: #fff;
    opacity: 0.92;
    text-decoration: none;
    font-weight: 600;
    padding: 0.45rem 0.75rem;
    border-radius: var(--radius-md);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255, 255, 255, 0.12);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    margin: 5px auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-user-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0.4rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.nav-user-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--nav-blue);
    font-weight: 700;
    font-size: 0.8rem;
}

.nav-user-name {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #fff;
    font-size: 0.86rem;
}

body.nav-open {
    overflow: hidden;
}

@media (max-width: 991px) {
    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(88vw, 360px);
        background: var(--nav-blue);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 20px;
        transform: translateX(100%);
        transition: transform 0.25s ease;
        z-index: 9999;
    }

    .site-header.is-scrolled .nav-menu {
        background: var(--nav-black);
    }

    .site-header.nav-open .nav-menu {
        transform: translateX(0);
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .nav-links a {
        width: 100%;
    }

    .nav-user-pill {
        width: 100%;
        margin: 0.25rem 0;
    }
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-2xl) 0;
    background: var(--section-bg);
}

.section--alt {
    background: var(--section-alt);
}

/* Home hero */
.home-hero {
    width: 100%;
    padding: 90px 0 60px;
    background: linear-gradient(120deg, #0a4ccf 0%, #ff8a00 100%);
    color: #fff;
}

.home-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
}

.home-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: #fff;
}

.home-hero p {
    font-size: clamp(1.05rem, 2.5vw, 1.35rem);
    opacity: 0.95;
    margin-bottom: var(--space-lg);
    max-width: 720px;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-xl);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

.content-container {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
    background-color: var(--footer-bg);
    color: #ffffff;
    padding: var(--space-2xl) 0 var(--space-lg);
    margin-top: var(--space-2xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    color: #ffffff;
}

.footer-brand {
    margin-bottom: var(--space-lg);
}

.footer-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    color: #ffffff;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: var(--space-lg);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

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

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

.footer-section p {
    color: var(--footer-text);
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.footer-section a {
    color: var(--brand-secondary);
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Search Form - Enhanced UX */
.search-form {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    align-items: flex-end;
}

.search-form .form-group {
    margin-bottom: 0;
}

.search-form label {
    font-size: 0.875rem;
    margin-bottom: var(--space-sm);
    font-weight: 600;
    color: var(--brand-text);
}

/* Equalized input heights with better focus states */
.search-form input,
.search-form select {
    height: 48px;
    border-radius: var(--radius-lg);
    padding: 0 var(--space-md);
    border: 2px solid var(--brand-border);
    font-size: 1rem;
    transition: all 0.2s ease;
}

/* Enhanced focus states */
.search-form input:focus,
.search-form select:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(0, 82, 206, 0.1);
}

/* More prominent search button */
.search-form .btn {
    height: 48px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.search-form .btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* Listings Grid */
/* Section styling for better visual hierarchy */
.featured-section {
    margin: var(--space-2xl) 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-xl);
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.section-intro h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--brand-text);
    margin-bottom: var(--space-sm);
}

.section-description {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
    line-height: 1.6;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

/* Normalized section spacing */
.value-props-section,
.how-it-works-section,
.insights-section,
.cta-section {
    margin: var(--space-2xl) 0;
    padding: var(--space-2xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-2xl);
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--brand-text);
}

/* Consistent card icons */
.card-icon {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
    line-height: 1;
}

.listing-card {
    background: white;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
}

.listing-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
    text-decoration: none;
}

/* Keyboard focus for accessibility */
.listing-card:focus {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
}

.listing-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--brand-light);
    position: relative;
}

.listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.listing-card:hover .listing-image img {
    transform: scale(1.05);
}

.listing-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-lg);
    font-size: 0.8rem;
    font-weight: 600;
}

.listing-content {
    padding: var(--space-lg);
}

.listing-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--brand-text);
}

.listing-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: var(--space-md);
}

.listing-location {
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.listing-features {
    display: flex;
    gap: var(--space-md);
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.listing-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.listing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--brand-border);
    padding-top: var(--space-md);
}

.listing-agent {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
}

.listing-actions {
    display: flex;
    gap: var(--space-md);
}

.listing-actions button {
    padding: var(--space-sm) var(--space-md);
    border: none;
    background: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.2s ease;
}

.listing-actions button:hover {
    color: var(--brand-secondary);
}

/* Listing Detail */
.listing-detail {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.listing-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.listing-main-image {
    width: 100%;
    max-height: 500px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background-color: var(--brand-light);
}

.listing-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.listing-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: var(--space-md);
}

.listing-thumbnail {
    width: 100%;
    height: 100px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.listing-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.listing-thumbnail.active {
    border-color: var(--brand-primary);
}

/* Tables - Responsive and accessible */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: var(--space-md);
    border-bottom: 1px solid var(--brand-border);
    text-align: left;
    vertical-align: top;
}

.table thead th {
    font-weight: 600;
    color: var(--brand-text);
    background: var(--brand-bg);
}

@media (max-width: 640px) {
    .table th,
    .table td {
        padding: var(--space-sm);
    }
}
.listing-info {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.listing-info-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: var(--space-lg);
}

.listing-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-text);
}

.listing-info-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: var(--space-lg);
}

.listing-info-location {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    color: rgba(0, 0, 0, 0.7);
}

.listing-key-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    border-bottom: 1px solid var(--brand-border);
    padding-bottom: var(--space-lg);
}

.fact {
    text-align: center;
}

.fact-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-primary);
}

.fact-label {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.6);
    margin-top: var(--space-xs);
}

.listing-seller {
    background: var(--brand-light);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
}

.seller-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.seller-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--brand-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.seller-info h4 {
    margin: 0;
    font-size: 1rem;
}

.seller-info p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.6);
}

.listing-actions-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.listing-actions-group .btn {
    width: 100%;
    justify-content: center;
}

.listing-description {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-2xl);
}

.listing-description h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    color: var(--brand-text);
}

.listing-description p {
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    color: rgba(0, 0, 0, 0.8);
}

/* Dashboard */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.dashboard-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
}

.dashboard-card h3 {
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dashboard-card .stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-primary);
}

.dashboard-card .stat-change {
    font-size: 0.9rem;
    margin-top: var(--space-sm);
}

.stat-change.positive {
    color: var(--brand-success);
}

.stat-change.negative {
    color: var(--brand-error);
}

/* Responsive - Mobile Optimized */
@media (max-width: 768px) {
    .home-hero {
        padding: 80px 0 50px;
    }
    
    /* Hero CTAs stack vertically */
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
        min-height: 48px;
    }
    
    /* Search form mobile layout */
    .search-form {
        margin-top: -var(--space-md);
        padding: var(--space-lg);
    }
    
    .search-grid {
        grid-template-columns: 1fr;
    }
    
    .search-form .btn {
        width: 100%;
    }
    
    /* Listings grid responsive */
    .listings-grid {
        grid-template-columns: 1fr;
    }
    
    /* Section headers stack */
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-header .btn {
        width: 100%;
    }
    
    /* Listing detail mobile */
    .listing-detail {
        grid-template-columns: 1fr;
    }
    
    .listing-info {
        position: static;
        top: auto;
    }
    
    /* Dashboard grid mobile */
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet breakpoint */
@media (max-width: 992px) {
    .listings-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    .home-hero {
        padding: 70px 0 45px;
    }
    
    .hero-cta {
        gap: var(--space-sm);
    }
    
    .search-form {
        padding: var(--space-md);
    }
    
    .card {
        padding: var(--space-lg);
    }
}

/* Form Styles */
.form-section {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-2xl);
}

.form-section h2 {
    margin-bottom: var(--space-lg);
    color: var(--brand-text);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.form-full {
    grid-column: 1 / -1;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.6);
}

/* Loading spinner */
.spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid var(--brand-border);
    border-top-color: var(--brand-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin: var(--space-2xl) 0;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    padding: var(--space-md) var(--space-lg);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--brand-text);
    transition: all 0.2s ease;
}

.pagination a:hover {
    background-color: var(--brand-primary);
    color: white;
    border-color: var(--brand-primary);
}

.pagination .active {
    background-color: var(--brand-primary);
    color: white;
    border-color: var(--brand-primary);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--brand-primary);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: rgba(0, 0, 0, 0.6);
}

.breadcrumb > span:not(:last-child)::after {
    content: " / ";
    color: rgba(0, 0, 0, 0.4);
    margin-left: var(--space-md);
}

/* Accessibility Utilities */
/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--brand-primary);
    color: white;
    padding: var(--space-md) var(--space-lg);
    text-decoration: none;
    z-index: 9999;
    border-radius: 0 0 var(--radius-md) 0;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Ensure cursor pointers on all interactive elements */
button,
[role="button"],
input[type="submit"],
input[type="button"],
.btn,
.card a,
.dropdown-toggle {
    cursor: pointer;
}

/* Prevent text selection on repeated clicks on buttons */
button,
.btn {
    user-select: none;
}

/* Amenities grid - responsive checkbox layout */
.amenities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 400;
}

@media (min-width: 640px) {
    .amenities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Insights compare tool */
.compare-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.compare-select {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border: none;
}

@media (min-width: 768px) {
    .compare-row {
        grid-template-columns: 1fr 1fr auto;
        align-items: center;
    }
}



