:root {
  --ink: #f7f4ec;
  --muted: #b9b2a4;
  --line: #3a352c;
  --paper: #0b0b0c;
  --surface: #17181b;
  --surface-soft: #222328;
  --accent: #d7a948;
  --accent-dark: #b98621;
  --gold: #d7a948;
  --steel: #aeb4bb;
  --green: #1f7a4d;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(215, 169, 72, 0.14), transparent 30%),
    linear-gradient(180deg, #101114 0%, var(--paper) 46%);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body[data-page="home"] {
  --hero-photo: url("/assets/hero-home.png");
}

body[data-page="occasions"] {
  --hero-photo: url("/assets/hero-occasions.png");
}

body[data-page="import-export"] {
  --hero-photo: url("/assets/hero-import-export.png");
}

body[data-page="sell-car"] {
  --hero-photo: url("/assets/hero-sell-car.png");
}

body[data-page="work"] {
  --hero-photo: url("/assets/hero-work.png");
}

body[data-page="contact"] {
  --hero-photo: url("/assets/hero-contact.png");
}

body[data-page="privacy"] {
  --hero-photo: url("/assets/hero-privacy.png");
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  -webkit-user-drag: none;
  user-select: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 124px;
  padding: 12px clamp(18px, 5vw, 64px);
  background: rgba(10, 10, 11, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.nav,
.hero-actions,
.contact-actions,
.form-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 14px;
  font-weight: 800;
  font-size: 18px;
}

.brand-logo {
  display: block;
  width: 308px;
  height: 104px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  font-size: 14px;
}

.nav {
  flex: 1;
  justify-content: center;
  gap: clamp(10px, 1.6vw, 22px);
  flex-wrap: wrap;
  color: #e6dfcf;
  font-size: 15px;
  font-weight: 700;
}

.nav a:hover,
.text-button:hover {
  color: var(--gold);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-switch a {
  display: grid;
  place-items: center;
  min-width: 34px;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #e6dfcf;
  font-size: 12px;
  font-weight: 900;
}

.lang-switch a.active,
.lang-switch a:hover {
  border-color: var(--gold);
  background: rgba(215, 169, 72, 0.16);
  color: #f7e3ad;
}

.floating-actions {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 30;
  display: grid;
  transform: translateY(-50%);
  box-shadow: -8px 10px 28px rgba(0, 0, 0, 0.28);
}

.floating-actions a {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-bottom: 1px solid rgba(23, 18, 10, 0.26);
  background: linear-gradient(180deg, #efc86c, var(--gold));
  color: #17120a;
}

.floating-actions a:first-child {
  border-radius: 8px 0 0 0;
}

.floating-actions a:last-child {
  border-bottom: 0;
  border-radius: 0 0 0 8px;
}

.floating-actions a:hover {
  background: linear-gradient(180deg, #f4d98b, var(--accent-dark));
}

.floating-actions svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  min-height: 72vh;
  padding: clamp(44px, 8vw, 88px) clamp(18px, 5vw, 64px) 44px;
  background:
    linear-gradient(90deg, rgba(8, 8, 9, 0.92), rgba(8, 8, 9, 0.68) 42%, rgba(8, 8, 9, 0.2)),
    radial-gradient(circle at 76% 24%, rgba(215, 169, 72, 0.18), transparent 30%),
    var(--hero-photo),
    linear-gradient(135deg, #17181b 0%, #0c0d0f 58%, #15120b 100%);
  background-position: center;
  background-size: cover;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(46px, 8vw, 94px);
  line-height: 0.95;
}

h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.hero-copy p:not(.eyebrow),
.contact-band p,
.car-content p {
  color: var(--muted);
}

.hero-copy {
  max-width: 700px;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  font-size: 19px;
}

.hero-actions,
.contact-actions,
.form-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  border-color: var(--accent);
  background: linear-gradient(180deg, #efc86c, var(--accent));
  color: #17120a;
  box-shadow: 0 10px 24px rgba(215, 169, 72, 0.22);
}

.button.primary:hover {
  background: linear-gradient(180deg, #f3d17d, var(--accent-dark));
}

.button.ghost {
  background: transparent;
  color: #f7f4ec;
}

.button.danger {
  border-color: #6c2b28;
  background: #2a1514;
  color: #ffb3ad;
}

.hero-panel {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 19, 22, 0.74);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-logo {
  display: block;
  width: 100%;
  min-height: 260px;
  border-radius: 8px;
  object-fit: contain;
  padding: clamp(18px, 4vw, 34px);
  background:
    radial-gradient(circle at 50% 45%, rgba(215, 169, 72, 0.22), transparent 38%),
    linear-gradient(135deg, #101114, #24262b);
}

.hero-panel dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0 0;
}

.hero-panel div {
  min-width: 0;
}

.hero-panel dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-panel dd {
  margin: 2px 0 0;
  font-weight: 800;
}

.page-hero {
  padding: clamp(42px, 7vw, 82px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(8, 8, 9, 0.9), rgba(8, 8, 9, 0.64) 48%, rgba(8, 8, 9, 0.22)),
    radial-gradient(circle at 76% 12%, rgba(215, 169, 72, 0.16), transparent 26%),
    var(--hero-photo),
    linear-gradient(135deg, #17181b 0%, #0c0d0f 64%, #15120b 100%);
  background-position: center;
  background-size: cover;
}

.page-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
}

.page-content {
  padding: 44px clamp(18px, 5vw, 64px) 70px;
  background: #0f1012;
}

.contact-card {
  max-width: 760px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: linear-gradient(180deg, #1a1b1f, #141519);
  box-shadow: var(--shadow);
}

.contact-card p {
  color: var(--muted);
}

.contact-address {
  display: grid;
  gap: 3px;
  margin-top: 18px;
  color: #ece6d8;
  font-style: normal;
  font-weight: 900;
}

.message-form {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: linear-gradient(180deg, #1a1b1f, #141519);
  box-shadow: var(--shadow);
}

.message-form p {
  color: var(--muted);
}

.message-form a {
  color: var(--gold);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.message-form textarea {
  min-height: 150px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 22px;
  align-items: stretch;
}

.contact-layout .contact-card {
  max-width: none;
}

.hours-card {
  display: grid;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: linear-gradient(180deg, #1a1b1f, #141519);
  box-shadow: var(--shadow);
}

.hours-card h2 {
  margin-bottom: 0;
}

.opening-hours {
  display: grid;
  gap: 11px;
  margin: 0;
}

.opening-hours div {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto;
  gap: 20px;
  align-items: center;
  color: var(--muted);
}

.opening-hours dt,
.opening-hours dd {
  margin: 0;
}

.opening-hours dt {
  font-weight: 800;
}

.opening-hours dd {
  text-align: right;
  font-weight: 900;
  color: #ece6d8;
}

.opening-hours .current-day {
  position: relative;
  color: var(--ink);
}

.opening-hours .current-day::before {
  position: absolute;
  left: -18px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.rdw-logo {
  display: block;
  width: min(220px, 100%);
  border-radius: 8px;
  background: #262832;
}

.text-page {
  max-width: 860px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: linear-gradient(180deg, #1a1b1f, #141519);
  box-shadow: var(--shadow);
}

.text-page p {
  color: var(--muted);
}

.text-page a,
.car-content h3 a {
  color: var(--gold);
}

.detail-page {
  min-height: calc(100vh - 82px);
  padding: 34px clamp(18px, 5vw, 64px) 70px;
  background: #0f1012;
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}

.gallery,
.detail-info {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #1a1b1f, #141519);
  box-shadow: var(--shadow);
}

.gallery {
  display: grid;
  gap: 12px;
  padding: 12px;
}

.gallery-main {
  overflow: hidden;
  border-radius: 8px;
  background: #09090a;
}

.gallery-main img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.gallery-thumbs button {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  background: #101114;
  cursor: pointer;
}

.gallery-thumbs button.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(215, 169, 72, 0.22);
}

.gallery-thumbs img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.detail-info {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
}

.detail-info h1,
.detail-info h2,
.detail-info p {
  margin-bottom: 0;
}

.detail-info p {
  color: var(--muted);
}

.detail-price {
  color: var(--gold);
  font-size: clamp(28px, 4vw, 42px);
}

.detail-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.detail-specs div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: #101114;
}

.detail-specs dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.detail-specs dd {
  margin: 3px 0 0;
  font-weight: 900;
}

.detail-options {
  margin-bottom: 4px;
}

[dir="rtl"] body,
[dir="rtl"] input,
[dir="rtl"] select,
[dir="rtl"] textarea {
  font-family: Arial, Tahoma, sans-serif;
}

[dir="rtl"] .hero-copy,
[dir="rtl"] .page-hero,
[dir="rtl"] .contact-card,
[dir="rtl"] .text-page,
[dir="rtl"] .detail-info,
[dir="rtl"] .car-card,
[dir="rtl"] .toolbar {
  text-align: right;
}

[dir="rtl"] .status-badge {
  right: 12px;
  left: auto;
}

[dir="rtl"] .card-foot,
[dir="rtl"] footer,
[dir="rtl"] .contact-actions,
[dir="rtl"] .hero-actions {
  flex-direction: row-reverse;
}

.toolbar,
.inventory,
.contact-band,
footer {
  padding-right: clamp(18px, 5vw, 64px);
  padding-left: clamp(18px, 5vw, 64px);
}

.toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 48px;
  padding-bottom: 18px;
  background: #0f1012;
}

.filters {
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) minmax(150px, 0.8fr) minmax(180px, 1fr);
  gap: 10px;
  width: min(680px, 100%);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101114;
  color: var(--ink);
  outline: none;
}

input,
select {
  height: 46px;
  padding: 0 13px;
}

textarea {
  padding: 12px 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(215, 169, 72, 0.18);
}

.inventory {
  padding-bottom: 64px;
  background: #0f1012;
}

.car-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.car-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #1a1b1f, #141519);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.car-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #20242e;
}

.car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.status-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 8px;
  background: rgba(215, 169, 72, 0.95);
  color: #15110a;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
}

.image-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(8, 8, 9, 0.54);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0.86;
}

.image-nav:hover,
.image-nav:focus-visible {
  border-color: var(--gold);
  background: rgba(215, 169, 72, 0.92);
  color: #15110a;
  opacity: 1;
  outline: none;
}

.image-nav-prev {
  left: 14px;
}

.image-nav-next {
  right: 14px;
}

.image-count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  border-radius: 8px;
  background: rgba(8, 8, 9, 0.68);
  padding: 5px 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.car-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
}

.specs,
.options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.specs span,
.options li {
  border-radius: 8px;
  background: #24262b;
  padding: 6px 9px;
  color: #d7dce2;
  font-size: 13px;
  font-weight: 700;
}

.options li {
  background: rgba(215, 169, 72, 0.16);
  color: #f0d48e;
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 6px;
}

.card-foot strong {
  font-size: 24px;
}

.card-foot a {
  color: var(--gold);
  font-weight: 900;
}

.empty {
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  color: var(--muted);
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 44px;
  padding-bottom: 44px;
  background:
    linear-gradient(90deg, rgba(215, 169, 72, 0.13), transparent 42%),
    #080809;
  color: white;
}

.contact-band p {
  margin-bottom: 0;
}

.contact-band .button.ghost {
  border-color: rgba(255, 255, 255, 0.32);
  color: white;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  padding-bottom: 24px;
  background: #080809;
  color: var(--muted);
}

.admin-shell {
  padding: 34px clamp(18px, 5vw, 64px) 60px;
  background: #0f1012;
}

.login-panel {
  max-width: 430px;
  margin: 8vh auto;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.login-form,
#carForm {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: #ded6c6;
  font-size: 13px;
  font-weight: 900;
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.admin-list,
.editor {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.admin-list {
  position: sticky;
  top: 92px;
  overflow: hidden;
}

.admin-list-head,
.form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.admin-list-head h1,
.form-head h2 {
  margin: 0;
  font-size: 24px;
}

.admin-cars {
  display: grid;
  max-height: calc(100vh - 190px);
  overflow: auto;
}

.admin-car {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 15px 18px;
  text-align: left;
  cursor: pointer;
}

.admin-car.active,
.admin-car:hover {
  background: #222328;
}

.admin-car strong,
.admin-car small {
  display: block;
}

.admin-car small {
  color: var(--muted);
  font-weight: 700;
}

.admin-car b {
  white-space: nowrap;
}

.editor {
  padding: 0 18px 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.options-panel {
  display: grid;
  gap: 18px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.options-panel legend {
  padding: 0 8px;
  color: #ded6c6;
  font-size: 13px;
  font-weight: 900;
}

.options-checklist {
  display: grid;
  gap: 18px;
}

.option-group {
  display: grid;
  gap: 10px;
}

.option-group h3 {
  margin: 0;
  color: var(--gold);
  font-size: 14px;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.option-toggle {
  position: relative;
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.option-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.option-toggle span {
  display: flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 11px;
  background: #101114;
  color: #d7dce2;
}

.option-toggle span::before {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 1px solid #6f6652;
  border-radius: 4px;
  color: #17120a;
  content: "";
}

.option-toggle input:checked + span {
  border-color: var(--gold);
  background: rgba(215, 169, 72, 0.16);
  color: #f7e3ad;
}

.option-toggle input:checked + span::before {
  border-color: var(--gold);
  background: var(--gold);
  content: "✓";
  font-size: 13px;
  font-weight: 900;
}

.option-toggle input:focus + span {
  box-shadow: 0 0 0 3px rgba(215, 169, 72, 0.18);
}

.image-tools {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 14px;
}

.image-tools p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.upload-box input {
  padding-top: 10px;
}

@media (max-width: 960px) {
  .hero,
  .admin-layout,
  .detail-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .admin-list {
    position: static;
  }

  .car-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .filters {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header,
  .contact-band,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .brand-logo {
    width: 220px;
    height: 74px;
  }

  .lang-switch {
    width: 100%;
  }

  .floating-actions {
    right: 10px;
    bottom: 10px;
    top: auto;
    grid-auto-flow: column;
    transform: none;
  }

  .floating-actions a,
  .floating-actions a:first-child,
  .floating-actions a:last-child {
    width: 46px;
    height: 46px;
    border-radius: 8px;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel dl,
  .car-grid,
  .form-grid,
  .option-grid,
  .detail-specs,
  .image-tools {
    grid-template-columns: 1fr;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-logo {
    min-height: 220px;
  }

  .card-foot {
    align-items: flex-start;
    flex-direction: column;
  }
}
