/* Luxury Website Styles - fulfills luxury_website_requirements.csv */
:root{
  --navy:#374164;
  --accent:#DC485B;
  --white:#FFFFFF;
  --light:#F2F4F7;
  --shadow:0 8px 24px rgba(0,0,0,.1);
  --radius:12px;
  --s-8:8px;--s-16:16px;--s-24:24px;--s-32:32px;--s-48:48px;--s-64:64px;--s-96:96px;
}

*{box-sizing:border-box}
html,body{min-height:100vh}
body{
  margin:0;
  padding:0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: rgba(55,65,100,.9);
  background:#f5f5f5;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  display:flex;
  justify-content:center;
  align-items:center;
  position:relative;
}
.page-card{
  width:100%;
  max-width:1200px;
  height:722px;
  background:#fff;
  border-radius:16px;
  box-shadow:0 8px 32px rgba(0,0,0,0.12);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  position:relative;
  z-index:10;
}
/* 8 decorative dots with different sizes - DVD screensaver style */
.dot{
  position:fixed;
  top:0;
  left:0;
  background:var(--accent);
  border-radius:50%;
  z-index:1;
  pointer-events:none;
  will-change:transform;
}
.dot-1{
  width:40px;
  height:40px;
}
.dot-2{
  width:28px;
  height:28px;
}
.dot-3{
  width:15px;
  height:15px;
}
.dot-4{
  width:35px;
  height:35px;
}
.dot-5{
  width:22px;
  height:22px;
}
.dot-6{
  width:32px;
  height:32px;
}
.dot-7{
  width:18px;
  height:18px;
}
.dot-8{
  width:25px;
  height:25px;
}
a{color:var(--navy);text-decoration:none}
a:hover{text-decoration:underline}
:focus-visible{outline:2px auto}
.skip-link{
  position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;
}
.skip-link:focus{left:16px;top:16px;width:auto;height:auto;background:#fff;padding:8px;border-radius:6px;box-shadow:var(--shadow)}

.container{max-width:1100px;margin:0 50px;padding:0 var(--s-32)}

header{
  position:relative;z-index:100;background: linear-gradient(to right, var(--navy) calc(50% - 260px), #ffffff calc(50% - 260px));height:72px;
}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:72px;padding:0}
.brand{display:flex;align-items:center;gap:16px}
.logo-link{
  position:relative;
  display:inline-flex;
  align-items:flex-start;
  text-decoration:none;
}
.logo-link:hover{text-decoration:none}
.logo-link img{
  height: 48px;
}
.logo-text{
  font-family:Poppins, Inter, "Segoe UI", Arial, sans-serif;
  font-weight:800;
  font-size:32px;
  letter-spacing:4px;
  color:#ffffff;
  line-height:1;
}
.logo-dot{
  color:#DC485B;
  font-size:24px;
  font-weight:700;
  position:absolute;
  top:-4px;
  right:-16px;
}
.nav{display:flex;gap:32px;align-items:center}
.nav a{font-weight:600;font-size:18px;position:relative;padding:0 4px;line-height:1;text-decoration:none}
.nav a:hover{text-decoration:none}
.nav a:hover::after{
  content:"";position:absolute;left:20%;right:20%;bottom:-6px;height:2px;background:var(--navy);
}
.nav a[aria-current="page"]::before{
  content:"";
  position:absolute;
  top:-12px;
  left:50%;
  transform:translateX(-50%);
  width:6px;
  height:6px;
  background:var(--accent);
  border-radius:50%;
}
.red-dot{
  color:#DC485B;
  margin-left:2px;
  font-weight:700;
}
.header-actions{display:flex;align-items:center;gap:16px}
#language-selector{
  padding:8px 12px;
  border:1px solid #e5e7eb;
  border-radius:8px;
  background:#fff;
  font-size:14px;
  font-weight:600;
  color:var(--navy);
  cursor:pointer;
  appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23374164' d='M1.41 0L6 4.59L10.59 0L12 1.41l-6 6l-6-6z'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 8px center;
  padding-right:32px;
}
#language-selector:focus{outline:2px solid var(--navy);outline-offset:2px}
#language-selector:hover{background:#f9fafb;border-color:#d1d5db}
.hamburger{display:none;border:none;background:none;padding:8px;cursor:pointer}
.hamburger img{width:24px;height:18px}

