:root {
    /* EBike public UI: one light, navy and teal design language. */
    --endreox-font: 'Outfit', 'Segoe UI', Arial, sans-serif;
    --endreox-font-two: 'Outfit', 'Segoe UI', Arial, sans-serif;
    --endreox-font-three: 'Outfit', 'Segoe UI', Arial, sans-serif;
    --endreox-font-five: 'Outfit', 'Segoe UI', Arial, sans-serif;
    --endreox-gray: #5f7388;
    --endreox-gray-rgb: 95, 115, 136;
    --endreox-base: #0f8b8d;
    --endreox-base-rgb: 15, 139, 141;
    --endreox-black: #102a43;
    --endreox-black-rgb: 16, 42, 67;
    --endreox-primary: #0e5b67;
    --endreox-primary-rgb: 14, 91, 103;
    --primary: #0f8b8d;
    --primary-dark: #096c6e;
    --primary-light: #62cfc2;
    --secondary: #102a43;
    --dark-bg: #f7fafc;
    --surface: #ffffff;
    --surface-soft: #eef7f7;
    --text-main: #172b4d;
    --text-muted: #5f7388;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: #dbe7ed;
    --shadow-soft: 0 14px 38px rgba(16, 42, 67, 0.1);
    --shadow-glow: 0 16px 36px rgba(15, 139, 141, 0.18);
    --radius-lg: 22px;
    --radius-md: 14px;
    --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --type-display: clamp(38px, 5vw, 64px);
    --type-page-title: clamp(31px, 4.3vw, 52px);
    --type-section-title: clamp(27px, 3.2vw, 42px);
    --type-card-title: clamp(19px, 1.8vw, 24px);
}

/* Unified search results */
.ebike-search-page {
    padding: clamp(56px, 7vw, 92px) 0;
}

.ebike-search-summary {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: clamp(24px, 4vw, 54px);
    align-items: center;
    padding: clamp(26px, 4vw, 44px);
    margin-bottom: clamp(48px, 7vw, 78px);
    background: linear-gradient(135deg, #ffffff 0%, #eef9f8 100%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.ebike-search-eyebrow,
.ebike-search-heading > div > span,
.ebike-search-card-type {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.ebike-search-summary h2 {
    margin: 10px 0 8px;
    font-size: clamp(25px, 3vw, 38px);
    line-height: 1.16;
    overflow-wrap: anywhere;
}

.ebike-search-summary p {
    margin: 0;
}

.ebike-search-form {
    display: flex;
    min-width: 0;
    padding: 6px;
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(16, 42, 67, 0.08);
}

.ebike-search-form input[type="search"] {
    min-width: 0;
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 0 !important;
    box-shadow: none !important;
}

.ebike-search-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    flex: 0 0 auto;
    min-width: 104px;
    min-height: 52px;
    padding: 0 20px;
    color: #fff;
    background: var(--primary);
    border: 0;
    border-radius: 12px;
    font-weight: 800;
}

.ebike-search-form button:hover,
.ebike-search-form button:focus-visible {
    background: var(--primary-dark);
}

.ebike-search-section + .ebike-search-section {
    margin-top: clamp(52px, 7vw, 82px);
}

.ebike-search-heading {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-end;
    margin-bottom: 26px;
}

.ebike-search-heading h2 {
    margin: 5px 0 0;
    font-size: var(--type-section-title);
}

.ebike-search-heading > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex: 0 0 auto;
    font-weight: 800;
}

.ebike-search-article-grid,
.ebike-search-product-grid {
    display: grid;
    gap: 24px;
}

.ebike-search-article-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ebike-search-article-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100%;
    padding: 26px;
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 30px rgba(16, 42, 67, 0.08);
    transition: var(--transition);
}

.ebike-search-article-card:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 139, 141, 0.4);
    box-shadow: var(--shadow-soft);
}

.ebike-search-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 22px;
    color: var(--primary-dark);
    background: var(--surface-soft);
    border-radius: 13px;
}

.ebike-search-article-card h3 {
    margin: 9px 0 10px;
    font-size: var(--type-card-title);
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.ebike-search-article-card p {
    margin-bottom: 22px;
}

.ebike-search-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    font-weight: 800;
}

.ebike-search-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ebike-search-product-card {
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 30px rgba(16, 42, 67, 0.08);
    transition: var(--transition);
}

.ebike-search-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 139, 141, 0.4);
    box-shadow: var(--shadow-soft);
}

.ebike-search-product-media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--surface-soft);
}

.ebike-search-product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform 0.35s ease;
}

.ebike-search-product-card:hover .ebike-search-product-media img {
    transform: scale(1.035);
}

.ebike-search-badge {
    position: absolute;
    z-index: 1;
    top: 14px;
    left: 14px;
    padding: 7px 10px;
    color: #fff;
    background: var(--primary-dark);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ebike-search-badge--accent {
    background: #256f80;
}

.ebike-search-product-body {
    padding: 20px;
}

.ebike-search-product-body h3 {
    min-height: 2.65em;
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.32;
    overflow-wrap: anywhere;
}

.ebike-search-product-footer {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}

.ebike-search-product-footer strong {
    color: var(--secondary);
    font-size: 17px;
}

.ebike-search-product-footer strong small {
    margin-left: 3px;
}

.ebike-search-product-footer > span,
.ebike-search-empty > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    color: #fff;
    background: var(--primary);
    border-radius: 50%;
}

.ebike-search-empty {
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(34px, 6vw, 62px);
    text-align: center;
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.ebike-search-empty > span {
    width: 58px;
    height: 58px;
    margin-bottom: 20px;
    font-size: 20px;
}

.ebike-search-empty h2 {
    margin-bottom: 10px;
}

.ebike-search-empty a {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-top: 8px;
    font-weight: 800;
}

.ebike-search-pagination {
    margin-top: 42px;
}

@media (max-width: 991.98px) {
    .ebike-search-summary {
        grid-template-columns: minmax(0, 1fr);
    }

    .ebike-search-article-grid,
    .ebike-search-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .ebike-search-page {
        padding: 44px 0 60px;
    }

    .ebike-search-summary {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .ebike-search-form {
        align-items: stretch;
    }

    .ebike-search-form button {
        min-width: 54px;
        padding: 0 15px;
    }

    .ebike-search-form button span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }

    .ebike-search-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .ebike-search-article-grid,
    .ebike-search-product-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }

    .ebike-search-article-card {
        padding: 22px;
    }
}

/* Global Overrides */
body {
    font-family: 'Outfit', 'Segoe UI', Arial, sans-serif !important;
    background: var(--dark-bg) !important;
    color: var(--text-main) !important;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Segoe UI', Arial, sans-serif !important;
    color: var(--text-main);
    font-weight: 700 !important;
}

p {
    color: var(--text-muted);
    line-height: 1.7;
}

a {
    color: var(--primary);
    transition: var(--transition);
    text-decoration: none !important;
}
a:hover {
    color: var(--primary-dark);
}

/* Base Utility Classes */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

/* Modern Hero Section */
.modern-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0;
    background: linear-gradient(135deg, #102a43 0%, #0e5b67 55%, #0f8b8d 100%);
}

.modern-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(98, 207, 194, 0.3) 0%, rgba(16, 42, 67, 0) 70%);
    z-index: 0;
}

.modern-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
    z-index: 0;
    filter: brightness(0.72) saturate(1.05);
}

.modern-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.modern-hero__badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(169, 244, 232, 0.14);
    border: 1px solid rgba(169, 244, 232, 0.36);
    color: #a9f4e8;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.modern-hero__title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(to right, #ffffff, #a9f4e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.modern-hero__text {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 300;
    color: #d9edf2 !important;
}

/* Modern Buttons */
.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 12px;
}

.btn-primary-glow {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(15, 139, 141, 0.28);
}

.btn-primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 32px rgba(15, 139, 141, 0.34);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn-outline-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff !important;
    backdrop-filter: blur(10px);
}

.btn-outline-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Modern Grid & Cards for Services */
.modern-section {
    padding: 120px 0;
    position: relative;
    background: var(--dark-bg);
}

.appointment-one__inner,
.appointment-one__inner::before {
    background-color: var(--primary) !important;
}

.special-offer__single-1 .coupons__offer-amount {
    background-color: var(--primary) !important;
}

.special-offer__single-2 .coupons__offer-amount {
    background-color: var(--secondary) !important;
}

.special-offer__single-3 .coupons__offer-amount {
    background-color: #245477 !important;
}

.ebike-service-callout {
    padding: 34px 0;
    background: #fff;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.ebike-service-callout h4 {
    margin: 0;
    color: var(--secondary) !important;
    font-size: 1.18rem;
    font-weight: 600 !important;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header--left {
    padding-left: clamp(0px, 3vw, 30px);
    text-align: left;
}

.section-header--testimonial {
    margin-bottom: 30px;
    text-align: left;
}

.section-header__lead {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-muted) !important;
    font-size: 1.08rem;
    line-height: 1.75;
}

.section-header__lead--left {
    margin-left: 0;
}

.section-tagline {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 139, 141, 0.07) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(15, 139, 141, 0.36);
}

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

.service-card__icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    background: #e9f8f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 24px;
    border: 1px solid rgba(15, 139, 141, 0.2);
    transition: var(--transition);
}

.service-card:hover .service-card__icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.service-card__title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--secondary);
    font-weight: 600;
}

.service-card__media {
    width: 100%;
    height: 200px;
    margin-bottom: 24px;
    overflow: hidden;
    background: #edf5f7;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
}

.service-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-card__media img {
    transform: scale(1.045);
}

.service-card__spacer {
    flex-grow: 1;
}

.service-card__text {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-card__link {
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-top: 16px;
}

.service-card__link i {
    transition: var(--transition);
}

.service-card:hover .service-card__link i {
    transform: translateX(5px);
}

/* Fix for Main Menu Container */
.main-header-three {
    background: #fff !important;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 8px 28px rgba(16, 42, 67, 0.07);
}

.main-header-three__middle {
    background: #fff !important;
}

.main-menu__list > li > a {
    color: var(--secondary) !important;
    font-weight: 600 !important;
    font-family: 'Outfit', sans-serif !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
    border-bottom: 2px solid transparent;
}

.main-menu__list > li:hover > a,
.main-menu__list > li.current > a,
.main-menu__list > li.active > a,
.main-menu__list > li.current-menu-item > a {
    color: var(--primary) !important;
    border-bottom-color: var(--primary);
}

.main-header-three__top {
    background: var(--secondary) !important;
}

.main-header-three__top-left-text,
.main-header-three__top-left-text a,
.main-header-three__top-social a {
    color: #d9edf2 !important;
}

.main-header-three__contact-list .icon,
.main-header-three__contact-list .icon span {
    color: var(--primary) !important;
}

.main-header-three__contact-list h5 {
    color: var(--text-muted) !important;
    font-family: 'Outfit', 'Segoe UI', Arial, sans-serif !important;
    font-weight: 600 !important;
}

.main-header-three__contact-list p,
.main-header-three__contact-list p a {
    color: var(--secondary) !important;
    font-weight: 700 !important;
}

.main-header-three__logo img {
    max-width: min(200px, 42vw);
    height: auto;
}

.main-header-three,
.main-menu-three,
.main-menu-three__wrapper,
.main-menu-three__wrapper-inner {
    background: #fff !important;
    border-color: transparent !important;
}

.main-menu-three {
    border-bottom: 1px solid var(--glass-border) !important;
}

.stricky-header,
.stricky-header.main-menu-three {
    background: rgba(255, 255, 255, 0.97) !important;
    border-color: var(--glass-border) !important;
    box-shadow: 0 10px 28px rgba(16, 42, 67, 0.1);
}

.main-menu-three__left {
    background: transparent !important;
    border-bottom: 0;
}

.main-menu-three__left::before {
    display: none !important;
    content: none !important;
}

.mobile-nav__toggler,
.main-menu-three__side-content-icon a {
    color: var(--primary) !important;
}

.main-menu-three__side-content-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: var(--surface-soft) !important;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
}

.main-menu-three__side-content-icon .text-white {
    color: #fff !important;
}

.header-social-static {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 30px;
}

.ebike-header-social-mobile__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.ebike-social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 17px;
    text-decoration: none;
    transition: var(--transition);
}

.ebike-social-button--text {
    font-size: 12px;
    font-weight: 800;
}

.header-social-static .ebike-social-button,
.ebike-header-social-mobile .ebike-social-button {
    background: var(--surface-soft) !important;
    border: 1px solid var(--glass-border);
    color: var(--primary-dark) !important;
    box-shadow: none !important;
}

.header-social-static a:hover,
.ebike-header-social-mobile a:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

.ebike-header-social-mobile {
    padding: 14px 0 28px;
    background: #fff;
}

.main-menu__list > li > ul,
.main-menu__list > li > ul > li > ul {
    background: #fff !important;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft) !important;
}

.main-menu__list > li > ul > li > a,
.main-menu__list > li > ul > li > ul > li > a {
    color: var(--text-main) !important;
}

.main-menu__list > li > ul > li:hover > a,
.main-menu__list > li > ul > li > ul > li:hover > a {
    background: var(--surface-soft) !important;
    color: var(--primary-dark) !important;
}

