:root {
    --bg: #040404;
    --bg-soft: #0b0b0d;
    --panel: rgba(255, 255, 255, 0.07);
    --panel-strong: rgba(255, 255, 255, 0.12);
    --line: rgba(255, 255, 255, 0.16);
    --text: #f7f7f4;
    --muted: #a8a8a2;
    --silver: #d8d8d2;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    width:100%;
    margin: 0;
    padding: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 28rem),
        linear-gradient(135deg, #050505 0%, #0a0a0b 45%, #010101 100%);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
        box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

img {
    max-width: 100%;
    display: block;
}

.page-shell {
    min-height: 70vh;
}

.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: #020202;
    transition: opacity 350ms ease, visibility 350ms ease;
}

.loader span {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 800ms linear infinite;
}

.loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.luxury-nav {
    width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
padding: 2px 0;
  background: rgba(0, 0, 0, 0.54);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition:
    padding 240ms ease,
    background 240ms ease;
}

.luxury-nav.nav-compact {
    padding: 0.58rem 0;
    background: rgba(0, 0, 0, 0.82);
}

.luxury-nav .nav-link {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.luxury-nav .nav-link.active,
.luxury-nav .nav-link:hover {
    color: #fff;
}

.nav-search-item {
    margin-left: 1rem;
}

.nav-search {
    display: flex;
    align-items: center;
    width: min(310px, 34vw);
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
}

.nav-search input {
    min-height: 38px;
    border: 0;
    background: transparent;
    padding: 0.55rem 0.75rem;
    font-size: 0.86rem;
}

.nav-search button {
    min-height: 38px;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    background: #fff;
    color: #050505;
    padding: 0 0.85rem;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}
.nav-search button i{
   font-size: 16px;
}
.brand-mark {
    display: inline-flex;
    gap: 0.7rem;
    align-items: center;
}

.brand-mark span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    font-weight: 800;
}

.brand-mark strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.28rem;
    font-weight: 600;
}

.btn {
    border-radius: 0;
    padding: 0.82rem 1.25rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.btn-lux {
    background: #dbdbdb;
    border: 1px solid #f4f4ef;
    color: #484848;
}

.btn-lux:hover {
   background: #dbdbdb;
    border: 1px solid #f4f4ef;
    color: #484848;
}

.btn-outline-lux {
     border: 1px solid rgb(149 149 149);
    color: #5c5c5c;
}

.btn-outline-lux:hover {
     border: 1px solid rgb(149 149 149);
    color: #5c5c5c;
}

.hero,
.hero-swiper,
.hero-slide {
    min-height: 100vh;
}
.hero,
.hero-swiper {
    min-height: calc(100vh - 90px);
}

.hero-slide {
    min-height: calc(100vh - 90px);
    position: relative;
    display: flex;
    align-items: center;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 90px;
}

/*.hero-overlay {*/
    /*position: absolute;*/
/*    inset: 0;*/
/*    background:*/
/*        radial-gradient(circle at 78% 45%, rgba(255, 255, 255, 0.16), transparent 18rem),*/
/*        linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 28%),*/
/*        linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.82)),*/
/*        linear-gradient(0deg, #040404 0%, transparent 34%);*/
/*}*/

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 880px;
    padding-top: 6rem;
}

.hero h1,
.inner-hero h1,
.detail-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 8vw, 7.8rem);
    line-height: 0.92;
    letter-spacing: 0;
    margin: 0 0 1.2rem;
}

.hero p:not(.eyebrow),
.inner-hero p:not(.eyebrow),
.detail-hero p {
    max-width: 680px;
    color: var(--silver);
    font-size: 1.08rem;
}

.hero-actions,
.detail-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.8rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.4rem;
}

.hero-badges span {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: var(--silver);
    padding: 0.48rem 0.72rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-quick-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(720px, 100%);
    margin-top: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
}

.hero-quick-stats div {
    padding: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-quick-stats div:last-child {
    border-right: 0;
}

.hero-quick-stats strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.6rem, 3vw, 2.8rem);
}

.hero-quick-stats span {
    color: var(--muted);
    font-size: 0.86rem;
}

.eyebrow {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.76rem;
    font-weight: 800;
}

.section-lux {
    padding: clamp(4rem, 8vw, 7rem) 0;
    position: relative;
}

.pattern-band {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        rgba(255, 255, 255, 0.018);
    background-size: 42px 42px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.section-heading.centered {
    display: block;
    text-align: center;
}

.section-heading h2,
.statement-panel h2,
.about-preview h2,
.cta-banner h2,
.contact-panel h2,
.glass-panel h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 4.4rem);
    line-height: 1;
    margin: 0;
}
.statement-panel h2{
    color:#484848;
}
.section-heading a {
    color: var(--silver);
    border-bottom: 1px solid var(--line);
    padding-bottom: 0.35rem;
}

.bike-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.bike-card,
.trust-card,
.statement-panel,
.glass-panel,
.contact-panel,
.lux-form,
.spec-table,
.timeline > div,
.video-card,
.testimonial-grid article,
.seo-content-panel,
.compare-table {
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}
.bike-card{
    background-color: #efefef;
}
.bike-card {
    overflow: hidden;
    transition: transform 240ms ease, border-color 240ms ease;
    position: relative;
    min-height: 650px;
    display: flex;
    flex-direction: column;
}

