/* ─── HERO ───────────────────────────────────────────────── */
.vehicle-hero{position:relative;width:100%;background:#111;}
.vehicle-hero__bg{width:100%;height:72vh;min-height:480px;max-height:700px;overflow:hidden;}
.vehicle-hero__bg img{width:100%;height:100%;object-fit:cover;opacity:.92;}
.vehicle-hero__bg--placeholder{width:100%;height:72vh;min-height:480px;background:linear-gradient(135deg,#1c1c1c 0%,#2e2e2e 100%);}

/* Breadcrumb over hero */
.vehicle-hero__breadcrumb{position:absolute;top:1.5rem;left:0;width:100%;padding:0 2rem;z-index:2;}
.vehicle-hero__breadcrumb-inner{max-width:1280px;margin:0 auto;}
.breadcrumb{display:inline-flex;align-items:center;gap:.4rem;background:rgba(0,0,0,.35);backdrop-filter:blur(4px);padding:.35rem .9rem;border-radius:100px;font-size:.78rem;color:rgba(255,255,255,.8);}
.breadcrumb a{color:rgba(255,255,255,.75);transition:color .2s;}
.breadcrumb a:hover{color:var(--gold-light);}
.breadcrumb span{opacity:.5;}

/* Title bar below image */
.vehicle-title-bar{background:#fff;padding:2rem 2rem 0;}
.vehicle-title-bar__inner{max-width:1280px;margin:0 auto;display:flex;align-items:flex-end;justify-content:space-between;gap:1.5rem;flex-wrap:wrap;}
.vehicle-title-bar__left{}
.vehicle-category-tag{display:inline-block;font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--navy);border:1.5px solid var(--navy-mid);padding:.2rem .7rem;border-radius:100px;margin-bottom:.6rem;}
.vehicle-title-bar__title{font-family:'Playfair Display',serif;font-size:clamp(1.75rem,4vw,2.75rem);font-weight:700;color:#111;line-height:1.15;}
.vehicle-title-bar__price{text-align:right;}
.vehicle-price-label{font-size:.75rem;color:#999;text-transform:uppercase;letter-spacing:.05em;display:block;margin-bottom:.2rem;}
.vehicle-price-value{font-family:'Playfair Display',serif;font-size:1.75rem;font-weight:700;color:var(--navy);white-space:nowrap;}

/* ─── LAYOUT ─────────────────────────────────────────────── */
.vehicle-layout{max-width:1280px;margin:0 auto;padding:2.5rem 2rem 4rem;display:grid;grid-template-columns:1fr 360px;gap:3rem;align-items:start;}

/* ─── SECTIONS (main) ────────────────────────────────────── */
.vsection{margin-bottom:2.5rem;}
.vsection__title{font-family:'Playfair Display',serif;font-size:1.35rem;font-weight:700;color:#111;margin-bottom:1.25rem;padding-bottom:.75rem;border-bottom:2px solid #f0ebe3;}

/* Specs icon grid */
.vspecs-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(130px,1fr));gap:1rem;}
.vspecs-item{background:#faf9f7;border:1px solid #ede9e1;border-radius:10px;padding:1.1rem 1rem;text-align:center;}
.vspecs-item__icon{font-size:1.5rem;margin-bottom:.4rem;}
.vspecs-item__label{font-size:.7rem;color:#999;text-transform:uppercase;letter-spacing:.05em;margin-bottom:.2rem;}
.vspecs-item__value{font-size:.95rem;font-weight:700;color:#111;}

/* Features list */
.vfeatures-list{list-style:none;columns:2;gap:1rem;}
.vfeatures-list li{padding:.35rem 0 .35rem 1.4rem;position:relative;font-size:.9rem;color:#444;break-inside:avoid;}
.vfeatures-list li::before{content:'✓';position:absolute;left:0;color:var(--navy);font-weight:700;}

/* Description */
.vdescription{font-size:.975rem;line-height:1.8;color:#444;}

/* Gallery */
.vgallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:.6rem;}
.vgallery-item{display:block;border-radius:8px;overflow:hidden;aspect-ratio:4/3;cursor:pointer;}
.vgallery-item--main{grid-column:span 2;grid-row:span 2;}
.vgallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .4s;pointer-events:none;}
.vgallery-item:hover img{transform:scale(1.05);}

/* Pricing table */
.vprice-table{border:1px solid #ece9e1;border-radius:10px;overflow:hidden;}
.vprice-row{display:flex;justify-content:space-between;align-items:center;padding:1rem 1.25rem;border-bottom:1px solid #f0ede6;}
.vprice-row:last-child{border-bottom:none;}
.vprice-row:nth-child(even){background:#faf9f7;}
.vprice-row:first-child{background:var(--navy);padding:1rem 1.25rem;}
.vprice-row:first-child .vprice-period,.vprice-row:first-child .vprice-amount{color:#fff;font-size:.75rem;letter-spacing:.05em;text-transform:uppercase;}
.vprice-period{color:var(--text-mid);font-size:.9rem;}
.vprice-amount{font-weight:700;color:var(--navy);font-size:1rem;}
.vprice-note{margin-top:.6rem;font-size:.75rem;color:#aaa;}

/* News */
.vnews-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:1.25rem;}
.vnews-card{border:1px solid #ece9e1;border-radius:8px;overflow:hidden;background:#faf9f7;transition:box-shadow .25s;}
.vnews-card:hover{box-shadow:0 4px 20px rgba(0,0,0,.08);}
.vnews-card__thumb{display:block;aspect-ratio:16/9;overflow:hidden;}
.vnews-card__thumb img{width:100%;height:100%;object-fit:cover;transition:transform .4s;}
.vnews-card:hover .vnews-card__thumb img{transform:scale(1.05);}
.vnews-card__body{padding:.9rem;}
.vnews-card__date{font-size:.72rem;color:#aaa;display:block;margin-bottom:.3rem;}
.vnews-card__title{font-size:.875rem;font-weight:600;line-height:1.4;margin-bottom:.35rem;}
.vnews-card__title a{color:var(--text);transition:color .2s;}
.vnews-card__title a:hover{color:var(--navy);}
.vnews-card__excerpt{font-size:.8rem;color:#777;line-height:1.5;}

/* ─── SIDEBAR ────────────────────────────────────────────── */
.vehicle-sidebar{position:sticky;top:86px;display:flex;flex-direction:column;gap:1.5rem;}

/* Booking card */
.vbook-card{background:#fff;border:1px solid #e8e4dc;border-radius:12px;overflow:hidden;box-shadow:0 4px 24px rgba(0,0,0,.07);}
.vbook-card__header{background:var(--navy);padding:1.25rem 1.5rem;}
.vbook-card__header h3{font-family:'Playfair Display',serif;font-size:1.1rem;color:#fff;margin-bottom:.2rem;}
.vbook-card__header p{font-size:.8rem;color:rgba(255,255,255,.6);}
.vbook-card__price-line{font-family:'Playfair Display',serif;font-size:1.5rem;font-weight:700;color:var(--gold-light);margin-top:.4rem;}
.vbook-card__body{padding:1.5rem;display:flex;flex-direction:column;gap:.75rem;}
.vbook-card__body input,.vbook-card__body textarea{width:100%;padding:.7rem 1rem;border:1.5px solid var(--border);border-radius:7px;font-family:'Inter',sans-serif;font-size:.875rem;color:var(--text);transition:border-color .2s;background:#fdfcfb;}
.vbook-card__body input:focus,.vbook-card__body textarea:focus{outline:none;border-color:var(--navy);background:#fff;}
.vbook-card__body textarea{resize:vertical;min-height:80px;}
.btn-book{width:100%;padding:.9rem;background:var(--btn-primary-bg);color:#fff;font-family:'Inter',sans-serif;font-size:.95rem;font-weight:700;border:none;border-radius:7px;cursor:pointer;transition:background .2s;letter-spacing:.02em;}
.btn-book:hover{background:var(--btn-primary-hover);}
.vbook-note{text-align:center;font-size:.75rem;color:#aaa;margin-top:.25rem;}

/* Quick specs in sidebar */
.vside-specs{background:#faf9f7;border:1px solid #ece9e1;border-radius:12px;padding:1.25rem;}
.vside-specs__title{font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:#aaa;margin-bottom:1rem;}
.vside-specs__list{list-style:none;display:flex;flex-direction:column;gap:.5rem;}
.vside-specs__list li{display:flex;justify-content:space-between;padding:.45rem 0;border-bottom:1px solid #ede9e1;font-size:.875rem;}
.vside-specs__list li:last-child{border-bottom:none;}
.vside-specs__key{color:#888;}
.vside-specs__val{font-weight:600;color:#111;}

/* ─── CAROUSEL ───────────────────────────────────────────── */
.vcarousel-section{background:#111;padding:4.5rem 0;overflow:hidden;}
.vcarousel-section__inner{max-width:1280px;margin:0 auto;padding:0 2rem;}
.vcarousel-section__head{display:flex;justify-content:space-between;align-items:center;margin-bottom:2rem;}
.vcarousel-section__title{font-family:'Playfair Display',serif;font-size:1.6rem;font-weight:700;color:#fff;}
.vcarousel-section__link{font-size:.85rem;color:var(--gold);font-weight:600;transition:opacity .2s;}
.vcarousel-section__link:hover{opacity:.75;}

.vcarousel-section__nav{display:flex;align-items:center;gap:.6rem;}
.vcarousel{position:relative;overflow:hidden;}
.vcarousel__track{display:flex;gap:1.25rem;transition:transform .4s ease;}
.vcarousel__slide{flex:0 0 260px;}

.vcslide{display:block;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08);border-radius:10px;overflow:hidden;transition:background .3s,transform .3s;}
.vcslide:hover{background:rgba(255,255,255,.1);transform:translateY(-4px);}
.vcslide__img{aspect-ratio:16/10;overflow:hidden;background:rgba(255,255,255,.04);}
.vcslide__img img{width:100%;height:100%;object-fit:cover;transition:transform .4s;}
.vcslide:hover .vcslide__img img{transform:scale(1.05);}
.vcslide__img-ph{width:100%;height:100%;background:rgba(255,255,255,.04);}
.vcslide__body{padding:.9rem;}
.vcslide__name{font-family:'Playfair Display',serif;font-size:.95rem;font-weight:600;color:#fff;margin-bottom:.3rem;}
.vcslide__meta{display:flex;justify-content:space-between;align-items:center;}
.vcslide__cap{font-size:.75rem;color:rgba(255,255,255,.45);}
.vcslide__price{font-size:.82rem;color:var(--gold);font-weight:600;}

.vcarousel__btn{width:38px;height:38px;background:rgba(255,255,255,.12);border:none;border-radius:50%;color:#fff;font-size:1rem;cursor:pointer;transition:background .2s;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.vcarousel__btn:hover{background:rgba(74,104,152,.75);}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media(max-width:1024px){
    .vehicle-layout{grid-template-columns:1fr;}
    .vehicle-sidebar{position:static;}
    .vbook-card{max-width:500px;}
}
@media(max-width:768px){
    .vehicle-hero__bg{height:50vh;min-height:300px;}
    .vehicle-title-bar__inner{flex-direction:column;align-items:flex-start;}
    .vehicle-title-bar__price{text-align:left;}
    .vgallery-grid{grid-template-columns:repeat(2,1fr);}
    .vgallery-item--main{grid-column:span 1;grid-row:span 1;}
    .vspecs-grid{grid-template-columns:repeat(2,1fr);}
    .vfeatures-list{columns:1;}
    #primary-menu{gap:1rem;flex-wrap:wrap;}
}