@media (max-width: 991px) {
    .modern-hero__title {
        font-size: 3rem;
    }
}

/* ------------------------------------- */
/* Product Cards */
/* ------------------------------------- */
.product-card {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    text-align: center;
    padding-bottom: 24px;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(15, 139, 141, 0.36);
}

.product-card__img-wrap {
    background: #fff;
    padding: 30px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--glass-border);
}

.product-card__img-wrap img {
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-card__img-wrap img {
    transform: scale(1.08);
}

.product-card__title {
    font-size: 1.1rem;
    color: var(--text-main);
    margin: 20px 15px 10px;
    font-weight: 600;
}

.modern-grid--products {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.product-card__title-link {
    color: inherit !important;
}

.product-card__inquiry {
    font-size: 1rem;
    font-weight: 600;
}

.product-card__price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.product-card__price small {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* ------------------------------------- */
/* News/Blog Cards */
/* ------------------------------------- */
.news-card {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(15, 139, 141, 0.3);
}

.news-card__img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card__image-link {
    display: block;
    overflow: hidden;
}

.news-card__footer {
    margin-top: auto;
}

.news-card:hover .news-card__img {
    transform: scale(1.05);
}

.news-card__content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-card__meta {
    font-size: 13px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-card__meta span {
    color: var(--text-muted);
    margin-left: 8px;
}

.news-card__title {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 16px;
    line-height: 1.4;
    font-weight: 600;
}

.news-card__title a {
    color: inherit;
}

.news-card__title a:hover {
    color: var(--primary);
}

/* ------------------------------------- */
/* Testimonial Cards */
/* ------------------------------------- */
.testimonial-card {
    background: linear-gradient(145deg, #ffffff, #eef7f7);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
}

.testimonial-card__quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: rgba(15, 139, 141, 0.14);
}

.testimonial-card__text {
    font-size: 1.1rem;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-card__client {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-card__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.testimonial-card__info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--secondary);
}

.testimonial-card__info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--primary);
}

/* ------------------------------------- */
/* Brands/References */
/* ------------------------------------- */
.brand-card {
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    height: 120px;
}

.brand-card img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%) opacity(0.65);
    transition: var(--transition);
}

.brand-card:hover {
    background: var(--surface-soft);
    border-color: rgba(15, 139, 141, 0.3);
}

.brand-card:hover img {
    filter: grayscale(0%) opacity(1) brightness(100%);
}

/* ------------------------------------- */
/* About Us */
/* ------------------------------------- */
.about-modern {
    padding: 120px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.about-modern__img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glow);
    position: relative;
}

.about-modern__media {
    margin-bottom: 30px;
}

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

.about-modern__copy {
    margin-bottom: 30px;
    color: var(--text-main) !important;
    font-size: 1.08rem;
    line-height: 1.8;
}

.modern-section--surface {
    background: #fff;
}

.modern-section--compact {
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-title--compact {
    font-size: clamp(27px, 3vw, 36px) !important;
}

.modern-grid--brands {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.about-modern__img::after {
    content: '';
    position: absolute;
    inset: 0 20px 20px 0;
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    transform: translate(20px, 20px);
    z-index: -1;
}

/* ------------------------------------- */
/* Modern Footer Overrides */
/* ------------------------------------- */
.site-footer {
    background: var(--secondary) !important;
    border-top: 4px solid var(--primary);
    padding-top: 80px;
}

.site-footer__top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.site-footer__contact-points li {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.site-footer__contact-points li:hover {
    transform: translateY(-5px);
    border-color: rgba(98, 207, 194, 0.55);
    box-shadow: var(--shadow-glow);
}

.site-footer__contact-points li::before {
    display: none !important;
}

.site-footer__contact-points li .content {
    margin-left: 0 !important;
}

.site-footer__contact-points .icon {
    width: 50px;
    height: 50px;
    background: rgba(169, 244, 232, 0.12);
    color: #a9f4e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.site-footer__contact-points h4 {
    color: #a9c0cf !important;
    font-size: 14px !important;
    margin-bottom: 5px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.site-footer__contact-points p, .site-footer__contact-points a {
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    margin: 0 !important;
}

.footer-widget__title {
    color: #fff !important;
    font-size: 1.2rem !important;
    margin-bottom: 24px !important;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-light);
}

.site-footer p,
.site-footer li,
.site-footer a,
.site-footer__bottom-text {
    color: #c9d9e4 !important;
}

.site-footer a:hover,
.site-footer__social a:hover {
    color: #a9f4e8 !important;
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    background: transparent !important;
    padding: 30px 0;
    margin-top: 60px;
}

/* ------------------------------------- */
/* Inner Pages Modernization */
/* ------------------------------------- */
.page-wrapper {
    background-color: var(--dark-bg) !important;
}

.page-header {
    background-color: var(--secondary) !important;
    border-bottom: 1px solid var(--glass-border) !important;
    position: relative;
    padding: 80px 0;
}

.page-header-bg {
    opacity: 0.16 !important;
    filter: grayscale(35%) saturate(0.8) !important;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 42, 67, 0.94) 0%, rgba(14, 91, 103, 0.88) 62%, rgba(15, 139, 141, 0.8) 100%);
    pointer-events: none;
}

.page-header__inner {
    position: relative;
    z-index: 2;
}

.contact-page, .blog-details, .product-details, .about-page, .services-details, .page-content-wrapper {
    background-color: var(--dark-bg) !important;
    color: var(--text-main) !important;
    padding: 80px 0;
}

.contact-page__form, .sidebar, .comment-form, .product-details__content, .blog-details__content {
    background: var(--surface) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: var(--radius-lg) !important;
    padding: 40px !important;
    box-shadow: var(--shadow-soft) !important;
}

input[type="text"], input[type="email"], textarea, select {
    background: #fff !important;
    border: 1px solid var(--glass-border) !important;
    color: var(--text-main) !important;
    border-radius: var(--radius-md) !important;
    padding: 15px 20px !important;
    transition: var(--transition) !important;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--primary) !important;
    box-shadow: var(--shadow-glow) !important;
    outline: none !important;
    background: #fff !important;
}

input::placeholder,
textarea::placeholder {
    color: #7d8fa1 !important;
    opacity: 1;
}

/* Fix inner typography */
.contact-page h3, .contact-page h2, .sidebar__title, .blog-details__title {
    color: var(--secondary) !important;
}

.thm-breadcrumb li, .thm-breadcrumb li a {
    color: #d9edf2 !important;
}
.thm-breadcrumb li span {
    color: #a9f4e8 !important;
}

.thm-btn {
    background-color: var(--primary) !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 15px 40px !important;
    transition: var(--transition) !important;
    border: none !important;
}

.thm-btn:hover {
    background-color: var(--primary-dark) !important;
    box-shadow: var(--shadow-glow) !important;
    color: #fff !important;
}

/* ------------------------------------- */
/* Unified public-site light theme       */
/* ------------------------------------- */
html {
    background: var(--dark-bg);
    scroll-behavior: smooth;
}

body,
button,
input,
select,
textarea {
    font-family: 'Outfit', 'Segoe UI', Arial, sans-serif !important;
}

body {
    font-size: 16px;
    line-height: 1.65;
}

img,
video {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
label,
td,
th {
    overflow-wrap: break-word;
}

::selection {
    background: rgba(15, 139, 141, 0.2);
    color: var(--secondary);
}

:focus-visible {
    outline: 3px solid rgba(15, 139, 141, 0.28) !important;
    outline-offset: 3px;
}

.page-wrapper,
.project-page-two,
.about-three,
.blog-page,
.team-page,
.faq-page,
.gallery-page,
.contact-page,
.product-details,
.blog-details,
.services-details,
.page-content-wrapper {
    background: var(--dark-bg) !important;
}

.project-page-two,
.about-three,
.blog-page,
.team-page,
.faq-page,
.gallery-page {
    padding-top: clamp(58px, 7vw, 92px) !important;
    padding-bottom: clamp(58px, 7vw, 92px) !important;
}

.section-title {
    margin-bottom: clamp(28px, 4vw, 48px) !important;
}

.section-title__tagline,
.section-title__text,
.section-tagline {
    color: var(--primary-dark) !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em;
}

.section-title__title,
.section-title h1,
.section-title h2,
.page-header__inner h1,
.page-header__inner h2 {
    color: var(--secondary) !important;
    letter-spacing: -0.025em;
    line-height: 1.14 !important;
}

.section-title__title,
.section-title h2,
.section-header .section-title {
    font-size: var(--type-section-title) !important;
}

.page-header__inner h1,
.page-header__inner h2,
.page-header__inner .h2 {
    color: #fff !important;
    font-size: var(--type-page-title) !important;
    font-family: 'Outfit', 'Segoe UI', Arial, sans-serif !important;
    font-weight: 700 !important;
    line-height: 1.14 !important;
    letter-spacing: -0.025em;
}

.page-header {
    min-height: 230px;
    display: flex;
    align-items: center;
}

.page-header__inner {
    width: 100%;
}

.project-page-two__single,
.pricing-block .inner-box,
.product-box,
.blog-page__single,
.team-one__single,
.galeri .card,
.card,
.details-content-box,
.proje-detay,
.service-details__sidebar,
.sidebar__single,
.faq-one-accrodion .accrodion,
.contact-page__content,
.contact-page-google-map__inner {
    background: var(--surface) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: 0 9px 28px rgba(16, 42, 67, 0.07) !important;
}

.project-page-two__single,
.pricing-block .inner-box,
.product-box,
.blog-page__single,
.team-one__single,
.galeri .card,
.card {
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
    height: 100%;
}

.project-page-two__single:hover,
.pricing-block .inner-box:hover,
.product-box:hover,
.blog-page__single:hover,
.team-one__single:hover,
.galeri .card:hover,
.card:hover {
    transform: translateY(-5px);
    border-color: rgba(15, 139, 141, 0.34) !important;
    box-shadow: var(--shadow-glow) !important;
}

.project-page-two__img,
.blog-page__img,
.galeri .card-img-top {
    background: #edf5f7;
    overflow: hidden;
}

/* Remove the legacy blue curtain from service-card hover states. */
.project-page-two__img::before,
.project-page-two__single:hover .project-page-two__img::before {
    display: none !important;
}

.project-page-two__img img,
.blog-page__img img,
.galeri .card-img-top,
.img-thumbnail {
    transition: transform 0.3s ease;
}

.ebike-region-heading {
    margin-bottom: 22px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--glass-border);
}

.ebike-region-heading .sub-title {
    color: var(--secondary) !important;
}

.testimonial-block-two .inner-box {
    height: 100%;
    padding: 20px 22px;
    background: #fff !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: var(--radius-md) !important;
    box-shadow: 0 7px 22px rgba(16, 42, 67, 0.06) !important;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.testimonial-block-two .inner-box:hover {
    transform: translateY(-3px);
    border-color: rgba(15, 139, 141, 0.34) !important;
    box-shadow: var(--shadow-glow) !important;
}

.testimonial-block-two .author-info h4,
.testimonial-block-two .author-info a {
    color: var(--secondary) !important;
}

.services-page,
.services-two,
.team-one {
    padding-top: clamp(58px, 7vw, 92px) !important;
    padding-bottom: clamp(58px, 7vw, 92px) !important;
    background: var(--dark-bg) !important;
}

.services-two,
.team-one {
    background: #fff !important;
}

.product-cat,
.belge-block-two,
.referans-block {
    margin-bottom: 30px;
}

.product-cat > a,
.proje.proje-kat,
.belge-block-two .inner-box,
.referans-block .inner,
.bayi-widget,
.feedback__box {
    position: relative;
    display: block;
    height: 100%;
    overflow: hidden;
    background: #fff !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: 0 9px 28px rgba(16, 42, 67, 0.07) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-cat > a:hover,
.proje.proje-kat:hover,
.belge-block-two .inner-box:hover,
.referans-block .inner:hover,
.bayi-widget:hover,
.feedback__box:hover {
    transform: translateY(-5px);
    border-color: rgba(15, 139, 141, 0.34) !important;
    box-shadow: var(--shadow-glow) !important;
}

.product-cat img,
.proje.proje-kat img,
.belge-block-two .image img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.product-cat:hover img,
.proje.proje-kat:hover img,
.belge-block-two .inner-box:hover .image img {
    transform: scale(1.035);
}

.product-cat .captionx,
.proje.proje-kat .title {
    background: linear-gradient(180deg, rgba(16, 42, 67, 0.06) 0%, rgba(16, 42, 67, 0.92) 100%) !important;
    color: #fff !important;
}

.product-cat .captionx span,
.proje.proje-kat .title {
    color: #fff !important;
    font-family: 'Outfit', 'Segoe UI', Arial, sans-serif !important;
    font-weight: 700 !important;
}

.product-cat .captionx .btn {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
}

.belge-block-two .lower-content {
    background: #fff !important;
    padding: 20px !important;
}

.belge-block-two .lower-content h5,
.belge-block-two .lower-content h5 a {
    color: var(--secondary) !important;
}

.belge-block-two .color-layer {
    background: rgba(15, 139, 141, 0.82) !important;
}

.belge-block-two .social-box a,
.inline-icons {
    background: var(--secondary) !important;
    color: #fff !important;
}

.referans-block .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    padding: 26px;
}

.referans-block .inner img {
    max-height: 105px;
    object-fit: contain;
}

.bayi-widget {
    padding: 30px !important;
}

.bayi-widget .background-icon {
    color: rgba(15, 139, 141, 0.1) !important;
}

.bayi-widget .generic-title span,
.bayi-widget li > span {
    color: var(--primary-dark) !important;
}

.bayi-widget h2,
.bayi-widget h4,
.bayi-widget h4 a {
    color: var(--secondary) !important;
}

.theme-btn.btn-style-one {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 22px;
    background: var(--primary) !important;
    border: 0 !important;
    border-radius: 999px !important;
    color: #fff !important;
}

.theme-btn.btn-style-one:hover {
    background: var(--primary-dark) !important;
    color: #fff !important;
}

.feedback__box {
    padding: clamp(24px, 4vw, 38px) !important;
}

.feedback__content,
.feedback__content p,
.feedback__box .user-details h4 {
    color: var(--text-main) !important;
}

.team-one__single {
    background: #fff !important;
}

.team-one__title-box,
.team-one__content-box,
.team-one__content {
    background: #fff !important;
}

.team-one__title-box-name,
.team-one__title-box-name a,
.team-one__name,
.team-one__name a {
    color: var(--secondary) !important;
}

.team-one__title-box-sub-title,
.team-one__sub-title {
    color: var(--text-muted) !important;
}

.team-one__btn,
.team-one__social a,
.ekip-social-detay a {
    background: var(--surface-soft) !important;
    color: var(--primary-dark) !important;
}

.team-one__btn:hover,
.team-one__social a:hover,
.ekip-social-detay a:hover {
    background: var(--primary) !important;
    color: #fff !important;
}

.faq-page__search {
    padding-bottom: 0 !important;
    margin-bottom: 34px;
    background: transparent !important;
}

.faq-page__search-form {
    padding: 14px;
    background: #fff !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: var(--radius-md) !important;
    box-shadow: 0 10px 30px rgba(16, 42, 67, 0.07);
}

.faq-page__search-control {
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-page__search-icon {
    display: inline-flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface-soft);
    color: var(--primary-dark);
    font-size: 17px;
}

.faq-page__search-form input[type="search"] {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    height: 48px;
    padding: 0 16px;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    background: #fff;
    color: var(--text-main);
    font-family: 'Outfit', 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.faq-page__search-form input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
}

.faq-page__search-form input[type="search"]:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 139, 141, 0.13);
}