.drawer-backdrop{position:fixed;inset:0;background:rgba(0,0,0,.5);display:none;z-index:99}
.drawer{
  position:absolute;
  top:72px;
  left:0;
  right:0;
  margin:-4px auto 0;
  width:100%;
  max-width:1200px;
  background:var(--navy);
  box-shadow:0 8px 24px rgba(0,0,0,0.2);
  border-radius:0 0 16px 16px;
  padding:24px;
  display:none;
  flex-direction:column;
  gap:0;
  z-index:101;
}
.drawer.open{display:flex}
.drawer-backdrop.open{display:block}
@media (min-width:768px){
  .drawer.open{display:none}
  .drawer-backdrop.open{display:none}
}
@media (min-width:768px) and (max-width:1279px){
  .drawer{
    top:45px;
  }
}
@media (max-width:767px){
  .drawer{
    top:50px;
    padding:16px;
  }
}
.drawer nav{
  display:flex;
  flex-direction:column;
  gap:0;
}
.drawer nav a{
  padding:18px 24px;
  border-bottom:1px solid rgba(255,255,255,0.1);
  transition:all 0.2s ease;
  font-size:16px;
  font-weight:600;
  color:#ffffff;
  text-align:left;
}
.drawer nav a:last-child{
  border-bottom:none;
}
.drawer nav a:hover{
  background:rgba(255,255,255,0.1);
  padding-left:32px;
}
@media (max-width:767px){
  .drawer nav a{
    padding:14px 16px;
    font-size:14px;
  }
  .drawer nav a:hover{
    padding-left:24px;
  }
}

