/*
Theme Name: AutoSpecInfo Child
Theme URI: https://autospecinfo.com/
Description: Custom child theme for AutoSpecInfo with full bike database integration, premium UI, and dynamic bike pages.
Author: Nithin
Template: astra
Version: 1.0.0
*/

/* ------------------------------
   GLOBAL STYLES
------------------------------- */

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f7fa;
    margin: 0;
    padding: 0;
}

/* Header styling */
.asi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: #ffffff;
    border-bottom: 2px solid #e60023;
    position: sticky;
    top: 0;
    z-index: 999;
}

.asi-logo {
    font-size: 28px;
    font-weight: 800;
    color: #e60023;
}

/* Login button */
.asi-login-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
}

/* Compare section */
.asi-compare-center {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cmp-input {
    padding: 10px 14px;
    border: 2px solid #ccc;
    border-radius: 10px;
    width: 150px;
}

.asi-compare-btn {
    background: #e60023;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
}

/* Brand list */
.asi-brand-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 10px;
}

.asi-brand-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fff;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

.asi-brand-item:hover {
    border-color: #e60023;
    transform: translateY(-2px);
}

.brand-icon {
    width: 32px;
    height: 32px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

/* News / Cards */
.slide-card,
.news-card {
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: 0.2s;
}

.slide-card:hover,
.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* Footer */
.asi-footer {
    text-align: center;
    padding: 25px;
    background: #111;
    color: #fff;
    margin-top: 50px;
}