.faq-page__search-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
}

.faq-page__search-form button.faq-page__search-submit,
.faq-page__search-form button.faq-page__search-clear {
    position: static !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    min-width: 92px;
    height: 46px;
    padding: 0 18px;
    border: 1px solid var(--primary);
    border-radius: 10px;
    font-family: 'Outfit', 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease,
        transform 180ms ease;
}

.faq-page__search-form button.faq-page__search-submit {
    background: var(--primary) !important;
    color: #fff !important;
}

.faq-page__search-form button.faq-page__search-clear {
    background: #fff !important;
    color: var(--primary-dark) !important;
}

.faq-page__search-form button.faq-page__search-submit:hover,
.faq-page__search-form button.faq-page__search-submit:focus-visible {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark);
    color: #fff !important;
}

.faq-page__search-form button.faq-page__search-clear:hover,
.faq-page__search-form button.faq-page__search-clear:focus-visible {
    background: var(--surface-soft) !important;
    color: var(--primary-dark) !important;
}

.faq-page__search-form button.faq-page__search-submit:active,
.faq-page__search-form button.faq-page__search-clear:active {
    transform: translateY(1px);
}

.faq-page__search-status {
    margin: 10px 0 0;
    color: var(--primary-dark);
    font-family: 'Outfit', 'Segoe UI', Arial, sans-serif;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.5;
}

.faq-page__search-status:not([hidden]) {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border: 1px solid rgba(15, 139, 141, 0.16);
    border-radius: 999px;
    background: var(--surface-soft);
}

.faq-page__search-status i {
    color: var(--primary);
}

.faq-page__search-status strong {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 800;
}

.faq-page__filter-empty {
    padding: 42px 24px;
    border: 1px dashed var(--glass-border);
    border-radius: var(--radius-md);
    background: var(--surface-soft);
    text-align: center;
}

.faq-page__filter-empty > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary-dark);
    font-size: 19px;
}

.faq-page__filter-empty h3 {
    margin: 0 0 7px;
    color: var(--secondary);
    font-family: 'Outfit', 'Segoe UI', Arial, sans-serif;
    font-size: 21px;
    font-weight: 700;
}

.faq-page__filter-empty p {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
}

.faq-one-accrodion .accrodion-title h4,
.faq-one-accrodion .accrodion-title h4::before {
    color: var(--secondary) !important;
}