main{
  display:flex;
  background: linear-gradient(to right, var(--navy) calc(50% - 260px), #ffffff calc(50% - 260px));
  background-repeat: no-repeat;
  margin:0;
  padding:0;
}
.hero{
  position:relative;
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  max-width: 1100px;
  width:100%;
  margin: 0 50px;
  padding: 50px 0 50px 0;
}
.hero-left{
  flex: 0 0 50%;
  display: flex;
  max-width: 600px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
  min-width: 0;
  min-height: 550px;
  padding-top: 40px;
}
.hero-right{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  min-width: 0;
  min-height: 550px;
  max-width: 450px;
}
.hero-content{
  max-width: 600px;
}
.hero-left-content{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
h1.hero-title{
  font-family:Poppins, Inter, "Segoe UI", Arial, sans-serif;
  font-weight:800;
  font-size:56px;
  line-height:1.05;
  color:var(--navy);
  margin:0;
  white-space:nowrap;
}
h1.hero-title.car-detail{
  font-size:40px;
  line-height:1.2;
  max-width:450px;
  white-space:normal;
}
.hero-copy{font-size:18px;margin-top:24px;max-width:720px}
.view-availability-btn{
  display:inline-block;
  margin-top:16px;
  padding:14px 32px;
  background:var(--accent);
  color:#fff;
  border:none;
  border-radius:8px;
  font-size:15px;
  font-weight:600;
  font-family:inherit;
  cursor:pointer;
  transition:all 0.3s ease;
  box-shadow:0 4px 12px rgba(220,72,91,0.3);
  text-decoration:none;
}
.view-availability-btn:hover{
  background:#c73d50;
  transform:translateY(-2px);
  box-shadow:0 6px 16px rgba(220,72,91,0.4);
}
.view-availability-btn:active{
  transform:translateY(0);
}
.car-specs{
  list-style:none;
  padding:0;
  margin:0 0 24px 0;
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-template-rows:repeat(3, auto);
  column-gap:36px;
  row-gap:12px;
}
.car-specs li{
  font-size:16px;
  line-height:1.5;
}
.car-specs li:nth-child(odd){
  color:#fff;
}
.car-specs li:nth-child(odd) strong{
  color:#fff;
}
.car-specs li:nth-child(even){
  color:var(--navy);
}
.car-specs li:nth-child(even) strong{
  color:var(--navy);
}
.hero-info{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 40px;
}
.hero-model{
  font-weight:700;
  font-size:24px;
  line-height:1.5;
  text-align: left;
  background: linear-gradient(to right, #ffffff 0%, #ffffff calc(50vw - 260px), var(--navy) calc(50vw - 260px), var(--navy) 100%);
  background-attachment: fixed;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-price{
  font-weight:700;
  font-size:24px;
  line-height:1.5;
  text-align: left;
  background: linear-gradient(to right, #ffffff 0%, #ffffff calc(50vw - 260px), var(--navy) calc(50vw - 260px), var(--navy) 100%);
  background-attachment: fixed;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-price small{
  font-size:20px;
  font-weight:500;
  background: linear-gradient(to right, #aaaaaa 0%, #aaaaaa calc(50vw - 260px), #999999 calc(50vw - 260px), #999999 100%);
  background-attachment: fixed;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-details-btn{
  margin-top:16px;
  padding:14px 32px;
  background:var(--accent);
  color:#fff;
  border:none;
  border-radius:8px;
  font-size:15px;
  font-weight:600;
  font-family:inherit;
  cursor:pointer;
  transition:all 0.3s ease;
  align-self:flex-start;
  box-shadow:0 4px 12px rgba(220,72,91,0.3);
}
.hero-details-btn:hover{
  background:#c73d50;
  transform:translateY(-2px);
  box-shadow:0 6px 16px rgba(220,72,91,0.4);
}
.hero-details-btn:active{
  transform:translateY(0);
}
.social{
  display:flex;
  flex-direction:column;
  gap:22px;
  font-weight:700;
  font-size:16px;
}
.social a{
  color:#000000;
  font-weight:700;
  font-size:16px;
  text-decoration: none;
}
.social a:hover{opacity:0.7}
.hero-car-container{
  width: 100%;
  max-width: 600px;
}
.hero-car{
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: opacity .3s ease;
}
.trending-section{
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}
.trending-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.trending-title{
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.carousel-controls{
  display: flex;
  gap: 8px;
}
.carousel-btn{
  width:36px;
  height:36px;
  border-radius:50%;
  border:1px solid #e5e7eb;
  background:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: all 0.2s ease;
}
.carousel-btn:hover{
  background:#f9fafb;
  border-color:#d1d5db;
}
.carousel-btn[disabled]{
  opacity:.5;
  cursor:not-allowed;
}
.carousel-wrapper{
  overflow: visible;
  position: relative;
}
.carousel{
  display:flex;
  gap:16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  padding: 4px 0 4px;
}
.carousel::-webkit-scrollbar{height:8px}
.carousel::-webkit-scrollbar-thumb{background:#e1e3e6;border-radius:999px}
.card{
  background:#fff;border-radius:12px;box-shadow:0 8px 16px rgba(0,0,0,.08);
  height:140px;display:flex;align-items:center;justify-content:center;scroll-snap-align:start;transition:transform .2s ease, box-shadow .2s ease;position:relative;z-index:30;
}
.card:hover{transform:translateY(-2px);box-shadow:0 12px 24px rgba(0,0,0,.12);}
.card img{max-width:90%;height:auto;display:block;object-fit:contain}
.vehicle-card{
  min-width: calc((100% - 16px) / 2);
  width: calc((100% - 16px) / 2);
  height:auto;
  min-height:120px;
  background:#f5f5f5;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  transition:transform .2s ease, background .2s ease, border .2s ease;
  flex-shrink:0;
  border:2px solid transparent;
  cursor:pointer;
  padding:0;
  font-family:inherit;
}
.vehicle-card:hover{
  transform:translateY(-2px);
  background:#e8e8e8;
}
.vehicle-card.active{
  border:2px solid var(--navy);
  background:#e8e8e8;
}
.vehicle-card-content{
  text-align:center;
  padding:16px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
}
.vehicle-image{
  width:100%;
  max-width:160px;
  height:auto;
  object-fit:contain;
}
.vehicle-info{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.vehicle-name{
  font-size:14px;
  font-weight:700;
  color:#000000;
  margin:0;
  line-height:1.3;
}
.vehicle-price{
  font-size:16px;
  font-weight:600;
  color:var(--navy);
  margin:0;
}

footer{padding:32px 0;border-top:1px solid #eee;color:#667}

@media (min-width:1000px) and (max-width:1279px){
  .page-card{
    max-width:950px;
    height:572px;
  }
  .container{
    margin:0 40px;
  }
  .hero{
    margin:0 40px;
    padding:40px 0;
  }
  /* Scale dots proportionally */
  .dot-1{
    width:16px;
    height:16px;
    top:16px;
    left:calc(50% - 158px);
  }
  .dot-2{
    width:11px;
    height:11px;
    bottom:16px;
    right:calc(50% - 143px);
  }
  .dot-3{
    width:8px;
    height:8px;
    left:calc(50% - 515px);
    transform:translateY(-40px);
  }
  .dot-4{
    width:13px;
    height:13px;
    right:calc(50% - 515px);
    transform:translateY(63px);
  }
  main{
    background: linear-gradient(to right, var(--navy) calc(50% - 206px), #ffffff calc(50% - 206px));
  }
  .hero-left{
    max-width:475px;
    min-height:435px;
    padding-top:32px;
  }
  .hero-right{
    max-width:356px;
    min-height:435px;
  }
  h1.hero-title{
    font-size:44px;
  }
  h1.hero-title.car-detail{
    font-size:32px;
    max-width:356px;
  }
  .hero-copy{
    font-size:14px;
    margin-top:19px;
    max-width:570px;
  }
  .hero-info{
    margin-left:32px;
  }
  .car-specs{
    column-gap:29px;
    row-gap:10px;
    margin:0 0 19px 0;
  }
  .car-specs li{
    font-size:12px;
  }
  .view-availability-btn{
    padding:14px 32px;
    font-size:15px;
    margin-top:16px;
  }
  .trending-title{
    font-size:16px;
  }
  .vehicle-card{
    min-height:95px;
  }
  .vehicle-image{
    max-width:127px;
  }
  .vehicle-name{
    font-size:11px;
  }
  .vehicle-price{
    font-size:13px;
  }
  .carousel-btn{
    width:29px;
    height:29px;
  }
  .carousel-btn img{
    width:13px;
    height:13px;
  }
  .logo-text{
    font-size:25px;
    letter-spacing:3.2px;
  }
  .logo-dot{
    font-size:19px;
    right:-13px;
    top:-3px;
  }
  .logo-link img{
    height: 38px;
  }
  .nav{
    gap:25px;
  }
  .nav a{
    font-size:14px;
    padding:0 3px;
  }
  .nav a:hover::after{
    bottom:-5px;
  }
  .nav a[aria-current="page"]::before{
    top:-10px;
    width:5px;
    height:5px;
  }
  #language-selector{
    padding:6px 10px;
    font-size:11px;
    padding-right:25px;
    background-size:10px 7px;
    background-position:right 6px center;
  }
  header{
    background: linear-gradient(to right, var(--navy) calc(50% - 206px), #ffffff calc(50% - 206px));
    height:57px;
  }
  .header-inner{
    height:57px;
  }
  .drawer{
    top:57px;
    padding:19px;
  }
  .drawer nav a{
    padding:14px 19px;
    font-size:13px;
  }
  .drawer nav a:hover{
    padding-left:25px;
  }
  .hero-model{
    font-size:19px;
    line-height:1.4;
    background: linear-gradient(to right, #ffffff 0%, #ffffff calc(50vw - 206px), var(--navy) calc(50vw - 206px), var(--navy) 100%);
    background-attachment: fixed;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .hero-price{
    font-size:19px;
    line-height:1.4;
    background: linear-gradient(to right, #ffffff 0%, #ffffff calc(50vw - 206px), var(--navy) calc(50vw - 206px), var(--navy) 100%);
    background-attachment: fixed;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .hero-price small{
    font-size:16px;
    background: linear-gradient(to right, #aaaaaa 0%, #aaaaaa calc(50vw - 206px), #999999 calc(50vw - 206px), #999999 100%);
    background-attachment: fixed;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .hero-details-btn{
    padding:14px 32px;
    font-size:15px;
    margin-top:16px;
  }
  .trending-section{
    gap:19px;
    padding-top:6px;
  }
  .carousel{
    gap:13px;
  }
  .vehicle-card-content{
    padding:13px;
    gap:13px;
  }
}

@media (min-width:768px) and (max-width:999px){
  .page-card{
    max-width:750px;
    height:451px;
  }
  body{
    padding:0;
  }
  .container{
    margin:0 31px;
  }
  .hero{
    margin:0 31px;
  }
  /* Scale dots proportionally */
  .dot-1{
    width:10px;
    height:10px;
    top:13px;
    left:calc(50% - 129px);
  }
  .dot-2{
    width:9px;
    height:9px;
    bottom:13px;
    right:calc(50% - 113px);
  }
  .dot-3{
    width:12px;
    height:12px;
    left:calc(50% - 407px);
  }
  .dot-4{
    width:8px;
    height:8px;
    right:calc(50% - 407px);
  }
  .hero{
    padding:32px 0;
  }
  main{
    background: linear-gradient(to right, var(--navy) calc(50% - 163px), #ffffff calc(50% - 163px));
  }
  .hero-left{
    max-width:375px;
    min-height:343px;
    padding-top:27px;
  }
  .hero-right{
    max-width:279px;
    min-height:343px;
  }
  h1.hero-title{
    font-size:35px;
  }
  h1.hero-title.car-detail{
    font-size:25px;
    max-width:279px;
  }
  .hero-copy{
    font-size:11px;
  }
  .hero-info{
    margin-left:25px;
  }
  .car-specs{
    column-gap:35px;
    row-gap:8px;
  }
  .car-specs li{
    font-size:9px;
  }
  .view-availability-btn{
    padding:14px 32px;
    font-size:15px;
    margin-top:16px;
  }
  .trending-title{
    font-size:13px;
  }
  .vehicle-card{
    min-height:75px;
  }
  .vehicle-image{
    max-width:102px;
  }
  .vehicle-name{
    font-size:9px;
  }
  .vehicle-price{
    font-size:10px;
  }
  .carousel-btn{
    width:23px;
    height:23px;
  }
  .carousel-btn img{
    width:10px;
    height:10px;
  }
  .logo-text{
    font-size:20px;
    letter-spacing:2.7px;
  }
  .logo-dot{
    font-size:15px;
    right:-10px;
  }
  .logo-link img{
    height: 30px;
  }
  .nav a{
    font-size:11px;
    padding:0 2px;
  }
  .nav a:hover::after{
    bottom:-4px;
  }
  .nav a[aria-current="page"]::before{
    top:-8px;
    width:4px;
    height:4px;
  }
  #language-selector{
    padding:5px 8px;
    font-size:9px;
    padding-right:19px;
    background-size:8px 5px;
    background-position:right 5px center;
  }
  header{
    background: linear-gradient(to right, var(--navy) calc(50% - 163px), #ffffff calc(50% - 163px));
    height:45px;
  }
  .header-inner{
    height:45px;
  }
  .hero-model{
    font-size:15px;
    line-height:1.4;
    background: linear-gradient(to right, #ffffff 0%, #ffffff calc(50vw - 163px), var(--navy) calc(50vw - 163px), var(--navy) 100%);
    background-attachment: fixed;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .hero-price{
    font-size:15px;
    line-height:1.4;
    background: linear-gradient(to right, #ffffff 0%, #ffffff calc(50vw - 163px), var(--navy) calc(50vw - 163px), var(--navy) 100%);
    background-attachment: fixed;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .hero-price small{
    font-size:13px;
    background: linear-gradient(to right, #aaaaaa 0%, #aaaaaa calc(50vw - 163px), #999999 calc(50vw - 163px), #999999 100%);
    background-attachment: fixed;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .hero-details-btn{
    padding:14px 32px;
    font-size:15px;
    margin-top:16px;
  }
}
@media (max-width:767px){
  .page-card{
    max-width:380px;
    height:auto;
    background:transparent;
    margin-top:10px;
  }
  body{
    padding:20px 10px;
    align-items:flex-start;
  }
  .container{
    margin:0 20px;
  }
  /* Scale dots proportionally */
  .dot-1{
    width:8px;
    height:8px;
    top:10px;
    left:calc(50% - 80px);
  }
  .dot-2{
    width:6px;
    height:6px;
    bottom:10px;
    right:calc(50% - 75px);
  }
  .dot-3{
    width:10px;
    height:10px;
    top:50%;
    left:calc(50% - 215px);
    transform:translateY(-50px);
  }
  .dot-4{
    width:7px;
    height:7px;
    top:50%;
    right:calc(50% - 215px);
    transform:translateY(80px);
  }
  main{
    background:transparent;
    height:auto;
    min-height:100vh;
  }
  header{
    background:var(--navy);
    height:50px;
  }
  .header-inner{
    height:50px;
  }
  .hero{
    margin:0;
    padding:0;
    flex-direction:column;
    align-items:center;
    gap:0;
    min-height:auto;
    order:1;
  }
  .hero-left{
    padding: 30px 20px;
    max-width:100%;
    width:100%;
    min-height:0;
    max-height:370px;
    align-items:center;
    text-align:center;
    gap:space-between;
    order:1;
    background:var(--navy);
  }
  .hero-right{
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    flex:none;
    padding: 30px 20px;
    max-width:100%;
    width:100%;
    min-height:0;
    gap:20px;
    order:2;
    background:#ffffff;
  }
  .hero-car{
    max-width:300px;
    width:100%;
  }
  h1.hero-title{
    font-size:32px;
    white-space:normal;
    color:var(--navy);
  }
  h1.hero-title.car-detail{
    font-size:24px;
    max-width:100%;
    color:var(--navy);
  }
  .hero-copy{
    font-size:12px;
    max-width:320px;
    color:var(--navy);
  }
  .hero-info{
    margin-left:0;
    width:100%;
    height:auto;
    display:flex;
    justify-content:center;
  }
  .hero-model{
    font-size:16px;
    line-height:1.4;
    color:#ffffff;
    background:none;
    -webkit-background-clip:initial;
    background-clip:initial;
    -webkit-text-fill-color:initial;
  }
  .hero-price{
    font-size:16px;
    line-height:1.4;
    color:#ffffff;
    background:none;
    -webkit-background-clip:initial;
    background-clip:initial;
    -webkit-text-fill-color:initial;
  }
  .hero-price small{
    font-size:14px;
    color:#cccccc;
    background:none;
    -webkit-background-clip:initial;
    background-clip:initial;
    -webkit-text-fill-color:initial;
  }
  .car-specs{
    column-gap:20px;
    row-gap:8px;
    max-width:320px;
    margin-bottom:0;
  }
  .car-specs li{
    font-size:10px;
    color:#ffffff;
    display:flex;
    flex-direction:column;
    gap:2px;
  }
  .car-specs li strong{
    color:#ffffff;
  }
  .car-specs li:nth-child(even){
    color:#ffffff;
  }
  .car-specs li:nth-child(even) strong{
    color:#ffffff;
  }
  .hero-details-btn{
    padding:14px 32px;
    font-size:15px;
    margin-top:16px;
  }
  .view-availability-btn{
    padding:14px 32px;
    font-size:15px;
    margin-top:16px;
  }
  .hero-content{
    align-items:center;
  }
  .trending-section{
    background:#ffffff;
    order:2;
  }
  .page-card{
    display:flex;
    flex-direction:column;
  }
  .trending-title{
    font-size:16px;
    color:var(--navy);
  }
  .vehicle-card{
    min-height:100px;
    background:#f8f9fa;
  }
  .vehicle-image{
    max-width:120px;
  }
  .vehicle-name{
    font-size:12px;
    color:var(--navy);
  }
  .vehicle-price{
    font-size:14px;
    color:var(--navy);
  }
  .carousel-btn{
    width:32px;
    height:32px;
  }
  .carousel-btn img{
    width:12px;
    height:12px;
  }
  .logo-text{
    font-size:18px;
    letter-spacing:2px;
  }
  .logo-dot{
    font-size:14px;
    right:-8px;
  }
  .logo-link img{
    height: 24px;
  }
  .nav{
    display:none;
  }
  .hamburger{
    display:block;
  }
  #language-selector{
    padding:6px 8px;
    font-size:12px;
    padding-right:28px;
    background-size:10px 7px;
    background-position:right 6px center;
  }
  .drawer{
    top:calc(50px + 4px);
  }
}

.visually-hidden{position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px,1px,1px,1px);white-space:nowrap}
/* Link & focus states */
a:focus-visible, button:focus-visible {outline:2px auto}

/* Cookie Banner */
.page-card{
  position:relative;
}
.cookie-banner{
  position:absolute;
  bottom:20px;
  left:20px;
  max-width:380px;
  background:#fff;
  border-radius:12px;
  padding:20px;
  box-shadow:0 4px 20px rgba(0,0,0,0.15);
  z-index:10000;
  display:none;
  border:1px solid #e0e0e0;
}
.cookie-banner.show{
  display:block;
  animation:slideUp 0.4s ease-out;
}
@keyframes slideUp{
  from{transform:translateY(20px);opacity:0}
  to{transform:translateY(0);opacity:1}
}
@keyframes shrinkToCenter{
  0%{
    transform:scale(1);
    opacity:1;
  }
  100%{
    transform:scale(0);
    opacity:0;
  }
}
.page-card.shrinking{
  animation:shrinkToCenter 1.2s ease-in-out forwards;
  transform-origin:center center;
}
.cookie-banner-title{
  font-size:16px;
  font-weight:700;
  color:var(--navy);
  margin:0 0 8px 0;
}
.cookie-banner-text{
  font-size:13px;
  line-height:1.5;
  color:#666;
  margin:0 0 16px 0;
}
.cookie-banner-text a{
  color:var(--accent);
  text-decoration:none;
}
.cookie-banner-text a:hover{
  text-decoration:underline;
}
.cookie-banner-buttons{
  display:flex;
  gap:10px;
}
.cookie-banner-btn{
  flex:1;
  padding:10px 16px;
  font-size:13px;
  font-weight:600;
  border-radius:6px;
  border:none;
  cursor:pointer;
  transition:all 0.2s ease;
  font-family:inherit;
}
.cookie-banner-btn.accept{
  background:var(--navy);
  color:#fff;
}
.cookie-banner-btn.accept:hover{
  background:var(--accent);
}
.cookie-banner-btn.decline{
  background:#f5f5f5;
  color:var(--navy);
}
.cookie-banner-btn.decline:hover{
  background:#e0e0e0;
}

@media (max-width:767px){
  .cookie-banner{
    position:absolute;
    top:60px;
    left:10px;
    right:10px;
    bottom:auto;
    max-width:none;
    padding:16px;
  }
  .cookie-banner-title{
    font-size:14px;
  }
  .cookie-banner-text{
    font-size:12px;
  }
  .cookie-banner-btn{
    padding:8px 12px;
    font-size:12px;
  }
}