/*
Theme Name: Lotus Starter
Theme URI: https://lotuscarsvietnam.com
Description: Custom WordPress theme for Lotus Cars Vietnam — dark luxury design with hero video, responsive layout.
Author: Lotus Cars Vietnam
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: lotus-starter
*/

/* ==========================================================================
   Lotus Cars — Design System (BEM with .e-site- prefix)
   ========================================================================== */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --lotus-yellow: #FFB81C;
    --lotus-yellow-hover: #e5a417;
    --lotus-yellow-glow: rgba(255, 184, 28, 0.2);
    --lotus-dark: #0A0A0A;
    --lotus-darker: #050505;
    --lotus-card: #111111;
    --lotus-card-hover: #1a1a1a;
    --lotus-border: rgba(255, 255, 255, 0.08);
    --lotus-border-hover: rgba(255, 255, 255, 0.15);
    --lotus-grey: #A0A0A0;
    --lotus-light: #FFFFFF;
    --lotus-text-secondary: #b0b0b0;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --radius: 4px;
    --radius-lg: 8px;
    --container: 1400px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--lotus-dark);
    color: var(--lotus-light);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

h1 {
    font-size: var(--hp-hero-title-size, clamp(3rem, 8vw, 6rem));
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    letter-spacing: 0.03em;
}

p {
    color: var(--lotus-grey);
    font-size: 1.1rem;
    font-weight: 300;
}

/* ---------- Buttons ---------- */
.e-site-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid var(--lotus-border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    gap: 0.5rem;
}

.e-site-button--primary {
    background: var(--lotus-yellow);
    color: var(--lotus-dark);
    border-color: var(--lotus-yellow);
}

.e-site-button--primary:hover {
    background: var(--lotus-yellow-hover);
    box-shadow: 0 0 30px var(--lotus-yellow-glow);
    transform: translateY(-2px);
}

.e-site-button--outline {
    background: transparent;
    color: var(--lotus-light);
    border-color: var(--lotus-border-hover);
}

.e-site-button--outline:hover {
    border-color: var(--lotus-yellow);
    color: var(--lotus-yellow);
    transform: translateY(-2px);
}

/* ---------- Navbar ---------- */
.e-site-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.e-site-navbar--scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 3rem;
    border-bottom: 1px solid var(--lotus-border);
}

.e-site-navbar__logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--lotus-light);
}

.e-site-navbar__links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.e-site-navbar__link {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--lotus-grey);
    transition: color 0.3s ease;
    position: relative;
}

.e-site-navbar__link:hover,
.e-site-navbar__link--active {
    color: var(--lotus-light);
}

.e-site-navbar__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lotus-yellow);
    transition: width 0.3s ease;
}

.e-site-navbar__link:hover::after,
.e-site-navbar__link--active::after {
    width: 100%;
}

.e-site-navbar__actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.e-site-navbar__lang-switch {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid var(--lotus-border-hover);
    background: transparent;
    color: var(--lotus-light);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
    letter-spacing: 0.1em;
}

.e-site-navbar__lang-switch:hover {
    border-color: var(--lotus-yellow);
    color: var(--lotus-yellow);
}

.e-site-navbar__menu-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.e-site-navbar__menu-icon span {
    width: 24px;
    height: 2px;
    background: var(--lotus-light);
    transition: var(--transition);
}

/* ---------- Hero Section ---------- */
.e-site-hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: var(--lotus-darker);
}

.e-site-hero__video-bg {
    position: relative;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
    z-index: 1;
}

.e-site-hero__video-bg video {
    /*position: absolute;
    top: 0;
    left: 0;*/
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 75% center;
}

.e-site-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(10, 10, 10, 0.85) 0%,
            rgba(10, 10, 10, 0.15) 50%,
            rgba(10, 10, 10, 0.3) 100%);
    z-index: 1;
}

.e-site-hero__content-wrap {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}

.e-site-hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 3rem 4rem;
}

.e-site-hero__title {
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1.15;
}

.e-site-hero__subtitle {
    font-size: var(--hp-hero-subtitle-size, clamp(0.95rem, 1.5vw, 1.2rem));
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1.6;
}

.e-site-hero__buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

/* Scroll indicator */
.e-site-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: float 2s ease-in-out infinite;
}

.e-site-hero__scroll-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lotus-yellow);
}

.e-site-hero__scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, var(--lotus-yellow), transparent);
}

/* ---------- Section Styles ---------- */
.e-site-section {
    padding: 6rem 2rem;
    max-width: var(--container);
    margin: 0 auto;
}

.e-site-section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.e-site-section__title {
    margin-bottom: 1rem;
}

.e-site-section__subtitle {
    color: var(--lotus-grey);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- Post Cards ---------- */
.e-site-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
}

.e-site-post-card {
    background: var(--lotus-card);
    border: 1px solid var(--lotus-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.e-site-post-card:hover {
    transform: translateY(-4px);
    border-color: var(--lotus-border-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.e-site-post-card__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.e-site-post-card:hover .e-site-post-card__image {
    transform: scale(1.05);
}

.e-site-post-card__image-wrapper {
    overflow: hidden;
    position: relative;
}

.e-site-post-card__category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.8rem;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--lotus-border);
    border-radius: var(--radius);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lotus-yellow);
}

.e-site-post-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.e-site-post-card__title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.e-site-post-card__excerpt {
    color: var(--lotus-grey);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.e-site-post-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--lotus-border);
}

.e-site-post-card__date {
    font-size: 0.8rem;
    color: var(--lotus-text-secondary);
}

.e-site-post-card__read-more {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lotus-yellow);
    transition: var(--transition);
}

.e-site-post-card__read-more:hover {
    letter-spacing: 0.15em;
}