.faq-one-accrodion .accrodion.active .accrodion-title {
    background: var(--surface-soft) !important;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4,
.faq-one-accrodion .accrodion.active .accrodion-title h4::before {
    color: var(--primary-dark) !important;
}

/* FAQ cards: clear separation and a generous, readable question-answer rhythm. */
.faq-page .row {
    row-gap: 20px;
}

.faq-page__column {
    display: grid;
    align-content: start;
    gap: 20px;
}

.faq-page .faq-one-accrodion .accrodion {
    overflow: hidden;
    border-color: var(--glass-border) !important;
    border-radius: var(--radius-md) !important;
    box-shadow: 0 7px 22px rgba(16, 42, 67, 0.06) !important;
}

.faq-page .faq-one-accrodion .accrodion-title {
    min-height: 74px;
    padding: 19px 54px 19px 58px;
    background: #ffffff;
}

.faq-page .faq-one-accrodion .accrodion-title h4 {
    font-family: 'Outfit', 'Segoe UI', Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
}

.faq-page .faq-one-accrodion .accrodion-content {
    padding: 0 24px 23px 58px;
}

.faq-page .faq-one-accrodion .accrodion-content p {
    color: var(--text-main) !important;
    font-family: 'Outfit', 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.7;
}

.faq-page .faq-one-accrodion .accrodion-title:focus-visible {
    outline: 3px solid rgba(15, 139, 141, 0.28);
    outline-offset: -3px;
}

@media (max-width: 767.98px) {
    .faq-page__search {
        margin-bottom: 26px;
    }

    .faq-page__search-form {
        padding: 12px;
    }

    .faq-page__search-control {
        flex-wrap: wrap;
        gap: 10px;
    }

    .faq-page__search-icon {
        display: none;
    }

    .faq-page__search-form input[type="search"] {
        flex-basis: 100%;
        height: 48px;
    }

    .faq-page__search-actions {
        width: 100%;
    }

    .faq-page__search-form button.faq-page__search-submit,
    .faq-page__search-form button.faq-page__search-clear {
        flex: 1 1 0;
        min-width: 0;
    }

    .faq-page__filter-empty {
        padding: 34px 18px;
    }

    .faq-page .row {
        row-gap: 16px;
    }

    .faq-page__column {
        gap: 16px;
    }

    .faq-page .faq-one-accrodion .accrodion-title {
        min-height: 68px;
        padding: 17px 46px 17px 52px;
    }

    .faq-page .faq-one-accrodion .accrodion-title h4 {
        font-size: 16px;
    }

    .faq-page .faq-one-accrodion .accrodion-content {
        padding: 0 19px 20px 52px;
    }
}

.about-three__img,
.fotorama {
    overflow: hidden;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.project-page-two__single:hover .project-page-two__img img,
.blog-page__single:hover .blog-page__img img,
.galeri .card:hover .card-img-top {
    transform: scale(1.035);
}

.project-page-two__content,
.blog-page__content,
.card-body,
.pricing-block .inner-box .lower-content {
    background: #fff !important;
}

/* Service listing cards: give long service labels and summaries room to breathe. */
.project-page-two .row > [class*="col-"] {
    display: flex;
}

.project-page-two .row {
    row-gap: 32px;
}

.project-page-two__single {
    display: flex;
    width: 100%;
    flex-direction: column;
    margin-bottom: 0;
}

.project-page-two__content {
    display: flex;
    min-height: 144px;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 10px;
    margin-top: 0;
    padding: 22px 24px 24px;
    border-top: 1px solid var(--glass-border);
}

.project-page-two__title {
    margin: 0 !important;
    font-weight: 750 !important;
    letter-spacing: -0.015em;
}

.project-page-two__sub-title {
    margin: 0 !important;
    color: var(--text-muted) !important;
    font-family: 'Outfit', 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
}

@media (max-width: 767.98px) {
    .project-page-two .row {
        row-gap: 24px;
    }

    .project-page-two__content {
        min-height: 0;
        padding: 19px 20px 21px;
    }
}

.project-page-two__title,
.project-page-two__title a,
.blog-page__title,
.blog-page__title a,
.card-title,
.card-text,
.details-content-box h1,
.details-content-box h2,
.details-content-box h3,
.details-content-box h4,
.about-three__left h1,
.about-three__left h2,
.about-three__left h3,
.about-three__left h4 {
    color: var(--secondary) !important;
}

.project-page-two__title,
.blog-page__title,
.card-title,
.service-card__title,
.product-card__title,
.news-card__title {
    font-size: var(--type-card-title) !important;
    line-height: 1.3 !important;
}

.project-page-two__sub-title,
.blog-page__text,
.card-text,
.details-content-box p,
.about-three__left p {
    color: var(--text-muted) !important;
}

.project-page-two__button a,
.project-page-two__button span {
    background: var(--primary) !important;
    color: #fff !important;
}

.service-details__page-links,
.service-details__contact-info {
    background: #fff !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
}

.service-details__title,
.service-details__page-links-list li a,
.service-details__contact-info-list li,
.service-details__contact-info-list li a {
    color: var(--secondary) !important;
}

.service-details__page-links-list li.current a,
.service-details__page-links-list li:hover a {
    background: var(--surface-soft) !important;
    color: var(--primary-dark) !important;
}

.sidebar__single {
    padding: 28px !important;
}

.sidebar__search-form input,
.sidebar__search-form input[type="search"] {
    background: #fff !important;
    color: var(--text-main) !important;
    border: 1px solid var(--glass-border) !important;
}

.sidebar__search-form button {
    background: var(--primary) !important;
    color: #fff !important;
}

.sidebar__category-list li a,
.sidebar__post-content h3 a,
.sidebar__tags-list a {
    color: var(--text-main) !important;
}

.sidebar__category-list li a:hover,
.sidebar__post-content h3 a:hover,
.sidebar__tags-list a:hover {
    color: var(--primary-dark) !important;
}

table,
.table {
    --bs-table-bg: #fff;
    --bs-table-striped-bg: #eef7f7;
    --bs-table-striped-color: var(--text-main);
    color: var(--text-main) !important;
    background: #fff !important;
    border-color: var(--glass-border) !important;
}

.table > :not(caption) > * > * {
    border-color: var(--glass-border) !important;
}

.table thead th,
.table th {
    background: var(--secondary) !important;
    color: #fff !important;
    font-weight: 700;
}

.blog-page__pagination .pg-link,
.blog-page__pagination a,
.pagination .page-link {
    background: #fff !important;
    border-color: var(--glass-border) !important;
    color: var(--secondary) !important;
}

.blog-page__pagination .active .pg-link,
.blog-page__pagination a:hover,
.pagination .active .page-link,
.pagination .page-link:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
}

input[type="password"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="url"],
input[type="search"],
input[type="file"],
.form-control,
.form-select {
    background: #fff !important;
    border: 1px solid #bfd1da !important;
    border-radius: 12px !important;
    color: var(--text-main) !important;
    min-height: 48px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.form-control:focus,
.form-select:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="file"]:focus {
    background: #fff !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px rgba(15, 139, 141, 0.14) !important;
    color: var(--text-main) !important;
}

.form-check-input:checked {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-primary,
.btn-warning {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
}

.btn-primary:hover,
.btn-warning:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: #fff !important;
}

.img-thumbnail {
    padding: 5px;
    background: #fff !important;
    border-color: var(--glass-border) !important;
    border-radius: 14px !important;
}

.mobile-nav__content {
    background: var(--secondary) !important;
}

.mobile-nav__content .main-menu__list li a,
.mobile-nav__close,
.mobile-nav__contact li,
.mobile-nav__contact li a {
    color: #e6f2f5 !important;
}

.mobile-nav__content .main-menu__list li a:hover,
.mobile-nav__contact li a:hover {
    color: #a9f4e8 !important;
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
    border-color: rgba(255, 255, 255, 0.12) !important;
}

@media (max-width: 1199.98px) {
    .modern-hero {
        min-height: 620px;
        align-items: flex-start;
        padding: clamp(250px, 30vw, 340px) 0 54px;
    }

    .modern-hero__bg {
        object-fit: contain;
        object-position: center top;
        opacity: 0.42;
        filter: brightness(0.58) saturate(1.05);
    }

    .modern-hero__content {
        max-width: 680px;
    }

    .modern-hero__badge {
        margin-bottom: 16px;
    }

    .modern-hero__title {
        margin-bottom: 18px;
        font-size: clamp(2.4rem, 5.2vw, 3.25rem);
    }

    .modern-hero__text {
        margin-bottom: 28px;
        font-size: 1.1rem;
    }
}

@media (max-width: 991.98px) {
    .modern-hero {
        padding-top: clamp(225px, 35vw, 300px);
    }

    .modern-section,
    .about-modern {
        padding: 76px 0;
    }

    .contact-page__form,
    .sidebar,
    .comment-form,
    .product-details__content,
    .blog-details__content {
        padding: 28px !important;
    }

    .main-header-three__middle-inner {
        min-height: 86px;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 15px;
    }

    .page-header {
        min-height: 190px;
        padding: 54px 0 !important;
    }

    .page-header__inner h1,
    .page-header__inner h2 {
        font-size: clamp(29px, 9vw, 40px) !important;
    }

    .modern-hero {
        height: 300px;
        min-height: 300px;
        padding: 145px 0 16px;
    }

    .modern-hero__bg {
        opacity: 0.5;
    }

    .modern-hero__badge {
        display: none;
    }

    .modern-hero__title {
        position: relative;
        top: 8px;
        max-width: calc(100% - 18px);
        margin-bottom: 10px;
        font-size: clamp(1.45rem, 6.2vw, 1.7rem);
        line-height: 1.08;
        letter-spacing: -0.5px;
        text-shadow: 0 2px 10px rgba(8, 28, 46, 0.5);
    }

    .modern-hero__text {
        display: none;
    }

    .modern-hero__content {
        height: 139px;
    }

    .modern-hero__actions {
        position: absolute;
        right: auto;
        bottom: 8px;
        left: 0;
        gap: 10px !important;
    }

    .modern-hero__actions .btn-modern {
        min-height: 40px;
        padding: 8px 16px !important;
        font-size: 13px;
    }

    .ebike-service-callout__action {
        margin-top: 18px;
    }

    .modern-hero__title,
    .section-title {
        overflow-wrap: anywhere;
    }

    .modern-section,
    .about-modern {
        padding: 58px 0;
    }

    .modern-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
        padding: 0;
    }

    .service-card {
        padding: 28px 24px;
    }

    .contact-page__form,
    .sidebar,
    .comment-form,
    .product-details__content,
    .blog-details__content,
    .details-content-box,
    .service-details__sidebar {
        padding: 22px !important;
        border-radius: 16px !important;
    }

    .thm-btn,
    .btn-modern {
        min-height: 48px;
        padding: 13px 24px !important;
    }

    .table-responsive {
        border: 1px solid var(--glass-border);
        border-radius: 14px;
        -webkit-overflow-scrolling: touch;
    }

    table:not(.ui-datepicker-calendar) {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    button,
    [role="button"],
    input[type="submit"],
    input[type="button"] {
        min-height: 44px;
    }
}

/* Content/detail surfaces */
.service-details__sidebar {
    display: grid;
    gap: 20px;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.service-details__page-links,
.service-details__contact-info {
    padding: 25px !important;
}

/* Service/detail contact surface: retain readable light-theme hierarchy. */
.service-details__contact-info {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    background: linear-gradient(145deg, #ffffff 0%, var(--surface-soft) 100%) !important;
}

.service-details__contact-info-list {
    display: grid;
    gap: 18px;
}

.service-details__contact-info-list li,
.service-details__contact-info-list li + li {
    margin-top: 0;
}

.service-details__contact-info-list li h5 {
    margin: 0 0 6px;
    color: var(--primary-dark) !important;
    font-family: 'Outfit', 'Segoe UI', Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.35;
    text-transform: uppercase;
}

.service-details__contact-info-list li p,
.service-details__contact-info-list li p a {
    margin: 0;
    color: var(--text-main) !important;
    font-family: 'Outfit', 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.service-details__contact-info-list li p a:hover,
.service-details__contact-info-list li p a:focus-visible {
    color: var(--primary-dark) !important;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.service-details__contact-btn-box {
    margin-top: 24px;
}

.service-details__contact-btn.thm-btn {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: 1px solid var(--primary) !important;
    border-radius: 12px;
    background: var(--primary) !important;
    color: #ffffff !important;
    font-family: 'Outfit', 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.2;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.service-details__contact-btn.thm-btn::before {
    background: var(--primary-dark) !important;
}

.service-details__contact-btn.thm-btn:hover,
.service-details__contact-btn.thm-btn:focus-visible {
    border-color: var(--primary-dark) !important;
    background: var(--primary-dark) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 20px rgba(8, 92, 108, 0.2);
    transform: translateY(-1px);
}

.about-three__left {
    padding: clamp(26px, 4vw, 42px);
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 9px 28px rgba(16, 42, 67, 0.07);
}

.about-three__left p,
.about-three__left li,
.filter-layout p,
.filter-layout li {
    color: var(--text-main) !important;
    line-height: 1.75;
}

.about-three__left a,
.filter-layout a {
    color: var(--primary-dark) !important;
}

.about-three__left h2,
.about-three__left h3,
.about-three__left h4,
.about-three__left h5,
.about-three__left h6,
.filter-layout h2,
.filter-layout h3,
.filter-layout h4,
.filter-layout h5,
.filter-layout h6 {
    color: var(--secondary) !important;
    line-height: 1.28 !important;
}

.about-three__left img,
.blog-detals__content-box img,
.blog-details__left img {
    height: auto !important;
    max-width: 100% !important;
    border-radius: var(--radius-md);
}

.blog-details__left {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.blog-details__img {
    overflow: hidden;
    background: #edf5f7;
}

.blog-details__img img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 0 !important;
}

.blog-detals__content-box {
    padding: clamp(25px, 4vw, 44px);
}

.blog-details__title-1 {
    margin-bottom: 24px !important;
    color: var(--secondary) !important;
    font-size: var(--type-page-title) !important;
    line-height: 1.12 !important;
}

.blog-detals__content-box h2,
.blog-detals__content-box h3,
.blog-detals__content-box h4,
.blog-detals__content-box h5,
.blog-detals__content-box h6 {
    margin-top: 1.5em;
    margin-bottom: .65em;
    color: var(--secondary) !important;
    line-height: 1.25 !important;
}

.blog-detals__content-box p,
.blog-detals__content-box li {
    color: var(--text-main) !important;
    line-height: 1.75;
}

.blog-detals__content-box a {
    color: var(--primary-dark) !important;
    text-decoration: underline !important;
    text-decoration-thickness: 1px !important;
    text-underline-offset: 3px;
}

.services-page__filter-box {
    margin-bottom: 22px;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
}

.services-page__filter li {
    border-radius: 10px;
    color: var(--secondary) !important;
}

.services-page__filter li.active,
.services-page__filter li:hover {
    background: var(--surface-soft) !important;
    color: var(--primary-dark) !important;
}

.filter-layout {
    padding: clamp(22px, 4vw, 38px);
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 9px 28px rgba(16, 42, 67, 0.06);
}

.contact-page__content-info .icon {
    background: var(--surface-soft) !important;
    color: var(--primary-dark) !important;
}

.contact-page__content-info h4,
.contact-page__content-info p,
.contact-page__content-info a {
    color: var(--secondary) !important;
}

.contact-page .site-footer__social a {
    background: var(--surface-soft) !important;
    color: var(--primary-dark) !important;
}

.contact-page .site-footer__social a:hover {
    background: var(--primary) !important;
    color: #fff !important;
}

.contact-page-google-map {
    padding-bottom: clamp(58px, 7vw, 92px);
    background: var(--dark-bg) !important;
}

.contact-page-google-map iframe {
    display: block;
    width: 100% !important;
    min-height: 380px;
    border: 0;
}

.iziModal,
.iziModal-content {
    background: #fff !important;
    color: var(--text-main) !important;
}

.iziModal {
    border-radius: var(--radius-lg) !important;
    box-shadow: 0 24px 70px rgba(16, 42, 67, 0.22) !important;
}

.iziModal-header {
    background: var(--secondary) !important;
    box-shadow: none !important;
}

.iziModal-header-title,
.iziModal-header-subtitle,
.iziModal-button {
    color: #fff !important;
}

.iziModal-content {
    padding: clamp(22px, 4vw, 36px) !important;
}

.ebike-modal-product-name {
    padding: 12px 16px;
    text-align: center;
    background: var(--surface-soft);
    border-radius: 10px;
    color: var(--secondary) !important;
    font-weight: 700;
}

/* Gallery: shared premium card language for image and video archives. */
.ebike-gallery-page {
    padding: clamp(62px, 7vw, 96px) 0;
    background:
        radial-gradient(circle at 8% 0%, rgba(98, 207, 194, 0.12), transparent 29%),
        var(--dark-bg) !important;
}

.ebike-gallery-heading {
    max-width: 760px;
    margin-right: auto;
    margin-bottom: clamp(30px, 4vw, 48px);
    margin-left: auto;
}

.ebike-gallery-page--detail .ebike-gallery-heading {
    max-width: 900px;
    margin-left: 0;
    text-align: left;
}

.ebike-gallery-heading__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 11px;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.ebike-gallery-heading__eyebrow i {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 9px;
    background: var(--surface-soft);
    color: var(--primary);
}

.ebike-gallery-heading > p,
.ebike-gallery-description {
    color: var(--text-muted) !important;
    font-size: 16px;
    line-height: 1.7;
}

.ebike-gallery-heading > p {
    max-width: 680px;
    margin: 13px auto 0;
}

.ebike-gallery-description {
    max-width: 850px;
    margin-top: 15px;
}

.ebike-gallery-description > :last-child {
    margin-bottom: 0;
}

.ebike-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin-right: 0;
    margin-left: 0;
}

.ebike-gallery-grid--detail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ebike-gallery-grid > .galeri {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    flex: none;
}

.ebike-gallery-grid .galeri .ebike-gallery-card {
    position: relative;
    min-height: 100%;
    display: block;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 20px !important;
    isolation: isolate;
}

.ebike-gallery-card__link {
    display: flex;
    height: 100%;
    flex-direction: column;
    color: inherit !important;
    text-decoration: none !important;
}

.ebike-gallery-card__link:focus-visible {
    outline: 3px solid rgba(15, 139, 141, 0.34);
    outline-offset: 4px;
    border-radius: 18px;
}

.ebike-gallery-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #d4f3ef, #c2dbe5);
}

.ebike-gallery-card--asset .ebike-gallery-card__media {
    aspect-ratio: 4 / 3;
}

.ebike-gallery-card--video .ebike-gallery-card__media {
    aspect-ratio: 16 / 9;
}

.ebike-gallery-card__media::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(180deg, transparent 48%, rgba(16, 42, 67, 0.52) 100%);
    opacity: 0.82;
    transition: opacity 0.25s ease;
}

.ebike-gallery-grid .galeri .ebike-gallery-card__media .card-img-top {
    display: block;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    border-radius: 0 !important;
    filter: none !important;
    -webkit-filter: none !important;
}

.ebike-gallery-grid .galeri .ebike-gallery-card:hover img,
.ebike-gallery-grid .galeri .ebike-gallery-card:focus-within img {
    filter: none !important;
    -webkit-filter: none !important;
}

.ebike-gallery-card__type,
.ebike-gallery-card__hint {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ebike-gallery-card__type {
    top: 15px;
    left: 15px;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: rgba(16, 42, 67, 0.72);
    font-size: 15px;
}

.ebike-gallery-card__hint {
    right: 14px;
    bottom: 13px;
    padding: 7px 11px;
    background: rgba(16, 42, 67, 0.66);
    transform: translateY(5px);
    opacity: 0;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.ebike-gallery-card__open,
.ebike-gallery-card__zoom,
.ebike-gallery-card__play {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--primary-dark);
    box-shadow: 0 10px 28px rgba(16, 42, 67, 0.22);
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.ebike-gallery-card__open {
    right: 17px;
    bottom: 16px;
    width: 43px;
    height: 43px;
}

.ebike-gallery-card__zoom,
.ebike-gallery-card__play {
    top: 50%;
    left: 50%;
    width: 56px;
    height: 56px;
    font-size: 17px;
    transform: translate(-50%, -45%) scale(0.9);
    opacity: 0;
}

.ebike-gallery-card__play {
    width: 62px;
    height: 62px;
    padding-left: 3px;
    background: var(--primary);
    color: #fff;
}

.ebike-gallery-card__body {
    display: flex;
    min-height: 138px;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 23px 21px !important;
}

.ebike-gallery-card__body .card-text {
    margin: 0 0 17px;
    color: var(--secondary) !important;
    font-size: var(--type-card-title);
    font-weight: 800;
    line-height: 1.3;
}

.ebike-gallery-card--video .ebike-gallery-card__body .card-text {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ebike-gallery-card__action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 800;
}

.ebike-gallery-card__action i {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.ebike-gallery-card:hover .ebike-gallery-card__media::after,
.ebike-gallery-card:focus-within .ebike-gallery-card__media::after {
    opacity: 1;
}

.ebike-gallery-card:hover .ebike-gallery-card__open,
.ebike-gallery-card:focus-within .ebike-gallery-card__open {
    background: var(--primary);
    color: #fff;
    transform: translateX(2px);
}

.ebike-gallery-card:hover .ebike-gallery-card__zoom,
.ebike-gallery-card:hover .ebike-gallery-card__play,
.ebike-gallery-card:focus-within .ebike-gallery-card__zoom,
.ebike-gallery-card:focus-within .ebike-gallery-card__play {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.ebike-gallery-card:hover .ebike-gallery-card__hint,
.ebike-gallery-card:focus-within .ebike-gallery-card__hint {
    transform: translateY(0);
    opacity: 1;
}

.ebike-gallery-card:hover .ebike-gallery-card__action i,
.ebike-gallery-card:focus-within .ebike-gallery-card__action i {
    transform: translateX(3px);
}

@media (max-width: 1199.98px) {
    .ebike-gallery-grid--detail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .ebike-gallery-grid,
    .ebike-gallery-grid--detail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

@media (max-width: 767.98px) {
    .page-header__inner .h2 {
        font-size: clamp(29px, 9vw, 40px) !important;
    }

    .about-three__left,
    .blog-detals__content-box {
        padding: 24px;
    }

    .blog-details__img img {
        max-height: 330px;
    }

    .contact-page-google-map iframe {
        min-height: 310px;
    }

    .ebike-gallery-page {
        padding: 52px 0 64px;
    }

    .ebike-gallery-heading {
        margin-bottom: 29px;
    }

    .ebike-gallery-heading > p,
    .ebike-gallery-description {
        font-size: 15px;
    }

    .ebike-gallery-card__body {
        min-height: 122px;
        padding: 19px 20px !important;
    }

    .ebike-gallery-card__zoom,
    .ebike-gallery-card__play,
    .ebike-gallery-card__hint {
        opacity: 1;
    }

    .ebike-gallery-card__zoom,
    .ebike-gallery-card__play {
        transform: translate(-50%, -50%) scale(0.92);
    }

    .ebike-gallery-card__hint {
        transform: none;
    }
}

@media (max-width: 575.98px) {
    .ebike-gallery-grid,
    .ebike-gallery-grid--detail {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ebike-gallery-card,
    .ebike-gallery-card *,
    .ebike-gallery-card *::before,
    .ebike-gallery-card *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================================================== */
/* Phase C: compact home sections, partner links and newsletter surfaces.     */
/* ========================================================================== */

.modern-section--services {
    padding-top: clamp(40px, 4vw, 56px);
    padding-bottom: clamp(40px, 4vw, 56px);
}

.modern-section--testimonials {
    padding-top: clamp(44px, 4.5vw, 60px);
    padding-bottom: clamp(44px, 4.5vw, 60px);
}

.modern-section--news {
    padding-top: clamp(44px, 4.5vw, 60px);
    padding-bottom: clamp(44px, 4.5vw, 60px);
}

.modern-section--news .section-header {
    margin-bottom: 26px;
}

.modern-section--news .modern-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 0;
}

.modern-section--news .news-card {
    min-width: 0;
    border-radius: 18px;
}

.modern-section--news .news-card__img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.modern-section--news .news-card__content {
    padding: 18px;
}

.modern-section--news .news-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 8px;
    margin-bottom: 8px;
    font-size: 12px;
    letter-spacing: 0.04em;
}

.modern-section--news .news-card__meta span {
    margin-left: 0;
}

.modern-section--news .news-card__title {
    display: -webkit-box;
    overflow: hidden;
    min-height: 2.7em;
    margin-bottom: 10px;
    font-size: 1.05rem !important;
    line-height: 1.35 !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.modern-section--news .service-card__link {
    min-height: 40px;
    align-items: center;
    font-size: 13px;
}

.modern-section--services .section-header,
.modern-section--testimonials .section-header,
#references .section-header {
    margin-bottom: 26px;
}

.modern-section--services .modern-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
}

.modern-section--services .service-card {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    grid-template-rows: auto auto;
    min-width: 0;
    align-items: center;
    gap: 6px 14px;
    padding: 12px;
    border-radius: 16px;
}

.modern-section--services .service-card__media {
    width: 96px;
    height: 96px;
    grid-column: 1;
    grid-row: 1 / 3;
    margin: 0;
    border-radius: 12px;
}

.modern-section--services .service-card__title {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    margin: 0;
    font-size: 1rem !important;
    line-height: 1.3 !important;
}

.modern-section--services .service-card__spacer {
    display: none;
}

.modern-section--services .service-card__link {
    min-height: 40px;
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    margin: 0;
    align-items: center;
    font-size: 13px;
}

.modern-section--testimonials .row {
    align-items: center;
}

.modern-section--testimonials .section-header--testimonial {
    margin-bottom: 0;
    padding-right: clamp(0px, 3vw, 28px);
}

.modern-section--testimonials .testimonial-card {
    min-height: 202px;
    padding: 22px;
    border-radius: 18px;
}

.modern-section--testimonials .testimonial-card__quote-icon {
    top: 18px;
    right: 20px;
    font-size: 2rem;
}

.modern-section--testimonials .testimonial-card__text {
    min-height: 76px;
    margin: 0 36px 16px 0;
    font-size: 1rem;
    line-height: 1.55;
}

.modern-section--testimonials .testimonial-card__client {
    gap: 12px;
}

.modern-section--testimonials .testimonial-card__avatar {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    font-size: 18px;
}

.site-footer .site-footer__social {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
}

.site-footer .site-footer__social a,
.site-footer .site-footer__social a + a {
    box-sizing: border-box;
    display: inline-flex;
    flex: 0 0 36px;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(201, 217, 228, 0.72);
    border-radius: 50%;
    line-height: 1;
}

.site-footer .site-footer__social a i {
    display: block;
    width: 1em;
    line-height: 1;
    text-align: center;
}

.ebike-footer-core-nav {
    margin-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ebike-footer-core-nav__inner {
    display: flex;
    min-height: 58px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 24px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.ebike-footer-core-nav a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    color: #dce8ef !important;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none;
}

.ebike-footer-core-nav a:hover,
.ebike-footer-core-nav a:focus-visible {
    color: #a9f4e8 !important;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.ebike-footer-core-nav a:focus-visible {
    outline: 2px solid rgba(169, 244, 232, 0.64);
    outline-offset: 3px;
}

.ebike-footer-core-nav + .site-footer__bottom {
    margin-top: 0;
}

.about-modern--compact {
    padding-top: clamp(64px, 7vw, 84px);
    padding-bottom: clamp(64px, 7vw, 84px);
}

.about-modern--compact .about-modern__media {
    margin-bottom: 0;
}

.about-modern--compact .about-modern__media img {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
}

.about-modern--compact .section-header {
    margin-bottom: 0;
}

.about-modern--compact .about-modern__copy {
    max-width: 650px;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.72;
}

#references .modern-grid--brands {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding: 0;
}

#references .brand-card {
    height: 132px;
    min-width: 0;
    padding: 16px;
    flex-direction: column;
    gap: 10px;
    color: var(--secondary) !important;
    text-decoration: none;
}

#references .brand-card img {
    min-height: 0;
    max-height: 72px;
    object-fit: contain;
}

#references .brand-card__action {
    display: inline-flex;
    min-height: 24px;
    align-items: center;
    gap: 7px;
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}

#references .brand-card__action i {
    transition: transform 180ms ease;
}

#references .brand-card--linked:hover .brand-card__action i,
#references .brand-card--linked:focus-visible .brand-card__action i {
    transform: translateX(3px);
}

#references .brand-card--linked:focus-visible {
    outline: 3px solid rgba(15, 139, 141, 0.32);
    outline-offset: 3px;
}

.ebike-home-newsletter {
    padding: clamp(64px, 7vw, 88px) 0;
    background: linear-gradient(135deg, #0c263c 0%, #123d50 54%, #0f8b8d 145%);
    color: #fff;
}

.ebike-home-newsletter__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: clamp(32px, 6vw, 72px);
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid rgba(169, 244, 232, 0.2);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 24px 60px rgba(3, 18, 31, 0.24);
}

.ebike-home-newsletter__kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: #a9f4e8;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ebike-home-newsletter h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(28px, 3.5vw, 43px);
    line-height: 1.12;
}

