/* Aeroturex frontend CSS: theme-friendly mode.
   No external font imports. Typography inherits from the active WordPress theme. */
:root{
  --acr-primary:#15157d;
  --acr-secondary:#2e3192;
  --acr-accent:#22c087;
  --acr-warning:#ff8a00;
  --acr-bg:#f8f9ff;
  --acr-bg-2:#eef2ff;
  --acr-card:#ffffff;
  --acr-card-soft:#f6f8ff;
  --acr-border:#dde4f5;
  --acr-text:#141b2b;
  --acr-text-soft:#5c667b;
  --acr-success-bg:#eafaf3;
  --acr-success:#0e9f6e;
  --acr-danger:#c2410c;
  --acr-danger-bg:#fff7ed;
  --acr-shadow-sm:0 10px 24px rgba(19,35,78,.06);
  --acr-shadow:0 20px 50px rgba(19,35,78,.10);
  --acr-shadow-lg:0 26px 70px rgba(16,24,40,.18);
  --acr-radius-sm:12px;
  --acr-radius:18px;
  --acr-radius-lg:28px;
  --acr-radius-xl:34px;
  --acr-container:1240px;
}

.acr-home,
.acr-hero-search,
.acr-catalog-wrap,
.acr-single-page,
.acr-archive-page,
.acr-confirmation,
.acr-booking-steps{
  font-family:inherit;
  color:var(--acr-text);
}
.acr-home h1,.acr-home h2,.acr-home h3,
.acr-hero-search h1,.acr-hero-search h2,
.acr-catalog-wrap h2,.acr-catalog-wrap h3,
.acr-single-page h1,.acr-single-page h2,.acr-single-page h3,
.acr-confirmation h2,.acr-confirmation h3{
  font-family:inherit;
  letter-spacing:-0.02em;
}
.acr-home a,.acr-hero-search a,.acr-catalog-wrap a,.acr-single-page a,.acr-confirmation a{text-decoration:none}
.acr-home,.acr-catalog-wrap,.acr-single-page,.acr-confirmation{font-size:16px}

/* Buttons */
.acr-btn,
.acr-search-card button,
.acr-home-search button{
  appearance:none;
  border:0;
  background:linear-gradient(135deg,var(--acr-primary),var(--acr-secondary));
  color:#fff;
  border-radius:14px;
  padding:14px 20px;
  font-weight:700;
  line-height:1.1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, opacity .18s ease, background .18s ease;
  box-shadow:0 10px 24px rgba(21,21,125,.18);
}
.acr-btn:hover,.acr-search-card button:hover,.acr-home-search button:hover{transform:translateY(-1px);box-shadow:0 16px 28px rgba(21,21,125,.22);color:#fff}
.acr-btn-full{width:100%}
.acr-btn-ghost,.acr-btn-secondary{
  background:#fff;
  color:var(--acr-primary);
  border:1px solid rgba(21,21,125,.14);
  box-shadow:none;
}
.acr-btn-ghost:hover,.acr-btn-secondary:hover{background:var(--acr-card-soft);color:var(--acr-primary);transform:translateY(-1px)}
.acr-link-btn{color:var(--acr-primary);font-weight:700}
.acr-whatsapp{display:block;text-align:center;color:var(--acr-primary);font-weight:700;margin-top:4px}

.acr-eyebrow,
.acr-section-heading span,
.acr-hero-content .acr-eyebrow,
.acr-booking-head span,
.acr-card-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:800;
  color:var(--acr-warning);
}
.acr-card-kicker{margin-bottom:8px;color:var(--acr-text-soft)}