/* Placeholder image */
.e-site-post-card__placeholder {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--lotus-card), var(--lotus-card-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lotus-text-secondary);
    font-size: 2rem;
}

/* ---------- Single Post ---------- */
.e-site-single {
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

.e-site-single__header {
    margin-bottom: 3rem;
    text-align: center;
}

.e-site-single__category {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(255, 184, 28, 0.1);
    border: 1px solid var(--lotus-yellow);
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lotus-yellow);
    margin-bottom: 1.5rem;
}

.e-site-single__title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.e-site-single__meta {
    font-size: 0.9rem;
    color: var(--lotus-grey);
}

.e-site-single__featured {
    width: 100%;
    border-radius: var(--radius-lg);
    margin-bottom: 3rem;
    max-height: 500px;
    object-fit: cover;
}

.e-site-single__content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d0d0d0;
}

.e-site-single__content p {
    margin-bottom: 1.5rem;
    color: #d0d0d0;
    font-size: 1.1rem;
}

.e-site-single__content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    text-transform: none;
}

.e-site-single__content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 0.8rem;
}

.e-site-single__content img {
    border-radius: var(--radius-lg);
    margin: 2rem 0;
}

.e-site-single__content a {
    color: var(--lotus-yellow);
    text-decoration: underline;
}

.e-site-single__content a:hover {
    color: var(--lotus-yellow-hover);
}

.e-site-single__content blockquote {
    border-left: 3px solid var(--lotus-yellow);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--lotus-grey);
}

/* ---------- Blog Listing ---------- */
.e-site-blog {
    max-width: var(--container);
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

.e-site-blog__header {
    text-align: center;
    margin-bottom: 3rem;
}

.e-site-blog__title {
    margin-bottom: 1rem;
}

.e-site-blog__description {
    color: var(--lotus-grey);
    font-size: 1.1rem;
}

/* Categories filter */
.e-site-blog__categories {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.e-site-blog__category-btn {
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--lotus-border);
    background: transparent;
    color: var(--lotus-grey);
    font-family: var(--font-main);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius);
    text-decoration: none;
}

.e-site-blog__category-btn:hover,
.e-site-blog__category-btn--active {
    border-color: var(--lotus-yellow);
    color: var(--lotus-yellow);
    background: rgba(255, 184, 28, 0.05);
}

/* Pagination */
.e-site-pagination {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.e-site-pagination__btn {
    padding: 0.6rem 1rem;
    border: 1px solid var(--lotus-border);
    background: transparent;
    color: var(--lotus-grey);
    font-family: var(--font-main);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius);
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.e-site-pagination__btn:hover,
.e-site-pagination__btn--active {
    border-color: var(--lotus-yellow);
    color: var(--lotus-yellow);
}

.e-site-pagination__btn--active {
    background: rgba(255, 184, 28, 0.1);
}

.e-site-pagination__btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ---------- Footer ---------- */
.e-site-footer {
    background: var(--lotus-darker);
    border-top: 1px solid var(--lotus-border);
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.e-site-footer__logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--lotus-light);
    margin-bottom: 2rem;
}

.e-site-footer__links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.e-site-footer__link {
    font-size: 0.85rem;
    color: var(--lotus-grey);
    transition: color 0.3s ease;
}

.e-site-footer__link:hover {
    color: var(--lotus-light);
}

.e-site-footer__copy {
    font-size: 0.8rem;
    color: var(--lotus-text-secondary);
    padding-top: 2rem;
    border-top: 1px solid var(--lotus-border);
}

/* ---------- Animations ---------- */
@keyframes float {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.e-site-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.e-site-reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- 404 Page ---------- */
.e-site-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
    padding: 2rem;
}

.e-site-404__code {
    font-size: 8rem;
    font-weight: 700;
    color: var(--lotus-yellow);
    line-height: 1;
    margin-bottom: 1rem;
}

.e-site-404__title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.e-site-404__text {
    color: var(--lotus-grey);
    margin-bottom: 2rem;
    max-width: 400px;
}

/* ---------- Connection Error ---------- */
.e-site-error {
    text-align: center;
    padding: 4rem 2rem;
}

.e-site-error__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.e-site-error__text {
    color: var(--lotus-grey);
    margin-bottom: 2rem;
}

/* ---------- Mobile Menu Overlay ---------- */
.e-site-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.e-site-mobile-overlay--visible {
    opacity: 1;
    visibility: visible;
}

.e-site-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(30px);
    z-index: 999;
    padding: 5rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.e-site-mobile-menu--open {
    right: 0;
}

.e-site-mobile-menu__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--lotus-light);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.8rem;
    z-index: 1200;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.e-site-mobile-menu__links {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2rem;
}

.e-site-mobile-menu__link {
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lotus-grey);
    border-bottom: 1px solid var(--lotus-border);
    transition: color 0.3s ease;
    display: block;
}

.e-site-mobile-menu__link:hover {
    color: var(--lotus-light);
}

.e-site-mobile-menu__actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Video.js overrides */
.video-js {
    background-color: transparent !important;
}

.video-js .vjs-tech {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.vjs-poster {
    background-size: cover;
}

.e-site-hero .vjs-control-bar,
.e-site-hero .vjs-big-play-button,
.e-site-hero .vjs-loading-spinner {
    display: none !important;
}

/* ---------- Full-Page Post Sections (lotuscars.com style) ---------- */
.e-site-models-header {
    text-align: center;
    padding: 2rem 2rem 2rem;
    background: var(--lotus-dark);
}

.e-site-models-header__title {
    font-size: var(--hp-section-title-size, clamp(2rem, 5vw, 3.5rem));
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.e-site-models-header__subtitle {
    color: var(--lotus-grey);
    font-size: 1.2rem;
    font-weight: 300;
}

.e-site-fullpage {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
    background-color: var(--lotus-darker);
}

.e-site-fullpage__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.e-site-fullpage__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(5, 5, 5, 0.8) 0%,
            rgba(5, 5, 5, 0.1) 40%,
            rgba(5, 5, 5, 0.2) 100%);
    z-index: 2;
}