.ebike-home-newsletter__copy p {
    max-width: 680px;
    margin: 0;
    color: #c9d9e4;
    font-size: 1rem;
    line-height: 1.7;
}

.ebike-home-newsletter__form-wrap {
    min-width: 0;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(3, 18, 31, 0.18);
}

.ebike-newsletter-form__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.ebike-newsletter-form__row input,
.ebike-footer-newsletter__row input {
    width: 100%;
    min-width: 0;
    height: 50px;
    padding: 0 16px;
    border: 1px solid #c9d8df;
    border-radius: 12px;
    background: #fff;
    color: var(--secondary);
    font: inherit;
}

.ebike-newsletter-form__row input:focus,
.ebike-footer-newsletter__row input:focus {
    border-color: var(--primary);
    outline: 3px solid rgba(15, 139, 141, 0.18);
}

.ebike-newsletter-form__row button {
    min-height: 50px;
    padding: 0 20px;
    border: 0;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    font: inherit;
    font-weight: 800;
    white-space: nowrap;
    cursor: pointer;
}

.ebike-newsletter-form__row button:hover,
.ebike-newsletter-form__row button:focus-visible {
    background: var(--primary-dark);
}

.ebike-newsletter-form__note {
    margin: 12px 0 0;
    color: var(--text-muted) !important;
    font-size: 13px;
    line-height: 1.5;
}

.ebike-newsletter-form__note a {
    color: var(--primary-dark) !important;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.ebike-newsletter-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.site-footer {
    padding-top: 64px;
}

.site-footer__middle .footer-widget__column {
    height: 100%;
}

.ebike-footer-grid {
    align-items: stretch;
    row-gap: 28px;
}

.ebike-footer-brand__logo {
    display: inline-flex;
    max-width: 210px;
    min-height: 64px;
    align-items: center;
}

.ebike-footer-brand__logo img {
    width: auto;
    max-width: 100%;
    max-height: 64px;
    object-fit: contain;
    object-position: left center;
}

.ebike-footer-brand > p {
    max-width: 290px;
    margin: 18px 0 0;
    color: #bcd0dc !important;
    font-size: 14px;
    line-height: 1.6;
}

.ebike-footer-list {
    display: grid;
    margin: 0;
    gap: 5px;
}

.ebike-footer-list li {
    margin: 0;
}

.ebike-footer-link {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    gap: 8px;
    line-height: 1.35;
}

.ebike-footer-link::before {
    color: #62cfc2;
    content: '›';
    font-size: 17px;
    line-height: 1;
}

.ebike-footer-newsletter {
    padding: 24px;
    border: 1px solid rgba(169, 244, 232, 0.14);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.045);
}

.ebike-footer-newsletter__lead {
    max-width: 360px;
    margin: 0 0 16px;
    color: #c9d9e4 !important;
    font-size: 14px;
    line-height: 1.55;
}

.ebike-footer-newsletter__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 50px;
    gap: 8px;
}

.ebike-footer-newsletter__row input {
    height: 48px;
    border-color: rgba(255, 255, 255, 0.24);
}

.ebike-footer-newsletter__row button {
    display: grid;
    width: 50px;
    height: 48px;
    place-items: center;
    border: 0;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    cursor: pointer;
}

.ebike-footer-newsletter__row button:hover,
.ebike-footer-newsletter__row button:focus-visible {
    background: #a9f4e8;
    color: var(--secondary);
}

.ebike-footer-newsletter__note {
    margin: 11px 0 0;
    color: #a9c0cf !important;
    font-size: 12px;
    line-height: 1.5;
}

.ebike-footer-newsletter__note a {
    color: #a9f4e8 !important;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 1199.98px) {
    .site-footer__middle .footer-widget__column {
        margin-bottom: 34px;
    }
}

@media (max-width: 991.98px) {
    .modern-section--services .modern-grid,
    .modern-section--news .modern-grid,
    #references .modern-grid--brands {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .modern-section--testimonials .section-header--testimonial {
        margin-bottom: 28px;
        padding-right: 0;
        text-align: center;
    }

    .modern-section--testimonials .section-header__lead--left {
        margin-right: auto;
        margin-left: auto;
    }

    .about-modern--compact .about-modern__media {
        margin-bottom: 30px;
    }

    .about-modern--compact .section-header--left {
        padding-left: 0;
    }

    .ebike-home-newsletter__inner {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 575.98px) {
    .modern-section--services,
    .modern-section--testimonials,
    .modern-section--news,
    .about-modern--compact,
    .ebike-home-newsletter {
        padding-top: 46px;
        padding-bottom: 46px;
    }

    .modern-section--services .modern-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .modern-section--news .modern-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .modern-section--services .service-card__media {
        width: 96px;
        height: 96px;
    }

    .modern-section--testimonials .testimonial-card {
        min-height: 0;
        padding: 22px;
    }

    .modern-section--testimonials .testimonial-card__text {
        min-height: 0;
        margin-right: 28px;
    }

    #references .modern-grid--brands {
        gap: 12px;
    }

    #references .brand-card {
        height: 120px;
        padding: 13px;
    }

    #references .brand-card img {
        max-height: 62px;
    }

    .ebike-home-newsletter__inner {
        gap: 24px;
        padding: 24px 18px;
        border-radius: 20px;
    }

    .ebike-home-newsletter__form-wrap {
        padding: 16px;
    }

    .ebike-newsletter-form__row {
        grid-template-columns: minmax(0, 1fr);
    }

    .ebike-newsletter-form__row button {
        width: 100%;
        white-space: normal;
    }
}