/* Home */
.acr-home{max-width:1280px;margin:0 auto;padding:16px 16px 40px;background:transparent}
.acr-home-hero{
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:minmax(0,1.1fr) 430px;
  gap:32px;
  align-items:end;
  max-width:var(--acr-container);
  margin:16px auto 20px;
  padding:58px;
  border-radius:var(--acr-radius-xl);
  background:
    radial-gradient(circle at 78% 20%, rgba(255,255,255,.18), transparent 22%),
    radial-gradient(circle at 84% 58%, rgba(255,255,255,.10), transparent 25%),
    linear-gradient(135deg, #11145f 0%, #2e3192 62%, #3c46bb 100%);
  box-shadow:var(--acr-shadow-lg);
}
.acr-home-hero::before{
  content:"";
  position:absolute;
  inset:auto -6% -40px auto;
  width:560px;
  height:260px;
  background:radial-gradient(ellipse at center, rgba(255,255,255,.18), rgba(255,255,255,0) 68%);
  transform:rotate(-10deg);
  pointer-events:none;
}
.acr-home-hero::after{
  content:"";
  position:absolute;
  left:-60px;
  bottom:-90px;
  width:240px;
  height:240px;
  background:rgba(255,255,255,.06);
  filter:blur(10px);
  border-radius:50%;
}
.acr-home-hero-copy,.acr-home-search{position:relative;z-index:2}
.acr-home-hero-copy h1{font-size:clamp(38px,5.5vw,70px);line-height:.96;margin:14px 0 18px;color:#fff;max-width:760px}
.acr-home-hero-copy p{margin:0;max-width:700px;font-size:18px;line-height:1.72;color:rgba(255,255,255,.84)}
.acr-hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px}
.acr-home-search,
.acr-search-card,
.acr-catalog-filterbar{
  background:rgba(255,255,255,.98);
  border:1px solid rgba(255,255,255,.42);
  border-radius:24px;
  box-shadow:var(--acr-shadow-lg);
  backdrop-filter:blur(8px);
}
.acr-home-search{padding:22px;display:flex;flex-direction:column;gap:13px;color:var(--acr-text)}
.acr-home-search strong{font-family:inherit;font-size:20px;color:var(--acr-primary)}
.acr-home-search label,
.acr-search-card label,
.acr-booking-form label,
.acr-catalog-filterbar label{
  display:flex;
  flex-direction:column;
  gap:7px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.06em;
  font-weight:700;
  color:var(--acr-text-soft);
}
.acr-home-search input,
.acr-home-search select,
.acr-search-card input,
.acr-search-card select,
.acr-booking-form input,
.acr-booking-form select,
.acr-booking-form textarea,
.acr-catalog-filterbar input,
.acr-catalog-filterbar select{
  width:100%;
  box-sizing:border-box;
  border:1px solid var(--acr-border);
  border-radius:14px;
  padding:13px 14px;
  background:#fff;
  color:var(--acr-text);
  font-size:14px;
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.acr-home-search input:focus,
.acr-home-search select:focus,
.acr-search-card input:focus,
.acr-search-card select:focus,
.acr-booking-form input:focus,
.acr-booking-form select:focus,
.acr-booking-form textarea:focus,
.acr-catalog-filterbar input:focus,
.acr-catalog-filterbar select:focus{border-color:var(--acr-secondary);box-shadow:0 0 0 4px rgba(46,49,146,.10)}
.acr-home-trust{max-width:var(--acr-container);margin:0 auto 38px;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.acr-home-trust div,
.acr-benefits-grid article,
.acr-booking-steps div{
  background:#fff;
  border:1px solid var(--acr-border);
  border-radius:22px;
  box-shadow:var(--acr-shadow-sm);
}
.acr-home-trust div{padding:24px;text-align:center}
.acr-home-trust strong{display:block;font-family:inherit;font-size:28px;color:var(--acr-primary)}
.acr-home-trust span{display:block;margin-top:6px;color:var(--acr-text-soft);font-weight:600}
.acr-home-section{max-width:var(--acr-container);margin:52px auto 0;padding:0 4px}
.acr-section-heading{text-align:center;margin:0 auto 26px;max-width:760px}
.acr-section-heading h2{font-size:clamp(30px,4vw,46px);margin:10px 0 12px;color:var(--acr-text)}
.acr-section-heading p{margin:0 auto;max-width:680px;color:var(--acr-text-soft);line-height:1.7}
.acr-service-grid,
.acr-route-grid,
.acr-benefits-grid{display:grid;gap:20px}
.acr-service-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
.acr-route-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
.acr-benefits-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.acr-service-grid article,
.acr-route-grid a,
.acr-benefits-grid article{
  background:#fff;
  border:1px solid var(--acr-border);
  border-radius:24px;
  box-shadow:var(--acr-shadow-sm);
  transition:transform .18s ease, box-shadow .18s ease;
}
.acr-service-grid article{padding:24px}
.acr-service-grid article:hover,.acr-route-grid a:hover,.acr-benefits-grid article:hover,.acr-vehicle-card:hover{transform:translateY(-3px);box-shadow:var(--acr-shadow)}
.acr-service-grid span{
  display:inline-flex;
  width:48px;height:48px;
  align-items:center;justify-content:center;
  border-radius:16px;
  background:linear-gradient(180deg,#eef2ff,#f8faff);
  color:var(--acr-primary);
  box-shadow:inset 0 0 0 1px var(--acr-border);
  font-size:22px;
  margin-bottom:14px;
}
.acr-service-grid h3{font-size:20px;margin:0 0 10px;color:var(--acr-text)}
.acr-service-grid p,.acr-benefits-grid p{margin:0;color:var(--acr-text-soft);line-height:1.68}
.acr-routes-section{padding:36px;border-radius:32px;background:linear-gradient(180deg,#f7f9ff,#fff);border:1px solid var(--acr-border)}
.acr-route-grid a{padding:18px 18px 20px;color:var(--acr-primary);font-weight:800;position:relative;overflow:hidden}
.acr-route-grid a::after{content:"→";position:absolute;right:18px;top:18px;font-weight:800;color:rgba(21,21,125,.32)}
.acr-route-grid a span{display:block;margin-top:6px;font-size:13px;color:var(--acr-text-soft);font-weight:600}
.acr-benefits-grid article{padding:26px}
.acr-benefits-grid strong{display:block;font-family:inherit;font-size:20px;margin-bottom:10px}
.acr-home-cta{
  max-width:var(--acr-container);
  margin:46px auto 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  border-radius:32px;
  padding:38px;
  background:linear-gradient(135deg,#171b73,#2e3192 72%,#4d50c2 100%);
  color:#fff;
  box-shadow:var(--acr-shadow-lg);
}
.acr-home-cta h2{margin:8px 0 10px;color:#fff;font-size:clamp(30px,4vw,44px)}
.acr-home-cta p{margin:0;max-width:760px;color:rgba(255,255,255,.84);line-height:1.7}
.acr-home-cta .acr-btn{background:#fff;color:var(--acr-primary)}

/* Search and catalog */
.acr-hero-search{max-width:var(--acr-container);margin:20px auto;padding:36px;border-radius:32px;background:linear-gradient(180deg,#fff,#f7f9ff);border:1px solid var(--acr-border);box-shadow:var(--acr-shadow)}
.acr-hero-content{max-width:820px;margin-bottom:22px}
.acr-hero-content h1{font-size:clamp(34px,5vw,58px);line-height:1.02;margin:12px 0;color:var(--acr-primary)}
.acr-hero-content p{font-size:18px;line-height:1.68;color:var(--acr-text-soft)}
.acr-search-card{display:grid;grid-template-columns:1.15fr 1.15fr .72fr .62fr .9fr .86fr auto;gap:12px;align-items:end;padding:16px}
.acr-catalog-wrap{max-width:var(--acr-container);margin:42px auto;padding:0 16px}
.acr-catalog-filterbar{display:grid;grid-template-columns:1fr 1fr .72fr .8fr .84fr auto auto;gap:12px;align-items:end;padding:16px;margin:0 auto 24px}
.acr-filter-reset{padding:12px 4px;color:var(--acr-primary);font-weight:700;white-space:nowrap}
.acr-filter-summary{display:flex;justify-content:space-between;gap:12px;align-items:center;padding:14px 18px;margin:0 0 24px;background:linear-gradient(180deg,#fff,#f9fbff);border:1px solid var(--acr-border);border-radius:18px;box-shadow:var(--acr-shadow-sm)}
.acr-filter-summary strong{color:var(--acr-primary)}
.acr-filter-summary span{color:var(--acr-text-soft);font-weight:600}
.acr-empty-state{padding:40px;text-align:center;color:var(--acr-text-soft);border:1px dashed var(--acr-border);background:#fff;border-radius:24px}

/* Cards */
.acr-vehicle-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.acr-vehicle-card{background:#fff;border:1px solid var(--acr-border);border-radius:26px;overflow:hidden;box-shadow:var(--acr-shadow-sm);transition:transform .18s ease, box-shadow .18s ease}
.acr-card-image{display:block;position:relative;min-height:255px;background:linear-gradient(180deg,#edf2ff,#dfe7fa) center/cover no-repeat}
.acr-card-image::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(19,27,43,.02) 0%,rgba(19,27,43,.30) 100%)}
.acr-card-gradient{position:absolute;left:0;right:0;bottom:0;height:80px;background:linear-gradient(180deg,rgba(19,27,43,0),rgba(19,27,43,.26));z-index:1}
.acr-chip,.acr-status-badge{
  position:absolute;top:16px;z-index:2;display:inline-flex;align-items:center;gap:6px;
  border-radius:999px;padding:8px 12px;font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.08em;
}
.acr-chip{left:16px;background:rgba(255,255,255,.94);color:var(--acr-primary);border:1px solid rgba(255,255,255,.74)}
.acr-status-badge{right:16px;background:var(--acr-success-bg);color:var(--acr-success);border:1px solid rgba(14,159,110,.12)}
.acr-status-occupied,.acr-status-maintenance{background:var(--acr-danger-bg);color:var(--acr-danger);border-color:#fed7aa}
.acr-card-body{padding:22px}
.acr-card-head{display:flex;justify-content:space-between;align-items:flex-start;gap:14px;margin-bottom:12px}
.acr-card-body h3{margin:0;font-size:23px;line-height:1.16}
.acr-card-body h3 a{color:var(--acr-text)}
.acr-card-body p{margin:16px 0 18px;color:var(--acr-text-soft);line-height:1.7}
.acr-spec-row{display:flex;gap:8px;flex-wrap:wrap}
.acr-spec-row span,
.acr-spec-pills span,
.acr-feature-grid span{
  display:inline-flex;align-items:center;gap:6px;
  background:var(--acr-card-soft);border:1px solid var(--acr-border);border-radius:999px;
  padding:8px 11px;font-size:12px;font-weight:700;color:#354258;
}
.acr-spec-row-icons b{font-weight:700}
.acr-price small,.acr-price em{display:block;font-size:12px;color:var(--acr-text-soft);font-style:normal;font-weight:600}
.acr-price strong{display:block;font-family:inherit;font-size:20px;color:var(--acr-primary);line-height:1.2}
.acr-card-footer{display:flex;justify-content:space-between;align-items:center;gap:14px;padding-top:6px}
.acr-card-actions{display:flex;gap:10px;flex-wrap:wrap;width:100%}
.acr-card-actions .acr-btn{flex:1}

/* Vehicle single */
.acr-single-page{padding-bottom:96px;background:linear-gradient(180deg,#f6f8ff 0,#fff 38%)}
.acr-vehicle-hero{max-width:var(--acr-container);margin:0 auto;padding:28px 16px}
.acr-breadcrumb{font-size:13px;color:var(--acr-text-soft);margin-bottom:18px}
.acr-breadcrumb a{color:var(--acr-primary);font-weight:700}
.acr-vehicle-hero-grid{
  display:grid;grid-template-columns:minmax(0,1fr) 1fr;gap:32px;align-items:center;
  background:linear-gradient(135deg,#141866,#2e3192 72%,#4d50c2 100%);
  border-radius:34px;padding:34px;color:#fff;box-shadow:var(--acr-shadow-lg)
}
.acr-vehicle-hero h1{font-size:clamp(34px,4.8vw,58px);margin:12px 0;color:#fff}
.acr-vehicle-hero p{margin:0;color:rgba(255,255,255,.86);font-size:17px;line-height:1.72}
.acr-hero-image{min-height:390px;border-radius:26px;background:#eef2ff center/cover no-repeat;box-shadow:0 18px 40px rgba(0,0,0,.20)}
.acr-spec-pills{display:flex;gap:10px;flex-wrap:wrap;margin-top:22px}
.acr-spec-pills span{background:rgba(255,255,255,.11);border-color:rgba(255,255,255,.18);color:#fff}
.acr-quick-spec-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin-top:18px}
.acr-quick-spec-grid div{background:#fff;border:1px solid var(--acr-border);border-radius:18px;padding:16px 18px;box-shadow:var(--acr-shadow-sm)}
.acr-quick-spec-grid small{display:block;font-size:12px;text-transform:uppercase;letter-spacing:.06em;color:var(--acr-text-soft);font-weight:700}
.acr-quick-spec-grid strong{display:block;margin-top:8px;font-family:inherit;font-size:20px;color:var(--acr-primary)}
.acr-single-layout{max-width:var(--acr-container);margin:24px auto 0;padding:0 16px;display:grid;grid-template-columns:minmax(0,1fr) 392px;gap:28px;align-items:start}
.acr-content-card,.acr-booking-widget{background:#fff;border:1px solid var(--acr-border);border-radius:26px;box-shadow:var(--acr-shadow-sm)}
.acr-content-card{padding:28px;margin-bottom:22px}
.acr-content-card h2{margin:0 0 16px;font-size:28px;color:var(--acr-text)}
.acr-content-card p{line-height:1.78;color:#38465d}
.acr-feature-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.acr-feature-grid span{border-radius:16px;padding:14px;background:linear-gradient(180deg,#f7f9ff,#fff)}
.acr-sticky-sidebar{position:relative}
.acr-sticky-sidebar .acr-booking-widget{position:sticky;top:108px}
.acr-booking-widget{padding:26px}
.acr-booking-head{display:flex;flex-direction:column;gap:6px;border-bottom:1px solid var(--acr-border);padding-bottom:16px;margin-bottom:18px}
.acr-booking-head span{color:var(--acr-warning)}
.acr-booking-head span::before{content:"";display:inline-block;width:8px;height:8px;border-radius:50%;background:var(--acr-warning)}
.acr-booking-head h3{margin:0;font-size:24px}
.acr-booking-form{display:flex;flex-direction:column;gap:14px}
.acr-form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.acr-price-summary{padding:16px;background:linear-gradient(180deg,#fbfcff,#f4f7ff);border:1px solid var(--acr-border);border-radius:18px}
.acr-price-summary div{display:flex;justify-content:space-between;gap:14px;align-items:center}
.acr-price-summary div + div{margin-top:8px}
.acr-price-summary span{color:var(--acr-text-soft);font-weight:700}
.acr-price-summary strong{font-family:inherit;font-size:21px;color:var(--acr-primary)}
.acr-price-summary small{display:block;margin-top:8px;color:var(--acr-text-soft);line-height:1.5}
.acr-checkout-preview{border-color:#fde4bf;background:linear-gradient(180deg,#fffaf3,#fff)}
.acr-live-deposit{color:var(--acr-warning)!important}
.acr-alert{border-radius:16px;padding:12px 14px;margin-bottom:16px}
.acr-alert:not(.acr-alert-error){background:#fffaf3;border:1px solid #fde4bf;color:#9a4e02}
.acr-alert-error{background:#fff4f4;border:1px solid #ffd1d1;color:#b42318}
.acr-alert p{margin:0 0 6px}.acr-alert p:last-child{margin-bottom:0}
.acr-booking-steps{max-width:var(--acr-container);margin:30px auto 0;padding:0 6px;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}
.acr-booking-steps div{padding:18px;display:flex;gap:14px;align-items:center}
.acr-booking-steps strong{display:inline-flex;min-width:40px;height:40px;align-items:center;justify-content:center;border-radius:14px;background:linear-gradient(135deg,var(--acr-primary),var(--acr-secondary));color:#fff;font-family:inherit}
.acr-booking-steps span{font-weight:700;color:var(--acr-text);line-height:1.35}
.acr-next-step-box{margin-top:24px;padding:22px;background:linear-gradient(180deg,#f8fbff,#fff);border:1px solid var(--acr-border);border-radius:22px;text-align:left}
.acr-next-step-box h3{margin:0 0 8px;color:var(--acr-primary)}
.acr-next-step-box p{margin:0 0 16px}
.acr-confirmation{max-width:920px;margin:44px auto;padding:0 16px}
.acr-confirmation-card{background:#fff;border:1px solid var(--acr-border);border-radius:30px;padding:42px;box-shadow:var(--acr-shadow);text-align:center}
.acr-success-icon{display:inline-flex;width:74px;height:74px;border-radius:50%;align-items:center;justify-content:center;background:var(--acr-success-bg);color:var(--acr-success);font-size:40px;font-weight:900}
.acr-confirmation-card h2{font-size:38px;margin:18px 0 10px;color:var(--acr-primary)}
.acr-confirmation-card p{margin:0;color:var(--acr-text-soft);font-size:17px;line-height:1.7}
.acr-confirmation-details{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-top:24px;text-align:left}
.acr-confirmation-details div{padding:15px;border-radius:16px;background:var(--acr-card-soft);border:1px solid var(--acr-border)}
.acr-confirmation-details span{display:block;font-size:12px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--acr-text-soft)}
.acr-confirmation-details strong{display:block;margin-top:5px;color:var(--acr-text)}
.acr-confirmation-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}
.acr-confirmation-actions .acr-btn{flex:1;min-width:210px}
.acr-mobile-reserve-bar{display:none}

/* Responsive */
@media (max-width:1180px){
  .acr-search-card,.acr-catalog-filterbar{grid-template-columns:repeat(3,minmax(0,1fr))}
  .acr-search-card button,.acr-catalog-filterbar .acr-btn{grid-column:auto}
}
@media (max-width:1024px){
  .acr-home-hero{grid-template-columns:1fr;padding:38px}
  .acr-home-search{max-width:680px}
  .acr-service-grid,.acr-route-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .acr-benefits-grid{grid-template-columns:1fr}
  .acr-vehicle-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .acr-vehicle-hero-grid,.acr-single-layout{grid-template-columns:1fr}
  .acr-sticky-sidebar .acr-booking-widget{position:static}
  .acr-quick-spec-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .acr-booking-steps{grid-template-columns:repeat(2,minmax(0,1fr))}
  .acr-home-cta{flex-direction:column;align-items:flex-start}
}
@media (max-width:760px){
  .acr-home{padding:10px 10px 32px}
  .acr-search-card,.acr-catalog-filterbar{grid-template-columns:1fr}
  .acr-hero-search,.acr-home-hero,.acr-routes-section,.acr-home-cta{border-radius:24px}
  .acr-filter-summary{flex-direction:column;align-items:flex-start}
  .acr-card-head,.acr-card-footer{flex-direction:column;align-items:flex-start}
  .acr-card-actions{width:100%}
  .acr-card-actions .acr-btn{flex:1}
  .acr-confirmation-details,.acr-feature-grid,.acr-form-row{grid-template-columns:1fr}
}
@media (max-width:640px){
  .acr-home-hero{padding:28px;gap:22px}
  .acr-home-hero-copy h1{font-size:40px}
  .acr-hero-actions{flex-direction:column}.acr-hero-actions .acr-btn{width:100%}
  .acr-home-trust,.acr-service-grid,.acr-route-grid,.acr-vehicle-grid,.acr-booking-steps,.acr-quick-spec-grid{grid-template-columns:1fr}
  .acr-vehicle-hero,.acr-single-layout,.acr-catalog-wrap,.acr-confirmation{padding-left:12px;padding-right:12px}
  .acr-content-card,.acr-booking-widget,.acr-confirmation-card{padding:22px;border-radius:22px}
  .acr-vehicle-hero-grid{padding:24px;border-radius:24px}
  .acr-hero-image{min-height:280px}
  .acr-confirmation-card h2{font-size:30px}
  .acr-confirmation-actions{flex-direction:column}
  .acr-confirmation-actions .acr-btn{width:100%;min-width:0}
  .acr-mobile-reserve-bar{
    display:flex;position:fixed;left:12px;right:12px;bottom:12px;z-index:9999;
    background:rgba(255,255,255,.98);backdrop-filter:blur(8px);border:1px solid var(--acr-border);box-shadow:var(--acr-shadow-lg);
    border-radius:18px;padding:12px 12px 12px 16px;align-items:center;justify-content:space-between;gap:12px
  }
  .acr-mobile-reserve-bar small{display:block;color:var(--acr-text-soft);font-size:11px;text-transform:uppercase;letter-spacing:.06em;font-weight:700}
  .acr-mobile-reserve-bar strong{display:block;color:var(--acr-primary);font-family:inherit}
  .acr-mobile-reserve-bar .acr-btn{padding:13px 16px;min-width:140px}
}

/* Aeroturex frontend v1.0.6 modular catalog shortcodes */
.acr-catalog-wrap{--acr-columns:3}
.acr-vehicle-grid.acr-layout-grid{grid-template-columns:repeat(var(--acr-columns),minmax(0,1fr))}
.acr-carousel-shell{position:relative;max-width:100%}
.acr-carousel-shell .acr-vehicle-grid{scrollbar-width:thin;scrollbar-color:rgba(21,21,125,.35) transparent}
.acr-layout-carousel,.acr-layout-slider{display:flex!important;grid-template-columns:none!important;gap:22px;overflow-x:auto;scroll-snap-type:x mandatory;scroll-padding:10px;padding:6px 6px 18px;margin:0 -6px}
.acr-layout-carousel .acr-vehicle-card{min-width:calc((100% - 44px) / var(--acr-columns));scroll-snap-align:start}
.acr-layout-slider .acr-vehicle-card{min-width:100%;display:grid;grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);align-items:stretch}
.acr-layout-slider .acr-card-image{min-height:430px;height:100%}
.acr-layout-slider .acr-card-body{display:flex;flex-direction:column;justify-content:center;padding:34px}
.acr-layout-slider .acr-card-body h3{font-size:clamp(30px,4vw,48px)}
.acr-layout-slider .acr-card-body p{font-size:17px}
.acr-carousel-nav{position:absolute;top:50%;transform:translateY(-50%);z-index:5;width:44px;height:44px;border:0;border-radius:999px;background:#fff;color:var(--acr-primary);font-size:32px;line-height:1;box-shadow:var(--acr-shadow);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:transform .18s ease, box-shadow .18s ease}.acr-carousel-nav:hover{transform:translateY(-50%) scale(1.04);box-shadow:var(--acr-shadow-lg)}.acr-carousel-prev{left:-14px}.acr-carousel-next{right:-14px}
.acr-catalog-layout-compact .acr-vehicle-grid,.acr-layout-compact{display:grid;grid-template-columns:1fr!important;gap:14px}.acr-vehicle-card-compact{display:grid;grid-template-columns:240px minmax(0,1fr);align-items:stretch}.acr-vehicle-card-compact .acr-card-image{min-height:190px}.acr-vehicle-card-compact .acr-card-body{display:flex;flex-direction:column;justify-content:center}.acr-vehicle-card-compact .acr-card-head{align-items:center}.acr-vehicle-card-compact .acr-card-body p{margin:10px 0 14px}.acr-vehicle-card-mini{display:grid;grid-template-columns:116px minmax(0,1fr);border-radius:18px}.acr-vehicle-card-mini .acr-card-image{min-height:116px}.acr-vehicle-card-mini .acr-chip,.acr-vehicle-card-mini .acr-status-badge,.acr-vehicle-card-mini .acr-card-gradient{display:none}.acr-vehicle-card-mini .acr-card-body{padding:14px}.acr-vehicle-card-mini .acr-card-head{margin:0}.acr-vehicle-card-mini .acr-card-kicker{font-size:10px;margin-bottom:4px}.acr-vehicle-card-mini .acr-card-body h3{font-size:17px}.acr-vehicle-card-mini .acr-price strong{font-size:16px}.acr-vehicle-card-mini .acr-spec-row{margin-top:8px}.acr-vehicle-card-mini .acr-spec-row span{font-size:11px;padding:6px 8px}.acr-vehicle-card-mini .acr-card-footer{padding-top:10px}.acr-vehicle-card-mini .acr-card-actions .acr-btn{padding:10px 12px;font-size:12px}.acr-vehicle-card-mini .acr-btn-secondary{display:none}
.acr-single-card-shortcode{max-width:420px}.acr-field-link{color:var(--acr-primary);font-weight:800}.acr-field{font-weight:700;color:var(--acr-text)}.acr-field-price{color:var(--acr-primary);font-family:inherit}.acr-field-image{display:block;width:100%;height:auto;border-radius:18px;box-shadow:var(--acr-shadow-sm)}
@media(max-width:1024px){.acr-layout-carousel .acr-vehicle-card{min-width:calc((100% - 22px) / 2)}.acr-layout-slider .acr-vehicle-card{grid-template-columns:1fr}.acr-layout-slider .acr-card-image{min-height:320px}.acr-vehicle-card-compact{grid-template-columns:200px minmax(0,1fr)}}
@media(max-width:700px){.acr-vehicle-grid.acr-layout-grid{grid-template-columns:1fr}.acr-layout-carousel .acr-vehicle-card,.acr-layout-slider .acr-vehicle-card{min-width:86%}.acr-layout-slider .acr-card-image{min-height:260px}.acr-carousel-prev{left:4px}.acr-carousel-next{right:4px}.acr-vehicle-card-compact,.acr-vehicle-card-mini{grid-template-columns:1fr}.acr-vehicle-card-mini .acr-card-image{min-height:160px}.acr-vehicle-card-mini .acr-chip,.acr-vehicle-card-mini .acr-status-badge{display:inline-flex}.acr-vehicle-card-mini .acr-card-actions .acr-btn{font-size:13px}.acr-single-card-shortcode{max-width:none}}


/* Aeroturex frontend v1.0.7 - Premium Stitch-inspired vehicle detail showroom */
.acr-showroom-page{
  background:
    radial-gradient(circle at 14% 0%, rgba(46,49,146,.08), transparent 28%),
    linear-gradient(180deg,#f7f8ff 0%, #ffffff 42%);
  padding-bottom:110px;
}

.acr-showroom{
  max-width:1240px;
  margin:0 auto;
  padding:26px 16px 60px;
}

.acr-showroom-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin:0 0 18px;
}

.acr-showroom-topbar .acr-breadcrumb{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  margin:0;
  color:var(--acr-text-soft);
  font-size:13px;
  font-weight:600;
}

.acr-showroom-topbar .acr-breadcrumb a{
  color:var(--acr-primary);
  font-weight:800;
}

.acr-showroom-status{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius:999px;
  padding:9px 13px;
  background:var(--acr-success-bg);
  color:var(--acr-success);
  border:1px solid rgba(14,159,110,.16);
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.acr-showroom-status:before{
  content:"";
  width:8px;
  height:8px;
  border-radius:999px;
  background:currentColor;
}

.acr-showroom-status.acr-status-maintenance,
.acr-showroom-status.acr-status-busy,
.acr-showroom-status.acr-status-hidden{
  background:var(--acr-danger-bg);
  color:var(--acr-danger);
  border-color:#fed7aa;
}

.acr-showroom-hero{
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  gap:24px;
  align-items:stretch;
  padding:34px;
  border-radius:34px;
  background:
    radial-gradient(circle at 78% 24%, rgba(255,255,255,.18), transparent 24%),
    linear-gradient(135deg,#10145f 0%, var(--acr-secondary) 68%, #4d50c2 100%);
  color:#fff;
  box-shadow:var(--acr-shadow-lg);
  overflow:hidden;
  position:relative;
}

.acr-showroom-hero:after{
  content:"";
  position:absolute;
  right:-110px;
  bottom:-130px;
  width:390px;
  height:390px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  filter:blur(2px);
  pointer-events:none;
}

.acr-showroom-copy,
.acr-showroom-price-card{
  position:relative;
  z-index:2;
}

.acr-showroom-tags{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:16px;
}

.acr-showroom-tags span{
  display:inline-flex;
  align-items:center;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.10);
  color:rgba(255,255,255,.88);
  border-radius:999px;
  padding:8px 12px;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.acr-showroom-copy h1{
  margin:12px 0 14px;
  color:#fff;
  font-size:clamp(40px,5.8vw,72px);
  line-height:.96;
  max-width:760px;
}

.acr-showroom-copy p{
  max-width:760px;
  margin:0;
  color:rgba(255,255,255,.84);
  font-size:18px;
  line-height:1.75;
}

.acr-showroom-actions{
  margin-top:28px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.acr-showroom-actions .acr-btn-secondary{
  background:rgba(255,255,255,.10);
  color:#fff;
  border-color:rgba(255,255,255,.28);
}

.acr-showroom-actions .acr-btn-secondary:hover{
  background:#fff;
  color:var(--acr-primary);
}

.acr-showroom-price-card{
  align-self:end;
  background:rgba(255,255,255,.96);
  color:var(--acr-text);
  border:1px solid rgba(255,255,255,.5);
  border-radius:26px;
  padding:24px;
  box-shadow:0 26px 70px rgba(0,0,0,.18);
}

.acr-showroom-price-card small,
.acr-showroom-price-card span{
  display:block;
  color:var(--acr-text-soft);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.acr-showroom-price-card strong{
  display:block;
  margin:8px 0 6px;
  font-family:inherit;
  font-size:34px;
  line-height:1;
  color:var(--acr-primary);
}

.acr-showroom-price-card em{
  display:block;
  margin-top:14px;
  color:var(--acr-text-soft);
  font-size:13px;
  line-height:1.55;
  font-style:normal;
}

.acr-showroom-main{
  display:grid;
  grid-template-columns:minmax(0,1fr) 392px;
  gap:28px;
  margin-top:28px;
  align-items:start;
}

.acr-showroom-left{
  min-width:0;
}

.acr-gallery-shell{
  background:#fff;
  border:1px solid var(--acr-border);
  border-radius:30px;
  padding:16px;
  box-shadow:var(--acr-shadow-sm);
}

.acr-gallery-stage{
  position:relative;
  min-height:520px;
  border-radius:24px;
  overflow:hidden;
  background:#eef2ff center/cover no-repeat;
  box-shadow:inset 0 -160px 120px rgba(20,27,43,.24);
}

.acr-gallery-stage:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(20,27,43,.02) 35%, rgba(20,27,43,.35) 100%);
  pointer-events:none;
}

.acr-gallery-badge,
.acr-gallery-count{
  position:absolute;
  z-index:2;
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  padding:9px 13px;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.acr-gallery-badge{
  left:18px;
  top:18px;
  background:rgba(255,255,255,.94);
  color:var(--acr-primary);
}

.acr-gallery-count{
  right:18px;
  bottom:18px;
  background:rgba(20,27,43,.66);
  color:#fff;
  backdrop-filter:blur(6px);
}

.acr-gallery-thumbs{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:10px;
  margin-top:12px;
}

.acr-gallery-thumb{
  position:relative;
  min-height:82px;
  border:1px solid var(--acr-border);
  border-radius:16px;
  background:#eef2ff center/cover no-repeat;
  cursor:pointer;
  overflow:hidden;
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.acr-gallery-thumb:after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(20,27,43,.18);
}

.acr-gallery-thumb span{
  position:absolute;
  z-index:2;
  left:8px;
  bottom:8px;
  display:inline-flex;
  width:24px;
  height:24px;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:rgba(255,255,255,.95);
  color:var(--acr-primary);
  font-size:11px;
  font-weight:900;
}

.acr-gallery-thumb:hover,
.acr-gallery-thumb.is-active{
  transform:translateY(-2px);
  border-color:var(--acr-secondary);
  box-shadow:0 10px 24px rgba(46,49,146,.16);
}

.acr-showroom-specs{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
  margin:18px 0 0;
}

.acr-showroom-spec{
  display:flex;
  flex-direction:column;
  gap:7px;
  background:#fff;
  border:1px solid var(--acr-border);
  border-radius:20px;
  padding:18px;
  box-shadow:var(--acr-shadow-sm);
}

.acr-spec-icon{
  display:inline-flex;
  width:44px;
  height:44px;
  align-items:center;
  justify-content:center;
  border-radius:15px;
  background:linear-gradient(180deg,#eef2ff,#f9fbff);
  font-size:21px;
  margin-bottom:4px;
}

.acr-showroom-spec small{
  display:block;
  font-size:12px;
  color:var(--acr-text-soft);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.acr-showroom-spec strong{
  display:block;
  font-family:inherit;
  font-size:20px;
  color:var(--acr-primary);
  line-height:1.2;
}

.acr-card-title-row{
  margin-bottom:18px;
}

.acr-card-title-row h2{
  margin:8px 0 0;
}

.acr-showroom-content{
  color:#344054;
  line-height:1.82;
}

.acr-showroom-content p:first-child{
  margin-top:0;
}

.acr-showroom-feature-card{
  overflow:hidden;
  position:relative;
}

.acr-showroom-feature-card:before{
  content:"";
  position:absolute;
  right:-80px;
  top:-80px;
  width:190px;
  height:190px;
  border-radius:999px;
  background:rgba(46,49,146,.06);
  pointer-events:none;
}

.acr-premium-feature-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  position:relative;
  z-index:2;
}

.acr-premium-feature-grid div{
  display:flex;
  gap:12px;
  align-items:flex-start;
  background:linear-gradient(180deg,#f8faff,#fff);
  border:1px solid var(--acr-border);
  border-radius:18px;
  padding:16px;
}

.acr-premium-feature-grid span{
  display:inline-flex;
  min-width:28px;
  height:28px;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:var(--acr-success-bg);
  color:var(--acr-success);
  font-weight:900;
}

.acr-premium-feature-grid strong{
  color:var(--acr-text);
  font-size:15px;
  line-height:1.45;
}

.acr-showroom-usecases{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-top:22px;
}

.acr-showroom-usecases article{
  background:#fff;
  border:1px solid var(--acr-border);
  border-radius:22px;
  padding:22px;
  box-shadow:var(--acr-shadow-sm);
}

.acr-showroom-usecases span{
  display:inline-flex;
  width:44px;
  height:44px;
  align-items:center;
  justify-content:center;
  border-radius:15px;
  background:linear-gradient(180deg,#eef2ff,#f9fbff);
  font-size:21px;
  margin-bottom:12px;
}

.acr-showroom-usecases h3{
  margin:0 0 8px;
  font-size:19px;
}

.acr-showroom-usecases p{
  margin:0;
  color:var(--acr-text-soft);
  line-height:1.65;
  font-size:14px;
}

.acr-showroom-sidebar{
  position:relative;
}

.acr-showroom-sidebar-card{
  position:sticky;
  top:104px;
}

.acr-showroom-sidebar .acr-booking-widget{
  margin:0;
  border-radius:28px;
  box-shadow:var(--acr-shadow);
  border-color:rgba(46,49,146,.12);
}

.acr-showroom-sidebar .acr-booking-head{
  background:linear-gradient(180deg,#f8faff,#fff);
  margin:-26px -26px 18px;
  padding:22px 26px 18px;
  border-radius:28px 28px 0 0;
}

.acr-showroom-sidebar .acr-price-summary{
  border-radius:20px;
}

@media(max-width:1100px){
  .acr-showroom-hero,
  .acr-showroom-main{
    grid-template-columns:1fr;
  }
  .acr-showroom-price-card{
    align-self:stretch;
  }
  .acr-showroom-sidebar-card{
    position:static;
  }
  .acr-gallery-stage{
    min-height:440px;
  }
}

@media(max-width:760px){
  .acr-showroom{
    padding-left:12px;
    padding-right:12px;
  }
  .acr-showroom-topbar{
    align-items:flex-start;
    flex-direction:column;
  }
  .acr-showroom-hero{
    padding:26px;
    border-radius:26px;
  }
  .acr-showroom-copy h1{
    font-size:40px;
  }
  .acr-showroom-actions{
    flex-direction:column;
  }
  .acr-showroom-actions .acr-btn{
    width:100%;
  }
  .acr-gallery-stage{
    min-height:330px;
    border-radius:20px;
  }
  .acr-gallery-thumbs{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
  .acr-showroom-specs,
  .acr-premium-feature-grid,
  .acr-showroom-usecases{
    grid-template-columns:1fr;
  }
  .acr-gallery-shell,
  .acr-content-card,
  .acr-showroom-sidebar .acr-booking-widget{
    border-radius:22px;
  }
}

@media(max-width:520px){
  .acr-showroom-price-card strong{
    font-size:30px;
  }
  .acr-gallery-stage{
    min-height:280px;
  }
  .acr-gallery-thumb{
    min-height:70px;
  }
}

/* Aeroturex frontend v1.0.8 - LuxeDrive-inspired individual vehicle page */
.acr-luxedrive-page{
  background:#f8fafc;
  padding-bottom:96px;
}
.acr-luxe-detail{
  max-width:1280px;
  margin:0 auto;
  padding:40px 20px 70px;
  font-family:inherit;
  color:#1f2937;
}
.acr-luxe-detail h1,
.acr-luxe-detail h2,
.acr-luxe-detail h3{
  font-family:inherit;
  letter-spacing:-.025em;
}
.acr-luxe-back-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  margin-bottom:24px;
}
.acr-luxe-back{
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:var(--acr-primary);
  font-weight:800;
  font-size:14px;
}
.acr-luxe-back span{
  display:inline-flex;
  width:28px;
  height:28px;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:#eef2ff;
  color:var(--acr-primary);
}
.acr-luxe-status{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 13px;
  border-radius:999px;
  background:#ecfdf5;
  border:1px solid #bbf7d0;
  color:#047857;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:11px;
  font-weight:900;
}
.acr-luxe-status:before{
  content:"";
  width:8px;
  height:8px;
  border-radius:999px;
  background:currentColor;
}
.acr-luxe-status.acr-status-busy,
.acr-luxe-status.acr-status-maintenance,
.acr-luxe-status.acr-status-hidden{
  background:#fffbeb;
  border-color:#fde68a;
  color:#b45309;
}
.acr-luxe-grid{
  display:grid;
  grid-template-columns:minmax(0,8fr) minmax(340px,4fr);
  gap:32px;
  align-items:start;
}
.acr-luxe-left{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:24px;
}
.acr-luxe-image-card,
.acr-luxe-info-card,
.acr-luxe-feature-card,
.acr-luxe-content-card{
  background:#fff;
  border:1px solid #eef2f7;
  border-radius:16px;
  box-shadow:0 12px 30px rgba(15,23,42,.045);
}
.acr-luxe-image-card{
  position:relative;
  overflow:hidden;
  padding:26px;
  min-height:420px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.acr-luxe-type-tag{
  position:absolute;
  top:18px;
  left:18px;
  z-index:3;
  display:inline-flex;
  align-items:center;
  border:1px solid #e0e7ff;
  background:#eef2ff;
  color:var(--acr-primary);
  border-radius:6px;
  padding:7px 11px;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.acr-luxe-image-stage{
  min-height:340px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:30px 10px 10px;
}
.acr-luxe-image-stage img{
  width:100%;
  height:auto;
  max-height:340px;
  object-fit:contain;
  filter:drop-shadow(0 18px 20px rgba(15,23,42,.16));
  transition:transform .35s ease, opacity .2s ease;
}
.acr-luxe-image-card:hover .acr-luxe-image-stage img{
  transform:scale(1.015);
}
.acr-luxe-thumbs{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:10px;
  margin-top:18px;
}
.acr-luxe-thumb{
  min-height:74px;
  border-radius:10px;
  border:1px solid #e5e7eb;
  background:#f8fafc center/cover no-repeat;
  cursor:pointer;
  overflow:hidden;
  position:relative;
  transition:all .18s ease;
}
.acr-luxe-thumb:after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(15,23,42,.12);
}
.acr-luxe-thumb span{
  position:absolute;
  left:7px;
  bottom:7px;
  z-index:2;
  display:inline-flex;
  width:22px;
  height:22px;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:rgba(255,255,255,.95);
  color:var(--acr-primary);
  font-size:10px;
  font-weight:900;
}
.acr-luxe-thumb.is-active,
.acr-luxe-thumb:hover{
  border-color:var(--acr-primary);
  box-shadow:0 8px 20px rgba(21,21,125,.13);
  transform:translateY(-1px);
}
.acr-luxe-info-card,
.acr-luxe-feature-card,
.acr-luxe-content-card{
  padding:28px;
}
.acr-luxe-title-row{
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:flex-start;
}
.acr-luxe-tier{
  display:inline-flex;
  align-items:center;
  background:#eef2ff;
  color:var(--acr-primary);
  border-radius:6px;
  padding:6px 10px;
  text-transform:uppercase;
  letter-spacing:.11em;
  font-size:11px;
  font-weight:900;
}
.acr-luxe-title-row h1{
  margin:14px 0 0;
  color:#111827;
  font-size:clamp(30px,4vw,44px);
  line-height:1.06;
  font-weight:900;
}
.acr-luxe-price{
  text-align:right;
  flex:0 0 auto;
}
.acr-luxe-price small{
  display:block;
  color:#9ca3af;
  font-size:12px;
  font-weight:700;
}
.acr-luxe-price strong{
  display:block;
  margin-top:5px;
  color:var(--acr-primary);
  font-family:inherit;
  font-size:28px;
  line-height:1;
  font-weight:900;
}
.acr-luxe-price span{
  display:block;
  margin-top:2px;
  color:#9ca3af;
  font-size:12px;
  font-weight:500;
}
.acr-luxe-description{
  margin:22px 0 0;
  color:#667085;
  line-height:1.78;
  font-size:15px;
}
.acr-luxe-spec-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
  padding-top:24px;
  margin-top:24px;
  border-top:1px solid #eef2f7;
}
.acr-luxe-spec-item{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.acr-luxe-spec-item > span{
  flex:0 0 auto;
  width:38px;
  height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:#eef2ff;
  color:var(--acr-primary);
  font-size:17px;
}
.acr-luxe-spec-item small{
  display:block;
  font-size:10px;
  color:#9ca3af;
  text-transform:uppercase;
  letter-spacing:.06em;
  font-weight:800;
  line-height:1.25;
}
.acr-luxe-spec-item strong{
  display:block;
  margin-top:3px;
  color:#1f2937;
  font-size:12px;
  line-height:1.25;
  font-weight:900;
}
.acr-luxe-feature-card h2,
.acr-luxe-content-card h2{
  margin:0 0 18px;
  color:#111827;
  font-size:22px;
  font-weight:900;
  padding-bottom:16px;
  border-bottom:1px solid #eef2f7;
}
.acr-luxe-feature-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px 28px;
}
.acr-luxe-feature-list li{
  display:flex;
  align-items:center;
  gap:12px;
  color:#374151;
  font-size:14px;
  font-weight:700;
  line-height:1.45;
}
.acr-luxe-feature-list li span{
  display:inline-flex;
  width:24px;
  height:24px;
  flex:0 0 auto;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:#ecfdf5;
  color:#059669;
  font-weight:900;
}
.acr-luxe-content{
  color:#4b5563;
  line-height:1.78;
  font-size:15px;
}
.acr-luxe-content p:first-child{margin-top:0}
.acr-luxe-sidebar{
  position:sticky;
  top:110px;
  align-self:start;
}
.acr-luxe-sidebar .acr-booking-widget{
  margin:0;
  border-radius:16px;
  border:1px solid #eef2f7;
  box-shadow:0 18px 38px rgba(15,23,42,.08);
  padding:28px;
}
.acr-luxe-sidebar .acr-booking-head{
  margin:0 0 22px;
  padding:0 0 18px;
  border-bottom:1px solid #eef2f7;
  background:transparent;
}
.acr-luxe-sidebar .acr-booking-head h3{
  color:#111827;
  font-size:24px;
  font-weight:900;
}
.acr-luxe-sidebar .acr-booking-form{
  gap:17px;
}
.acr-luxe-sidebar .acr-booking-form label{
  font-size:11px;
  color:#4b5563;
  letter-spacing:.08em;
}
.acr-luxe-sidebar .acr-booking-form input,
.acr-luxe-sidebar .acr-booking-form select,
.acr-luxe-sidebar .acr-booking-form textarea{
  background:#f8fafc;
  border-color:#e5e7eb;
  border-radius:7px;
  padding:12px 13px;
  min-height:42px;
  font-size:13px;
}
.acr-luxe-sidebar .acr-booking-form input:focus,
.acr-luxe-sidebar .acr-booking-form select:focus,
.acr-luxe-sidebar .acr-booking-form textarea:focus{
  background:#fff;
  border-color:var(--acr-primary);
  box-shadow:0 0 0 3px rgba(21,21,125,.08);
}
.acr-luxe-sidebar .acr-price-summary{
  background:#fff;
  border-radius:10px;
  border:0;
  border-top:1px solid #eef2f7;
  padding:18px 0 0;
}
.acr-luxe-sidebar .acr-price-summary div{
  font-size:12px;
}
.acr-luxe-sidebar .acr-price-summary strong{
  font-size:18px;
}
.acr-luxe-sidebar .acr-btn-full{
  min-height:48px;
  border-radius:7px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:12px;
}
.acr-luxe-mobile-bar{
  border-radius:14px;
}
@media(max-width:1100px){
  .acr-luxe-grid{
    grid-template-columns:1fr;
  }
  .acr-luxe-sidebar{
    position:static;
  }
}
@media(max-width:760px){
  .acr-luxe-detail{
    padding:24px 12px 90px;
  }
  .acr-luxe-back-row{
    align-items:flex-start;
    flex-direction:column;
  }
  .acr-luxe-image-card{
    min-height:300px;
    padding:18px;
    border-radius:14px;
  }
  .acr-luxe-image-stage{
    min-height:250px;
    padding-top:46px;
  }
  .acr-luxe-image-stage img{
    max-height:250px;
  }
  .acr-luxe-title-row{
    flex-direction:column;
    gap:16px;
  }
  .acr-luxe-price{
    text-align:left;
  }
  .acr-luxe-spec-grid,
  .acr-luxe-feature-list{
    grid-template-columns:1fr;
  }
  .acr-luxe-thumbs{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
  .acr-luxe-info-card,
  .acr-luxe-feature-card,
  .acr-luxe-content-card,
  .acr-luxe-sidebar .acr-booking-widget{
    padding:22px;
  }
}


/* Aeroturex frontend v1.0.9 - Selectable vehicle page templates */
.acr-template-showroom .acr-gallery-stage img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:1;
}
.acr-template-showroom .acr-gallery-stage .acr-gallery-badge,
.acr-template-showroom .acr-gallery-stage .acr-gallery-count{
  z-index:3;
}
.acr-template-showroom .acr-gallery-stage:after{
  z-index:2;
}

.acr-design-split,
.acr-compact-detail{
  max-width:1240px;
  margin:0 auto;
  padding:28px 16px 96px;
}

.acr-split-hero{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);
  gap:24px;
  align-items:stretch;
  margin-top:18px;
}

.acr-split-gallery,
.acr-split-summary,
.acr-split-main > div,
.acr-compact-visual,
.acr-compact-booking,
.acr-compact-content > div{
  background:#fff;
  border:1px solid #eef2f7;
  border-radius:20px;
  box-shadow:0 18px 38px rgba(15,23,42,.08);
}

.acr-split-gallery{
  padding:18px;
}

.acr-split-image{
  min-height:500px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg,#f8fafc,#eef2ff);
  border-radius:16px;
  overflow:hidden;
}

.acr-split-image img{
  display:block;
  max-width:96%;
  max-height:460px;
  object-fit:contain;
}

.acr-split-summary{
  padding:34px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.acr-split-summary h1{
  margin:16px 0 16px;
  font-size:clamp(34px,4.5vw,56px);
  line-height:1.02;
  color:#111827;
  font-weight:900;
}

.acr-split-summary p{
  color:#667085;
  line-height:1.78;
  font-size:16px;
  margin:0 0 22px;
}

.acr-split-price{
  background:linear-gradient(180deg,#f8faff,#fff);
  border:1px solid #eef2f7;
  border-radius:16px;
  padding:18px;
  margin:0 0 24px;
}

.acr-split-price small,
.acr-split-price span{
  display:block;
  color:#8a94a6;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.acr-split-price strong{
  display:block;
  margin:6px 0 2px;
  color:var(--acr-primary);
  font-family:inherit;
  font-size:32px;
  line-height:1;
}

.acr-split-main{
  display:grid;
  grid-template-columns:minmax(0,1fr) 392px;
  gap:24px;
  align-items:start;
  margin-top:24px;
}

.acr-split-main .acr-luxe-sidebar{
  position:sticky;
  top:110px;
}

.acr-template-split .acr-luxe-feature-card,
.acr-template-split .acr-luxe-content-card{
  margin-bottom:20px;
}

/* Compact template */
.acr-compact-detail{
  max-width:1120px;
}

.acr-compact-header{
  display:grid;
  grid-template-columns:220px minmax(0,1fr);
  gap:24px;
  align-items:start;
  margin-bottom:22px;
}

.acr-compact-title{
  background:linear-gradient(135deg,#11145f,#2e3192);
  color:#fff;
  border-radius:24px;
  padding:30px;
  box-shadow:0 22px 50px rgba(21,21,125,.16);
}

.acr-compact-title .acr-luxe-tier{
  background:rgba(255,255,255,.14);
  color:#fff;
}

.acr-compact-title h1{
  color:#fff;
  margin:14px 0 12px;
  font-size:clamp(34px,4vw,54px);
  line-height:1.02;
}

.acr-compact-title p{
  color:rgba(255,255,255,.82);
  margin:0;
  line-height:1.7;
}

.acr-compact-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 380px;
  gap:24px;
  align-items:start;
}

.acr-compact-visual{
  padding:22px;
  position:relative;
}

.acr-compact-visual img{
  display:block;
  width:100%;
  max-height:430px;
  object-fit:contain;
  background:linear-gradient(180deg,#f8fafc,#eef2ff);
  border-radius:16px;
  padding:24px;
  box-sizing:border-box;
}

.acr-compact-price{
  position:absolute;
  left:38px;
  bottom:38px;
  min-width:210px;
  background:rgba(255,255,255,.96);
  border:1px solid #eef2f7;
  border-radius:16px;
  box-shadow:0 18px 38px rgba(15,23,42,.12);
  padding:16px;
}

.acr-compact-price small,
.acr-compact-price span{
  display:block;
  color:#8a94a6;
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.acr-compact-price strong{
  display:block;
  margin:5px 0 2px;
  color:var(--acr-primary);
  font-size:28px;
  line-height:1;
  font-family:inherit;
}

.acr-compact-specs{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:16px;
}

.acr-compact-specs span{
  display:inline-flex;
  background:#f8faff;
  border:1px solid #eef2f7;
  border-radius:999px;
  padding:9px 12px;
  font-size:12px;
  font-weight:800;
  color:#344054;
}

.acr-compact-booking{
  position:sticky;
  top:110px;
  padding:0;
  overflow:hidden;
}

.acr-compact-booking .acr-booking-widget{
  margin:0;
  border:0;
  box-shadow:none;
  border-radius:20px;
}

.acr-compact-content{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
  margin-top:24px;
}

/* Template-specific booking polish */
.acr-template-split .acr-luxe-sidebar .acr-booking-widget,
.acr-template-compact .acr-compact-booking .acr-booking-widget{
  border-radius:18px;
  border:1px solid #eef2f7;
}

@media(max-width:1100px){
  .acr-split-hero,
  .acr-split-main,
  .acr-compact-header,
  .acr-compact-grid{
    grid-template-columns:1fr;
  }
  .acr-split-main .acr-luxe-sidebar,
  .acr-compact-booking{
    position:static;
  }
  .acr-split-image{
    min-height:360px;
  }
}

@media(max-width:760px){
  .acr-design-split,
  .acr-compact-detail{
    padding:24px 12px 90px;
  }
  .acr-split-summary,
  .acr-compact-title{
    padding:24px;
    border-radius:18px;
  }
  .acr-split-summary h1,
  .acr-compact-title h1{
    font-size:38px;
  }
  .acr-split-image{
    min-height:280px;
  }
  .acr-split-image img{
    max-height:260px;
  }
  .acr-compact-price{
    position:static;
    margin-top:14px;
  }
  .acr-compact-visual img{
    max-height:280px;
    padding:14px;
  }
}


/* Aeroturex frontend v1.0.10 gallery refinements */
.acr-gallery-thumbs,
.acr-luxe-thumbs{
  scrollbar-width:thin;
  scrollbar-color:rgba(21,21,125,.35) transparent;
}
.acr-gallery-thumbs::-webkit-scrollbar,
.acr-luxe-thumbs::-webkit-scrollbar{
  height:7px;
}
.acr-gallery-thumbs::-webkit-scrollbar-thumb,
.acr-luxe-thumbs::-webkit-scrollbar-thumb{
  background:rgba(21,21,125,.28);
  border-radius:999px;
}
.acr-gallery-thumb,
.acr-luxe-thumb{
  isolation:isolate;
}
.acr-gallery-thumb.is-active,
.acr-luxe-thumb.is-active{
  outline:2px solid var(--acr-primary);
  outline-offset:2px;
}
.acr-luxe-image-card.has-gallery,
.acr-gallery-shell.has-gallery{
  overflow:hidden;
}
.acr-luxe-thumbs,
.acr-gallery-thumbs{
  align-items:stretch;
}
@media(max-width:640px){
  .acr-luxe-thumbs,
  .acr-gallery-thumbs{
    display:flex;
    overflow-x:auto;
    padding-bottom:4px;
  }
  .acr-luxe-thumb,
  .acr-gallery-thumb{
    min-width:96px;
  }
}


/* Aeroturex frontend v1.0.11 - card gallery fade for grid/carousel/slider */
.acr-card-image-gallery{
  overflow:hidden;
  isolation:isolate;
}
.acr-card-fade-image{
  position:absolute;
  inset:0;
  z-index:0;
  display:block;
  background:center/cover no-repeat;
  opacity:0;
  transform:scale(1.02);
  transition:opacity .85s ease, transform 1.35s ease;
  will-change:opacity, transform;
}
.acr-card-fade-image.is-active{
  opacity:1;
  transform:scale(1);
}
.acr-card-image-gallery .acr-chip,
.acr-card-image-gallery .acr-status-badge,
.acr-card-image-gallery .acr-card-gradient,
.acr-card-image-gallery .acr-card-photo-count,
.acr-card-image-gallery .acr-card-gallery-dots{
  z-index:3;
}
.acr-card-photo-count{
  position:absolute;
  left:16px;
  bottom:16px;
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  padding:7px 10px;
  background:rgba(15,23,42,.66);
  color:#fff;
  backdrop-filter:blur(8px);
  font-size:11px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.acr-card-gallery-dots{
  position:absolute;
  right:16px;
  bottom:18px;
  display:inline-flex;
  align-items:center;
  gap:5px;
  padding:6px 8px;
  border-radius:999px;
  background:rgba(255,255,255,.76);
  backdrop-filter:blur(8px);
}
.acr-card-gallery-dots i{
  display:block;
  width:6px;
  height:6px;
  border-radius:999px;
  background:rgba(21,21,125,.28);
  transition:width .25s ease, background .25s ease;
}
.acr-card-gallery-dots i.is-active{
  width:16px;
  background:var(--acr-primary);
}
.acr-vehicle-card-slider .acr-card-fade-image,
.acr-vehicle-card-carousel .acr-card-fade-image{
  transition-duration:1s;
}
.acr-card-image-gallery:hover .acr-card-fade-image.is-active{
  transform:scale(1.04);
}
@media(max-width:640px){
  .acr-card-photo-count{
    left:12px;
    bottom:12px;
    font-size:10px;
  }
  .acr-card-gallery-dots{
    right:12px;
    bottom:13px;
  }
}


/* Aeroturex frontend v1.0.13 vehicle operational information */
.acr-operational-info{
  max-width:1240px;
  margin:28px auto 0;
  padding:0 16px 24px;
}
.acr-operational-info .acr-card-title-row{
  background:#fff;
  border:1px solid var(--acr-border);
  border-radius:22px 22px 0 0;
  padding:22px 24px;
  margin:0;
  box-shadow:var(--acr-shadow-sm);
}
.acr-operational-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  background:#fff;
  border:1px solid var(--acr-border);
  border-top:0;
  border-radius:0 0 22px 22px;
  padding:22px;
  box-shadow:var(--acr-shadow-sm);
}
.acr-operational-grid div{
  background:linear-gradient(180deg,#f8faff,#fff);
  border:1px solid var(--acr-border);
  border-radius:16px;
  padding:16px;
}
.acr-operational-grid strong{
  display:block;
  color:var(--acr-primary);
  margin-bottom:6px;
}
.acr-operational-grid p{
  margin:0;
  color:var(--acr-text-soft);
  line-height:1.55;
}
@media(max-width:1024px){
  .acr-operational-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media(max-width:640px){
  .acr-operational-info{
    padding-left:12px;
    padding-right:12px;
  }
  .acr-operational-grid{
    grid-template-columns:1fr;
  }
}


/* Aeroturex frontend v1.0.14 form interaction safety */
.acr-home-search,
.acr-search-card,
.acr-catalog-filterbar,
.acr-booking-form,
.acr-booking-widget{
  pointer-events:auto;
}
.acr-home-search label,
.acr-search-card label,
.acr-catalog-filterbar label,
.acr-booking-form label{
  position:relative;
  z-index:5;
  pointer-events:auto;
}
.acr-home-search input,
.acr-home-search select,
.acr-home-search textarea,
.acr-search-card input,
.acr-search-card select,
.acr-search-card textarea,
.acr-catalog-filterbar input,
.acr-catalog-filterbar select,
.acr-catalog-filterbar textarea,
.acr-booking-form input,
.acr-booking-form select,
.acr-booking-form textarea,
.acr-booking-form button{
  pointer-events:auto;
  position:relative;
  z-index:6;
}
.acr-card-gradient,
.acr-card-fade-image{
  pointer-events:none;
}


/* Aeroturex frontend v1.0.15 - hard form interaction guard
   Base rule for future templates: visual layers must never cover search, filter or booking controls. */
.acr-home-search,
.acr-search-card,
.acr-catalog-filterbar,
.acr-booking-widget,
.acr-booking-form,
.acr-luxe-sidebar,
.acr-showroom-sidebar,
.acr-compact-booking,
.acr-sticky-sidebar{
  position:relative!important;
  z-index:9999!important;
  isolation:isolate;
  pointer-events:auto!important;
}

.acr-home-search *,
.acr-search-card *,
.acr-catalog-filterbar *,
.acr-booking-widget *,
.acr-booking-form *{
  pointer-events:auto!important;
}

.acr-home-search input,
.acr-home-search select,
.acr-home-search textarea,
.acr-search-card input,
.acr-search-card select,
.acr-search-card textarea,
.acr-catalog-filterbar input,
.acr-catalog-filterbar select,
.acr-catalog-filterbar textarea,
.acr-booking-form input,
.acr-booking-form select,
.acr-booking-form textarea{
  position:relative!important;
  z-index:10001!important;
  pointer-events:auto!important;
  user-select:auto!important;
  -webkit-user-select:auto!important;
  touch-action:manipulation;
  opacity:1!important;
  visibility:visible!important;
}

.acr-home-search select,
.acr-search-card select,
.acr-catalog-filterbar select,
.acr-booking-form select{
  appearance:auto!important;
  -webkit-appearance:menulist!important;
  -moz-appearance:auto!important;
  cursor:pointer!important;
  min-height:46px;
  background-color:#fff!important;
}

.acr-home-search button,
.acr-search-card button,
.acr-catalog-filterbar button,
.acr-booking-form button,
.acr-booking-form .acr-btn{
  position:relative!important;
  z-index:10002!important;
  pointer-events:auto!important;
  cursor:pointer!important;
}

.acr-home-hero::before,
.acr-home-hero::after,
.acr-showroom-hero::after,
.acr-showroom-feature-card::before,
.acr-vehicle-hero-grid::before,
.acr-vehicle-hero-grid::after,
.acr-luxe-image-card::before,
.acr-luxe-image-card::after,
.acr-luxe-info-card::before,
.acr-luxe-info-card::after,
.acr-gallery-stage::after,
.acr-card-image::after,
.acr-card-gradient,
.acr-card-fade-image,
.acr-gallery-badge,
.acr-gallery-count,
.acr-chip,
.acr-status-badge,
.acr-card-photo-count,
.acr-card-gallery-dots{
  pointer-events:none!important;
}

.acr-card-image,
.acr-card-image *{
  pointer-events:auto;
}
.acr-card-image .acr-card-fade-image,
.acr-card-image .acr-card-gradient,
.acr-card-image .acr-chip,
.acr-card-image .acr-status-badge,
.acr-card-image .acr-card-photo-count,
.acr-card-image .acr-card-gallery-dots{
  pointer-events:none!important;
}

/* Do not allow decorative absolute layers to sit above booking fields. */
.acr-single-page .acr-booking-widget{
  transform:none;
}


/* Aeroturex frontend v1.0.17 - native select protection and anti-FOUC base */
.acr-home,
.acr-hero-search,
.acr-catalog-wrap,
.acr-single-page,
.acr-archive-page,
.acr-confirmation,
.acr-booking-steps{
  box-sizing:border-box;
}
.acr-home *,
.acr-hero-search *,
.acr-catalog-wrap *,
.acr-single-page *,
.acr-archive-page *,
.acr-confirmation *,
.acr-booking-steps *{
  box-sizing:border-box;
}

/* Some themes/plugins convert selects into div.nice-select.
   Inside Aeroturex forms we must keep native selects to avoid blocked fields. */
.acr-home-search .nice-select,
.acr-search-card .nice-select,
.acr-catalog-filterbar .nice-select,
.acr-booking-form .nice-select,
.acr-booking-widget .nice-select{
  display:none!important;
  visibility:hidden!important;
  opacity:0!important;
  pointer-events:none!important;
  height:0!important;
  min-height:0!important;
  max-height:0!important;
  overflow:hidden!important;
  position:absolute!important;
  z-index:-1!important;
}

.acr-home-search select,
.acr-search-card select,
.acr-catalog-filterbar select,
.acr-booking-form select,
.acr-booking-widget select{
  display:block!important;
  visibility:visible!important;
  opacity:1!important;
  pointer-events:auto!important;
  position:relative!important;
  z-index:10010!important;
  height:auto!important;
  min-height:46px!important;
  max-height:none!important;
  width:100%!important;
  appearance:auto!important;
  -webkit-appearance:menulist!important;
  -moz-appearance:auto!important;
  cursor:pointer!important;
}

/* Prevent third-party dropdown lists from staying open over other Aeroturex fields. */
.acr-home-search .nice-select.open .list,
.acr-search-card .nice-select.open .list,
.acr-catalog-filterbar .nice-select.open .list,
.acr-booking-form .nice-select.open .list,
.acr-booking-widget .nice-select.open .list{
  display:none!important;
  pointer-events:none!important;
}

/* Keep form layout stable during first paint while full CSS loads. */
.acr-catalog-wrap .acr-vehicle-grid{
  min-height:260px;
}
.acr-booking-widget{
  min-height:360px;
}


/* Aeroturex frontend v1.0.18 - Elementor/theme conflict shield */
.acr-host-boost,
.acr-host-boost > .elementor-widget-container,
.acr-host-boost .elementor-shortcode{
  position:relative!important;
  z-index:999999!important;
  overflow:visible!important;
  isolation:isolate;
}

.acr-catalog-wrap,
.acr-hero-search,
.acr-home,
.acr-single-page,
.acr-archive-page,
.acr-booking-widget,
.acr-catalog-filterbar,
.acr-search-card,
.acr-home-search{
  position:relative!important;
  z-index:999999!important;
  isolation:isolate;
}

.acr-catalog-layout-carousel .acr-catalog-filterbar,
.acr-catalog-layout-grid .acr-catalog-filterbar,
.acr-catalog-wrap form,
.acr-booking-form{
  z-index:1000001!important;
}

.acr-catalog-wrap + *,
.acr-host-boost + *{
  position:relative;
}

/* Prevent nearby theme package/search widgets from covering Aeroturex when they overlap in Elementor layouts. */
body:has(.acr-catalog-wrap) .elementor-widget-gofly_search_filter,
body:has(.acr-catalog-wrap) .home3-travel-package-section{
  z-index:1;
}

/* Aeroturex frontend v1.0.19 - SEO heading and filtered results cleanup */
.acr-search-compact-results{
  padding:0!important;
  background:transparent!important;
  box-shadow:none!important;
  border:0!important;
  max-width:1240px;
}
.acr-search-compact-results .acr-search-card{
  margin-top:0!important;
}
.acr-catalog-wrap .acr-section-heading h1,
.acr-catalog-wrap .acr-section-heading h2,
.acr-catalog-wrap .acr-section-heading h3,
.acr-catalog-wrap .acr-section-heading h4,
.acr-catalog-wrap .acr-section-heading h5,
.acr-catalog-wrap .acr-section-heading h6{
  margin-top:0;
}


/* Aeroturex v1.0.20 dedicated results page */
.acr-results-page-wrap{
  max-width:1240px;
  margin:0 auto;
  padding:34px 16px 60px;
  position:relative;
  z-index:999999;
}
.acr-results-page-wrap .acr-catalog-wrap{
  margin-top:0;
}
.acr-results-page-wrap .acr-section-heading{
  margin-bottom:20px;
}
.acr-results-page-wrap .acr-catalog-filterbar{
  margin-bottom:22px;
}


/* Aeroturex frontend v1.0.21 - vehicle detail must respect site header/menu */
body.single-acr_vehicle .acr-host-boost,
body.single-acr_vehicle .acr-host-boost > .elementor-widget-container,
body.single-acr_vehicle .acr-host-boost .elementor-shortcode,
body.single-acr_vehicle .elementor-element.acr-host-boost,
body.single-acr_vehicle .e-con.acr-host-boost,
body.single-acr_vehicle .e-con-full.acr-host-boost{
  z-index:auto!important;
  isolation:auto!important;
}

.acr-single-page{
  position:relative!important;
  z-index:1!important;
  isolation:auto!important;
}

.acr-single-page .acr-luxe-detail,
.acr-single-page .acr-showroom,
.acr-single-page .acr-design-split,
.acr-single-page .acr-compact-detail,
.acr-single-page .acr-vehicle-hero,
.acr-single-page .acr-single-layout,
.acr-single-page .acr-operational-info{
  position:relative!important;
  z-index:1!important;
  isolation:auto!important;
}

.acr-single-page .acr-luxe-sidebar,
.acr-single-page .acr-showroom-sidebar,
.acr-single-page .acr-showroom-sidebar-card,
.acr-single-page .acr-sticky-sidebar,
.acr-single-page .acr-booking-widget,
.acr-single-page .acr-compact-booking{
  z-index:5!important;
}

/* Keep the high conflict shield only for listing/search contexts, not individual vehicle pages. */
.acr-catalog-wrap,
.acr-hero-search,
.acr-home,
.acr-results-page,
.acr-catalog-filterbar,
.acr-search-card,
.acr-home-search{
  position:relative!important;
}

/* If the active theme header uses common sticky/fixed selectors, do not let Aeroturex rise above it. */
.site-header,
.main-header,
.header-area,
#masthead,
.elementor-location-header,
.elementor-sticky--active{
  z-index:1000002;
}


/* Aeroturex frontend v1.0.22 Design Studio animation modes */
.acr-card-animation-none .acr-card-fade-image{
  transition:none!important;
}
.acr-card-animation-none .acr-card-fade-image:not(:first-child){
  display:none!important;
}
.acr-card-animation-none .acr-card-gallery-dots,
.acr-card-animation-none .acr-card-photo-count{
  display:none!important;
}
.acr-card-animation-zoom .acr-card-fade-image.is-active{
  opacity:1;
  transform:scale(1.055);
}
.acr-carousel-is-fading{
  opacity:.28;
  transition:opacity .18s ease;
}
.acr-carousel-shell [data-acr-carousel="true"]{
  scroll-behavior:smooth;
}
.acr-carousel-effect-fade .acr-vehicle-grid{
  transition:opacity .22s ease;
}


/* Aeroturex frontend v1.0.23 optional carousel/slider scrollbar */
.acr-carousel-hide-scrollbar .acr-vehicle-grid[data-acr-carousel="true"]{
  scrollbar-width:none!important;
  -ms-overflow-style:none!important;
}
.acr-carousel-hide-scrollbar .acr-vehicle-grid[data-acr-carousel="true"]::-webkit-scrollbar{
  display:none!important;
  width:0!important;
  height:0!important;
}
.acr-carousel-show-scrollbar .acr-vehicle-grid[data-acr-carousel="true"]{
  scrollbar-width:thin;
}
.acr-carousel-show-scrollbar .acr-vehicle-grid[data-acr-carousel="true"]::-webkit-scrollbar{
  height:8px;
}
.acr-carousel-show-scrollbar .acr-vehicle-grid[data-acr-carousel="true"]::-webkit-scrollbar-thumb{
  border-radius:999px;
  background:rgba(21,21,125,.28);
}
.acr-carousel-show-scrollbar .acr-vehicle-grid[data-acr-carousel="true"]::-webkit-scrollbar-track{
  border-radius:999px;
  background:rgba(21,21,125,.08);
}


/* Aeroturex frontend v1.0.24 - mobile SEO/smart-friendly layout and sticky header safety */
@media (max-width: 782px){
  /* On mobile, Aeroturex visual blocks must never sit above the site sticky header/menu. */
  .acr-host-boost,
  .acr-host-boost > .elementor-widget-container,
  .acr-host-boost .elementor-shortcode,
  .acr-home,
  .acr-hero-search,
  .acr-catalog-wrap,
  .acr-results-page,
  .acr-archive-page,
  .acr-booking-steps,
  .acr-confirmation{
    z-index:10!important;
    isolation:auto!important;
  }

  .acr-mobile-header-safe,
  .acr-mobile-header-safe .acr-carousel-shell,
  .acr-mobile-header-safe .acr-vehicle-grid,
  .acr-mobile-header-safe .acr-vehicle-card{
    position:relative!important;
    z-index:10!important;
  }

  .site-header,
  .main-header,
  .header-area,
  #masthead,
  .elementor-location-header,
  .elementor-sticky--active,
  header.elementor-sticky,
  .sticky-header,
  .is-sticky,
  .navbar-fixed-top{
    z-index:1000002!important;
  }

  /* Mobile form: smart, tappable, readable. */
  .acr-home-search,
  .acr-search-card,
  .acr-catalog-filterbar{
    width:calc(100vw - 32px)!important;
    max-width:calc(100vw - 32px)!important;
    margin-left:auto!important;
    margin-right:auto!important;
    border-radius:24px!important;
    padding:22px!important;
    gap:16px!important;
  }
  .acr-home-search label,
  .acr-search-card label,
  .acr-catalog-filterbar label,
  .acr-booking-form label{
    font-size:12px!important;
    letter-spacing:.08em!important;
  }
  .acr-home-search input,
  .acr-home-search select,
  .acr-search-card input,
  .acr-search-card select,
  .acr-catalog-filterbar input,
  .acr-catalog-filterbar select,
  .acr-booking-form input,
  .acr-booking-form select,
  .acr-booking-form textarea{
    min-height:52px!important;
    font-size:16px!important;
    line-height:1.25!important;
  }
  .acr-search-card button,
  .acr-catalog-filterbar button,
  .acr-home-search button,
  .acr-booking-form button,
  .acr-btn{
    min-height:52px!important;
  }

  /* Mobile carousel/slider: one clear card per viewport and no horizontal page overflow. */
  .acr-catalog-layout-carousel,
  .acr-catalog-layout-slider{
    width:100%!important;
    max-width:100vw!important;
    overflow:hidden!important;
    padding-left:0!important;
    padding-right:0!important;
  }
  .acr-catalog-layout-carousel .acr-carousel-shell,
  .acr-catalog-layout-slider .acr-carousel-shell{
    overflow:visible!important;
    width:100%!important;
  }
  .acr-catalog-layout-carousel .acr-vehicle-grid[data-acr-carousel="true"],
  .acr-catalog-layout-slider .acr-vehicle-grid[data-acr-carousel="true"]{
    display:flex!important;
    gap:16px!important;
    overflow-x:auto!important;
    overflow-y:visible!important;
    scroll-snap-type:x mandatory;
    padding:0 20px 12px!important;
  }
  .acr-catalog-layout-carousel .acr-vehicle-card,
  .acr-catalog-layout-slider .acr-vehicle-card{
    flex:0 0 calc(100vw - 64px)!important;
    max-width:calc(100vw - 64px)!important;
    scroll-snap-align:center;
  }
  .acr-catalog-layout-carousel .acr-card-image,
  .acr-catalog-layout-slider .acr-card-image{
    min-height:280px!important;
  }
  .acr-catalog-layout-carousel .acr-card-body,
  .acr-catalog-layout-slider .acr-card-body{
    padding:22px!important;
  }
  .acr-card-body h3{
    font-size:clamp(26px,7vw,36px)!important;
    line-height:1.12!important;
  }
  .acr-card-body p{
    font-size:18px!important;
    line-height:1.5!important;
  }
  .acr-card-actions{
    display:grid!important;
    grid-template-columns:1fr 1fr!important;
    gap:12px!important;
  }
  .acr-card-actions .acr-btn{
    width:100%!important;
    padding:15px 12px!important;
    text-align:center!important;
  }
  .acr-carousel-prev,
  .acr-carousel-next{
    z-index:40!important;
    width:56px!important;
    height:56px!important;
    border-radius:999px!important;
  }

  /* The page itself should not get horizontal overflow from the slider. */
  body:has(.acr-catalog-layout-carousel),
  body:has(.acr-catalog-layout-slider){
    overflow-x:hidden;
  }
}


/* Aeroturex frontend v1.0.25 - global site-header respect contract
   Mandatory rule: Aeroturex must never create a stacking layer above the theme header/menu.
   Previous high z-index guards fixed form conflicts but could place catalog/slider blocks over sticky menus.
   From this version forward, Aeroturex uses a low internal stack and lets the site header win. */
:root{
  --acr-z-root:1;
  --acr-z-panel:2;
  --acr-z-control:4;
  --acr-z-nav:6;
  --acr-z-floating:20;
}

.acr-host-boost,
.acr-host-boost > .elementor-widget-container,
.acr-host-boost .elementor-shortcode,
.elementor-element.acr-host-boost,
.e-con.acr-host-boost,
.e-con-full.acr-host-boost{
  z-index:auto!important;
  isolation:auto!important;
  overflow:visible;
}

.acr-home,
.acr-hero-search,
.acr-catalog-wrap,
.acr-results-page,
.acr-results-page-wrap,
.acr-single-page,
.acr-archive-page,
.acr-confirmation,
.acr-booking-steps,
.acr-carousel-shell{
  position:relative!important;
  z-index:var(--acr-z-root)!important;
  isolation:auto!important;
}

.acr-home-search,
.acr-search-card,
.acr-catalog-filterbar,
.acr-booking-widget,
.acr-booking-form,
.acr-luxe-sidebar,
.acr-showroom-sidebar,
.acr-compact-booking,
.acr-sticky-sidebar{
  position:relative!important;
  z-index:var(--acr-z-panel)!important;
  isolation:isolate;
  pointer-events:auto!important;
}

.acr-home-search label,
.acr-search-card label,
.acr-catalog-filterbar label,
.acr-booking-form label,
.acr-home-search input,
.acr-home-search select,
.acr-home-search textarea,
.acr-search-card input,
.acr-search-card select,
.acr-search-card textarea,
.acr-catalog-filterbar input,
.acr-catalog-filterbar select,
.acr-catalog-filterbar textarea,
.acr-booking-form input,
.acr-booking-form select,
.acr-booking-form textarea,
.acr-booking-form button,
.acr-booking-form .acr-btn{
  z-index:var(--acr-z-control)!important;
  pointer-events:auto!important;
}

.acr-catalog-layout-carousel .acr-catalog-filterbar,
.acr-catalog-layout-grid .acr-catalog-filterbar,
.acr-catalog-wrap form,
.acr-results-page-wrap,
.acr-results-page-wrap .acr-catalog-wrap{
  z-index:var(--acr-z-panel)!important;
}

.acr-carousel-nav,
.acr-mobile-reserve-bar,
.acr-luxe-mobile-bar{
  z-index:var(--acr-z-nav)!important;
}

/* The plugin never needs million-level z-index values. Headers from the active theme stay above naturally. */
.site-header,
.main-header,
.header-area,
#masthead,
.elementor-location-header,
.elementor-sticky--active,
header.elementor-sticky,
.sticky-header,
.is-sticky,
.navbar-fixed-top{
  z-index:9999!important;
}

/* When a fixed/sticky header overlaps an Aeroturex block, JS adds this class and a CSS variable offset. */
.acr-header-offset-applied{
  margin-top:var(--acr-detected-header-offset, 0px)!important;
}


/* Aeroturex frontend v1.0.26 - mobile smart carousel arrows above cards, below site header */
.acr-carousel-shell{
  position:relative!important;
  z-index:20!important;
  overflow:visible!important;
  isolation:isolate;
}

.acr-carousel-shell .acr-vehicle-grid[data-acr-carousel="true"]{
  position:relative!important;
  z-index:1!important;
}

.acr-carousel-shell .acr-vehicle-card{
  position:relative!important;
  z-index:2!important;
}

.acr-carousel-nav{
  z-index:40!important;
  pointer-events:auto!important;
  touch-action:manipulation;
  user-select:none;
  -webkit-user-select:none;
  isolation:isolate;
}

.acr-carousel-nav::before{
  content:"";
  position:absolute;
  inset:-10px;
  border-radius:999px;
  pointer-events:auto;
}

/* Mobile / tablet: arrows must float over the card edge, not behind the card. */
@media(max-width:782px){
  .acr-carousel-shell{
    padding-left:0!important;
    padding-right:0!important;
  }

  .acr-carousel-nav{
    position:absolute!important;
    top:50%!important;
    width:56px!important;
    height:56px!important;
    min-width:56px!important;
    min-height:56px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    border-radius:999px!important;
    background:rgba(255,255,255,.96)!important;
    color:var(--acr-primary)!important;
    border:1px solid rgba(221,228,245,.85)!important;
    box-shadow:0 18px 42px rgba(15,23,42,.18)!important;
    font-size:34px!important;
    line-height:1!important;
    transform:translateY(-50%)!important;
    opacity:1!important;
    visibility:visible!important;
  }

  .acr-carousel-prev{
    left:10px!important;
  }

  .acr-carousel-next{
    right:10px!important;
  }

  .acr-carousel-nav:hover,
  .acr-carousel-nav:focus{
    transform:translateY(-50%) scale(1.04)!important;
    outline:2px solid rgba(21,21,125,.16);
    outline-offset:3px;
  }

  .acr-layout-carousel,
  .acr-layout-slider{
    overflow-x:auto!important;
    overflow-y:visible!important;
    padding-left:14px!important;
    padding-right:14px!important;
    scroll-padding-left:14px!important;
    scroll-padding-right:14px!important;
  }

  .acr-layout-carousel .acr-vehicle-card,
  .acr-layout-slider .acr-vehicle-card{
    z-index:2!important;
  }

  .acr-layout-carousel .acr-vehicle-card:hover,
  .acr-layout-slider .acr-vehicle-card:hover{
    z-index:3!important;
  }

  /* The arrows remain high inside Aeroturex, but still far below site headers. */
  .site-header,
  .main-header,
  .header-area,
  #masthead,
  .elementor-location-header,
  .elementor-sticky--active{
    z-index:1000!important;
  }
}

/* Very small phones: keep buttons visible without covering too much content. */
@media(max-width:420px){
  .acr-carousel-nav{
    width:50px!important;
    height:50px!important;
    min-width:50px!important;
    min-height:50px!important;
    font-size:30px!important;
  }

  .acr-carousel-prev{
    left:6px!important;
  }

  .acr-carousel-next{
    right:6px!important;
  }
}


/* Aeroturex frontend v1.0.27 - guaranteed mobile carousel arrows */
.acr-carousel-shell{
  position:relative!important;
}

.acr-carousel-shell .acr-carousel-nav,
.acr-carousel-shell .acr-mobile-carousel-nav{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  opacity:1!important;
  visibility:visible!important;
  pointer-events:auto!important;
  touch-action:manipulation!important;
  cursor:pointer!important;
  border:0!important;
  text-decoration:none!important;
}

.acr-mobile-carousel-nav{
  position:absolute!important;
  top:50%!important;
  transform:translateY(-50%)!important;
  z-index:80!important;
  width:58px!important;
  height:58px!important;
  min-width:58px!important;
  min-height:58px!important;
  border-radius:999px!important;
  background:rgba(255,255,255,.97)!important;
  color:var(--acr-primary)!important;
  box-shadow:0 18px 46px rgba(15,23,42,.24)!important;
  border:1px solid rgba(221,228,245,.92)!important;
  font-size:0!important;
  line-height:1!important;
}

.acr-mobile-carousel-nav::after{
  content:"";
  width:13px;
  height:13px;
  border-top:4px solid currentColor;
  border-right:4px solid currentColor;
  display:block;
}

.acr-mobile-carousel-prev{
  left:12px!important;
}

.acr-mobile-carousel-prev::after{
  transform:rotate(-135deg);
  margin-left:4px;
}

.acr-mobile-carousel-next{
  right:12px!important;
}

.acr-mobile-carousel-next::after{
  transform:rotate(45deg);
  margin-right:4px;
}

.acr-mobile-carousel-nav:focus,
.acr-mobile-carousel-nav:hover{
  outline:3px solid rgba(21,21,125,.14)!important;
  outline-offset:4px!important;
}

/* Desktop keeps normal arrows. Mobile gets injected/fallback smart arrows. */
@media(min-width:783px){
  .acr-mobile-carousel-nav{
    display:none!important;
  }
}

@media(max-width:782px){
  .acr-carousel-shell{
    overflow:visible!important;
    z-index:30!important;
  }

  .acr-carousel-shell .acr-carousel-nav{
    display:none!important;
  }

  .acr-mobile-carousel-nav{
    display:flex!important;
  }

  .acr-carousel-shell .acr-vehicle-grid[data-acr-carousel="true"]{
    position:relative!important;
    z-index:1!important;
    overflow-x:auto!important;
    overflow-y:visible!important;
  }

  .acr-carousel-shell .acr-vehicle-card{
    position:relative!important;
    z-index:2!important;
  }
}

@media(max-width:420px){
  .acr-mobile-carousel-nav{
    width:52px!important;
    height:52px!important;
    min-width:52px!important;
    min-height:52px!important;
  }
  .acr-mobile-carousel-prev{left:8px!important}
  .acr-mobile-carousel-next{right:8px!important}
}


/* Aeroturex frontend v1.0.28 - contextual carousel arrows visibility */
.acr-carousel-shell .acr-carousel-nav,
.acr-carousel-shell .acr-mobile-carousel-nav{
  opacity:0!important;
  visibility:hidden!important;
  transform:translateY(-50%) scale(.94)!important;
  transition:opacity .24s ease, visibility .24s ease, transform .24s ease, box-shadow .24s ease!important;
}

/* Show arrows when the user is interacting with the carousel */
.acr-carousel-shell:hover .acr-carousel-nav,
.acr-carousel-shell:focus-within .acr-carousel-nav,
.acr-carousel-shell.acr-carousel-nav-visible .acr-carousel-nav,
.acr-carousel-shell:hover .acr-mobile-carousel-nav,
.acr-carousel-shell:focus-within .acr-mobile-carousel-nav,
.acr-carousel-shell.acr-carousel-nav-visible .acr-mobile-carousel-nav{
  opacity:1!important;
  visibility:visible!important;
  transform:translateY(-50%) scale(1)!important;
}

/* Keep mobile fallback arrows hidden on desktop */
@media(min-width:783px){
  .acr-mobile-carousel-nav{
    display:none!important;
  }
}

/* On mobile, arrows appear only during touch/scroll interaction */
@media(max-width:782px){
  .acr-carousel-shell .acr-mobile-carousel-nav{
    opacity:0!important;
    visibility:hidden!important;
  }

  .acr-carousel-shell.acr-carousel-nav-visible .acr-mobile-carousel-nav,
  .acr-carousel-shell:focus-within .acr-mobile-carousel-nav{
    opacity:1!important;
    visibility:visible!important;
    transform:translateY(-50%) scale(1)!important;
  }

  .acr-carousel-shell.acr-carousel-nav-visible .acr-mobile-carousel-nav{
    box-shadow:0 20px 52px rgba(15,23,42,.24)!important;
  }
}

/* Accessibility: keep controls visible while keyboard users focus them */
.acr-carousel-nav:focus,
.acr-mobile-carousel-nav:focus{
  opacity:1!important;
  visibility:visible!important;
  outline:3px solid rgba(21,21,125,.18)!important;
  outline-offset:4px!important;
}


/* Aeroturex frontend v1.0.29 - prevent duplicated carousel arrows */
@media(min-width:783px){
  .acr-carousel-shell .acr-mobile-carousel-nav,
  .acr-carousel-shell:hover .acr-mobile-carousel-nav,
  .acr-carousel-shell:focus-within .acr-mobile-carousel-nav,
  .acr-carousel-shell.acr-carousel-nav-visible .acr-mobile-carousel-nav{
    display:none!important;
    opacity:0!important;
    visibility:hidden!important;
    pointer-events:none!important;
  }

  .acr-carousel-shell .acr-carousel-nav{
    display:flex!important;
  }
}

@media(max-width:782px){
  .acr-carousel-shell .acr-carousel-nav,
  .acr-carousel-shell:hover .acr-carousel-nav,
  .acr-carousel-shell:focus-within .acr-carousel-nav,
  .acr-carousel-shell.acr-carousel-nav-visible .acr-carousel-nav{
    display:none!important;
    opacity:0!important;
    visibility:hidden!important;
    pointer-events:none!important;
  }

  .acr-carousel-shell .acr-mobile-carousel-nav{
    display:flex!important;
  }
}

/* Generic safety: if mobile fallback exists, it must never stack visually with desktop arrows in the same viewport. */
.acr-carousel-shell[data-acr-mobile-nav-active="yes"] .acr-carousel-nav{
  display:none!important;
}
.acr-carousel-shell[data-acr-mobile-nav-active="no"] .acr-mobile-carousel-nav{
  display:none!important;
}


/* Aeroturex frontend v1.0.33 custom text blocks */
.acr-custom-text-block{
  background:linear-gradient(180deg,#fff,#f8faff);
  border:1px solid var(--acr-border);
  border-radius:16px;
  padding:16px;
}
.acr-custom-text-block strong{
  display:block;
  color:var(--acr-primary);
  margin-bottom:6px;
}
.acr-custom-text-block p{
  margin:0;
  color:var(--acr-text-soft);
  line-height:1.55;
}
.acr-price-summary .acr-custom-text-block{
  grid-column:1/-1;
  background:#fff;
  border-color:rgba(21,21,125,.12);
}
.acr-price-summary .acr-custom-text-block + small{
  margin-top:8px;
}


/* Aeroturex frontend v1.0.35 label visibility fix */
.acr-hidden-label{
  display:none!important;
}

/* Aeroturex frontend v1.0.38 transport service selector and price rules */
.acr-service-selection-info{
  display:flex;
  flex-direction:column;
  gap:4px;
  padding:13px 15px;
  border:1px solid #dce4f7;
  border-radius:14px;
  background:#f8faff;
}
.acr-service-selection-info strong{color:var(--acr-primary);font-size:15px}
.acr-service-selection-info small{color:var(--acr-text-soft);line-height:1.4}
.acr-guide-option{
  display:flex!important;
  flex-direction:row!important;
  align-items:center!important;
  gap:10px!important;
  padding:13px 15px;
  border:1px solid #dce4f7;
  border-radius:14px;
  background:#fff;
  cursor:pointer;
}
.acr-guide-option input{
  width:20px!important;
  height:20px!important;
  min-height:20px!important;
  flex:0 0 20px;
}
.acr-guide-option span{font-weight:800;color:#344054}
.acr-guide-option[hidden]{display:none!important}
.acr-price-adjustment[hidden]{display:none!important}
.acr-price-adjustment span{color:#667085}
.acr-price-adjustment strong{color:#f57c00}


/* Aeroturex frontend v1.0.39 editable specification cards and service rules */
.acr-editable-spec-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}
.acr-editable-spec-item{
  min-width:0;
}
.acr-showroom-specs .acr-editable-spec-item,
.acr-luxe-spec-grid .acr-editable-spec-item,
.acr-quick-spec-grid .acr-editable-spec-item{
  display:flex;
  gap:13px;
  align-items:flex-start;
  border:1px solid var(--acr-border);
  border-radius:18px;
  background:#fff;
  padding:18px;
}
.acr-editable-spec-item .acr-spec-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  flex:0 0 46px;
  border-radius:14px;
  background:#f4f6ff;
  font-size:22px;
}
.acr-editable-spec-item small{
  display:block;
  color:var(--acr-text-soft);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-bottom:6px;
}
.acr-editable-spec-item strong{
  display:block;
  color:var(--acr-primary);
  font-size:clamp(20px,2vw,30px);
  line-height:1.12;
}
.acr-compact-specs.acr-editable-spec-grid{
  grid-template-columns:repeat(2,minmax(0,1fr));
  padding:14px;
}
.acr-service-rule-notices{
  display:grid;
  gap:9px;
  margin:10px 0 14px;
}
.acr-service-rule-notice{
  border:1px solid #f5d99a;
  border-left:5px solid var(--acr-accent);
  border-radius:13px;
  padding:11px 13px;
  background:#fffbeb;
}
.acr-service-rule-notice strong{
  display:block;
  color:#92400e;
  margin-bottom:3px;
}
.acr-service-rule-notice p{
  margin:0;
  color:#7c2d12;
  line-height:1.45;
}
.acr-live-rule-adjustments{
  display:contents;
}
@media(max-width:900px){
  .acr-editable-spec-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media(max-width:560px){
  .acr-editable-spec-grid,
  .acr-compact-specs.acr-editable-spec-grid{
    grid-template-columns:1fr;
  }
}


/* Aeroturex frontend v1.0.40 service-specific booking fields */
.acr-service-form-fields{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.acr-service-form-field{
  min-width:0;
}
.acr-service-form-field > label{
  display:flex;
  flex-direction:column;
  gap:8px;
  color:var(--acr-text-soft);
  font-weight:800;
}
.acr-service-form-field textarea,
.acr-service-form-field input,
.acr-service-form-field select{
  width:100%;
  box-sizing:border-box;
}
.acr-service-field-label{
  display:flex;
  gap:5px;
  align-items:center;
}
.acr-service-field-label b{
  color:#d92d20;
}
.acr-service-field-help{
  color:#667085;
  font-size:12px;
  line-height:1.45;
  font-weight:600;
}
.acr-service-form-field-textarea,
.acr-service-form-field-notice,
.acr-service-form-field-pickup_location,
.acr-service-form-field-dropoff_location{
  grid-column:1/-1;
}
.acr-service-form-notice{
  grid-column:1/-1;
  border:1px solid #b9dff5;
  border-left:5px solid #2e90fa;
  border-radius:14px;
  padding:13px 15px;
  background:#eff8ff;
}
.acr-service-form-notice strong{
  display:block;
  color:#175cd3;
  margin-bottom:4px;
}
.acr-service-form-notice p{
  margin:0;
  color:#1849a9;
  line-height:1.5;
}
.acr-location-custom-input[hidden]{
  display:none!important;
}
.acr-service-checkbox{
  display:flex;
  gap:10px;
  align-items:center;
  border:1px solid var(--acr-border);
  border-radius:13px;
  padding:12px;
  background:#fff;
}
.acr-service-checkbox input{
  width:auto!important;
  min-height:0!important;
}
@media(max-width:680px){
  .acr-service-form-fields{
    grid-template-columns:1fr;
  }
  .acr-service-form-field{
    grid-column:1!important;
  }
}


/* Aeroturex frontend v1.0.41 intuitive booking form order and sizing */
.acr-service-form-section-heading{
  grid-column:1/-1;
  display:flex;
  align-items:center;
  gap:10px;
  margin:8px 0 0;
  padding-bottom:9px;
  border-bottom:1px solid rgba(21,21,125,.12);
  color:var(--acr-primary);
  font-size:13px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.acr-service-form-section-heading:before{
  content:"";
  width:9px;
  height:9px;
  border-radius:999px;
  background:var(--acr-accent);
  box-shadow:0 0 0 5px rgba(255,138,0,.12);
}
.acr-service-form-section-trip{
  margin-top:18px;
}
.acr-service-form-field-key-customer_name,
.acr-service-form-field-key-customer_email,
.acr-service-form-field-key-customer_phone,
.acr-service-form-field-key-pickup_location,
.acr-service-form-field-key-dropoff_location,
.acr-service-form-field-key-flight_number,
.acr-service-form-field-key-notes{
  grid-column:1/-1;
}
.acr-service-form-field input,
.acr-service-form-field select,
.acr-service-form-field textarea{
  min-height:58px;
  padding:14px 16px;
  border-radius:16px;
  font-size:16px;
}
.acr-service-form-field textarea{
  min-height:110px;
  resize:vertical;
}
.acr-service-form-field select[data-acr-military-time]{
  font-variant-numeric:tabular-nums;
  letter-spacing:.03em;
}
.acr-service-form-field-key-customer_name input,
.acr-service-form-field-key-customer_email input,
.acr-service-form-field-key-customer_phone input,
.acr-service-form-field-key-pickup_location input,
.acr-service-form-field-key-dropoff_location input{
  width:100%;
}
.acr-service-form-field-key-customer_name input,
.acr-service-form-field-key-customer_email input{
  min-height:62px;
  font-size:17px;
}
.acr-guide-option-after-fields{
  margin-top:16px;
}
@media(max-width:720px){
  .acr-service-form-fields{
    grid-template-columns:1fr;
  }
  .acr-service-form-field{
    grid-column:1!important;
  }
}


/* Aeroturex frontend v1.0.42 passenger composition selector */
.acr-service-form-field-key-passenger_breakdown{
  grid-column:1/-1;
}
.acr-passenger-breakdown{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  padding:14px;
  border:1px solid var(--acr-border);
  border-radius:18px;
  background:linear-gradient(180deg,#fff,#f8faff);
}
.acr-passenger-age-option{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  min-width:0;
  padding:12px;
  border:1px solid rgba(21,21,125,.10);
  border-radius:14px;
  background:#fff;
}
.acr-passenger-age-option > span{
  display:flex;
  flex-direction:column;
  min-width:0;
}
.acr-passenger-age-option strong{
  color:var(--acr-primary);
  font-size:15px;
}
.acr-passenger-age-option small{
  color:var(--acr-text-soft);
  font-size:11px;
  font-weight:700;
  line-height:1.3;
}
.acr-passenger-age-option select{
  width:74px!important;
  min-width:74px;
  min-height:46px!important;
  padding:8px 10px!important;
  border-radius:12px!important;
  font-weight:800;
  text-align:center;
}
.acr-passenger-total{
  grid-column:1/-1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 14px;
  border-radius:14px;
  background:var(--acr-primary);
  color:#fff;
}
.acr-passenger-total span{
  font-weight:800;
}
.acr-passenger-total strong{
  font-size:20px;
  font-variant-numeric:tabular-nums;
}
.acr-passenger-capacity-message{
  grid-column:1/-1;
  margin:0;
  color:var(--acr-text-soft);
  font-size:12px;
  font-weight:700;
}
.acr-passenger-capacity-message.is-error{
  color:#d92d20;
}
@media(max-width:760px){
  .acr-passenger-breakdown{
    grid-template-columns:1fr;
  }
  .acr-passenger-total,
  .acr-passenger-capacity-message{
    grid-column:1;
  }
}

/* Aeroturex frontend v1.0.43 - showroom booking-first redesign */
.acr-showroom-booking-layout{
  grid-template-columns:minmax(0,1.22fr) 400px;
  gap:28px;
  align-items:start;
}

.acr-showroom-booking-panel{
  padding:34px;
  border-radius:32px;
}

.acr-showroom-booking-intro{
  margin:0 0 18px;
}

.acr-showroom-booking-intro p{
  margin:0;
  color:var(--acr-text-soft);
  line-height:1.8;
  font-size:16px;
}

.acr-showroom-embedded-booking .acr-booking-widget{
  background:transparent;
  border:0;
  box-shadow:none;
  padding:0;
  margin:0;
  min-height:0;
  border-radius:0;
}

.acr-showroom-embedded-booking .acr-booking-head{
  margin:0 0 22px;
  padding:0 0 18px;
}

.acr-showroom-embedded-booking .acr-booking-head h3{
  font-size:clamp(30px,3.6vw,48px);
  line-height:1.08;
}

.acr-showroom-embedded-booking .acr-booking-form{
  gap:18px;
}

.acr-showroom-info-sidebar{
  position:relative;
}

.acr-showroom-info-stack{
  display:flex;
  flex-direction:column;
  gap:18px;
  position:sticky;
  top:104px;
}

.acr-showroom-vehicle-info-card .acr-card-title-row{
  margin-bottom:12px;
}

.acr-showroom-vehicle-info-card .acr-card-title-row h2,
.acr-showroom-feature-list-card .acr-card-title-row h2{
  font-size:24px;
}

.acr-showroom-vehicle-meta-list{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin:0 0 14px;
}

.acr-showroom-vehicle-meta-item{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:14px 16px;
  border:1px solid var(--acr-border);
  border-radius:18px;
  background:linear-gradient(180deg,#f8faff,#fff);
}

.acr-showroom-vehicle-meta-item > span{
  display:inline-flex;
  width:38px;
  height:38px;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:#eef2ff;
  font-size:18px;
  flex:0 0 38px;
}

.acr-showroom-vehicle-meta-item small{
  display:block;
  margin:0 0 4px;
  color:var(--acr-text-soft);
  font-size:11px;
  font-weight:800;
  line-height:1.3;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.acr-showroom-vehicle-meta-item strong{
  display:block;
  color:var(--acr-text);
  font-size:16px;
  line-height:1.45;
}

.acr-premium-feature-grid.acr-premium-feature-grid-list{
  grid-template-columns:1fr;
}

.acr-premium-feature-grid.acr-premium-feature-grid-list div{
  padding:14px 16px;
}

@media(max-width:1100px){
  .acr-showroom-booking-layout{
    grid-template-columns:1fr;
  }
  .acr-showroom-info-stack{
    position:static;
  }
}

@media(max-width:760px){
  .acr-showroom-booking-panel{
    padding:24px;
    border-radius:24px;
  }
  .acr-showroom-embedded-booking .acr-booking-head h3{
    font-size:34px;
  }
}

/* Aeroturex frontend v1.0.44 - compact fading gallery inside showroom hero */
.acr-showroom-hero{
  grid-template-columns:minmax(0,1fr) 300px 300px;
  align-items:stretch;
}

.acr-showroom-mini-gallery{
  position:relative;
  z-index:2;
  min-width:0;
  display:flex;
  align-items:stretch;
}

.acr-showroom-mini-gallery-stage{
  position:relative;
  width:100%;
  min-height:250px;
  overflow:hidden;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.24);
  background:rgba(255,255,255,.08);
  box-shadow:0 24px 58px rgba(0,0,0,.20);
  isolation:isolate;
}

.acr-showroom-mini-gallery-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  opacity:0;
  transform:scale(1.025);
  transition:opacity .9s ease, transform 4.8s ease;
  pointer-events:none;
}

.acr-showroom-mini-gallery-image.is-active{
  opacity:1;
  transform:scale(1);
}

.acr-showroom-mini-gallery-shade{
  position:absolute;
  z-index:2;
  inset:0;
  background:linear-gradient(180deg,rgba(10,16,75,.02) 45%,rgba(10,16,75,.56) 100%);
  pointer-events:none;
}


.acr-showroom-mini-gallery-dots{
  position:absolute;
  z-index:3;
  right:16px;
  bottom:18px;
  display:flex;
  align-items:center;
  gap:6px;
}

.acr-showroom-mini-gallery-dots i{
  display:block;
  width:7px;
  height:7px;
  border-radius:999px;
  background:rgba(255,255,255,.48);
  transition:width .25s ease, background .25s ease;
}

.acr-showroom-mini-gallery-dots i.is-active{
  width:22px;
  background:#fff;
}

@media(max-width:1240px){
  .acr-showroom-hero{
    grid-template-columns:minmax(0,1fr) 260px 280px;
  }
  .acr-showroom-mini-gallery-stage{
    min-height:230px;
  }
}

@media(max-width:1100px){
  .acr-showroom-hero{
    grid-template-columns:minmax(0,1fr) 300px;
  }
  .acr-showroom-mini-gallery{
    grid-column:2;
    grid-row:1;
  }
  .acr-showroom-price-card{
    grid-column:2;
  }
  .acr-showroom-mini-gallery-stage{
    min-height:220px;
  }
}

@media(max-width:760px){
  .acr-showroom-hero{
    grid-template-columns:1fr;
  }
  .acr-showroom-mini-gallery,
  .acr-showroom-price-card{
    grid-column:auto;
    grid-row:auto;
  }
  .acr-showroom-mini-gallery-stage{
    min-height:260px;
  }
}


/* Aeroturex frontend v1.0.45 - hero gallery integrated into price card */
.acr-showroom-hero{
  grid-template-columns:minmax(0,1fr) 520px;
  align-items:stretch;
}

.acr-showroom-price-card.acr-showroom-price-card-with-gallery{
  display:flex;
  flex-direction:column;
  overflow:hidden;
  padding:0;
}

.acr-showroom-price-card-with-gallery .acr-showroom-mini-gallery{
  position:relative;
  z-index:1;
  display:block;
  min-width:0;
}

.acr-showroom-price-card-with-gallery .acr-showroom-mini-gallery-stage{
  min-height:210px;
  border-radius:0;
  border:0;
  box-shadow:none;
  background:rgba(255,255,255,.08);
}

.acr-showroom-price-card-with-gallery .acr-showroom-price-content{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:28px 32px 32px;
}


.acr-showroom-price-card-with-gallery .acr-showroom-mini-gallery-dots{
  right:16px;
  bottom:16px;
}

@media(max-width:1240px){
  .acr-showroom-hero{
    grid-template-columns:minmax(0,1fr) 420px;
  }
  .acr-showroom-price-card-with-gallery .acr-showroom-mini-gallery-stage{
    min-height:190px;
  }
}

@media(max-width:1100px){
  .acr-showroom-hero{
    grid-template-columns:1fr;
  }
  .acr-showroom-price-card.acr-showroom-price-card-with-gallery{
    max-width:560px;
  }
}

@media(max-width:760px){
  .acr-showroom-price-card.acr-showroom-price-card-with-gallery{
    max-width:none;
  }
  .acr-showroom-price-card-with-gallery .acr-showroom-mini-gallery-stage{
    min-height:180px;
  }
  .acr-showroom-price-card-with-gallery .acr-showroom-price-content{
    padding:22px 24px 24px;
  }
}

/* Aeroturex frontend v1.0.46 - interactive primary vehicle gallery */
.acr-primary-vehicle-gallery{
  --acr-zoom-x:50%;
  --acr-zoom-y:50%;
}

.acr-primary-gallery-stage{
  cursor:zoom-in;
  isolation:isolate;
  background:linear-gradient(180deg,#fbfbfc 0%,#eef0f4 100%);
  touch-action:pan-y;
}

.acr-primary-gallery-stage:focus-visible{
  outline:3px solid rgba(46,49,146,.34);
  outline-offset:4px;
}

.acr-template-showroom .acr-primary-gallery-stage .acr-primary-gallery-image{
  position:absolute;
  z-index:1;
  inset:0;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  opacity:0;
  transform:scale(1.015);
  transform-origin:var(--acr-zoom-x) var(--acr-zoom-y);
  transition:opacity .8s ease, transform .45s cubic-bezier(.2,.72,.25,1);
  will-change:opacity,transform;
  pointer-events:none;
}

.acr-template-showroom .acr-primary-gallery-stage .acr-primary-gallery-image.is-active{
  z-index:2;
  opacity:1;
  transform:scale(1);
}

.acr-template-showroom .acr-primary-gallery-stage.is-zooming .acr-primary-gallery-image.is-active{
  transform:scale(1.58);
}

.acr-primary-gallery-stage .acr-gallery-badge,
.acr-primary-gallery-stage .acr-gallery-count,
.acr-primary-gallery-zoom-hint{
  z-index:5;
}

.acr-primary-gallery-zoom-hint{
  position:absolute;
  left:50%;
  bottom:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  max-width:calc(100% - 150px);
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  color:var(--acr-primary);
  font-size:10px;
  font-weight:900;
  line-height:1.2;
  letter-spacing:.035em;
  text-align:center;
  transform:translateX(-50%) translateY(6px);
  opacity:0;
  backdrop-filter:blur(8px);
  box-shadow:0 10px 28px rgba(20,27,43,.16);
  transition:opacity .2s ease,transform .2s ease;
  pointer-events:none;
}

.acr-primary-gallery-stage:hover .acr-primary-gallery-zoom-hint,
.acr-primary-gallery-stage:focus-visible .acr-primary-gallery-zoom-hint{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}

.acr-primary-gallery-stage.is-zooming .acr-gallery-badge,
.acr-primary-gallery-stage.is-zooming .acr-gallery-count,
.acr-primary-gallery-stage.is-zooming .acr-primary-gallery-zoom-hint{
  opacity:0;
}

.acr-primary-vehicle-gallery .acr-gallery-thumb{
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease,opacity .2s ease;
}

.acr-primary-vehicle-gallery .acr-gallery-thumb:not(.is-active){
  opacity:.76;
}

.acr-primary-vehicle-gallery .acr-gallery-thumb:hover,
.acr-primary-vehicle-gallery .acr-gallery-thumb.is-active{
  opacity:1;
}

body.acr-gallery-lightbox-open{
  overflow:hidden;
}

.acr-vehicle-lightbox{
  position:fixed;
  z-index:999999;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px;
  background:rgba(7,12,35,.88);
  backdrop-filter:blur(12px);
  opacity:0;
  visibility:hidden;
  transition:opacity .24s ease,visibility .24s ease;
}

.acr-vehicle-lightbox.is-open{
  opacity:1;
  visibility:visible;
}

.acr-vehicle-lightbox-dialog{
  position:relative;
  width:min(1180px,100%);
  height:min(82vh,820px);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.18);
  border-radius:26px;
  background:#f5f6f8;
  box-shadow:0 40px 100px rgba(0,0,0,.48);
}

.acr-vehicle-lightbox-image{
  width:100%;
  height:100%;
  object-fit:contain;
  opacity:1;
  transition:opacity .28s ease;
}

.acr-vehicle-lightbox-image.is-changing{
  opacity:0;
}

.acr-vehicle-lightbox-close,
.acr-vehicle-lightbox-nav{
  position:absolute;
  z-index:3;
  display:flex;
  align-items:center;
  justify-content:center;
  width:48px;
  height:48px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.94);
  color:var(--acr-primary);
  font-size:28px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 14px 34px rgba(20,27,43,.22);
}

.acr-vehicle-lightbox-close{
  top:16px;
  right:16px;
}

.acr-vehicle-lightbox-prev,
.acr-vehicle-lightbox-next{
  top:50%;
  transform:translateY(-50%);
}

.acr-vehicle-lightbox-prev{left:16px;}
.acr-vehicle-lightbox-next{right:16px;}

.acr-vehicle-lightbox-counter{
  position:absolute;
  z-index:3;
  right:18px;
  bottom:18px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(20,27,43,.72);
  color:#fff;
  font-size:12px;
  font-weight:900;
}

@media(max-width:760px){
  .acr-primary-gallery-zoom-hint{
    display:none;
  }
  .acr-vehicle-lightbox{
    padding:12px;
  }
  .acr-vehicle-lightbox-dialog{
    height:76vh;
    border-radius:20px;
  }
  .acr-vehicle-lightbox-close,
  .acr-vehicle-lightbox-nav{
    width:42px;
    height:42px;
  }
}

@media(prefers-reduced-motion:reduce){
  .acr-template-showroom .acr-primary-gallery-stage .acr-primary-gallery-image,
  .acr-primary-gallery-zoom-hint,
  .acr-vehicle-lightbox,
  .acr-vehicle-lightbox-image{
    transition:none!important;
  }
}

/* Aeroturex frontend v1.0.47 - scroll performance stabilization */
.acr-primary-gallery-stage{
  contain:layout paint style;
  overscroll-behavior:contain;
  transform:translateZ(0);
}

.acr-template-showroom .acr-primary-gallery-stage .acr-primary-gallery-image{
  will-change:auto;
  backface-visibility:hidden;
  transition:opacity .58s ease,transform .36s cubic-bezier(.2,.72,.25,1);
}

.acr-template-showroom .acr-primary-gallery-stage .acr-primary-gallery-image.is-active{
  will-change:opacity;
}

.acr-template-showroom .acr-primary-gallery-stage.is-zooming .acr-primary-gallery-image.is-active{
  will-change:transform;
}

.acr-showroom-mini-gallery-stage{
  contain:layout paint style;
}

@media(max-width:900px), (hover:none), (pointer:coarse){
  .acr-primary-gallery-stage{
    cursor:pointer;
    touch-action:pan-y;
  }
  .acr-template-showroom .acr-primary-gallery-stage.is-zooming .acr-primary-gallery-image.is-active{
    transform:scale(1);
  }
}


/* Aeroturex frontend v1.0.48 - remove redundant hero gallery label */
.acr-showroom-mini-gallery-label{
  display:none!important;
}

/* Aeroturex frontend v1.0.50 - WooCommerce checkout continuity */
.woocommerce-checkout .acr-wc-checkout-summary{
  display:grid;
  grid-template-columns:minmax(260px,360px) minmax(0,1fr);
  gap:28px;
  align-items:stretch;
  margin:0 0 34px;
  padding:18px;
  border:1px solid var(--acr-border,#dfe5f3);
  border-radius:28px;
  background:linear-gradient(145deg,#fff 0%,#f7f8ff 100%);
  box-shadow:0 22px 56px rgba(18,28,68,.10);
  overflow:hidden;
}

.acr-wc-checkout-summary-media{
  min-height:280px;
  border-radius:22px;
  overflow:hidden;
  background:#eef1f7;
}

.acr-wc-checkout-vehicle-image{
  display:block;
  width:100%;
  height:100%;
  min-height:280px;
  object-fit:cover;
  object-position:center;
}

.acr-wc-checkout-summary-content{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-width:0;
  padding:16px 18px 16px 0;
}

.acr-wc-checkout-eyebrow{
  display:block;
  margin-bottom:8px;
  color:var(--acr-accent,#ff8a00);
  font-size:12px;
  font-weight:900;
  letter-spacing:.10em;
  text-transform:uppercase;
}

.acr-wc-checkout-summary h2{
  margin:0;
  color:var(--acr-text,#101828);
  font-size:clamp(28px,3vw,44px);
  line-height:1.08;
}

.acr-wc-checkout-service{
  margin:10px 0 18px;
  color:var(--acr-primary,#15157d);
  font-size:18px;
  font-weight:800;
}

.acr-wc-checkout-details{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px 18px;
  margin:0;
}

.acr-wc-checkout-details > div{
  min-width:0;
  padding:10px 0;
  border-bottom:1px solid rgba(21,21,125,.10);
}

.acr-wc-checkout-details dt{
  margin:0 0 3px;
  color:#667085;
  font-size:11px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.acr-wc-checkout-details dd{
  margin:0;
  color:#1d2939;
  font-size:14px;
  font-weight:750;
  line-height:1.45;
  overflow-wrap:anywhere;
}

.acr-wc-checkout-payment-summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-top:18px;
  padding:15px 17px;
  border-radius:16px;
  background:linear-gradient(135deg,var(--acr-primary,#15157d),var(--acr-secondary,#2e3192));
  color:#fff;
}

.acr-wc-checkout-payment-summary span{
  font-weight:800;
}

.acr-wc-checkout-payment-summary strong{
  color:#fff;
  font-size:22px;
}

.acr-wc-checkout-payment-summary .woocommerce-Price-amount,
.acr-wc-checkout-payment-summary .woocommerce-Price-currencySymbol{
  color:inherit;
}

.acr-wc-checkout-prefill-note{
  margin:13px 0 0;
  padding:11px 13px;
  border-left:4px solid var(--acr-accent,#ff8a00);
  border-radius:10px;
  background:#fff8eb;
  color:#7a4b00;
  font-size:13px;
  line-height:1.5;
}

.woocommerce-checkout #customer_details{
  margin-top:8px;
}

.woocommerce-checkout #customer_details .form-row input.input-text,
.woocommerce-checkout #customer_details .form-row select,
.woocommerce-checkout #customer_details .select2-container .select2-selection{
  min-height:52px;
  border-radius:13px;
}

.woocommerce-cart .acr-wc-vehicle-thumbnail,
.woocommerce-checkout .acr-wc-vehicle-thumbnail{
  display:block;
  width:88px;
  height:72px;
  border-radius:12px;
  object-fit:cover;
}

@media(max-width:900px){
  .woocommerce-checkout .acr-wc-checkout-summary{
    grid-template-columns:1fr;
  }
  .acr-wc-checkout-summary-media,
  .acr-wc-checkout-vehicle-image{
    min-height:230px;
    max-height:360px;
  }
  .acr-wc-checkout-summary-content{
    padding:8px 8px 14px;
  }
}

@media(max-width:600px){
  .woocommerce-checkout .acr-wc-checkout-summary{
    padding:12px;
    border-radius:21px;
  }
  .acr-wc-checkout-details{
    grid-template-columns:1fr;
  }
  .acr-wc-checkout-payment-summary{
    align-items:flex-start;
    flex-direction:column;
    gap:6px;
  }
}

.woocommerce-checkout .acr-wc-checkout-summary.has-no-vehicle-image{
  grid-template-columns:1fr;
}

.woocommerce-checkout .acr-wc-checkout-summary.has-no-vehicle-image .acr-wc-checkout-summary-content{
  padding:22px;
}

.acr-wc-checkout-payment-summary small{
  flex-basis:100%;
  color:rgba(255,255,255,.82);
  font-size:12px;
  line-height:1.4;
}

/* Aeroturex frontend v1.0.52 security and submission stability */
.acr-honeypot-field{
  position:absolute!important;
  left:-10000px!important;
  top:auto!important;
  width:1px!important;
  height:1px!important;
  overflow:hidden!important;
  opacity:0!important;
  pointer-events:none!important;
}
.acr-security-message{
  grid-column:1/-1;
  margin:0 0 12px;
}
.acr-booking-form button[aria-busy="true"]{
  cursor:wait;
  opacity:.78;
}

/* Aeroturex frontend v1.0.54 - editorial fleet archive hero without duplicated search */
.acr-fleet-archive{
  width:min(100%, 1340px);
  margin:0 auto;
  padding:18px 18px 48px;
}
.acr-fleet-hero{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(290px,.65fr);
  gap:36px;
  align-items:center;
  max-width:var(--acr-container);
  margin:10px auto 54px;
  padding:clamp(36px,5vw,68px);
  border:1px solid rgba(255,255,255,.18);
  border-radius:var(--acr-radius-xl);
  background:
    radial-gradient(circle at 85% 16%, rgba(255,255,255,.17), transparent 24%),
    radial-gradient(circle at 70% 88%, rgba(255,138,0,.18), transparent 26%),
    linear-gradient(135deg,var(--acr-primary) 0%,var(--acr-secondary) 68%,#4957c7 100%);
  box-shadow:var(--acr-shadow-lg);
  color:#fff;
}
.acr-fleet-hero::before{
  content:"";
  position:absolute;
  width:360px;
  height:360px;
  right:-145px;
  bottom:-190px;
  border-radius:50%;
  border:64px solid rgba(255,255,255,.07);
  z-index:-1;
}
.acr-fleet-hero__content{max-width:760px}
.acr-fleet-hero .acr-eyebrow{color:#ffd07a}
.acr-fleet-hero h1{
  margin:12px 0 18px;
  max-width:820px;
  color:#fff;
  font-size:clamp(38px,5.2vw,68px);
  line-height:1.02;
  letter-spacing:-.045em;
}
.acr-fleet-hero__content>p{
  margin:0;
  max-width:720px;
  color:rgba(255,255,255,.84);
  font-size:clamp(17px,1.7vw,20px);
  line-height:1.68;
}
.acr-fleet-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}
.acr-fleet-hero__actions .acr-btn{
  min-height:52px;
  padding-inline:24px;
}
.acr-fleet-hero__actions .acr-btn:first-child{
  background:var(--acr-warning);
  color:#fff;
  box-shadow:0 15px 32px rgba(255,138,0,.24);
}
.acr-fleet-hero__actions .acr-btn-secondary{
  background:rgba(255,255,255,.10);
  color:#fff;
  border-color:rgba(255,255,255,.32);
  backdrop-filter:blur(10px);
}
.acr-fleet-hero__actions .acr-btn-secondary:hover{
  background:#fff;
  color:var(--acr-primary);
}
.acr-fleet-hero__panel{
  padding:24px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:24px;
  background:rgba(255,255,255,.11);
  backdrop-filter:blur(18px);
  box-shadow:0 20px 45px rgba(12,18,84,.22);
}
.acr-fleet-hero__badge{
  display:grid;
  grid-template-columns:44px 1fr;
  column-gap:14px;
  align-items:center;
}
.acr-fleet-hero__badge>span{
  grid-row:1 / span 2;
  display:grid;
  place-items:center;
  width:44px;
  height:44px;
  border-radius:50%;
  background:var(--acr-warning);
  color:#fff;
  font-size:20px;
  font-weight:900;
}
.acr-fleet-hero__badge strong{
  color:#fff;
  font-size:18px;
  line-height:1.2;
}
.acr-fleet-hero__badge small{
  display:block;
  margin-top:5px;
  color:rgba(255,255,255,.72);
  font-size:13px;
  line-height:1.45;
}
.acr-fleet-hero__features{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:22px;
}
.acr-fleet-hero__features span{
  display:flex;
  align-items:center;
  min-height:42px;
  padding:9px 12px;
  border-radius:12px;
  background:rgba(255,255,255,.10);
  color:#fff;
  font-size:13px;
  font-weight:700;
}
.acr-fleet-catalog-anchor{
  scroll-margin-top:120px;
}
@media (max-width: 900px){
  .acr-fleet-hero{
    grid-template-columns:1fr;
    gap:26px;
  }
  .acr-fleet-hero__panel{max-width:620px}
}
@media (max-width: 600px){
  .acr-fleet-archive{padding:10px 10px 34px}
  .acr-fleet-hero{
    margin:8px auto 36px;
    padding:30px 24px;
    border-radius:24px;
  }
  .acr-fleet-hero h1{font-size:clamp(34px,11vw,46px)}
  .acr-fleet-hero__actions{
    display:grid;
    grid-template-columns:1fr;
  }
  .acr-fleet-hero__actions .acr-btn{width:100%}
  .acr-fleet-hero__features{grid-template-columns:1fr 1fr}
}
@media (prefers-reduced-motion: reduce){
  .acr-fleet-catalog-anchor{scroll-behavior:auto}
}


/* Aeroturex frontend v1.0.55 - carousel visual presets */
.acr-catalog-layout-carousel.acr-carousel-style-balanced .acr-vehicle-card-carousel{height:auto}
.acr-catalog-layout-carousel.acr-carousel-style-image-focus .acr-vehicle-card-carousel{border-radius:24px;overflow:hidden}
.acr-catalog-layout-carousel.acr-carousel-style-image-focus .acr-card-image{min-height:315px}
.acr-catalog-layout-carousel.acr-carousel-style-image-focus .acr-card-body{padding:18px 20px 20px}
.acr-catalog-layout-carousel.acr-carousel-style-image-focus .acr-card-body>p{display:none}
.acr-catalog-layout-carousel.acr-carousel-style-image-focus .acr-card-head{align-items:flex-start;margin-bottom:12px}
.acr-catalog-layout-carousel.acr-carousel-style-image-focus .acr-card-body h3{font-size:21px}
.acr-catalog-layout-carousel.acr-carousel-style-image-focus .acr-spec-row{margin:0 0 14px}
.acr-catalog-layout-carousel.acr-carousel-style-image-focus .acr-card-footer{padding-top:0}
.acr-catalog-layout-carousel.acr-carousel-style-compact .acr-vehicle-card-carousel{border-radius:18px}
.acr-catalog-layout-carousel.acr-carousel-style-compact .acr-card-image{min-height:205px}
.acr-catalog-layout-carousel.acr-carousel-style-compact .acr-card-body{padding:15px 16px 16px}
.acr-catalog-layout-carousel.acr-carousel-style-compact .acr-card-body h3{font-size:18px;line-height:1.2}
.acr-catalog-layout-carousel.acr-carousel-style-compact .acr-card-kicker{font-size:9px;margin-bottom:5px}
.acr-catalog-layout-carousel.acr-carousel-style-compact .acr-price strong{font-size:18px}
.acr-catalog-layout-carousel.acr-carousel-style-compact .acr-price em{font-size:10px}
.acr-catalog-layout-carousel.acr-carousel-style-compact .acr-card-body>p{display:none}
.acr-catalog-layout-carousel.acr-carousel-style-compact .acr-spec-row{gap:5px;margin:10px 0 12px}
.acr-catalog-layout-carousel.acr-carousel-style-compact .acr-spec-row span{padding:6px 8px;font-size:10px}
.acr-catalog-layout-carousel.acr-carousel-style-compact .acr-card-footer{padding-top:0}
.acr-catalog-layout-carousel.acr-carousel-style-compact .acr-card-actions{gap:7px}
.acr-catalog-layout-carousel.acr-carousel-style-compact .acr-card-actions .acr-btn{padding:10px 12px;font-size:12px}
@media(max-width:700px){.acr-catalog-layout-carousel.acr-carousel-style-image-focus .acr-card-image{min-height:260px}.acr-catalog-layout-carousel.acr-carousel-style-compact .acr-card-image{min-height:190px}}

/* Aeroturex v1.0.57 - desplazamiento limpio al formulario. */
#acr-booking{scroll-margin-top:120px}
@media (max-width:782px){#acr-booking{scroll-margin-top:96px}}

/* Aeroturex frontend v1.0.59 */
.acr-adult-rate-hidden{display:none!important}


/* Aeroturex frontend v1.0.60 - luggage input, aligned adjustments and editable policy */
.acr-service-form-field-key-luggage input[type="number"]{
  width:100%;
  min-height:52px;
}
.acr-price-summary .acr-live-rule-adjustments{
  display:block;
  width:100%;
  margin:0;
}
.acr-price-summary .acr-live-rule-adjustments:empty{
  display:none;
}
.acr-price-summary .acr-live-rule-adjustments .acr-price-adjustment{
  display:flex;
  width:100%;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-top:10px;
}
.acr-price-summary .acr-live-rule-adjustments .acr-price-adjustment span{
  min-width:0;
  flex:1 1 auto;
}
.acr-price-summary .acr-live-rule-adjustments .acr-price-adjustment strong{
  flex:0 0 auto;
  margin-left:auto;
  text-align:right;
  white-space:nowrap;
}
.acr-booking-policy-message{
  display:block!important;
  margin-top:14px!important;
  padding:13px 15px;
  border:1px solid color-mix(in srgb, var(--acr-accent) 42%, #ffffff);
  border-left:4px solid var(--acr-accent);
  border-radius:13px;
  background:color-mix(in srgb, var(--acr-accent) 8%, #ffffff);
}
.acr-booking-policy-message strong{
  display:block;
  margin:0 0 5px;
  color:var(--acr-primary)!important;
  font-size:14px!important;
}
.acr-booking-policy-message p{
  margin:0;
  color:var(--acr-text-soft);
  font-size:13px;
  line-height:1.55;
}
@supports not (background:color-mix(in srgb, #000 10%, #fff)){
  .acr-booking-policy-message{background:#fff9f0;border-color:#ffd7a0}
}
@media(max-width:600px){
  .acr-price-summary .acr-live-rule-adjustments .acr-price-adjustment{
    gap:12px;
  }
  .acr-price-summary .acr-live-rule-adjustments .acr-price-adjustment strong{
    font-size:18px;
  }
}


/* Aeroturex frontend v1.0.61 - ordered reservation messages */
.acr-booking-messages-public{display:grid;gap:10px;margin-top:14px}
.acr-booking-messages-public .acr-booking-policy-message{margin-top:0!important}
.acr-booking-message-availability{border-left-color:var(--acr-primary)}
.acr-booking-message-checkout_note{border-left-color:var(--acr-secondary)}


/* Aeroturex frontend v1.0.69 — plain reservation notes */
.acr-booking-messages-public{
  display:grid;
  gap:6px;
  margin:14px 0 0;
  padding:0;
}
.acr-booking-message-note{
  display:flex;
  align-items:flex-start;
  gap:8px;
  margin:0!important;
  padding:0!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  box-shadow:none!important;
  color:var(--acr-text-soft);
  font-size:13px;
  line-height:1.55;
}
.acr-booking-message-marker{
  flex:0 0 auto;
  min-width:14px;
  color:var(--acr-primary);
  font-weight:900;
  line-height:1.55;
  text-align:center;
}
.acr-booking-message-copy{
  min-width:0;
}
.acr-booking-message-copy strong{
  display:inline!important;
  margin:0 5px 0 0!important;
  color:inherit!important;
  font:inherit!important;
  font-weight:800!important;
}
.acr-booking-message-copy>span{
  color:inherit;
}
@media(max-width:600px){
  .acr-booking-message-note{
    gap:7px;
    font-size:12.5px;
  }
}

/* Aeroturex frontend v1.0.70 — payment choice radio cards */
.acr-price-summary .acr-payment-choice{
  display:block;
  min-width:0;
  margin:18px 0 2px;
  padding:16px 0 0;
  border:0;
  border-top:1px solid color-mix(in srgb, var(--acr-border) 75%, transparent);
}
.acr-price-summary .acr-payment-choice-title{
  width:100%;
  margin:0 0 11px;
  padding:0;
  color:var(--acr-text);
  font-size:15px;
  font-weight:900;
  line-height:1.35;
}
.acr-price-summary .acr-payment-choice-grid{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px!important;
  margin:0!important;
}
.acr-price-summary .acr-payment-choice-card{
  position:relative;
  display:block;
  min-width:0;
  margin:0;
  cursor:pointer;
}
.acr-payment-choice-card>input{
  position:absolute;
  width:1px;
  height:1px;
  margin:0;
  opacity:0;
  pointer-events:none;
}
.acr-price-summary .acr-payment-choice-card-body{
  position:relative;
  display:grid!important;
  align-content:start;
  gap:9px;
  min-height:132px;
  padding:14px;
  border:1px solid var(--acr-border);
  border-radius:15px;
  background:#fff;
  box-shadow:0 8px 24px rgba(30,45,80,.05);
  transition:border-color .18s ease,box-shadow .18s ease,transform .18s ease,background .18s ease;
}
.acr-payment-choice-card:hover .acr-payment-choice-card-body{
  border-color:color-mix(in srgb,var(--acr-primary) 45%,var(--acr-border));
  transform:translateY(-1px);
}
.acr-payment-choice-card>input:focus-visible~.acr-payment-choice-card-body{
  outline:3px solid color-mix(in srgb,var(--acr-primary) 22%,transparent);
  outline-offset:2px;
}
.acr-payment-choice-card>input:checked~.acr-payment-choice-card-body,
.acr-payment-choice-card.is-selected .acr-payment-choice-card-body{
  border-color:var(--acr-primary);
  background:color-mix(in srgb,var(--acr-primary) 4%,#fff);
  box-shadow:0 10px 28px color-mix(in srgb,var(--acr-primary) 13%,transparent);
}
.acr-payment-choice-card>input:checked~.acr-payment-choice-card-body:before{
  content:'✓';
  position:absolute;
  top:11px;
  right:12px;
  display:grid;
  place-items:center;
  width:22px;
  height:22px;
  border-radius:50%;
  background:var(--acr-primary);
  color:#fff;
  font-size:13px;
  font-weight:900;
}
.acr-price-summary .acr-payment-choice-heading{
  display:flex!important;
  align-items:center!important;
  justify-content:flex-start!important;
  flex-wrap:wrap;
  gap:7px!important;
  padding-right:24px;
  color:var(--acr-text)!important;
}
.acr-price-summary .acr-payment-choice-heading strong{
  color:var(--acr-text)!important;
  font-size:14px!important;
  line-height:1.3;
}
.acr-price-summary .acr-payment-choice-heading em{
  display:inline-flex;
  padding:3px 7px;
  border-radius:999px;
  background:color-mix(in srgb,var(--acr-accent) 13%,#fff);
  color:#9a5500;
  font-size:9px;
  font-style:normal;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.acr-price-summary .acr-payment-choice-price{
  display:flex!important;
  align-items:flex-end!important;
  justify-content:space-between!important;
  gap:8px!important;
  color:var(--acr-text-soft)!important;
}
.acr-price-summary .acr-payment-choice-price small{
  margin:0;
  font-size:11px;
  font-weight:700;
}
.acr-price-summary .acr-payment-choice-price b{
  color:var(--acr-primary);
  font-size:17px;
  line-height:1.1;
  white-space:nowrap;
}
.acr-price-summary .acr-payment-choice-detail{
  display:flex!important;
  align-items:center!important;
  justify-content:flex-start!important;
  gap:5px!important;
  color:var(--acr-text-soft)!important;
  font-size:11px;
  line-height:1.4;
}
.acr-price-summary .acr-payment-choice-detail b{
  color:inherit;
  font-size:inherit;
  white-space:nowrap;
}
@supports not (background:color-mix(in srgb,#000 10%,#fff)){
  .acr-payment-choice-card>input:checked~.acr-payment-choice-card-body,
  .acr-payment-choice-card.is-selected .acr-payment-choice-card-body{background:#f7f9ff}
  .acr-price-summary .acr-payment-choice-heading em{background:#fff4df}
}
@media(max-width:680px){
  .acr-price-summary .acr-payment-choice-grid{
    grid-template-columns:1fr;
  }
  .acr-price-summary .acr-payment-choice-card-body{
    min-height:0;
  }
}

/* Aeroturex frontend v1.0.71 — isolate payment selector from theme controls */
.acr-price-summary .acr-payment-choice{
  position:relative!important;
  display:block!important;
  width:100%!important;
  min-width:0!important;
  min-height:0!important;
  max-width:none!important;
  box-sizing:border-box!important;
  clear:both!important;
  float:none!important;
  overflow:visible!important;
  background:transparent!important;
  background-image:none!important;
  box-shadow:none!important;
}
.acr-price-summary .acr-payment-choice:before,
.acr-price-summary .acr-payment-choice:after,
.acr-price-summary .acr-payment-choice-grid:before,
.acr-price-summary .acr-payment-choice-grid:after{
  content:none!important;
  display:none!important;
}
.acr-price-summary .acr-payment-choice-title{
  display:block!important;
  width:auto!important;
  min-width:0!important;
  min-height:0!important;
  margin:0 0 11px!important;
  padding:0!important;
  border:0!important;
  background:transparent!important;
  box-shadow:none!important;
  float:none!important;
  position:static!important;
}
.acr-price-summary .acr-payment-choice-grid{
  position:relative!important;
  width:100%!important;
  min-width:0!important;
  min-height:0!important;
  margin:0!important;
  padding:0!important;
  border:0!important;
  background:transparent!important;
  box-shadow:none!important;
  overflow:visible!important;
}
.acr-payment-choice-card>input[type="radio"]{
  position:absolute!important;
  top:0!important;
  left:0!important;
  width:1px!important;
  height:1px!important;
  min-width:1px!important;
  min-height:1px!important;
  max-width:1px!important;
  max-height:1px!important;
  margin:-1px!important;
  padding:0!important;
  border:0!important;
  border-radius:0!important;
  opacity:0!important;
  clip:rect(0 0 0 0)!important;
  clip-path:inset(50%)!important;
  overflow:hidden!important;
  white-space:nowrap!important;
  pointer-events:none!important;
  appearance:none!important;
  -webkit-appearance:none!important;
  background:transparent!important;
  background-image:none!important;
  box-shadow:none!important;
  transform:none!important;
  z-index:-1!important;
}
.acr-payment-choice-card>input[type="radio"]:before,
.acr-payment-choice-card>input[type="radio"]:after{
  content:none!important;
  display:none!important;
}

/* Aeroturex frontend v1.0.72 — country code + local phone field */
.acr-phone-field{
  display:grid!important;
  grid-template-columns:minmax(190px,.85fr) minmax(210px,1.15fr)!important;
  align-items:stretch!important;
  gap:10px!important;
  width:100%!important;
  min-width:0!important;
}
.acr-phone-field .acr-phone-country,
.acr-phone-field .acr-phone-local{
  width:100%!important;
  min-width:0!important;
  min-height:58px!important;
  margin:0!important;
  border:1px solid var(--acr-border)!important;
  border-radius:16px!important;
  background:#fff!important;
  color:var(--acr-text)!important;
  font:inherit!important;
  font-size:16px!important;
  line-height:1.35!important;
  box-shadow:none!important;
}
.acr-phone-field .acr-phone-country{
  padding:13px 38px 13px 14px!important;
  cursor:pointer;
}
.acr-phone-field .acr-phone-local{
  padding:13px 16px!important;
  letter-spacing:.015em;
  font-variant-numeric:tabular-nums;
}
.acr-phone-field .acr-phone-local::placeholder{
  color:color-mix(in srgb,var(--acr-text-soft) 48%,transparent)!important;
  opacity:1!important;
}
.acr-phone-field .acr-phone-country:focus,
.acr-phone-field .acr-phone-local:focus{
  border-color:var(--acr-primary)!important;
  outline:0!important;
  box-shadow:0 0 0 3px color-mix(in srgb,var(--acr-primary) 12%,transparent)!important;
}
.acr-service-form-field-key-customer_phone>.acr-service-field-help,
.acr-service-form-field-key-customer_phone label>.acr-service-field-help{
  margin-top:7px;
}
@supports not (color:color-mix(in srgb,#000 50%,transparent)){
  .acr-phone-field .acr-phone-local::placeholder{color:#9aa3b5!important}
  .acr-phone-field .acr-phone-country:focus,
  .acr-phone-field .acr-phone-local:focus{box-shadow:0 0 0 3px rgba(30,130,145,.12)!important}
}
@media(max-width:680px){
  .acr-phone-field{
    grid-template-columns:minmax(0,1fr)!important;
    gap:8px!important;
  }
  .acr-phone-field .acr-phone-country,
  .acr-phone-field .acr-phone-local{
    min-height:56px!important;
  }
}



/* v1.0.78 — Diseño SEO de página de flota */
.acr-fleet-seo-page{max-width:1280px;margin:0 auto;padding:16px 16px 52px;background:transparent;color:var(--acr-text)}
.acr-fleet-seo-hero{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(280px,.65fr);gap:24px;align-items:stretch;margin:18px auto 26px;padding:34px;border-radius:28px;background:linear-gradient(135deg,var(--acr-primary),var(--acr-secondary));box-shadow:0 24px 50px rgba(21,21,125,.18);color:#fff;overflow:hidden;position:relative}
.acr-fleet-seo-hero:before{content:"";position:absolute;inset:auto -90px -150px auto;width:360px;height:360px;border-radius:50%;background:rgba(255,255,255,.08)}
.acr-fleet-seo-copy,.acr-fleet-seo-panel{position:relative;z-index:2}
.acr-fleet-seo-copy h1,.acr-fleet-seo-copy h2,.acr-fleet-seo-copy h3{margin:10px 0 14px;color:#fff;font-size:clamp(34px,4.4vw,58px);line-height:1.02;letter-spacing:-.03em;max-width:820px}
.acr-fleet-seo-copy p{margin:0;max-width:780px;color:rgba(255,255,255,.86);font-size:17px;line-height:1.75}
.acr-fleet-seo-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:24px}.acr-fleet-seo-actions .acr-btn-secondary{background:#fff;color:var(--acr-primary)}
.acr-fleet-seo-panel{display:grid;grid-template-columns:1fr 1fr;gap:12px;align-self:center}.acr-fleet-seo-panel span{display:flex;flex-direction:column;gap:5px;padding:16px;border:1px solid rgba(255,255,255,.22);border-radius:18px;background:rgba(255,255,255,.10);backdrop-filter:blur(12px);color:rgba(255,255,255,.84);font-size:13px}.acr-fleet-seo-panel strong{color:#fff;font-size:16px}
.acr-fleet-seo-search{margin:0 auto 22px}.acr-fleet-seo-search .acr-hero-search{margin:0;border-radius:24px;padding:0;background:transparent;box-shadow:none}.acr-fleet-seo-search .acr-search-card{max-width:none;margin:0;grid-template-columns:repeat(6,minmax(0,1fr));box-shadow:0 16px 38px rgba(16,24,40,.08)}.acr-fleet-seo-search .acr-search-card button{grid-column:auto}.acr-fleet-seo-catalog .acr-catalog-wrap{margin-top:24px;padding-left:0;padding-right:0}.acr-fleet-seo-catalog .acr-catalog-filterbar{margin-bottom:18px}.acr-fleet-seo-catalog .acr-section-heading{text-align:left;max-width:840px;margin-left:0;margin-right:auto}.acr-fleet-seo-catalog .acr-section-heading h2,.acr-fleet-seo-catalog .acr-section-heading h3,.acr-fleet-seo-catalog .acr-section-heading h4{max-width:780px}
.acr-fleet-seo-section{margin:48px auto 0}.acr-fleet-seo-service-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}.acr-fleet-seo-service-grid a{display:flex;flex-direction:column;gap:9px;padding:20px;border:1px solid var(--acr-border);border-radius:18px;background:#fff;box-shadow:0 12px 26px rgba(16,24,40,.06);color:var(--acr-text);text-decoration:none}.acr-fleet-seo-service-grid a:hover{transform:translateY(-2px);box-shadow:0 18px 34px rgba(16,24,40,.10)}.acr-fleet-seo-service-grid span{width:38px;height:38px;display:grid;place-items:center;border-radius:13px;background:rgba(46,49,146,.08)}.acr-fleet-seo-service-grid strong{font-size:17px;color:var(--acr-primary)}.acr-fleet-seo-service-grid small{color:var(--acr-text-soft);line-height:1.55;font-size:13px}
.acr-fleet-seo-faq-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.acr-fleet-seo-faq details{border:1px solid var(--acr-border);border-radius:18px;background:#fff;padding:18px;box-shadow:0 10px 24px rgba(16,24,40,.05)}.acr-fleet-seo-faq summary{cursor:pointer;font-weight:800;color:var(--acr-primary)}.acr-fleet-seo-faq p{margin:12px 0 0;color:var(--acr-text-soft);line-height:1.65}.acr-fleet-seo-cta{display:flex;align-items:center;justify-content:space-between;gap:24px;margin:52px auto 0;padding:28px;border-radius:24px;background:linear-gradient(135deg,var(--acr-primary),var(--acr-secondary));box-shadow:0 24px 45px rgba(21,21,125,.18);color:#fff}.acr-fleet-seo-cta h2{margin:6px 0 8px;color:#fff;font-size:clamp(28px,3.3vw,42px)}.acr-fleet-seo-cta p{margin:0;max-width:720px;color:rgba(255,255,255,.84);line-height:1.7}.acr-fleet-seo-cta .acr-btn{background:#fff;color:var(--acr-primary);white-space:nowrap}
@media (max-width:1024px){.acr-fleet-seo-hero{grid-template-columns:1fr}.acr-fleet-seo-search .acr-search-card{grid-template-columns:repeat(3,minmax(0,1fr))}.acr-fleet-seo-service-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:760px){.acr-fleet-seo-page{padding:10px 10px 36px}.acr-fleet-seo-hero{padding:26px;border-radius:24px}.acr-fleet-seo-copy h1,.acr-fleet-seo-copy h2,.acr-fleet-seo-copy h3{font-size:36px}.acr-fleet-seo-panel,.acr-fleet-seo-search .acr-search-card,.acr-fleet-seo-service-grid,.acr-fleet-seo-faq-grid{grid-template-columns:1fr}.acr-fleet-seo-cta{align-items:flex-start;flex-direction:column}.acr-fleet-seo-cta .acr-btn{width:100%;justify-content:center}.acr-fleet-seo-actions .acr-btn{width:100%;justify-content:center}}


/* Aeroturex frontend v1.0.79 - modos visuales para página de flota */
.acr-catalog-layout-masonry .acr-vehicle-grid,
.acr-layout-masonry{
  display:block!important;
  column-count:var(--acr-columns);
  column-gap:24px;
}
.acr-catalog-layout-masonry .acr-vehicle-card,
.acr-layout-masonry .acr-vehicle-card{
  display:inline-block;
  width:100%;
  margin:0 0 24px;
  break-inside:avoid;
  transform:translateZ(0);
}
.acr-catalog-layout-masonry .acr-card-image{min-height:clamp(230px,24vw,340px)}
.acr-catalog-layout-masonry .acr-vehicle-card:nth-child(3n+2) .acr-card-image{min-height:clamp(280px,28vw,390px)}
.acr-catalog-layout-masonry .acr-vehicle-card:nth-child(4n) .acr-card-image{min-height:clamp(210px,22vw,320px)}
.acr-catalog-layout-mini .acr-vehicle-grid,
.acr-layout-mini{
  display:grid;
  grid-template-columns:repeat(var(--acr-columns),minmax(0,1fr));
  gap:14px;
}
.acr-fleet-seo-catalog .acr-catalog-layout-carousel .acr-vehicle-grid[data-acr-carousel="true"]{
  scroll-behavior:smooth;
}
.acr-fleet-seo-catalog .acr-catalog-layout-carousel .acr-vehicle-card{
  min-width:calc((100% - (22px * (var(--acr-columns) - 1))) / var(--acr-columns));
}
.acr-fleet-seo-catalog .acr-catalog-layout-slider .acr-vehicle-card{
  min-width:100%;
}
@media(max-width:1024px){
  .acr-catalog-layout-masonry .acr-vehicle-grid,
  .acr-layout-masonry{column-count:min(2,var(--acr-columns))}
  .acr-fleet-seo-catalog .acr-catalog-layout-carousel .acr-vehicle-card{min-width:calc((100% - 22px) / 2)}
  .acr-catalog-layout-mini .acr-vehicle-grid,.acr-layout-mini{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:700px){
  .acr-catalog-layout-masonry .acr-vehicle-grid,
  .acr-layout-masonry{column-count:1}
  .acr-fleet-seo-catalog .acr-catalog-layout-carousel .acr-vehicle-card{min-width:86%}
  .acr-catalog-layout-mini .acr-vehicle-grid,.acr-layout-mini{grid-template-columns:1fr}
}