.e-site-fullpage__content {
    position: relative;
    z-index: 3;
    padding: 0 4rem 4rem;
    max-width: 700px;
}

.e-site-fullpage__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.1;
    margin-bottom: 0.8rem;
    color: var(--lotus-light);
}

.e-site-fullpage__excerpt {
    font-size: clamp(0.9rem, 1.3vw, 1.15rem);
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

.e-site-fullpage__buttons {
    display: flex;
    gap: 1rem;
}

/* No-image placeholder for fullpage */
.e-site-fullpage--no-image {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

/* ---------- Single Post Hero (full-screen, lotuscars.com detail page style) ---------- */
.e-site-single-hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: block;
    background-color: var(--lotus-darker);
}

.e-site-single-hero__bg {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    z-index: 1;
}

.e-site-single-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(5, 5, 5, 0.85) 0%,
            rgba(5, 5, 5, 0.15) 40%,
            rgba(5, 5, 5, 0.25) 100%);
    z-index: 2;
}

.e-site-single-hero__content {
    position: absolute;
    bottom: 6rem;
    left: 0;
    z-index: 3;
    padding: 0 4rem 1.5rem;
    width: 100%;
}

.e-site-single-hero__category {
    display: inline-block;
    padding: 0.3rem 1rem;
    border: 1px solid var(--lotus-yellow);
    border-radius: var(--radius);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--lotus-yellow);
    margin-bottom: 1.5rem;
}

.e-site-single-hero__title {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.1;
    color: var(--lotus-yellow);
    margin-bottom: 0.8rem;
}

.e-site-single-hero__subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    max-width: 600px;
}

.e-site-single-hero__meta {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--lotus-grey);
}

/* ---------- Hero Specs Bar ---------- */
.e-site-specs-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    justify-content: flex-start;
    gap: 3rem;
    padding: 1.5rem 4rem 2rem;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.9) 60%, transparent);
}

.e-site-specs-bar__item {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.e-site-specs-bar__value {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--lotus-light);
}

.e-site-specs-bar__meta {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.e-site-specs-bar__unit {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.e-site-specs-bar__label {
    font-size: 0.85rem;
    color: var(--lotus-grey);
}

/* ---------- Product Intro Text ---------- */
.e-site-product-intro {
    background: var(--lotus-darker);
    padding: 6rem 2rem;
    text-align: center;
}

.e-site-product-intro p {
    max-width: 900px;
    margin: 0 auto;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    line-height: 1.8;
}

/* ---------- Product Section: Text Center ---------- */
.e-site-product-section {
    padding: 6rem 2rem;
    text-align: center;
}

.e-site-product-section--dark {
    background: var(--lotus-darker);
    color: var(--lotus-light);
}

.e-site-product-section--light {
    background: #f5f5f5;
    color: #111;
}

.e-site-product-section__inner {
    max-width: 900px;
    margin: 0 auto;
}

.e-site-product-section__heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2rem;
}

.e-site-product-section--light .e-site-product-section__heading {
    color: #111;
}

.e-site-product-section__body {
    font-size: clamp(0.95rem, 1.3vw, 1.15rem);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.e-site-product-section--light .e-site-product-section__body {
    color: #333;
}

.e-site-product-section__cta {
    margin-top: 1rem;
}

.e-site-product-section--light .e-site-button--outline {
    border-color: #111;
    color: #111;
}

.e-site-product-section--light .e-site-button--outline:hover {
    background: #111;
    color: #fff;
}

/* ---------- Product Section: Fullscreen Image ---------- */
.e-site-product-fullimg {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: block;
}

.e-site-product-fullimg__bg {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    z-index: 1;
}

.e-site-product-fullimg__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 60%);
    z-index: 2;
}

.e-site-product-fullimg__content {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    padding: 4rem;
    max-width: 600px;
}

.e-site-product-fullimg--top-left .e-site-product-fullimg__content {
    top: 0;
    bottom: auto;
}

/* bottom-left: uses default bottom:0; left:0 from .e-site-product-fullimg__content */

.e-site-product-fullimg--center .e-site-product-fullimg__content {
    top: 50%;
    left: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
    text-align: center;
}

.e-site-product-fullimg__heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--lotus-light);
    margin-bottom: 1rem;
}

.e-site-product-fullimg__body {
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1.7;
}