@media (prefers-reduced-motion: reduce) {
    #references .brand-card__action i,
    .ebike-newsletter-form__row button,
    .ebike-footer-newsletter__row button {
        transition-duration: 0.01ms !important;
    }
}

/* Future-ready archive assistant entry point. It links to the archive until AI is connected. */
.ebike-assistant-fab {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 997;
    display: inline-flex;
    min-height: 66px;
    align-items: center;
    gap: 12px;
    padding: 8px 18px 8px 8px;
    border: 1px solid rgba(15, 139, 141, 0.25);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 16px 42px rgba(16, 42, 67, 0.2);
    color: var(--secondary) !important;
    font-family: 'Outfit', 'Segoe UI', Arial, sans-serif;
    text-decoration: none !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.ebike-assistant-fab__icon {
    position: relative;
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    box-shadow: 0 10px 22px rgba(15, 139, 141, 0.27);
    color: #fff;
    font-size: 19px;
}

.ebike-assistant-fab__icon::after {
    position: absolute;
    right: 1px;
    bottom: 1px;
    width: 11px;
    height: 11px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #62cfc2;
    content: '';
}

.ebike-assistant-fab__copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.ebike-assistant-fab__copy strong,
.ebike-assistant-fab__copy small {
    display: block;
    white-space: nowrap;
}

.ebike-assistant-fab__copy strong {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.15;
}

.ebike-assistant-fab__copy small {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 650;
    line-height: 1.2;
}

.ebike-assistant-fab:hover,
.ebike-assistant-fab:focus-visible {
    border-color: rgba(15, 139, 141, 0.55);
    box-shadow: 0 20px 48px rgba(16, 42, 67, 0.24);
    color: var(--secondary) !important;
    transform: translateY(-3px);
}

.ebike-assistant-fab:focus-visible {
    outline: 3px solid rgba(15, 139, 141, 0.28);
    outline-offset: 3px;
}

@media (min-width: 992px) {
    .lang-circle {
        bottom: 108px !important;
    }
}

@media (max-width: 1199.98px) {
    .ebike-assistant-fab {
        right: 14px;
        bottom: calc(86px + env(safe-area-inset-bottom));
        width: 54px;
        min-width: 54px;
        height: 54px;
        min-height: 54px;
        justify-content: center;
        padding: 0;
        border-radius: 17px;
    }

    .ebike-assistant-fab__icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        font-size: 17px;
    }

    .ebike-assistant-fab__copy {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ebike-assistant-fab {
        transition-duration: 0.01ms !important;
    }
}

/* EBike Bilgi Asistanı — kaynak kontrollü, erişilebilir web/mobil panel. */
.ebike-assistant-fab__icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 4px 7px rgba(16, 42, 67, 0.18));
}

.ebike-assistant-fab.is-open {
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px) scale(0.94);
}

.ebike-assistant-panel[hidden] {
    display: none !important;
}