.bike-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.36);
}

.bike-card-swiper {
    width: 100%;
    height: 380px;
    min-height: 380px;
    overflow: hidden;
    background: #e9e9e9;
}

.bike-card-swiper .swiper-wrapper,
.bike-card-swiper .swiper-slide {
    height: 100%;
}

.bike-card-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.bike-card-body {
    padding: 1.25rem;
    flex: 1;
}

.bike-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #000000;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}

.bike-card-top strong {
    color: #4c4c4c;
    font-size: 1rem;
}

.bike-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    margin: 0.7rem 0 1rem;
    font-size: 1.42rem;
  color: #3e3e3e;
}

.spec-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.48rem;
    padding: 0;
    margin: 0 0 1.2rem;
    list-style: none;
}

.spec-pills li {
    border: 1px solid rgb(110 110 110);
    color: #323232;
    padding: 0.4rem 0.56rem;
    font-size: 0.78rem;
    font-weight: 500;
}

.bike-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
}

.bike-actions .btn {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.statement-panel,
.contact-panel,
.lux-form,
.glass-panel {
    height: 100%;
    padding: clamp(1.5rem, 3vw, 2.4rem);
}

.statement-panel p,
.trust-card p,
.about-preview p,
.timeline p,
.muted {
    color: var(--muted);
}
.trust-card p{
  color:#333;
}
.statement-panel p{
    color:#333;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.trust-card {
    min-height: 220px;
    padding: 1.5rem;
}

.trust-card span,
.timeline span {
    color: var(--muted);
    font-size: 0.8rem;
}
.trust-card span{
        color: #404040;
    font-size: 17px;
}
.trust-card h3,
.timeline h3 {
    margin-top: 2.2rem;
    font-family: Georgia, "Times New Roman", serif;
}
.trust-card h3{
        color: #484848;
}
.brand-strip {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.brand-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.brand-logo-grid div {
    min-height: 118px;
    display: grid;
    place-items: center;
    border-right: 1px solid var(--line);
    color: #f5f5f0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1rem, 1.5vw, 1.28rem);
    text-align: center;
    padding: 1rem;
    transition: background 220ms ease, transform 220ms ease;
}

.brand-logo-grid div:last-child {
    border-right: 0;
}

.brand-logo-grid div:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-6px);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.video-card {
    overflow: hidden;
}

.video-card video {
    width: 100%;
    aspect-ratio: 9 / 12;
    object-fit: cover;
    background: #000;
    display: block;
}

.video-card h3 {
    margin: 0;
    padding: 1rem;
    font-family: Georgia, "Times New Roman", serif;
}

.about-preview {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: #f3f3ee;
    color: #080808;
}

.about-preview .eyebrow {
    color: #161616;
}

.about-preview p {
    color: #343434;
}

.about-preview img,
.showroom-frame img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    box-shadow: 20px 20px 0 #111;
}

.metrics-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--line);
    background: var(--line);
}

.metrics-row div {
    background: rgba(0, 0, 0, 0.58);
    padding: clamp(1.2rem, 3vw, 2rem);
    min-width: 0;
    overflow: hidden;
}

.metrics-row strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 5vw, 4.2rem);
    line-height: 1.05;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.metrics-row strong.amount-metric {
    font-size: clamp(1.05rem, 2.25vw, 2.05rem);
    letter-spacing: -0.035em;
    white-space: nowrap;
}

.metrics-row span {
    color: var(--muted);
}

.testimonials-section {
      background: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.testimonial-grid article {
    padding: clamp(1.4rem, 3vw, 2rem);
}

.testimonial-grid p {
  color: #505050;
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-grid strong,
.testimonial-grid span {
    display: block;
        color: #505050;
}

.testimonial-grid span {
        color: #505050;
}

.faq-section h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
}

.lux-accordion .accordion-item {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    margin-bottom: 0.75rem;
}

.lux-accordion .accordion-button {
    background: transparent;
    color: #fff;
    box-shadow: none;
    font-weight: 800;
    letter-spacing: 0;
}

.lux-accordion .accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, 0.09);
}

.lux-accordion .accordion-button::after {
    filter: invert(1);
}

.lux-accordion .accordion-body {
    color: var(--muted);
}

.seo-content-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.82)),
        url("https://images.unsplash.com/photo-1558981852-426c6c22a060?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.seo-content-panel {
    width: min(980px, 100%);
    padding: clamp(1.5rem, 5vw, 3.4rem);
}

.seo-content-panel h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 5vw, 4.8rem);
    line-height: 1;
}

.seo-content-panel p {
    color: var(--silver);
    font-size: 1.04rem;
}

.cta-banner {
    padding: 6rem 0;
    text-align: center;
    background:
        linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)),
        url("../img/bg.webp") center/cover fixed;
}