/* Mobile: text nằm dưới ảnh thay vì đè lên */
@media (max-width: 768px) {
    .e-site-product-fullimg__content {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        max-width: 100%;
        padding: 2rem 1.5rem;
        background: var(--lotus-dark, #0a0a0a);
    }

    .e-site-product-fullimg--top-left .e-site-product-fullimg__content,
    .e-site-product-fullimg--center .e-site-product-fullimg__content {
        position: relative;
        top: auto;
        left: auto;
        bottom: auto;
        transform: none;
        text-align: left;
    }

    .e-site-product-fullimg__overlay {
        display: none;
    }

    .e-site-product-fullimg__heading {
        font-size: 1.6rem;
    }

    .e-site-product-fullimg__body {
        font-size: 0.95rem;
    }

    /* Stats bar: ảnh + text dưới ảnh */
    .e-site-product-stats__bg {
        width: 100%;
        height: auto;
        display: block;
    }

    .e-site-product-stats__bar {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        background: var(--lotus-dark, #0a0a0a);
    }

    .e-site-product-stats__overlay {
        display: none;
    }

    .e-site-product-stats__value {
        font-size: 2.5rem;
    }
}

/* ---------- Product Section: Split Layout ---------- */
.e-site-product-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    background: var(--lotus-darker);
    color: var(--lotus-light);
}

.e-site-product-split--text-right {
    direction: rtl;
}

.e-site-product-split--text-right>* {
    direction: ltr;
}

.e-site-product-split__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

.e-site-product-split__heading {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.5rem;
    color: var(--lotus-light);
}

.e-site-product-split__body {
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    line-height: 1.8;
}

.e-site-product-split__media {
    position: relative;
    overflow: hidden;
}

.e-site-product-split__media img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------- Product Section: Stats Bar ---------- */
.e-site-product-stats {
    position: relative;
    display: block;
    overflow: hidden;
}

.e-site-product-stats__bg {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    z-index: 1;
}

.e-site-product-stats__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.15));
    z-index: 2;
}

.e-site-product-stats__bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    justify-content: space-around;
    padding: 3rem 4rem;
}

.e-site-product-stats__item {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.e-site-product-stats__value {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    color: var(--lotus-light);
}

.e-site-product-stats__meta {
    display: flex;
    flex-direction: column;
}

.e-site-product-stats__unit {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.e-site-product-stats__label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ---------- Product Section: Full-Width Image ---------- */
.e-site-product-imgfull {
    width: 100%;
    line-height: 0;
}

.e-site-product-imgfull img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------- Scroll Reveal Animation ---------- */
.e-site-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.e-site-reveal--visible {
    opacity: 1;
    transform: translateY(0);
}


/* ---------- Homepage: Featured Posts (Explore More) ---------- */
.e-site-featured {
    background: var(--lotus-darker);
    padding: 6rem 2rem 5rem;
}

.e-site-featured__header {
    text-align: center;
    margin-bottom: 4rem;
}

.e-site-featured__title {
    font-size: var(--hp-section-title-size, clamp(2rem, 5vw, 3.5rem));
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--lotus-light);
}

.e-site-featured__subtitle {
    color: var(--lotus-grey);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.e-site-featured__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: var(--container);
    margin: 0 auto;
}

.e-site-featured__card {
    background: var(--lotus-card);
    border: 1px solid var(--lotus-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.e-site-featured__card:hover {
    transform: translateY(-6px);
    border-color: var(--lotus-yellow);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 30px var(--lotus-yellow-glow);
}

.e-site-featured__card-image {
    overflow: hidden;
    position: relative;
    height: 220px;
}

.e-site-featured__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.e-site-featured__card:hover .e-site-featured__card-image img {
    transform: scale(1.08);
}

.e-site-featured__card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--lotus-card) 0%, var(--lotus-card-hover) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lotus-text-secondary);
    font-size: 2rem;
}

.e-site-featured__card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.e-site-featured__card-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    line-height: 1.4;
    color: var(--lotus-light);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.e-site-featured__card:hover .e-site-featured__card-title {
    color: var(--lotus-yellow);
}