.ebike-assistant-panel {
    position: fixed;
    right: 26px;
    bottom: 24px;
    z-index: 1100;
    display: flex;
    width: min(430px, calc(100vw - 32px));
    height: min(680px, calc(100vh - 48px));
    min-height: 0;
    max-height: calc(100vh - 48px);
    max-height: calc(100dvh - 48px);
    overflow: hidden;
    flex-direction: column;
    border: 1px solid rgba(15, 139, 141, 0.24);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 26px 80px rgba(16, 42, 67, 0.28);
    font-family: 'Outfit', 'Segoe UI', Arial, sans-serif;
    opacity: 0;
    transform: translateY(16px) scale(0.975);
    transform-origin: right bottom;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

@media (max-width: 1199.98px) {
    .ebike-assistant-panel {
        right: 12px;
        bottom: calc(82px + env(safe-area-inset-bottom));
        width: min(410px, calc(100vw - 24px));
        height: min(650px, calc(100vh - 106px - env(safe-area-inset-bottom)));
        height: min(650px, calc(100dvh - 106px - env(safe-area-inset-bottom)));
        max-height: calc(100vh - 106px - env(safe-area-inset-bottom));
        max-height: calc(100dvh - 106px - env(safe-area-inset-bottom));
    }
}

@media (max-width: 991.98px) {
    .ebike-assistant-panel {
        right: 12px;
        bottom: calc(82px + env(safe-area-inset-bottom));
        width: min(410px, calc(100vw - 24px));
        height: min(650px, calc(100vh - 106px - env(safe-area-inset-bottom)));
        height: min(650px, calc(100dvh - 106px - env(safe-area-inset-bottom)));
        max-height: calc(100vh - 106px - env(safe-area-inset-bottom));
        max-height: calc(100dvh - 106px - env(safe-area-inset-bottom));
    }
}

.ebike-assistant-panel.is-visible {
    opacity: 1;
    transform: none;
}

.ebike-assistant-panel__header {
    display: flex;
    min-height: 88px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 15px;
    background: linear-gradient(135deg, #102a43 0%, #126e78 58%, #0f8b8d 100%);
    color: #fff;
}

.ebike-assistant-panel__identity,
.ebike-assistant-panel__header-actions {
    display: flex;
    min-width: 0;
    align-items: center;
}

.ebike-assistant-panel__identity {
    gap: 11px;
}

.ebike-assistant-panel__identity > span:last-child {
    min-width: 0;
}

.ebike-assistant-panel__identity strong,
.ebike-assistant-panel__identity small {
    display: block;
}

.ebike-assistant-panel__identity strong {
    overflow: hidden;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ebike-assistant-panel__identity small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    font-weight: 600;
}

.ebike-assistant-panel__mascot {
    position: relative;
    display: grid;
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 18px rgba(3, 20, 38, 0.18);
}

.ebike-assistant-panel__mascot img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    transform-origin: center bottom;
}

.ebike-assistant-panel__state-mark {
    position: absolute;
    right: -3px;
    bottom: -3px;
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #62cfc2;
    box-shadow: 0 4px 10px rgba(16, 42, 67, 0.2);
    color: #102a43;
    content: '';
    font-family: 'Font Awesome 5 Free';
    font-size: 9px;
    font-weight: 900;
}

.ebike-assistant-panel[data-mascot-state='thinking'] .ebike-assistant-panel__mascot img {
    animation: ebike-assistant-think 1.1s ease-in-out infinite alternate;
}

.ebike-assistant-panel[data-mascot-state='thinking'] .ebike-assistant-panel__state-mark::before {
    content: '\f002';
}

.ebike-assistant-panel[data-mascot-state='success'] .ebike-assistant-panel__state-mark {
    background: #b9f6ca;
}

.ebike-assistant-panel[data-mascot-state='success'] .ebike-assistant-panel__state-mark::before {
    content: '\f00c';
}

.ebike-assistant-panel[data-mascot-state='success'] .ebike-assistant-panel__mascot img {
    animation: ebike-assistant-success 0.45s ease both;
}

.ebike-assistant-panel[data-mascot-state='help'] .ebike-assistant-panel__state-mark {
    background: #ffd7c8;
}

.ebike-assistant-panel[data-mascot-state='help'] .ebike-assistant-panel__state-mark::before {
    content: '\f1cd';
}

.ebike-assistant-panel__header-actions {
    gap: 5px;
}

.ebike-assistant-panel__header-actions button {
    display: inline-flex;
    min-width: 40px;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.ebike-assistant-panel__header-actions button:hover,
.ebike-assistant-panel__header-actions button:focus-visible {
    background: rgba(255, 255, 255, 0.24);
}

.ebike-assistant-panel__header-actions button:focus-visible,
.ebike-assistant-panel__composer textarea:focus-visible,
.ebike-assistant-panel__composer button:focus-visible,
.ebike-assistant-panel__suggestions button:focus-visible,
.ebike-assistant-feedback button:focus-visible {
    outline: 3px solid rgba(98, 207, 194, 0.45);
    outline-offset: 2px;
}

.ebike-assistant-panel__messages {
    min-height: 0;
    flex: 1 1 auto;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 18px 16px;
    background: linear-gradient(180deg, #f4fbfb 0%, #f8fafc 100%);
    overscroll-behavior: contain;
}

.ebike-assistant-welcome {
    padding: 17px;
    border: 1px solid #dcecef;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 7px 22px rgba(16, 42, 67, 0.06);
}

.ebike-assistant-welcome strong {
    display: block;
    color: #102a43;
    font-size: 15px;
    font-weight: 800;
}

.ebike-assistant-welcome p {
    margin: 7px 0 0;
    color: #526d82;
    font-size: 13px;
    line-height: 1.55;
}

.ebike-assistant-newsletter {
    display: flex;
    margin-top: 14px;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid rgba(255, 119, 87, 0.25);
    border-radius: 14px;
    background: linear-gradient(135deg, #fff7f2 0%, #fff 72%);
}

.ebike-assistant-newsletter__content {
    min-width: 0;
    flex: 1;
}

.ebike-assistant-newsletter__content > span {
    display: block;
    color: #d7512f;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ebike-assistant-welcome .ebike-assistant-newsletter__content > strong {
    margin-top: 3px;
    color: #263f52;
    font-size: 12px;
    line-height: 1.35;
}

.ebike-assistant-welcome .ebike-assistant-newsletter__content > p {
    margin-top: 3px;
    font-size: 11px;
    line-height: 1.4;
}

.ebike-assistant-newsletter > a {
    display: inline-flex;
    min-height: 36px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 7px 11px;
    border-radius: 10px;
    background: #d7512f;
    box-shadow: 0 6px 14px rgba(215, 81, 47, 0.2);
    color: #fff !important;
    font-size: 10px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
}

.ebike-assistant-newsletter > a:hover,
.ebike-assistant-newsletter > a:focus-visible {
    background: #b83f21;
    color: #fff !important;
}

.ebike-assistant-message {
    display: flex;
    margin-top: 13px;
    flex-direction: column;
    align-items: flex-start;
}

.ebike-assistant-message--user {
    align-items: flex-end;
}

.ebike-assistant-message__bubble {
    max-width: 88%;
    padding: 11px 13px;
    border: 1px solid #dce7ed;
    border-radius: 16px 16px 16px 5px;
    background: #fff;
    box-shadow: 0 5px 16px rgba(16, 42, 67, 0.05);
    color: #263f52;
}

.ebike-assistant-message--user .ebike-assistant-message__bubble {
    border-color: #0f8b8d;
    border-radius: 16px 16px 5px 16px;
    background: #0f8b8d;
    color: #fff;
}

.ebike-assistant-message--user .ebike-assistant-message__bubble p {
    color: #fff !important;
}

.ebike-assistant-message__bubble p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    overflow-wrap: anywhere;
    white-space: pre-line;
}

.ebike-assistant-message__sources,
.ebike-assistant-message__recommendations {
    width: min(88%, 340px);
    margin-top: 7px;
}

.ebike-assistant-message__sources,
.ebike-assistant-message__recommendation {
    padding: 10px 12px;
    border-radius: 13px;
}

.ebike-assistant-message__recommendations {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-auto-flow: row;
    overflow: visible;
    gap: 8px;
    padding: 1px;
}

.ebike-assistant-message__recommendations::-webkit-scrollbar {
    display: none;
}

.ebike-assistant-message__recommendations.is-single {
    padding-right: 1px;
}

.ebike-assistant-message__product-image {
    display: block;
    width: 100%;
    max-height: 150px;
    margin: 0 0 10px;
    border-radius: 12px;
    background: #fff;
    object-fit: contain;
}

.ebike-assistant-message__sources {
    border: 1px solid #dce7ed;
    background: rgba(255, 255, 255, 0.92);
}

.ebike-assistant-message__sources strong,
.ebike-assistant-message__recommendation > span,
.ebike-assistant-message__recommendation > strong {
    display: block;
}

.ebike-assistant-message__sources strong,
.ebike-assistant-message__recommendation > span {
    color: #6b7c93;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ebike-assistant-message__sources a {
    display: block;
    margin-top: 5px;
    color: #0c7476;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.ebike-assistant-message__recommendation {
    border: 1px solid rgba(255, 119, 87, 0.24);
    background: linear-gradient(135deg, #fff8f4, #fff);
    scroll-snap-align: start;
}

.ebike-assistant-message__recommendation.has-image {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    grid-template-rows: auto auto 1fr;
    column-gap: 10px;
    align-items: start;
}

.ebike-assistant-message__recommendation.has-image .ebike-assistant-message__product-image {
    width: 72px;
    height: 72px;
    grid-column: 1;
    grid-row: 1 / 4;
    margin: 0;
}

.ebike-assistant-message__recommendation.has-image > span,
.ebike-assistant-message__recommendation.has-image > strong,
.ebike-assistant-message__recommendation.has-image > a {
    grid-column: 2;
}

.ebike-assistant-message__recommendation.has-image > a {
    justify-self: start;
}

.ebike-assistant-message__recommendation > strong {
    margin-top: 4px;
    color: #102a43;
    font-size: 13px;
    line-height: 1.35;
}

.ebike-assistant-message__recommendation a {
    display: inline-flex;
    min-height: 34px;
    margin-top: 8px;
    align-items: center;
    padding: 6px 11px;
    border-radius: 10px;
    background: #102a43;
    color: #fff !important;
    font-size: 11px;
    font-weight: 800;
}

.ebike-assistant-feedback {
    display: flex;
    margin-top: 7px;
    align-items: center;
    gap: 6px;
    color: #718096;
    font-size: 10px;
}

.ebike-assistant-feedback button {
    min-height: 30px;
    padding: 4px 9px;
    border: 1px solid #d4e2e8;
    border-radius: 9px;
    background: #fff;
    color: #38566c;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.ebike-assistant-message--thinking .ebike-assistant-message__bubble {
    display: flex;
    min-width: 58px;
    justify-content: center;
    gap: 4px;
}

.ebike-assistant-message--thinking .ebike-assistant-message__bubble span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0f8b8d;
    animation: ebike-assistant-dot 0.9s ease-in-out infinite alternate;
}

.ebike-assistant-message--thinking .ebike-assistant-message__bubble span:nth-child(2) { animation-delay: 0.15s; }
.ebike-assistant-message--thinking .ebike-assistant-message__bubble span:nth-child(3) { animation-delay: 0.3s; }

.ebike-assistant-notice,
.ebike-assistant-support-link {
    display: block;
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.4;
}

.ebike-assistant-notice {
    border: 1px solid #dce7ed;
    background: #fff;
    color: #526d82;
}

.ebike-assistant-notice.is-warning {
    border-color: #f3d6c7;
    background: #fff8f4;
    color: #8a432c;
}

.ebike-assistant-support-link {
    border: 1px solid rgba(15, 139, 141, 0.28);
    background: #eaf8f7;
    color: #0b6e70 !important;
    font-weight: 800;
    text-align: center;
}

.ebike-assistant-panel__form {
    position: relative;
    flex: 0 0 auto;
    padding: 11px 13px 10px;
    border-top: 1px solid #e2ebf0;
    background: #fff;
}

.ebike-assistant-panel__suggestions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 0 9px;
    gap: 7px;
}

.ebike-assistant-panel__suggestions[hidden] {
    display: none;
}

.ebike-assistant-panel__suggestions button {
    min-height: 34px;
    padding: 6px 10px;
    border: 1px solid #cae2e2;
    border-radius: 999px;
    background: #f3fbfa;
    color: #0b6e70;
    font: inherit;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
    cursor: pointer;
}

@media (max-width: 520px) {
    .ebike-assistant-panel__suggestions {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 1px 22% 3px 1px;
        scroll-padding-left: 1px;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
    }

    .ebike-assistant-panel__suggestions::-webkit-scrollbar {
        display: none;
    }

    .ebike-assistant-panel__suggestions button {
        flex: 0 0 min(260px, 78vw);
        scroll-snap-align: start;
    }
}

.ebike-assistant-panel__suggestions button:hover {
    border-color: #0f8b8d;
    background: #e8f8f6;
}

.ebike-assistant-panel__composer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: end;
    gap: 8px;
}

.ebike-assistant-panel__composer textarea {
    width: 100%;
    min-height: 46px;
    max-height: 112px;
    resize: vertical;
    padding: 10px 12px;
    border: 1px solid #cbdbe3;
    border-radius: 13px;
    background: #fff;
    color: #243b53;
    font: inherit;
    font-size: 13px;
    line-height: 1.4;
}

.ebike-assistant-panel__composer textarea:focus {
    border-color: #0f8b8d;
    box-shadow: 0 0 0 3px rgba(15, 139, 141, 0.11);
}

.ebike-assistant-panel__composer button {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: 13px;
    background: linear-gradient(135deg, #102a43, #0f8b8d);
    box-shadow: 0 7px 15px rgba(15, 139, 141, 0.2);
    color: #fff;
    cursor: pointer;
}

.ebike-assistant-panel__composer button:disabled,
.ebike-assistant-panel__header-actions button:disabled {
    cursor: not-allowed;
    opacity: 0.48;
}

.ebike-assistant-panel__form-meta {
    display: flex;
    min-height: 16px;
    justify-content: space-between;
    padding: 3px 2px 0;
    color: #8a9aaa;
    font-size: 9px;
}

.ebike-assistant-panel__privacy {
    margin: 2px 0 0;
    color: #8797a7;
    font-size: 9px;
    line-height: 1.35;
    text-align: center;
}

.ebike-assistant-panel__privacy a {
    color: #567083;
    text-decoration: underline;
}

.ebike-assistant-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@keyframes ebike-assistant-think {
    from { transform: translateY(0) rotate(-1deg); }
    to { transform: translateY(-3px) rotate(2deg); }
}

@keyframes ebike-assistant-success {
    0% { transform: scale(0.94); }
    60% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

@keyframes ebike-assistant-dot {
    from { opacity: 0.35; transform: translateY(1px); }
    to { opacity: 1; transform: translateY(-2px); }
}

@media (max-width: 575.98px) {
    .ebike-assistant-panel {
        right: 10px;
        bottom: calc(78px + env(safe-area-inset-bottom));
        left: 10px;
        width: auto;
        height: min(690px, calc(100dvh - 94px - env(safe-area-inset-bottom)));
        min-height: 0;
        max-height: calc(100vh - 94px - env(safe-area-inset-bottom));
        max-height: calc(100dvh - 94px - env(safe-area-inset-bottom));
        border-radius: 20px;
        transform-origin: center bottom;
    }

    .ebike-assistant-panel__header {
        min-height: 76px;
        padding: 10px 11px;
    }

    .ebike-assistant-panel__mascot {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        border-radius: 16px;
    }

    .ebike-assistant-panel__mascot img {
        width: 47px;
        height: 47px;
    }

    .ebike-assistant-panel__identity strong {
        font-size: 14px;
    }

    .ebike-assistant-panel__reset span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }

    .ebike-assistant-panel__messages {
        padding: 14px 12px;
    }

    .ebike-assistant-newsletter {
        align-items: stretch;
        flex-direction: column;
        gap: 9px;
        padding: 11px;
    }

    .ebike-assistant-newsletter > a {
        width: 100%;
    }

    .ebike-assistant-message__bubble,
    .ebike-assistant-message__sources,
    .ebike-assistant-message__recommendations {
        max-width: 92%;
        width: auto;
    }

    .ebike-assistant-message__recommendations {
        grid-template-columns: none;
        grid-auto-columns: minmax(200px, 88%);
        grid-auto-flow: column;
        overflow-x: auto;
        padding-bottom: 6px;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
    }

    .ebike-assistant-message__recommendations.is-single {
        grid-auto-columns: 100%;
    }

    .ebike-assistant-panel__form {
        padding-right: 10px;
        padding-bottom: calc(8px + env(safe-area-inset-bottom));
        padding-left: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ebike-assistant-panel,
    .ebike-assistant-panel *,
    .ebike-assistant-panel *::before,
    .ebike-assistant-panel *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Responsive resilience for legacy public templates and long user content. */
.page-wrapper,
.row > [class*="col-"],
.main-header-three__middle-inner,
.main-menu-three__wrapper-inner,
.site-footer__contact-points li,
.site-footer__contact-points .content,
.ebike-search-summary > *,
.ebike-search-article-card,
.ebike-search-product-card,
.ebike-gallery-card,
.product-box,
.randevu-form,
.ebike-support-hero__content,
.ebike-support-cta__inner > *,
.ebike-archive-filter > *,
.ebike-form-grid > *,
.ebike-category-list > *,
.ebike-ticket-hero > *,
.ebike-article-meta > * {
    min-width: 0;
}

iframe,
embed,
object,
video,
svg,
input,
select,
textarea {
    max-width: 100%;
}

input,
select,
textarea {
    min-width: 0;
}

.page-header__inner h1,
.page-header__inner h2,
.section-title__title,
.site-footer__contact-points p,
.site-footer__contact-points a,
.footer-widget__column a,
.mobile-nav__content .main-menu__list a,
.ebike-search-product-footer strong,
.ebike-ticket-card,
.ebike-article-content,
.ebike-article-downloads__list a > span {
    overflow-wrap: anywhere;
}

.mobile-nav__content {
    width: min(300px, 86vw);
}

.blog-page__pagination .pg-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-page__pagination .pg-pagination li {
    margin-right: 0 !important;
}

.ebike-article-content pre,
.blog-details__content pre {
    max-width: 100%;
    overflow-x: auto;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.ebike-article-downloads__list a > span,
.ebike-download-item span {
    min-width: 0;
}

.ebike-platform-strip .ebike-platform-strip__inner {
    align-items: flex-end;
    gap: 4px;
    min-height: 44px;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
}

.ebike-platform-strip .ebike-platform-strip__link {
    min-height: 40px;
    justify-content: center;
    padding: 0 15px;
    border-radius: 8px 8px 0 0;
    color: #d9edf2;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.ebike-platform-strip .ebike-platform-strip__link:hover,
.ebike-platform-strip .ebike-platform-strip__link:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.ebike-platform-strip .ebike-platform-strip__link.is-active,
.ebike-platform-strip .ebike-platform-strip__link.is-active:hover,
.ebike-platform-strip .ebike-platform-strip__link.is-active:focus-visible {
    background: var(--primary);
    color: #ffffff;
    box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.2);
}

@media (max-width: 1199.98px) {
    .main-header-three__top {
        display: none !important;
    }

    .main-menu-three__side-content-icon {
        display: none !important;
    }

    .main-menu-three__wrapper-inner,
    .main-menu-three__left {
        width: 100%;
    }

    .main-menu-three__main-menu-box {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: flex-start;
    }

    .main-menu-three__left {
        min-height: 60px;
        padding: 8px 0;
    }

    .mobile-nav__toggler {
        display: inline-flex;
        min-width: 104px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        gap: 9px;
        padding: 0 18px;
        border: 1px solid var(--glass-border);
        border-radius: 12px;
        background: var(--surface-soft);
        box-shadow: none;
        color: var(--primary) !important;
        font-size: 16px;
        line-height: 1;
    }

    .ebike-mobile-menu-label {
        color: var(--secondary);
        font-family: 'Outfit', 'Segoe UI', Arial, sans-serif;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.02em;
    }

    .main-header-three__middle-inner {
        padding: 20px 0 12px;
    }

    .main-header-three__logo {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .main-header-three__logo img {
        width: auto !important;
        max-width: min(154px, 34vw) !important;
    }

    .ebike-header-social-mobile {
        position: relative;
        z-index: 2;
        padding: 10px 0 16px;
    }

    .ebike-header-social-mobile__inner {
        flex-wrap: nowrap;
        gap: 8px;
    }

    .main-menu-three__wrapper {
        margin-top: 0 !important;
    }

    .ebike-support-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .ebike-support-cta__inner .ebike-search-box {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .main-header-three__middle-inner,
    .main-header-three__logo,
    .site-footer__contact-points,
    .site-footer__contact-points li {
        width: 100%;
    }

    .main-header-three__logo {
        display: flex;
        justify-content: center;
    }

    .main-header-three__logo img {
        width: auto !important;
        max-width: min(132px, 38vw) !important;
    }

    .main-header-three__middle-inner {
        padding: 16px 0 10px;
    }

    .ebike-header-social-mobile {
        padding: 8px 0 14px;
    }

    .site-footer__contact-points li {
        align-items: flex-start;
    }

    .site-footer__contact-points li .content {
        flex: 1 1 auto;
        margin-left: 0;
    }

    .site-footer__bottom .float-end {
        float: none !important;
        display: block;
        margin-right: auto;
        margin-left: auto;
    }

    .thm-breadcrumb,
    .ebike-search-product-footer {
        flex-wrap: wrap;
    }

    .ebike-ticket-card article small.float-right {
        float: none !important;
        display: block;
        margin-top: 5px;
    }

    .blog-page__pagination .pg-pagination {
        justify-content: center;
    }

    .g-recaptcha {
        width: 100% !important;
        max-width: 100%;
        overflow: hidden;
    }

    .g-recaptcha > div {
        transform-origin: top left;
    }
}

@media (max-width: 374.98px) {
    .g-recaptcha {
        height: 69px;
    }

    .g-recaptcha > div {
        transform: scale(0.88);
    }

    .site-footer__contact-points li {
        padding: 19px 17px;
        gap: 13px;
    }

    .site-footer__contact-points li .content {
        margin-left: 0;
    }
}

@media (max-width: 339.98px) {
    .g-recaptcha {
        height: 62px;
    }

    .g-recaptcha > div {
        transform: scale(0.79);
    }
}

/* Footer contact cards: keep address, email and phone readable at every width. */
.site-footer__inner,
.site-footer__contact-info {
    width: 100%;
}

.site-footer__inner {
    padding-right: 0;
    padding-left: 0;
}

.site-footer__contact-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 16px;
    width: 100%;
    margin: 0;
}

.site-footer__contact-points li,
.site-footer__contact-points li + li {
    min-width: 0;
    min-height: 148px;
    margin-top: 0 !important;
    padding: 24px;
    align-items: flex-start;
    gap: 16px;
}

.site-footer__contact-points li {
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(169, 244, 232, 0.16);
}

.site-footer__contact-points li:hover {
    border-color: rgba(98, 207, 194, 0.45);
    box-shadow: 0 12px 28px rgba(8, 28, 46, 0.2);
    transform: translateY(-2px);
}

.site-footer__contact-points .icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
}

.site-footer__contact-points li .icon {
    display: grid !important;
    place-items: center;
    line-height: 1;
}

.site-footer__contact-points li .icon span {
    display: block;
    margin: 0;
    color: inherit;
    font-size: 20px;
    line-height: 1;
    transform: none !important;
}

.site-footer__contact-points li .content {
    min-width: 0;
    padding-top: 2px;
}

.site-footer__contact-points h4 {
    line-height: 1.35;
}

.site-footer__contact-points p,
.site-footer__contact-points a {
    line-height: 1.55;
}

@media (min-width: 768px) {
    .site-footer__contact-points li:nth-child(2),
    .site-footer__contact-points li:nth-child(3) {
        align-items: center;
    }
}

@media (max-width: 1199.98px) {
    .site-footer__contact-points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__contact-points li:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767.98px) {
    .site-footer__top {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .site-footer__contact-points {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
    }

    .site-footer__contact-points li,
    .site-footer__contact-points li:first-child {
        min-height: 0;
        grid-column: auto;
        padding: 20px;
        gap: 15px;
    }

    .site-footer__contact-points .icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .site-footer__contact-points li .icon span {
        font-size: 18px;
    }

    .site-footer__contact-points h4 {
        font-size: 12px !important;
        letter-spacing: 0.08em;
    }
}

/* Mobile navigation: compact header trigger + thumb-friendly quick access. */
.ebike-mobile-header-menu,
.ebike-mobile-dock {
    display: none;
}

@media (max-width: 1199.98px) {
    body {
        padding-bottom: calc(72px + env(safe-area-inset-bottom));
    }

    .main-header-three__middle-inner {
        position: relative;
    }

    .main-menu.main-menu-three {
        display: none !important;
    }

    .ebike-platform-strip__inner {
        scrollbar-width: none;
    }

    .ebike-platform-strip__inner::-webkit-scrollbar {
        display: none;
    }

    .ebike-mobile-header-menu.mobile-nav__toggler {
        position: absolute;
        top: 50%;
        left: 0;
        z-index: 4;
        display: inline-flex;
        width: 44px;
        min-width: 44px;
        height: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        padding: 0;
        border: 1px solid var(--glass-border);
        border-radius: 13px;
        background: #fff !important;
        color: var(--secondary) !important;
        box-shadow: 0 8px 22px rgba(16, 42, 67, 0.09);
        font-size: 18px;
        transform: translateY(-50%);
    }

    .ebike-mobile-header-menu.mobile-nav__toggler:hover,
    .ebike-mobile-header-menu.mobile-nav__toggler:focus-visible,
    .ebike-mobile-header-menu.mobile-nav__toggler[aria-expanded="true"] {
        border-color: rgba(15, 139, 141, 0.42);
        background: var(--surface-soft);
        color: var(--primary-dark) !important;
    }

    .mobile-nav__wrapper {
        z-index: 1002;
        transition: transform 240ms ease, visibility 240ms ease;
    }

    .mobile-nav__wrapper.expanded {
        transition: transform 240ms ease, visibility 0ms ease;
    }

    .mobile-nav__overlay {
        width: 100%;
        min-height: 100%;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: rgba(8, 28, 46, 0.58);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }

    .mobile-nav__content {
        width: min(340px, 88vw);
        height: 100vh;
        height: 100dvh;
        padding: 28px 22px calc(30px + env(safe-area-inset-bottom));
        background: #fff !important;
        border-right: 1px solid var(--glass-border);
        box-shadow: 24px 0 54px rgba(16, 42, 67, 0.2);
        transition: opacity 240ms ease, visibility 240ms ease, transform 240ms ease;
    }

    .mobile-nav__wrapper.expanded .mobile-nav__content {
        transition: opacity 240ms ease, visibility 0ms ease, transform 240ms ease;
    }

    .mobile-nav__content .logo-box {
        min-height: 50px;
        align-items: center;
        margin: 0 48px 23px 0;
    }

    .mobile-nav__content .logo-box img {
        width: auto !important;
        max-width: 150px;
        max-height: 58px;
        object-fit: contain;
    }

    .mobile-nav__close {
        top: 22px;
        right: 18px;
        display: inline-flex;
        width: 42px;
        min-width: 42px;
        height: 42px;
        min-height: 42px;
        align-items: center;
        justify-content: center;
        padding: 0;
        border: 1px solid var(--glass-border);
        border-radius: 12px;
        background: var(--surface-soft);
        color: var(--secondary) !important;
        font-size: 17px;
    }

    .mobile-nav__close:hover,
    .mobile-nav__close:focus-visible {
        border-color: rgba(15, 139, 141, 0.42);
        color: var(--primary-dark) !important;
    }

    .ebike-mobile-drawer__eyebrow {
        margin: 0 0 10px;
        color: var(--primary-dark) !important;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.11em;
        text-transform: uppercase;
    }

    .mobile-nav__container {
        border-top: 1px solid var(--glass-border);
        border-bottom: 1px solid var(--glass-border);
    }

    .mobile-nav__content .main-menu__list > li:not(:last-child),
    .mobile-nav__content .main-menu__list > li > ul > li:not(:last-child),
    .mobile-nav__content .main-menu__list > li > ul > li > ul > li:not(:last-child) {
        border-color: var(--glass-border) !important;
    }

    .mobile-nav__content .main-menu__list > li > ul,
    .mobile-nav__content .main-menu__list > li > ul > li > ul {
        margin-left: 0;
        padding-left: 14px;
        border-top-color: var(--glass-border);
        background: var(--surface-soft);
    }

    .mobile-nav__content .main-menu__list > li > a,
    .mobile-nav__content .main-menu__list > li > ul > li > a,
    .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a {
        min-height: 50px;
        height: auto;
        padding: 9px 0;
        color: var(--secondary) !important;
        font-family: 'Outfit', 'Segoe UI', Arial, sans-serif;
        font-size: 14px;
        font-weight: 650;
        line-height: 1.35;
    }

    .mobile-nav__content .main-menu__list li.current > a,
    .mobile-nav__content .main-menu__list li a.expanded,
    .mobile-nav__content .main-menu__list a:hover,
    .mobile-nav__content .main-menu__list a:focus-visible {
        color: var(--primary-dark) !important;
    }

    .mobile-nav__content .main-menu__list > li > a > button,
    .mobile-nav__content .main-menu__list > li > ul > li > a > button,
    .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button {
        flex: 0 0 34px;
        width: 34px;
        height: 34px;
        min-height: 34px;
        margin-left: 12px;
        border-radius: 10px;
        background: #dff4f1;
        color: var(--primary-dark);
    }

    .mobile-nav__content .main-menu__list > li > a > button.expanded,
    .mobile-nav__content .main-menu__list > li > ul > li > a > button.expanded,
    .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button.expanded {
        background: var(--primary);
        color: #fff;
    }

    .mobile-nav__contact {
        display: grid;
        gap: 12px;
        margin: 20px 0 0;
    }

    .mobile-nav__contact li,
    .mobile-nav__contact li + li {
        min-width: 0;
        margin-top: 0;
        color: var(--text-muted) !important;
    }

    .mobile-nav__contact li > i {
        flex: 0 0 34px;
        width: 34px;
        height: 34px;
        background: var(--surface-soft);
        color: var(--primary-dark);
    }

    .mobile-nav__contact li a {
        min-width: 0;
        color: var(--text-main) !important;
        overflow-wrap: anywhere;
    }

    .ebike-mobile-dock {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 998;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        min-height: calc(72px + env(safe-area-inset-bottom));
        padding: 5px 6px calc(5px + env(safe-area-inset-bottom));
        border-top: 1px solid var(--glass-border);
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 -10px 30px rgba(16, 42, 67, 0.12);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .ebike-mobile-dock__item,
    button.ebike-mobile-dock__item.mobile-nav__toggler {
        position: relative;
        display: flex;
        width: 100%;
        min-width: 0;
        min-height: 58px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        padding: 5px 2px;
        border: 0;
        border-radius: 12px;
        background: transparent;
        box-shadow: none;
        color: var(--text-muted) !important;
        font-family: 'Outfit', 'Segoe UI', Arial, sans-serif;
        line-height: 1;
        appearance: none;
        -webkit-appearance: none;
    }

    .ebike-mobile-dock__item::before {
        position: absolute;
        top: -5px;
        left: 50%;
        width: 25px;
        height: 3px;
        border-radius: 0 0 5px 5px;
        background: transparent;
        content: '';
        transform: translateX(-50%);
    }

    .ebike-mobile-dock__item i {
        font-size: 19px;
        line-height: 1;
    }

    .ebike-mobile-dock__item span {
        display: block;
        max-width: 100%;
        color: inherit;
        font-size: 10.5px;
        font-weight: 700;
        line-height: 1.15;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .ebike-mobile-dock__item:hover,
    .ebike-mobile-dock__item:focus-visible,
    .ebike-mobile-dock__item.is-active,
    button.ebike-mobile-dock__item.mobile-nav__toggler[aria-expanded="true"] {
        background: var(--surface-soft);
        color: var(--primary-dark) !important;
    }

    .ebike-mobile-dock__item.is-active::before,
    button.ebike-mobile-dock__item.mobile-nav__toggler[aria-expanded="true"]::before {
        background: var(--primary);
    }

    .ebike-mobile-dock__item:focus-visible,
    .ebike-mobile-header-menu:focus-visible,
    .mobile-nav__close:focus-visible {
        outline: 3px solid rgba(15, 139, 141, 0.26);
        outline-offset: 1px;
    }
}

@media (max-width: 374.98px) {
    .ebike-mobile-dock {
        padding-right: 3px;
        padding-left: 3px;
    }

    .ebike-mobile-dock__item,
    button.ebike-mobile-dock__item.mobile-nav__toggler {
        gap: 4px;
        padding-right: 1px;
        padding-left: 1px;
    }

    .ebike-mobile-dock__item i {
        font-size: 18px;
    }

    .ebike-mobile-dock__item span {
        font-size: 9.5px;
    }
}

@media (max-width: 374.98px) and (max-height: 600px) {
    .modern-hero__actions {
        bottom: 28px;
    }
}

/* Tablet navigation bridge: never leave the legacy half-collapsed menu visible. */
@media (min-width: 992px) and (max-width: 1199.98px) {
    body {
        padding-bottom: 72px;
    }

    .main-menu.main-menu-three {
        display: none !important;
    }

    .ebike-mobile-header-menu.mobile-nav__toggler {
        position: static;
        z-index: 4;
        display: inline-flex;
        width: 44px;
        min-width: 44px;
        height: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        flex: 0 0 44px;
        padding: 0;
        border: 1px solid var(--glass-border);
        border-radius: 13px;
        background: #fff !important;
        box-shadow: 0 8px 22px rgba(16, 42, 67, 0.09);
        color: var(--secondary) !important;
        font-size: 18px;
        margin-right: 14px;
        transform: none;
    }

    .main-header-three__logo {
        width: 154px;
        flex: 0 0 154px;
    }

    .main-header-three__logo img {
        width: auto !important;
        max-width: 154px !important;
    }

    .mobile-nav__content {
        width: min(340px, 88vw);
        height: 100vh;
        height: 100dvh;
        padding: 28px 22px 30px;
        background: #fff !important;
        border-right: 1px solid var(--glass-border);
        box-shadow: 24px 0 54px rgba(16, 42, 67, 0.2);
    }

    .ebike-mobile-dock {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 998;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        min-height: 72px;
        padding: 5px 6px;
        border-top: 1px solid var(--glass-border);
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 -10px 30px rgba(16, 42, 67, 0.12);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .ebike-mobile-dock__item,
    button.ebike-mobile-dock__item.mobile-nav__toggler {
        position: relative;
        display: flex;
        width: 100%;
        min-width: 0;
        min-height: 58px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        padding: 5px 2px;
        border: 0;
        border-radius: 12px;
        background: transparent;
        box-shadow: none;
        color: var(--text-muted) !important;
        font-family: 'Outfit', 'Segoe UI', Arial, sans-serif;
        line-height: 1;
    }

    .ebike-mobile-dock__item i {
        font-size: 19px;
        line-height: 1;
    }

    .ebike-mobile-dock__item span {
        display: block;
        max-width: 100%;
        color: inherit;
        font-size: 10.5px;
        font-weight: 700;
        line-height: 1.15;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .ebike-mobile-dock__item:hover,
    .ebike-mobile-dock__item:focus-visible,
    .ebike-mobile-dock__item.is-active,
    button.ebike-mobile-dock__item.mobile-nav__toggler[aria-expanded="true"] {
        background: var(--surface-soft);
        color: var(--primary-dark) !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mobile-nav__wrapper,
    .mobile-nav__content,
    .ebike-mobile-dock__item,
    .ebike-mobile-header-menu {
        transition-duration: 0.01ms !important;
    }
}