.inner-hero,
.detail-hero {
    padding: 10rem 0 5rem;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.64)),
        url("https://images.unsplash.com/photo-1558981852-426c6c22a060?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.inner-hero.compact {
    min-height: 56vh;
    display: flex;
    align-items: center;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.timeline > div {
    padding: 1.4rem;
}

.filter-bar {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 0.8fr 1fr 0.9fr auto auto;
    gap: 0.7rem;
    padding: 1rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 1.2rem;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    background: #343a40;
    color: #fff;
    padding: 0.82rem 1rem;
    outline: none;
}

textarea {
    min-height: 130px;
    resize: vertical;
}

select option {
    background: #070707;
}

.inventory-count,
.empty-state,
.form-status {
    color: var(--muted);
    margin: 1rem 0;
}

.pagination-lux {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination-lux a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
}

.pagination-lux a.active,
.pagination-lux a:hover {
    background: #fff;
    color: #000;
}

.detail-swiper {
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.detail-swiper img {
    width: 100%;
    object-fit: cover;
}

.price-tag {
    display: inline-block;
    margin: 0.5rem 0 1rem;
    padding: 0.6rem 1rem;
    background: #fff;
    color: #000;
    font-weight: 900;
    font-size: 1.3rem;
}

.spec-table {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.spec-table div {
    padding: 1.1rem;
    border-bottom: 1px solid var(--line);
}

.spec-table span {
    display: block;
    color: var(--muted);
    margin-bottom: 0.3rem;
}

.accessory-list {
    padding-left: 1.1rem;
    color: var(--silver);
}

.compare-section {
    background: #f3f3ee;
    color: #080808;
}

.compare-section .eyebrow {
    color: #111;
}

.compare-picker {
    display: grid;
    grid-template-columns: minmax(140px, 0.8fr) minmax(180px, 1fr) auto;
    gap: 0.65rem;
    align-items: center;
}

.compare-section input,
.compare-section select {
    background: rgba(0, 0, 0, 0.06);
    color: #080808;
    border-color: rgba(0, 0, 0, 0.22);
}

.compare-section select option {
    background: #fff;
    color: #080808;
}

.compare-table {
    display: grid;
    color: #080808;
    background: rgba(255, 255, 255, 0.76);
    border-color: rgba(0, 0, 0, 0.14);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.compare-table > div {
    display: grid;
    grid-template-columns: 0.8fr 1fr 1fr;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.compare-table > div:last-child {
    border-bottom: 0;
}

.compare-table span,
.compare-table strong {
    padding: 1rem;
}

.compare-table span {
    color: #555;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
}

.compare-head {
    background: #090909;
    color: #fff;
}

.compare-head span {
    color: #bbb;
}

.contact-panel a {
    display: block;
    color: var(--silver);
    margin: 0.75rem 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.map-frame {
    margin-top: 2rem;
    border: 1px solid var(--line);
    overflow: hidden;
}

.map-frame iframe {
    width: 100%;
    min-height: 360px;
    border: 0;
}


.float-whatsapp {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 50;
       width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: #000;
    font-weight: 900;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}
.float-whatsapp img{
      width: 50px;
    height: 50px;
    object-fit: contain;
}
.admin-body {
    background: #080808;
}

.admin-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.4rem;
    border-bottom: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.86);
    backdrop-filter: blur(16px);
}

.admin-nav div {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.admin-nav a {
    color: var(--silver);
}

.admin-main {
    width: min(1180px, calc(100% - 2rem));
    margin: 2rem auto;
}

.admin-card {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.07);
    padding: 1.4rem;
    margin-bottom: 1rem;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    border-bottom: 1px solid var(--line);
    padding: 0.85rem;
    color: var(--silver);
    vertical-align: top;
}

.login-screen {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.login-panel {
    width: min(440px, 100%);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    box-shadow: var(--shadow);
}

@media (max-width: 991px) {
    .bike-card {
        min-height: 610px;
    }

    .bike-card-swiper {
        height: 340px;
        min-height: 340px;
    }
}

@media (max-width: 640px) {
    .bike-card {
        min-height: 580px;
    }

    .bike-card-swiper {
        height: 320px;
        min-height: 320px;
    }
}

@media (max-width: 991px) {
    .hero-badges{
        display: none;
    }
    .bike-grid,
    .timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nav-search-item {
        width: 100%;
        margin: 1rem 0 0;
    }

    .nav-search {
        width: 100%;
    }

    .filter-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .metrics-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brand-logo-grid,
    .video-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .hero,
    .hero-swiper,
    .hero-slide {
        min-height: auto;
        padding-top: 29px;
    }

    .section-heading {
        display: block;
    }

    .bike-grid,
    .trust-grid,
    .timeline,
    .spec-table,
    .filter-bar,
    .brand-logo-grid,
    .video-grid,
    .testimonial-grid,
    .compare-picker {
        grid-template-columns: 1fr;
    }
.brand-logo-grid{
      grid-template-columns: 1fr 1fr 1fr;
}
    .hero-quick-stats {
        grid-template-columns: 1fr;
    }

    .hero-quick-stats div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    }

    .compare-table {
        overflow-x: auto;
    }

    .compare-table > div {
        min-width: 680px;
    }

    .bike-actions {
        grid-template-columns: 1fr;
    }

    .metrics-row {
        grid-template-columns: 1fr;
    }

    .admin-nav {
        align-items: flex-start;
        flex-direction: column;
    }
}
.logo-img{
    width: 42px;
    height: 42px;
    object-fit: contain;    
}           
.swiper-pagination-bullet-active{
    background:black
}
.swiper-button-next, .swiper-button-prev{
    color:black;
}
/* Parent */
.bike-card-premium{
    position: relative;
    overflow: hidden;
}

/* Premium New Arrival Badge */
.lux-arrival-badge{
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(15, 15, 15, 0.82);
    backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.12);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.08);

    overflow: hidden;
}

/* Glow Effect */
.lux-arrival-glow{
    position: absolute;
    inset: 0;

    background: #1f9711;
    opacity: 0.9;
}

/* Status specific overrides */
.lux-arrival-badge.badge-new .lux-arrival-glow{ background: linear-gradient(90deg,#1f9711,#58d13b); }
.lux-arrival-badge.badge-booked .lux-arrival-glow{ background: linear-gradient(90deg,#6b7280,#9ca3af); }
.lux-arrival-badge.badge-sold .lux-arrival-glow{ background: linear-gradient(90deg,#ef4444,#b91c1c); }
.lux-arrival-badge.badge-draft .lux-arrival-glow{ background: linear-gradient(90deg,#6b7280,#94a3b8); }

.lux-arrival-badge.badge-new .lux-arrival-text,
.lux-arrival-badge.badge-booked .lux-arrival-text,
.lux-arrival-badge.badge-sold .lux-arrival-text,
.lux-arrival-badge.badge-draft .lux-arrival-text{ color: #fff; }

/* Text */
.lux-arrival-text{
    position: relative;
    z-index: 2;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #fff;
}

/* Optional Hover Effect */
.bike-card-premium:hover .lux-arrival-badge{
    transform: translateY(-2px);
    transition: all 0.35s ease;
}
.video-embed{
    width: clamp(220px, 28vw, 420px);
    max-width: 100%;
    aspect-ratio: 9 / 16;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: #000;
    border-radius: 12px;
}

.video-embed iframe,
.video-embed video,
.video-embed blockquote{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.category-strip {
    width: 100%;
    padding: clamp(2.5rem, 6vw, 5rem) 0;
    background: #f9f9f9;
    overflow-x: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.category-strip .container-fluid {
    max-width: 100%;
}

.category-strip .section-heading {
    margin-bottom: 2.2rem;
}

.category-strip .section-heading h2 {
    color: #464646;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.7rem);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    text-align: center;
    text-decoration: none;
    width: 100%;
    max-width: 140px;
    margin: 0 auto;
}

.category-item span {
  width: 140px;
    height: 140px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    transition: transform 240ms ease, box-shadow 240ms ease;
    border: 1px solid #a1a1a1;
}

.category-item img {
    width: 110%;
    height: 78%;
    object-fit: cover;
    object-position: center;
    mix-blend-mode: multiply;
    filter: contrast(1.08) saturate(0.85);
}

.category-item-exclusive span {
    background: #000;
}

.category-item-exclusive img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: normal;
    filter: none;
}

.category-item strong {
    color: #4c4c4c;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
    word-break: normal;
}

.category-item:hover span {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
}

.category-item:hover strong {
    color: var(--silver);
}

/* Tablet */
@media (max-width: 991px) {
    .category-strip {
        padding: 3rem 0;
    }

    .category-item span {
        width: 100px;
        height: 100px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .category-strip {
        padding: 2.4rem 0;
    }

    .category-strip .section-heading {
        margin-bottom: 1.5rem;
    }

    .category-strip .section-heading h2 {
        font-size: 1.45rem;
    }

    .category-item {
        max-width: 115px;
        gap: 0.5rem;
    }

    .category-item span {
        width: 82px;
        height: 82px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    }

    .category-item img {
        width: 112%;
        height: 80%;
    }

    .category-item strong {
        font-size: 0.68rem;
    }
}

/* Very small mobile */
@media (max-width: 360px) {
    .category-item span {
             width: 102px;
        height: 102px;
    }

    .category-item strong {
        font-size: 0.64rem;
    }
}
.navbar-toggler {
    border: none !important;
}

.home-banner-section {
    width: 100%;
    overflow: hidden;
    margin-top: 0px;
}

#heroBannerCarousel {
    width: 100%;
    overflow: hidden;
}

#heroBannerCarousel .carousel-inner,
#heroBannerCarousel .carousel-item {
    width: 100%;
}

.home-banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

/* Tablet */
@media (max-width: 991px) {
    .home-banner-section {
        margin-top: 70px;
    }

    .home-banner-img {
        height: 380px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .home-banner-section {
        margin-top: 65px;
    }

    .home-banner-img {
        height: auto;
        object-fit: contain;
    }

    #heroBannerCarousel .carousel-control-prev,
    #heroBannerCarousel .carousel-control-next {
        display: none;
    }
}
/* =========================
RIGHT SIDE SOCIAL UI
========================= */

.kiyo-premium-social-fixed{
    position: fixed;
    right: 18px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999999;
}

.kiyo-social-btn{
width: 48px;
    height: 48px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 10px 30px rgba(0,0,0,0.25),
        inset 0 1px 1px rgba(255,255,255,0.15);
    transition: all .4s ease;
    backdrop-filter: blur(12px);
}

.kiyo-social-btn svg{
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 2;
}

.kiyo-social-btn::before{
    content: "";
    position: absolute;
    width: 180%;
    height: 180%;
    background: rgba(255,255,255,0.08);
    transform: rotate(25deg);
    top: -120%;
    left: -50%;
    transition: .6s ease;
}

.kiyo-social-btn:hover::before{
    top: -30%;
}

.kiyo-social-btn:hover{
    transform: translateY(-6px) scale(1.08);
}

/* ICON COLORS */

.kiyo-facebook-real{
    background: linear-gradient(135deg,#1877F2,#0D47C7);
}

.kiyo-instagram-real{
    background: linear-gradient(135deg,#ff0069,#ff7a00,#833ab4);
}

.kiyo-call-real{
    background: linear-gradient(135deg,#1f1f1f,#575757);
}

.kiyo-whatsapp-real{
    background: linear-gradient(135deg,#00D95F,#00993C);
}


/* =========================
LEFT ENQUIRY BUTTON
========================= */

.kiyo-enquiry-fixed-wrap{
    position: fixed;
    left: 18px;
    bottom: 22px;
    z-index: 999999;
}

.kiyo-premium-enquiry-btn{
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    border-radius: 100px;
    overflow: hidden;
    text-decoration: none;
    background: linear-gradient(135deg,#111,#2c2c2c);
    box-shadow:
        0 10px 35px rgba(0,0,0,0.35),
        inset 0 1px 1px rgba(255,255,255,0.08);
    transition: .4s ease;
}

.kiyo-premium-enquiry-btn:hover{
    transform: translateY(-5px);
}

.kiyo-enquiry-ripple{
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(255,255,255,0.05);
    animation: kiyoRippleEffect 2s infinite;
}

@keyframes kiyoRippleEffect{
    0%{
        transform: scale(1);
        opacity: .7;
    }
    100%{
        transform: scale(1.08);
        opacity: 0;
    }
}

.kiyo-enquiry-round-icon{
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff, #959595);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 6px 20px rgb(108 108 108);
}

.kiyo-enquiry-round-icon svg{
    width: 22px;
    height: 22px;
    color: #111;
}

.kiyo-enquiry-label{
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .4px;
    position: relative;
    z-index: 2;
    white-space: nowrap;
}


/* =========================
RESPONSIVE
========================= */
.hero-section{
    height: 10vh;
}
@media(max-width:768px){
.hero-section{
    height: 4vh;
}
    .kiyo-premium-social-fixed{
                 right: 19px;
        bottom: 15px;
        gap: 10px;
    }

    .kiyo-social-btn{
            width: 37px;
        height: 37px;
        border-radius: 16px;
    }

    .kiyo-social-btn svg{
        width: 24px;
        height: 24px;
    }

    .kiyo-enquiry-fixed-wrap{
        left: 12px;
        bottom: 15px;
    }

    .kiyo-premium-enquiry-btn{
     padding: 10px 10px;
        gap: 10px;
    }

    .kiyo-enquiry-round-icon{
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .kiyo-enquiry-label{
               display: none;
    }

}
.uniqueBikeSwiper{
    position:relative;
    overflow:hidden;
    border-radius:22px;
}

.bike-swiper-image{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:22px;
}

/* Premium Navigation Buttons */
.unique-bike-prev-btn,
.unique-bike-next-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:52px;
    height:52px;
    border-radius:50%;
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    background:rgba(255,255,255,0.14);
    border:1px solid rgba(255,255,255,0.22);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:20;
    transition:all 0.35s ease;
    box-shadow:
        0 10px 30px rgba(0,0,0,0.25),
        inset 0 1px 1px rgba(255,255,255,0.25);
}

.unique-bike-prev-btn{
    left:18px;
}

.unique-bike-next-btn{
    right:18px;
}

.unique-bike-prev-btn i,
.unique-bike-next-btn i{
    color:#fff;
    font-size:18px;
    transition:0.3s ease;
}

/* Hover Effects */
.unique-bike-prev-btn:hover,
.unique-bike-next-btn:hover{
    background:#ffffff;
    transform:translateY(-50%) scale(1.08);
}

.unique-bike-prev-btn:hover i,
.unique-bike-next-btn:hover i{
    color:#111;
}

/* Mobile */
@media(max-width:768px){

    .unique-bike-prev-btn,
    .unique-bike-next-btn{
        width:42px;
        height:42px;
    }

    .unique-bike-prev-btn{
        left:10px;
    }

    .unique-bike-next-btn{
        right:10px;
    }

    .unique-bike-prev-btn i,
    .unique-bike-next-btn i{
        font-size:14px;
    }

}
.testimonials-section{
    position: relative;
    padding: 20px 0 70px;
    overflow: hidden;
}

.royalTestimonialSwiper{
    padding: 10px 5px 60px;
}

.royal-review-card{
    position: relative;
    background: linear-gradient(145deg,#ffffff,#f7f7f7);
    border-radius: 28px;
    padding: 35px;
    box-shadow: 
        0 10px 35px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.7);
    border: 1px solid rgba(0,0,0,0.05);
    transition: 0.4s ease;
    overflow: hidden;
}

.royal-review-card:hover{
    transform: translateY(-8px);
    box-shadow: 
        0 18px 45px rgba(0,0,0,0.12),
        inset 0 1px 0 rgba(255,255,255,0.8);
}

.royal-quote-icon{
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg,#111,#2e2e2e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin-bottom: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.royal-review-text{
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 5px;
     display: -webkit-box;
    -webkit-line-clamp: 4; /* Number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.royal-review-footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top:7px;
}

.royal-user-box{
    display: flex;
    align-items: center;
}

.royal-user-image{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 14px;
    border: 3px solid #fff;
    box-shadow: 0 5px 18px rgba(0,0,0,0.12);
}

.royal-user-name{
    display: block;
    font-size: 16px;
    color: #111;
}

.royal-google-text{
    font-size: 13px;
    color: #777;
    margin-top: 2px;
}

.royal-google-logo{
    width: 110px;
    object-fit: contain;
}

/* PREMIUM BUTTONS */

.royal-swiper-button-next,
.royal-swiper-button-prev{
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    color: #111;
    transition: 0.35s ease;
}

.royal-swiper-button-next:hover,
.royal-swiper-button-prev:hover{
    background: #111;
    color: #fff;
    transform: translateY(-3px);
}

.royal-swiper-button-next::after,
.royal-swiper-button-prev::after{
    display: none;
}

/* PAGINATION */

.royal-swiper-pagination{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.royal-swiper-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: #c7c7c7;
    opacity: 1;
    transition: 0.3s;
}

.royal-swiper-pagination .swiper-pagination-bullet-active{
    width: 34px;
    border-radius: 30px;
    background: #111;
}

/* RESPONSIVE */

@media(max-width:768px){

    .royal-review-card{
        padding: 25px;
        border-radius: 22px;
    }

    .royal-review-text{
        font-size: 14px;
        line-height: 1.8;
    }

    .royal-google-logo{
        width: 90px;
    }

    .royal-swiper-button-next,
    .royal-swiper-button-prev{
        width: 45px;
        height: 45px;
    }

}
.crz-about-container{
    width:92%;
    max-width:1320px;
    margin:auto;
}

/* HERO */

.crz-about-hero-section{
    min-height:95vh;
    background:#000;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.crz-about-hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(to right, rgba(0,0,0,.94), rgba(0,0,0,.55)),
    url('../img/bg.webp');
    background-size:cover;
    background-position:center;
}

.crz-about-hero-content{
    position:relative;
    z-index:2;
    max-width:760px;
    padding:100px 0;
    color:#fff;
}

.crz-about-top-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 22px;
    border-radius:100px;
    border:1px solid rgba(255,255,255,.15);
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(10px);
    font-size:14px;
    letter-spacing:1px;
    margin-bottom:30px;
}

.crz-about-hero-content h1{
    font-size:72px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:800;
}

.crz-about-hero-content h1 span{
    color:transparent;
    -webkit-text-stroke:1px #fff;
}

.crz-about-hero-content p{
    font-size:18px;
    line-height:1.9;
    color:#d1d1d1;
    max-width:650px;
}

.crz-about-hero-buttons{
    display:flex;
    gap:18px;
    margin-top:40px;
    flex-wrap:wrap;
}

.crz-about-dark-btn,
.crz-about-light-btn{
    padding:16px 34px;
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
    transition:.4s ease;
}

.crz-about-dark-btn{
    background:#fff;
    color:#000;
}

.crz-about-dark-btn:hover{
    transform:translateY(-5px);
}

.crz-about-light-btn{
    border:1px solid rgba(255,255,255,.2);
    color:#fff;
}

.crz-about-light-btn:hover{
    background:#fff;
    color:#000;
}

/* COMMON */

.crz-about-section-space{
    padding:110px 0;
}

/* GRID */

.crz-about-grid-layout{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

/* CARDS */

.crz-about-white-card,
.crz-about-black-card{
    border-radius:32px;
    padding:55px;
}

.crz-about-white-card{
    background:#fff;
    border:1px solid #ededed;
    box-shadow:0 15px 50px rgba(0,0,0,.05);
}

.crz-about-black-card{
    background:#000;
    color:#fff;
}

.crz-about-icon-box{
    width:78px;
    height:78px;
    border-radius:50%;
    background:#000;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:30px;
}

.crz-about-icon-light{
    background:#fff;
    color:#000;
}

.crz-about-white-card h2,
.crz-about-black-card h2{
    font-size:42px;
    margin-bottom:24px;
}

.crz-about-white-card p{
    color:#666;
    line-height:1.9;
    font-size:17px;
}

.crz-about-check-list{
    list-style:none;
}

.crz-about-check-list li{
    display:flex;
    gap:14px;
    margin-bottom:20px;
    line-height:1.8;
    color:#ddd;
}

.crz-about-check-list i{
    margin-top:6px;
}

/* DARK SECTION */

.crz-about-dark-section{
    background:#000;
    padding:120px 0;
}

.crz-about-heading-center{
    text-align:center;
    color:#fff;
    margin-bottom:70px;
}

.crz-about-heading-center span{
    color:#999;
    letter-spacing:3px;
    font-size:14px;
}

.crz-about-heading-center h2{
    font-size:58px;
    margin-top:18px;
}

.crz-about-feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.crz-about-feature-card{
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:28px;
    padding:40px 30px;
    transition:.4s ease;
}

.crz-about-feature-card:hover{
    transform:translateY(-8px);
    background:#fff;
    color:#000;
}

.crz-about-feature-card i{
    font-size:40px;
    margin-bottom:24px;
}

.crz-about-feature-card h3{
    font-size:22px;
    line-height:1.6;
}

/* SPECIALIZATION */

.crz-about-specialization-wrapper{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:60px;
    align-items:center;
}

.crz-about-small-heading{
    letter-spacing:3px;
    color:#777;
    font-size:14px;
}

.crz-about-specialization-content h2{
    font-size:58px;
    line-height:1.2;
    margin:20px 0;
}

.crz-about-specialization-content p{
    color:#666;
    line-height:1.9;
    font-size:17px;
}

.crz-about-brand-list{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    margin-top:35px;
}

.crz-about-brand-pill{
    padding:14px 24px;
    background:#000;
    color:#fff;
    border-radius:100px;
    font-size:15px;
}

.crz-about-special-paragraph{
    margin-top:40px;
}

.crz-about-bike-visual{
    background:#000;
    border-radius:38px;
    height:520px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden;
}

.crz-about-bike-visual::before{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
}

.crz-about-bike-visual i{
    position:relative;
    z-index:2;
    font-size:140px;
    color:#fff;
}

/* EXPERIENCE */

.crz-about-experience-section{
    background:#f7f7f7;
    padding:120px 0;
}

.crz-about-experience-box{
    background:#000;
    color:#fff;
    border-radius:40px;
    padding:90px 70px;
    text-align:center;
}

.crz-about-experience-box span{
    letter-spacing:3px;
    color:#999;
    font-size:14px;
}

.crz-about-experience-box h2{
    font-size:56px;
    line-height:1.3;
    margin:30px auto;
    max-width:1000px;
}

.crz-about-experience-box p{
    max-width:760px;
    margin:auto;
    color:#ccc;
    line-height:1.9;
    font-size:17px;
}

.crz-about-final-line{
    margin-top:40px;
    font-size:30px;
    font-weight:700;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .crz-about-feature-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .crz-about-grid-layout,
    .crz-about-specialization-wrapper{
        grid-template-columns:1fr;
    }

    .crz-about-specialization-image{
        order:-1;
    }

}

@media(max-width:768px){

    .crz-about-section-space,
    .crz-about-dark-section,
    .crz-about-experience-section{
        padding:80px 0;
    }

    .crz-about-hero-content{
        padding:90px 0;
    }

    .crz-about-hero-content h1{
        font-size:42px;
    }

    .crz-about-white-card,
    .crz-about-black-card,
    .crz-about-experience-box{
        padding:35px;
    }

    .crz-about-feature-grid{
        grid-template-columns:1fr;
    }

    .crz-about-heading-center h2,
    .crz-about-specialization-content h2,
    .crz-about-experience-box h2{
        font-size:34px;
    }

    .crz-about-bike-visual{
        height:320px;
    }

    .crz-about-bike-visual i{
        font-size:90px;
    }

    .crz-about-final-line{
        font-size:24px;
    }

}

/* CRM / Role based admin updates */
.admin-user-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 0.8rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--silver);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.86rem;
}

.admin-muted {
    color: var(--muted);
    margin: 0.25rem 0 0;
}

.admin-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.admin-table-wrap .admin-table {
    min-width: 980px;
}

.admin-table-wrap .admin-table-crm {
    min-width: 1320px;
}

.admin-table-crm input,
.admin-table-crm select,
.admin-table-crm textarea {
    min-height: 40px;
    padding: 0.55rem 0.65rem;
    font-size: 0.9rem;
}

.admin-table-crm textarea {
    min-width: 180px;
    min-height: 72px;
}

.admin-table-crm .crm-price-col,
.admin-table-crm .crm-price-cell {
    min-width: 190px;
    width: 190px;
}

.admin-table-crm .crm-price-input {
    min-width: 175px;
    font-size: 1rem;
    font-weight: 800;
}

.admin-table-crm .crm-stage-col,
.admin-table-crm .crm-stage-cell {
    min-width: 145px;
    width: 145px;
}

.admin-table-crm .crm-stage-select {
    min-width: 130px;
    width: 100%;
}

.table-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    min-width: 70px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.status-sell,
.role-super_admin {
    background: rgba(255, 193, 8, 0.16);
    border-color: rgba(255, 193, 8, 0.45);
}

.status-buy,
.role-sales {
    background: rgba(52, 211, 153, 0.13);
    border-color: rgba(52, 211, 153, 0.38);
}

.role-admin {
    background: rgba(96, 165, 250, 0.14);
    border-color: rgba(96, 165, 250, 0.42);
}

.mini-metrics {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.mini-metrics span {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.06);
    padding: 0.55rem 0.75rem;
    color: var(--silver);
}

.filter-card input,
.filter-card select {
    min-height: 44px;
}

.metrics-row-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metrics-row-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 768px) {
    .admin-main {
        width: min(100% - 1rem, 1180px);
    }

    .admin-nav {
        align-items: flex-start;
    }

    .admin-nav div {
        width: 100%;
        gap: 0.6rem;
    }

    .metrics-row-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .metrics-row-3 {
        grid-template-columns: 1fr;
    }

    .metrics-row strong.amount-metric {
        font-size: clamp(0.95rem, 4.5vw, 1.35rem);
    }
}


/* Sales Report page updates */
.report-filter-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.report-filter-form {
    display: flex;
    align-items: end;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.report-filter-form select {
    min-width: 190px;
    min-height: 44px;
}

.sales-report-filter label {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 0.35rem;
}

.report-person-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.report-period-pill {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--silver);
    padding: 0.75rem 1rem;
    font-weight: 800;
}

.report-mini-table {
    min-width: 560px !important;
}

@media (max-width: 768px) {
    .report-filter-form,
    .report-filter-form select,
    .report-filter-form .btn {
        width: 100%;
    }
}

/* Make native date picker icon visible on dark admin inputs */
.admin-body input[type="date"] {
    color-scheme: dark;
}

.admin-body input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(2);
    opacity: 1;
    cursor: pointer;
}


/* Floating contact popup */
.kiyo-premium-enquiry-btn {
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

.contact-popup-open {
    overflow: hidden;
}

.contact-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.contact-popup-overlay.is-active {
    display: flex;
}

.contact-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(8px);
}

.contact-popup-box {
    position: relative;
    width: min(620px, 94vw);
    max-height: 88vh;
    overflow-y: auto;
    background: linear-gradient(145deg, #111, #050505);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 20px;
    padding: 1.35rem 1.45rem;
    box-shadow: 0 24px 70px rgba(0,0,0,0.52);
    color: #fff;
}

.contact-popup-box h2 {
    color: #fff;
    margin-bottom: 0.35rem;
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}

.popup-muted {
    color: rgba(255,255,255,0.68);
    margin-bottom: 0.95rem;
    font-size: 0.92rem;
}

.contact-popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
}

.contact-popup-form {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.contact-popup-form .row {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
}

.contact-popup-form input,
.contact-popup-form select,
.contact-popup-form textarea {
    min-height: 42px;
    padding: 0.58rem 0.78rem;
    font-size: 0.92rem;
}

.contact-popup-form textarea {
    min-height: 86px;
}

@media (max-width: 575px) {
    .contact-popup-overlay {
        padding: 0.65rem;
    }

    .contact-popup-box {
        width: min(92vw, 420px);
        max-height: 86vh;
        padding: 1rem;
        border-radius: 16px;
    }

    .contact-popup-box .eyebrow {
        margin-bottom: 0.35rem;
        font-size: 0.68rem;
    }

    .contact-popup-box h2 {
        font-size: 1.28rem;
    }

    .popup-muted {
        margin-bottom: 0.75rem;
        font-size: 0.84rem;
    }

    .contact-popup-form .row {
        --bs-gutter-x: 0.55rem;
        --bs-gutter-y: 0.55rem;
    }

    .contact-popup-form input,
    .contact-popup-form select,
    .contact-popup-form textarea {
        min-height: 38px;
        padding: 0.5rem 0.68rem;
        font-size: 0.86rem;
    }

    .contact-popup-form textarea {
        min-height: 72px;
    }

    .contact-popup-close {
        top: 8px;
        right: 9px;
        width: 30px;
        height: 30px;
        font-size: 1.28rem;
    }
}


/* Admin inventory search and image manager */
.admin-search-bar {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto auto;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1rem;
}

.admin-table-responsive {
    width: 100%;
    overflow-x: auto;
}

.admin-bike-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    display: block;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.08);
}

.admin-action-cell {
    white-space: nowrap;
}

.bike-name-status {
    display: block;
    min-height: 20px;
    margin-top: 0.35rem;
    font-size: 0.88rem;
}

.bike-name-status.is-error {
    color: #ff8f8f;
    font-weight: 700;
}

.bike-name-status.is-ok {
    color: #8ff0b0;
}

.bike-image-manager h2 {
    margin-bottom: 1rem;
}

.bike-image-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.bike-image-card {
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.06);
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.bike-image-preview {
    width: 100%;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--line);
    background: rgba(0,0,0,0.2);
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.bike-image-card img,
.image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: grid;
    place-items: center;
    color: var(--muted);
}

.image-file-input {
    width: 100%;
    min-height: auto;
    padding: 0.55rem;
    font-size: 0.82rem;
    margin-bottom: 0.65rem;
}

.image-card-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: auto;
}

.image-card-actions .btn {
    width: 100%;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bike-card-swiper .swiper-pagination,
.bike-card-swiper .swiper-pagination-bullet {
    display: none !important;
}

@media (max-width: 991px) {
    .bike-image-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .admin-search-bar,
    .bike-image-cards {
        grid-template-columns: 1fr;
    }
}