.e-site-featured__card-excerpt {
    color: var(--lotus-grey);
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.e-site-featured__cta {
    text-align: center;
    margin-top: 3rem;
}

.e-site-featured__cta-arrow {
    transition: transform 0.3s ease;
    display: inline-block;
}

.e-site-featured__cta .e-site-button:hover .e-site-featured__cta-arrow {
    transform: translateX(5px);
}


/* ==========================================================================
   RESPONSIVE — Consolidated breakpoints (lotuscars.com style)
   Breakpoints:
     Large Desktop  ≥ 1440px
     Default        1025px – 1439px  (base styles above)
     Tablet         768px – 1024px
     Mobile         481px – 767px
     Small Mobile   ≤ 480px
     Landscape      max-height:500px + orientation:landscape
   ========================================================================== */

/* ── Large Desktop (≥ 1440px) ───────────────────────────────── */
@media (min-width: 1440px) {
    :root {
        --container: 1600px;
    }

    .e-site-section {
        padding: 8rem 3rem;
    }

    .e-site-hero__content {
        max-width: 800px;
        padding: 0 4rem 5rem;
    }

    .e-site-fullpage__content {
        max-width: 800px;
        padding: 0 5rem 5rem;
    }

    .e-site-single-hero__content {
        padding: 0 5rem 2rem;
    }

    .e-site-specs-bar {
        padding: 2rem 5rem 2.5rem;
    }

    .e-site-featured {
        padding: 8rem 3rem 6rem;
    }

    .e-site-news {
        padding: 8rem 3rem;
    }

    .e-site-product-intro {
        padding: 8rem 2rem;
    }

    .e-site-product-section {
        padding: 8rem 2rem;
    }

    .e-site-product-fullimg__content {
        padding: 5rem;
        max-width: 700px;
    }

    .e-site-product-split__text {
        padding: 5rem;
    }

    .e-site-product-stats__bar {
        padding: 4rem 5rem;
    }

    .e-site-testdrive {
        padding: 8rem 2rem;
    }

    .e-site-footer {
        padding: 6rem 3rem 2rem;
    }
}

/* ── Tablet (≤ 1024px) ──────────────────────────────────────── */
@media (max-width: 1024px) {

    /* Navbar */
    .e-site-navbar {
        padding: 1rem 2rem;
    }

    .e-site-navbar--scrolled {
        padding: 0.8rem 2rem;
    }

    .e-site-navbar__links {
        display: none;
    }

    .e-site-navbar__actions .e-site-button {
        display: none;
    }

    .e-site-navbar__menu-icon {
        display: flex;
    }

    /* Sections */
    .e-site-section {
        padding: 4rem 1.5rem;
    }

    /* Hero */
    .e-site-hero__content {
        max-width: 600px;
        padding: 0 2rem 3.5rem;
    }

    .e-site-hero__buttons {
        gap: 0.8rem;
    }

    .e-site-hero__buttons .e-site-button {
        padding: 0.85rem 2rem;
        font-size: 0.8rem;
    }

    /* Fullpage sections */
    .e-site-fullpage {
        height: 85vh;
    }

    .e-site-fullpage__content {
        padding: 0 2rem 3rem;
    }

    .e-site-fullpage__buttons .e-site-button {
        padding: 0.85rem 2rem;
        font-size: 0.8rem;
    }

    /* Single hero */
    .e-site-single-hero__content {
        padding: 0 2rem 1.5rem;
    }

    /* Specs bar */
    .e-site-specs-bar {
        gap: 2rem;
        padding: 1.5rem 2rem 2rem;
        flex-wrap: wrap;
    }

    /* Product sections */
    .e-site-product-split {
        grid-template-columns: 1fr;
    }



    .e-site-product-split__text {
        padding: 3rem 2rem;
    }

    .e-site-product-fullimg__content {
        padding: 3rem 2rem;
    }

    .e-site-product-stats__bar {
        padding: 2.5rem 2rem;
    }

    /* Posts grid */
    .e-site-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Featured posts */
    .e-site-featured__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* News grid */
    .e-site-news__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Models header */
    .e-site-models-header {
        padding: 5rem 1.5rem 2rem;
    }

    /* Blog */
    .e-site-blog {
        padding: 7rem 1.5rem 3rem;
    }

    /* Test drive */
    .e-site-testdrive__container {
        padding: 2.5rem 2rem;
    }

    /* Footer */
    .e-site-footer__container {
        gap: 2.5rem;
    }
}

/* ── Mobile (≤ 768px) ───────────────────────────────────────── */
@media (max-width: 768px) {

    /* Navbar */
    .e-site-navbar {
        padding: 0.8rem 1.5rem;
    }

    .e-site-navbar--scrolled {
        padding: 0.6rem 1.5rem;
    }

    .e-site-navbar__logo svg {
        width: 90px;
        height: auto;
    }

    /* Hero */
    .e-site-hero__video-bg {
        height: auto;
        aspect-ratio: 600 / 972;
    }

    .e-site-hero__content {
        max-width: 100%;
        padding: 0 1.5rem 3rem;
    }

    .e-site-hero__title,
    h1 {
        font-size: 2rem;
        letter-spacing: 0.06em;
    }

    .e-site-hero__subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .e-site-hero__buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .e-site-hero__buttons .e-site-button {
        text-align: center;
        justify-content: center;
    }

    .e-site-hero__scroll {
        display: none;
    }

    /* Fullpage sections — match lotuscars.com: keep 100vh */
    .e-site-fullpage {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .e-site-fullpage__bg {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .e-site-fullpage__overlay {
        position: absolute;
        inset: 0;
    }

    .e-site-fullpage__content {
        position: relative;
        padding: 1.5rem 1.5rem 2rem;
    }

    .e-site-fullpage__title {
        font-size: 2rem;
    }

    .e-site-fullpage__excerpt {
        font-size: 0.9rem;
    }

    /* lotuscars.com: EXPLORE full-width outline, CONFIGURE text-link below */
    .e-site-fullpage__buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }

    .e-site-fullpage__buttons .e-site-button--outline {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .e-site-fullpage__buttons .e-site-button--text {
        width: auto;
        border: none;
        background: none;
        padding-left: 0;
        justify-content: flex-start;
        font-size: 0.85rem;
        letter-spacing: 0.1em;
    }

    /* Single hero: text dưới ảnh trên mobile */
    .e-site-single-hero__content {
        position: relative;
        bottom: auto;
        left: auto;
        padding: 2rem 1rem;
        background: var(--lotus-darker, #0a0a0a);
    }

    .e-site-single-hero__overlay {
        display: none;
    }

    .e-site-single-hero__title {
        font-size: 1.6rem;
    }

    .e-site-single-hero__subtitle {
        font-size: 0.8rem;
    }

    /* Specs bar: relative trên mobile */
    .e-site-specs-bar {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 1.5rem;
        justify-content: center;
        background: var(--lotus-darker, #0a0a0a);
    }

    .e-site-specs-bar__item {
        flex: 0 0 calc(50% - 1rem);
        justify-content: center;
    }

    .e-site-specs-bar__value {
        font-size: 2.5rem;
    }

    /* Product sections */
    .e-site-product-intro {
        padding: 4rem 1.5rem;
    }

    .e-site-product-section {
        padding: 4rem 1.5rem;
    }

    .e-site-product-fullimg__content {
        padding: 2rem 1.5rem;
    }

    .e-site-product-split__text {
        padding: 1rem;
    }

    .e-site-product-stats__bar {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        justify-content: center;
    }

    .e-site-product-stats__item {
        flex: 0 0 calc(50% - 1rem);
        justify-content: center;
    }

    .e-site-product-stats__value {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    /* Posts grid */
    .e-site-posts-grid {
        grid-template-columns: 1fr;
    }

    .e-site-post-card__title {
        font-size: 1.1rem;
    }

    /* Featured posts */
    .e-site-featured {
        padding: 4rem 1.5rem 3rem;
    }

    .e-site-featured__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .e-site-featured__header {
        margin-bottom: 2.5rem;
    }

    .e-site-featured__card-image {
        height: 200px;
    }

    /* News grid */
    .e-site-news {
        padding: 4rem 1.5rem;
    }

    .e-site-news__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Models header */
    .e-site-models-header {
        padding: 4rem 1.5rem 1.5rem;
    }

    .e-site-models-header__subtitle {
        font-size: 1rem;
    }

    /* Blog */
    .e-site-blog {
        padding: 6rem 1rem 3rem;
    }

    .e-site-blog__categories {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 0.5rem;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .e-site-blog__categories::-webkit-scrollbar {
        display: none;
    }

    .e-site-blog__category-btn {
        white-space: nowrap;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    /* Pagination — touch-friendly */
    .e-site-pagination__btn {
        min-width: 44px;
        min-height: 44px;
    }

    /* Single post */
    .e-site-single {
        padding: 6rem 1rem 3rem;
    }

    /* Test drive form */
    .e-site-testdrive {
        padding: 4rem 1rem;
    }

    .e-site-testdrive__container {
        padding: 2rem 1.5rem;
    }

    .e-site-testdrive__row {
        grid-template-columns: 1fr;
    }

    .e-site-testdrive__title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .e-site-testdrive__subtitle {
        font-size: 0.9rem;
    }


    /* 404 */
    .e-site-404__code {
        font-size: 5rem;
    }

    .e-site-404__title {
        font-size: 1.5rem;
    }

    /* Buttons — touch-friendly */
    .e-site-button {
        min-height: 44px;
        padding: 0.85rem 2rem;
    }
}

/* ── Small Mobile (≤ 480px) ─────────────────────────────────── */
@media (max-width: 480px) {

    /* Navbar */
    .e-site-navbar {
        padding: 0.8rem 1rem;
    }

    .e-site-navbar--scrolled {
        padding: 0.6rem 1rem;
    }

    .e-site-navbar__logo svg {
        width: 80px;
    }

    /* Sections */
    .e-site-section {
        padding: 3rem 1rem;
    }

    /* Hero */
    .e-site-hero__video-bg {
        aspect-ratio: 600 / 972;
    }

    .e-site-hero__content {
        padding: 0 1rem 2.5rem;
    }

    .e-site-hero__title,
    h1 {
        font-size: 1.6rem;
        letter-spacing: 0.05em;
    }

    .e-site-hero__subtitle {
        font-size: 0.85rem;
    }

    .e-site-hero__buttons .e-site-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.75rem;
    }

    /* Fullpage sections — lotuscars.com: still 100vh on small mobile */
    .e-site-fullpage {
        height: auto;
    }

    .e-site-fullpage__bg {
        position: relative;
        inset: auto;
    }

    .e-site-fullpage__content {
        padding: 1rem 1rem 1.5rem;
    }

    .e-site-fullpage__title {
        font-size: 1.6rem;
    }

    .e-site-fullpage__excerpt {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    /* Single hero */
    .e-site-single-hero__content {
        position: relative;
        bottom: auto;
        left: auto;
        padding: 1.5rem 1.5rem;
        background: var(--lotus-darker, #0a0a0a);
    }

    .e-site-single-hero__title {
        font-size: 1.4rem;
    }

    .e-site-single-hero__subtitle {
        font-size: 0.65rem;
    }

    .e-site-single-hero__category {
        font-size: 0.6rem;
        padding: 0.25rem 0.7rem;
    }

    /* Specs bar */
    .e-site-specs-bar {
        padding: 1rem;
        gap: 1rem;
    }

    .e-site-specs-bar__value {
        font-size: 2rem;
    }

    .e-site-specs-bar__unit {
        font-size: 0.9rem;
    }

    .e-site-specs-bar__label {
        font-size: 0.75rem;
    }

    /* Product sections */
    .e-site-product-intro {
        padding: 3rem 1rem;
    }

    .e-site-product-intro p {
        font-size: 0.95rem;
    }

    .e-site-product-section {
        padding: 3rem 1rem;
    }

    .e-site-product-fullimg__content {
        padding: 1.5rem 1rem;
    }

    .e-site-product-split__text {
        padding: 2rem 1rem;
    }

    .e-site-product-stats__bar {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        padding: 1.5rem 1rem;
    }

    .e-site-product-stats__value {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    /* Post cards */
    .e-site-post-card__placeholder {
        height: 180px;
    }

    .e-site-post-card__body {
        padding: 1rem;
    }

    .e-site-post-card__title {
        font-size: 1rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .e-site-post-card__excerpt {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    /* Featured cards */
    .e-site-featured {
        padding: 3rem 1rem 2.5rem;
    }

    .e-site-featured__card-image {
        height: 180px;
    }

    .e-site-featured__card-title {
        font-size: 1rem;
    }

    .e-site-featured__card-excerpt {
        font-size: 0.8rem;
    }

    /* News grid */
    .e-site-news {
        padding: 3rem 1rem;
    }

    .e-site-news__grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .e-site-news__title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    /* Models header */
    .e-site-models-header {
        padding: 1rem 1rem 1rem;
    }

    .e-site-models-header__title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .e-site-models-header__subtitle {
        font-size: 0.9rem;
    }

    /* Blog */
    .e-site-blog {
        padding: 5rem 1rem 2rem;
    }

    .e-site-blog__title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    /* Single post */
    .e-site-single {
        padding: 5rem 1rem 2rem;
    }

    .e-site-single__title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    /* Test drive form */
    .e-site-testdrive {
        padding: 3rem 0.75rem;
    }

    .e-site-testdrive__container {
        padding: 1.5rem 1rem;
        border-radius: var(--radius);
    }

    .e-site-testdrive__title {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }

    .e-site-testdrive__subtitle {
        font-size: 0.85rem;
    }

    .e-site-testdrive__field input,
    .e-site-testdrive__field select,
    .e-site-testdrive__field textarea {
        font-size: 16px;
        /* prevents iOS zoom on focus */
        padding: 0.65rem 0.8rem;
    }

    .e-site-testdrive__btn {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }


    /* 404 */
    .e-site-404__code {
        font-size: 4rem;
    }

    .e-site-404__title {
        font-size: 1.3rem;
    }

    .e-site-404__text {
        font-size: 0.9rem;
    }
}

/* ── Landscape Phone (short viewport) ───────────────────────── */
@media (max-height: 500px) and (orientation: landscape) {
    .e-site-hero {
        height: 100vh;
        min-height: 300px;
    }

    .e-site-hero__content {
        padding: 0 2rem 1.5rem;
    }

    .e-site-hero__title,
    h1 {
        font-size: 1.5rem;
    }

    .e-site-hero__subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .e-site-hero__buttons {
        flex-direction: row;
        gap: 0.5rem;
    }

    .e-site-hero__buttons .e-site-button {
        padding: 0.5rem 1.2rem;
        font-size: 0.7rem;
    }

    .e-site-hero__scroll {
        display: none;
    }

    .e-site-fullpage {
        height: 70vh;
        min-height: 300px;
    }

    .e-site-fullpage__title {
        font-size: 1.5rem;
    }

    .e-site-fullpage__buttons {
        flex-direction: row;
    }



    .e-site-single-hero__title {
        font-size: 1.5rem;
    }

    .e-site-navbar {
        padding: 0.5rem 1.5rem;
    }
}


/* ---------- WordPress Core Overrides ---------- */
.wp-block-image img {
    border-radius: var(--radius-lg);
}

.alignwide {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100%;
    max-width: none;
}

/* ═══════════════════════════════════════════════
   LATEST NEWS SECTION
   ═══════════════════════════════════════════════ */
.e-site-news {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #111118 100%);
}

.e-site-news__header {
    text-align: center;
    margin-bottom: 3rem;
}

.e-site-news__title {
    font-family: 'Outfit', sans-serif;
    font-size: var(--hp-section-title-size, clamp(2rem, 4vw, 3.5rem));
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #fff;
}

.e-site-news__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--hp-news-gap, 1.5rem);
    max-width: 1400px;
    margin: 0 auto;
}

.e-site-news__card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.e-site-news__card:hover {
    transform: translateY(-6px);
    border-color: var(--lotus-gold);
    box-shadow: 0 12px 40px rgba(198, 163, 80, 0.15);
}

.e-site-news__card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #1a1a1a;
}

.e-site-news__card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.e-site-news__card:hover .e-site-news__card-image img {
    transform: scale(1.06);
}

.e-site-news__card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e, #0f0f1a);
    color: var(--lotus-gold);
    font-size: 1.5rem;
}

.e-site-news__card-body {
    padding: 1rem 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex-grow: 1;
}

.e-site-news__card-meta {
    display: flex;
    gap: 0.75rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.e-site-news__card-date {
    color: var(--lotus-gold);
}

.e-site-news__card-cat {
    color: var(--lotus-grey);
}

.e-site-news__card-title {
    font-family: 'Outfit', sans-serif;
    font-size: var(--hp-news-card-title-size, 0.9rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.e-site-news__card-excerpt {
    font-size: var(--hp-news-card-excerpt-size, 0.75rem);
    color: var(--lotus-grey);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}



/* ═══════════════════════════════════════════════
   TEST DRIVE REGISTRATION FORM
   ═══════════════════════════════════════════════ */
.e-site-testdrive {
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
}

.e-site-testdrive__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a0a12 0%, #1a1a2e 40%, #0d0d18 100%);
    z-index: 0;
}

.e-site-testdrive__bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(198, 163, 80, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.e-site-testdrive__container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(198, 163, 80, 0.2);
    border-radius: var(--radius-lg);
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.e-site-testdrive__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.e-site-testdrive__title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #fff;
    margin-bottom: 0.75rem;
}

.e-site-testdrive__subtitle {
    font-size: 1rem;
    color: var(--lotus-grey);
    line-height: 1.6;
    max-width: 550px;
    margin: 0 auto;
}

.e-site-testdrive__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.e-site-testdrive__field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #ccc;
    margin-bottom: 0.4rem;
    letter-spacing: 0.03em;
}

.e-site-testdrive__field label span {
    color: var(--lotus-gold);
}

.e-site-testdrive__field input,
.e-site-testdrive__field select,
.e-site-testdrive__field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.e-site-testdrive__field input::placeholder,
.e-site-testdrive__field textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.e-site-testdrive__field input:focus,
.e-site-testdrive__field select:focus,
.e-site-testdrive__field textarea:focus {
    border-color: var(--lotus-gold);
    box-shadow: 0 0 0 3px rgba(198, 163, 80, 0.15);
}

.e-site-testdrive__field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23999'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.e-site-testdrive__field select option {
    background: #1a1a2e;
    color: #fff;
}

.e-site-testdrive__field textarea {
    resize: vertical;
    min-height: 80px;
}

.e-site-testdrive__submit {
    text-align: center;
    margin-top: 1.5rem;
}

.e-site-testdrive__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.e-site-testdrive__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(198, 163, 80, 0.3);
}

.e-site-testdrive__btn-icon {
    font-size: 1.2rem;
}

.e-site-testdrive__message {
    margin-top: 1.5rem;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    animation: fadeInUp 0.4s ease;
}

.e-site-testdrive__message--success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.e-site-testdrive__message--error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.e-site-testdrive__btn--loading {
    pointer-events: none;
    opacity: 0.7;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* ═══════════════════════════════════════════════
   MEDIA SLIDER (Cab-forward style carousel)
   ═══════════════════════════════════════════════ */
.e-site-media-slider {
    padding: 4rem 0 4rem 2rem;
    background: var(--lotus-darker, #0a0a0a);
    overflow: hidden;
}

.e-site-media-slider__swiper {
    overflow: visible;
    position: relative;
}

.e-site-media-slider__slide {
    display: flex;
    flex-direction: column;
}

.e-site-media-slider__media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--radius, 8px);
    background: #111;
}

.e-site-media-slider__media img,
.e-site-media-slider__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.e-site-media-slider__text {
    padding: 1.25rem 0.5rem 0;
}

.e-site-media-slider__title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
    text-transform: none;
    letter-spacing: 0;
}

.e-site-media-slider__desc {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: var(--lotus-grey, #999);
    line-height: 1.6;
    max-width: 500px;
}

/* Navigation arrows */
.e-site-media-slider__nav {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    padding: 1rem 1rem 0 0;
}

.e-site-media-slider__prev,
.e-site-media-slider__next {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.e-site-media-slider__prev:hover,
.e-site-media-slider__next:hover {
    border-color: var(--lotus-gold, #c6a350);
    color: var(--lotus-gold, #c6a350);
    background: rgba(198, 163, 80, 0.08);
}

.e-site-media-slider__prev.swiper-button-disabled,
.e-site-media-slider__next.swiper-button-disabled {
    opacity: 0.3;
    cursor: default;
}

/* Mobile ≤ 768px */
@media (max-width: 768px) {
    .e-site-media-slider {
        padding: 2.5rem 0 2.5rem 1rem;
    }

    .e-site-media-slider__media {
        border-radius: 6px;
    }

    .e-site-media-slider__text {
        padding: 1rem 0.25rem 0;
    }

    .e-site-media-slider__nav {
        padding: 0.75rem 1rem 0 0;
    }

    .e-site-media-slider__prev,
    .e-site-media-slider__next {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
}


/* ═══════════════════════════════════════════════
   FOOTER — lotuscars.com style
   ═══════════════════════════════════════════════ */
.e-site-footer {
    background: #000;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    padding: 0;
}

/* Yellow divider with centered logo */
.e-site-footer__divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 3rem;
}

.e-site-footer__divider-line {
    flex: 1;
    height: 1px;
    background: var(--lotus-yellow, #fdef00);
}

.e-site-footer__logo-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
}

.e-site-footer__logo-circle {
    width: 56px;
    height: 56px;
    border: 2px solid var(--lotus-yellow, #fdef00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--lotus-yellow, #fdef00);
    flex-shrink: 0;
}

/* Main footer content */
.e-site-footer__main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 3rem;
}

/* Social icons */
.e-site-footer__social {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.e-site-footer__social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--lotus-yellow, #fdef00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lotus-yellow, #fdef00);
    text-decoration: none;
    transition: all 0.3s ease;
}

.e-site-footer__social-icon:hover {
    background: var(--lotus-yellow, #fdef00);
    color: #000;
}

.e-site-footer__social-icon svg {
    fill: currentColor;
}

/* Link columns */
.e-site-footer__columns {
    display: flex;
    gap: 5rem;
    flex-wrap: wrap;
    flex: 1;
}

.e-site-footer__col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
    min-width: 250px;
    align-items: flex-start;
    text-align: left;
}

.e-site-footer__col--contact {
    flex: 1.5;
}

.e-site-footer__info-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

.e-site-footer__address-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
}

.e-site-footer__address-item strong {
    color: #fff;
    font-weight: 500;
}

.e-site-footer__col-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--lotus-yellow, #fdef00);
    margin-bottom: 0.5rem;
}

.e-site-footer__col-link {
    font-size: 0.9rem;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.e-site-footer__col-link:hover {
    color: #fff;
}

/* Bottom yellow line */
.e-site-footer__bottom-line {
    height: 1px;
    background: var(--lotus-yellow, #fdef00);
    margin: 0 3rem;
}

/* Legal bar */
.e-site-footer__legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.e-site-footer__legal-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.e-site-footer__legal-links a {
    font-size: 0.8rem;
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.e-site-footer__legal-links a:hover {
    color: #fff;
}

.e-site-footer__region {
    font-size: 0.8rem;
    color: #999;
}

/* Disclaimer */
.e-site-footer__disclaimer {
    background: #f5f5f5;
    padding: 1.5rem 3rem;
}

.e-site-footer__disclaimer p {
    max-width: 1400px;
    margin: 0 auto;
    font-size: 0.75rem;
    color: #666;
    line-height: 1.7;
}

/* ── Footer responsive ─────────────────────── */
@media (max-width: 768px) {
    .e-site-footer__divider {
        padding: 0 1.5rem;
        gap: 1rem;
    }

    .e-site-footer__logo-img,
    .e-site-footer__logo-circle {
        width: 44px;
        height: 44px;
    }

    .e-site-footer__main {
        flex-direction: column;
        align-items: center;
        padding: 2rem 1.5rem;
        gap: 2rem;
        text-align: center;
    }

    .e-site-footer__social {
        justify-content: center;
    }

    .e-site-footer__columns {
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
    }

    .e-site-footer__col {
        align-items: center;
        text-align: center;
    }

    .e-site-footer__address-item {
        align-items: center;
    }

    .e-site-footer__bottom-line {
        margin: 0 1.5rem;
    }

    .e-site-footer__legal {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem 1.5rem;
        text-align: center;
    }

    .e-site-footer__legal-links {
        justify-content: center;
        gap: 1rem;
    }

    .e-site-footer__disclaimer {
        padding: 1.25rem 1.5rem;
    }
}