@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root {
  --ink: #111111;
  --graphite: #1b1d1f;
  --carbon: #080a0d;
  --ash: #f3f4f1;
  --paper: #fbfaf5;
  --muted: #6e7378;
  --line: rgba(17, 17, 17, .12);
  --line-dark: rgba(255, 255, 255, .15);
  --acid: #d9ff42;
  --copper: #d66832;
  --teal: #0f766e;
  --sky: #82c8ff;
  --panel: #ffffff;
  --shadow: 0 26px 80px rgba(8, 10, 13, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Rubik", sans-serif;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

.site-nav {
  background: rgb(10 12 15);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(22px);
}

.site-nav.inner-nav,
.site-nav.nav-scrolled {
  background: rgb(10 12 15);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .25);
}

.navbar-brand,
.site-nav .nav-link {
  color: #fff;
}

.navbar-brand {
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--carbon);
  background: var(--acid);
  border-radius: 4px;
}

.site-nav .nav-link {
  color: rgba(255, 255, 255, .74);
  font-size: .93rem;
  padding-inline: .9rem;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: var(--acid);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
  font-size: 1.65rem;
  padding: .25rem .65rem;
}

.navbar-toggler-icon {
  filter: invert(1);
}

.nav-sidebar {
  width: min(86vw, 380px);
  color: #fff;
  background:
    linear-gradient(150deg, rgba(8, 10, 13, .98), rgba(27, 29, 31, .94)),
    url("https://images.unsplash.com/photo-1600861195091-690c92f1d2cc?auto=format&fit=crop&w=900&q=80") center / cover;
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.nav-sidebar .offcanvas-header {
  align-items: center;
  /* padding: 1.25rem; */
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.nav-sidebar .offcanvas-title {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
}

.nav-sidebar .offcanvas-body {
  display: flex;
  background: #0a0c0f;
  align-items: stretch;
  padding: 1rem;
}

.nav-sidebar .navbar-nav {
  width: 100%;
}

.nav-sidebar .nav-link {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: .85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .8);
  font-size: 1.08rem;
}

.nav-sidebar .nav-link:hover,
.nav-sidebar .nav-link.active {
  color: var(--acid);
}

.nav-sidebar .btn-nav-cart {
  width: 100%;
  margin-top: 1rem;
}

.btn {
  min-height: 46px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-weight: 500;
}

.btn-primary-custom {
  color: var(--carbon);
  background: var(--acid);
  border: 1px solid var(--acid);
  box-shadow: 0 15px 34px rgba(217, 255, 66, .22);
}

.btn-primary-custom:hover,
.btn-primary-custom:focus {
  color: var(--carbon);
  background: #c8ef36;
  border-color: #c8ef36;
}

.btn-light-custom {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .32);
}

.btn-light-custom:hover,
.btn-light-custom:focus {
  color: var(--carbon);
  background: #fff;
}

.btn-outline-custom {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
}

.btn-outline-custom:hover,
.btn-outline-custom:focus {
  color: #fff;
  background: var(--ink);
}

.btn-nav-cart {
  position: relative;
  min-width: 46px;
  border-radius: 50px;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
}

.btn-nav-cart:hover,
.btn-nav-cart.active {
  color: var(--carbon);
  background: var(--acid);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 22px;
  height: 22px;
  padding-inline: 6px;
  color: #000;
  background: var(--acid);
  border-radius: 999px;
  font-size: .75rem;
  line-height: 22px;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  color: #fff;
  background-image: url("https://images.unsplash.com/photo-1625047509168-a7026f36de04?auto=format&fit=crop&w=1900&q=82");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38vh;
  background: linear-gradient(0deg, var(--paper) 0%, rgba(251, 250, 245, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(8, 10, 13, .96) 0%, rgba(8, 10, 13, .72) 45%, rgba(8, 10, 13, .18) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .08) 0, rgba(255, 255, 255, .08) 1px, transparent 1px, transparent 13vw);
  z-index: 0;
}

.hero-rail {
    position: absolute;
    top: 18%;
    right: clamp(1rem, 5vw, 6rem);
    z-index: 2;
    display: grid;
    gap: 2.7rem;
    color: rgb(217 255 66 / 21%);
    font-size: 30px;
    font-weight: 100;
    letter-spacing: .28em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-section h1,
.page-hero h1 {
  max-width: 940px;
  font-size: 66px;
  line-height: .82;
  color: #ddd;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 630px;
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.4rem;
}

.hero-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 36px;
  padding: .35rem .7rem;
  color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 4px;
  font-size: .88rem;
  font-weight: 780;
}

.hero-trust-row i {
  color: var(--acid);
}

.eyebrow {
  margin-bottom: .85rem;
  color: var(--acid);
  letter-spacing: .19em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--acid);
}

.hero-dock {
  position: absolute;
  right: var(--bs-gutter-x, .75rem);
  bottom: clamp(1.5rem, 5vw, 4rem);
  left: var(--bs-gutter-x, .75rem);
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(8, 10, 13, .58);
  backdrop-filter: blur(20px);
}

.hero-command-card {
  position: absolute;
  right: clamp(1rem, 7vw, 7rem);
  top: 23%;
  z-index: 4;
  width: min(360px, 32vw);
  padding: 1rem;
  color: #fff;
  background: rgba(8, 10, 13, .68);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 4px;
  backdrop-filter: blur(22px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .26);
}

.command-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.command-top span {
  color: rgba(255, 255, 255, .66);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.command-top strong {
  color: var(--acid);
  font-size: 3.4rem;
  line-height: .85;
}

.command-meter {
  height: 8px;
  margin: 1rem 0;
  background: rgba(255, 255, 255, .14);
  border-radius: 999px;
  overflow: hidden;
}

.command-meter span {
  display: block;
  width: var(--level);
  height: 100%;
  background: var(--acid);
}

.command-list {
  display: grid;
  gap: .55rem;
}

.command-list div {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: .65rem;
  min-height: 48px;
  padding: .55rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 4px;
}

.command-list i {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--carbon);
  background: var(--acid);
  border-radius: 4px;
}

.command-list span {
  color: rgba(255, 255, 255, .84);
  font-weight: 780;
}

.command-list strong {
  color: rgba(255, 255, 255, .68);
  font-size: .86rem;
}

.hero-dock div {
  min-height: 106px;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.hero-dock div:last-child {
  border-right: 0;
}

.hero-dock span {
  display: block;
  color: rgba(255, 255, 255, .62);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hero-dock strong {
  display: block;
  margin-top: .45rem;
  font-size: clamp(1.2rem, 3vw, 2rem);
  line-height: 1;
}

.section-pad {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
}

h2 {
  font-size: 40px;
  line-height: .9;
  font-weight: 400;
  letter-spacing: 0;
}

.section-copy {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.section-copy.light {
  color: rgba(255, 255, 255, .74);
}

.about-band {
  position: relative;
  background: var(--paper);
}

.image-stack {
  position: relative;
  min-height: 560px;
}

.about-image {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.about-image.primary {
  aspect-ratio: 5 / 6;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 74% 100%, 0 100%);
}

.about-image.secondary {
  position: absolute;
  right: -5%;
  bottom: 8%;
  width: 48%;
  aspect-ratio: 1 / 1;
  border: 8px solid var(--paper);
}

.metric {
  height: 100%;
  padding: 1.15rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.metric strong {
  display: block;
  color: var(--teal);
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 400;
}

.metric span {
  color: var(--muted);
  font-size: .92rem;
}

.service-band,
.product-band {
  background: #fff;
}

.section-heading,
.section-heading-wide {
  max-width: 880px;
}

.section-heading-wide {
  max-width: none;
}

.service-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  max-width: none;
}

.section-code {
  color: rgb(217 255 66 / 32%);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 400;
  line-height: .8;
}

.service-card,
.product-card,
.cart-panel,
.summary-panel,
.contact-form,
.visit-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.service-card {
  position: relative;
  height: 100%;
  min-height: 280px;
  padding: 1.35rem;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -25%;
  bottom: -30%;
  width: 190px;
  height: 190px;
  border: 32px solid rgba(217, 255, 66, .22);
  transform: rotate(22deg);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(15, 118, 110, .38);
  box-shadow: var(--shadow);
}

.service-card i {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--carbon);
  background: var(--acid);
  border-radius: 4px;
  font-size: 1.45rem;
}

.service-card h3,
.product-card h3 {
  position: relative;
  z-index: 1;
  font-size: 19px;
  margin-bottom: 22px;
  font-weight: 500;
  line-height: normal;
}

.service-card p,
.product-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.65;
}

.choose-band {
  color: #fff;
  background:
    linear-gradient(100deg, rgba(8, 10, 13, .95), rgba(8, 10, 13, .72)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1700&q=82") center / cover;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(130px, auto);
  gap: 1rem;
}

.why-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  min-height: 130px;
  padding: 1.05rem;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 4px;
  backdrop-filter: blur(16px);
}

.why-item.wide {
  grid-column: span 2;
}

.why-item.accent {
  color: var(--carbon);
  background: var(--acid);
}

.why-item i {
  color: var(--acid);
  font-size: 1.55rem;
}

.why-item.accent i {
  color: var(--carbon);
}

.why-item span {
  font-size: 1.04rem;
}

.product-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: contain;
}

.product-card-body {
  padding: 1.15rem;
}

.product-price {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding-inline: .65rem;
  color: #000;
  background: var(--acid);
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
}

.rating {
  color: var(--copper);
  font-size: .92rem;
  font-weight: 760;
}

.faq-band {
  background: var(--paper);
}

.faq-accordion {
  display: grid;
  gap: .85rem;
}

.faq-accordion .accordion-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 16px 45px rgba(8, 10, 13, .06);
  overflow: hidden;
}

.faq-accordion .accordion-button {
  min-height: 72px;
  color: var(--ink);
  background: #fff;
  padding: 0px 20px;
  border-radius: 0;
  font-size: 1.02rem;
  font-weight: 400;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--carbon);
  background: var(--acid);
}

.faq-accordion .accordion-button:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 .2rem rgba(15, 118, 110, .14);
}

.faq-accordion .accordion-body {
  color: var(--muted);
  line-height: 1.7;
  padding: 20px;
}

.products-hero,
.checkout-hero {
  color: #fff;
  background:
    linear-gradient(100deg, rgba(8, 10, 13, .94), rgba(8, 10, 13, .44)),
    url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1700&q=82") center / cover;
}

.products-hero h1,
.checkout-hero h1 {
  font-size: clamp(2.6rem, 7vw, 6.3rem);
}

.product-hero-card {
  display: flex;
  align-items: start;
  gap: .85rem;
  padding: 1rem;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 4px;
  backdrop-filter: blur(18px);
}

.product-hero-card i {
  color: var(--acid);
  font-size: 1.45rem;
}

.product-hero-card span {
  color: rgba(255, 255, 255, .76);
  line-height: 1.55;
  font-weight: 760;
}

.product-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.product-toolbar h2 {
  max-width: 900px;
}

.product-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.5rem;
}

.product-filter-row span {
  min-height: 38px;
  padding: .45rem .75rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: .86rem;
  font-weight: 850;
}

.site-footer {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0 1.3rem;
  color: rgba(255, 255, 255, .72);
  background:
    linear-gradient(120deg, rgba(8, 10, 13, .98), rgba(8, 10, 13, .92)),
    url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1600&q=82") center / cover;
  overflow: hidden;
}

.site-footer::before {
  content: "AUTOMOTIVE";
  position: absolute;
  right: 9rem;
  bottom: 1.2rem;
  color: rgba(255, 255, 255, .035);
  font-size: clamp(4rem, 12vw, 11rem);
  font-weight: 100;
  line-height: .8;
  pointer-events: none;
}

.footer-cta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.1rem, 3vw, 2rem);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 4px;
  backdrop-filter: blur(18px);
}

.footer-cta h2 {
  max-width: 850px;
  color: #fff;
  font-size: clamp(2rem, 5vw, 4.25rem);
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(150px, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(2rem, 5vw, 3.3rem) 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: #fff;
  font-weight: 900;
  font-size: 1.2rem;
}

.site-footer p {
  max-width: 430px;
  margin: 1rem 0 0;
  line-height: 1.7;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: .7rem;
}

.footer-links h3,
.footer-contact h3 {
  margin: 0 0 .2rem;
  color: #d9ff42;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(255, 255, 255, .74);
}

.site-footer a:hover {
  color: var(--acid);
}

.footer-contact span {
  display: flex;
  gap: .65rem;
  line-height: 1.5;
}

.footer-contact i {
  color: var(--acid);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .13);
  color: rgba(255, 255, 255, .55);
  font-size: .9rem;
}

.toast-wrap {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1080;
}

.inner-main {
  padding-top: 74px;
}

.page-hero {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.compact-hero {
  background:
    linear-gradient(90deg, rgba(251, 250, 245, .96), rgba(251, 250, 245, .82)),
    url("https://images.unsplash.com/photo-1600861195091-690c92f1d2cc?auto=format&fit=crop&w=1500&q=80") center / cover;
}

.cart-page .compact-hero {
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.cart-page .page-hero h1 {
  font-size: clamp(2.6rem, 7vw, 6rem);
}

.cart-hero-note {
  display: flex;
  gap: .85rem;
  padding: 1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, .76);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 18px 50px rgba(8, 10, 13, .08);
  backdrop-filter: blur(16px);
}

.cart-hero-note i {
  color: var(--teal);
  font-size: 1.45rem;
}

.cart-hero-note span {
  color: var(--muted);
  line-height: 1.55;
  font-weight: 700;
}

.cart-section {
  padding: 0 0 clamp(4rem, 7vw, 7rem);
  margin-top: clamp(-4rem, -5vw, -2rem);
}

.checkout-page .checkout-hero {
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.checkout-section {
  padding: 0 0 clamp(4rem, 7vw, 7rem);
  margin-top: clamp(-4rem, -5vw, -2rem);
}

.checkout-layout {
  align-items: start;
}

.checkout-form {
  padding: clamp(1rem, 3vw, 1.6rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 18px 50px rgba(8, 10, 13, .08);
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1rem;
}

.checkout-step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--carbon);
  background: var(--acid);
  border-radius: 4px;
  font-weight: 950;
}

.checkout-step h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.1;
}

.checkout-summary {
  position: sticky;
  top: 98px;
}

.checkout-items {
  display: grid;
  gap: .75rem;
  margin: 1rem 0;
}

.checkout-item {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: .75rem;
  align-items: center;
  padding: .75rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.checkout-item img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 4px;
}

.checkout-item h3 {
  margin: 0;
  font-size: .98rem;
  font-weight: 900;
}

.checkout-item span {
  color: var(--muted);
  font-size: .86rem;
}

.checkout-item strong {
  white-space: nowrap;
}

.contact-hero {
  color: #fff;
  background:
    linear-gradient(100deg, rgba(8, 10, 13, .93), rgba(8, 10, 13, .42)),
    url("https://images.unsplash.com/photo-1609521263047-f8f205293f24?auto=format&fit=crop&w=1600&q=82") center / cover;
}

.contact-mini {
  padding: 1.25rem;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 4px;
  backdrop-filter: blur(18px);
}

.contact-mini i,
.contact-mini span,
.contact-mini strong {
  display: block;
}

.contact-mini i {
  color: var(--acid);
  font-size: 1.5rem;
}

.contact-mini span {
  margin-top: .7rem;
  color: rgba(255, 255, 255, .72);
}

.contact-mini strong {
  font-size: 1.35rem;
}

.cart-panel,
.summary-panel,
.contact-form {
  padding: clamp(1rem, 3vw, 1.5rem);
}

.cart-panel,
.summary-panel,
.contact-form,
.visit-panel {
  box-shadow: 0 18px 50px rgba(8, 10, 13, .08);
}

.cart-layout {
  align-items: start;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cart-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 4px;
}

.cart-item h2 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
}

.cart-item-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.cart-item-title span {
  color: var(--teal);
  font-size: .84rem;
  font-weight: 900;
  white-space: nowrap;
}

.cart-item p {
  margin: .2rem 0 .65rem;
  color: var(--muted);
  font-size: .92rem;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.qty-control button {
  width: 38px;
  height: 38px;
  border: 0;
  background: #eff1ee;
}

.qty-control span {
  min-width: 38px;
  text-align: center;
  font-weight: 900;
}

.cart-item-total {
  min-width: 98px;
  text-align: right;
  font-weight: 930;
}

.remove-btn {
  min-height: 38px;
  margin-left: .5rem;
  padding-inline: .65rem;
  color: var(--copper);
  background: transparent;
  border: 1px solid rgba(214, 104, 50, .35);
}

.empty-cart {
  padding: 4rem 1rem;
  text-align: center;
}

.empty-cart i {
  color: var(--acid);
  font-size: 2.7rem;
}

.empty-cart h2 {
  margin-top: 1rem;
  font-size: 1.8rem;
}

.summary-panel {
  position: sticky;
  top: 98px;
}

.summary-panel h2 {
  font-size: 1.35rem;
  line-height: 1.15;
}

.summary-row,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--line);
}

.summary-total {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  border-bottom: 0;
}

.summary-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
}

.form-control,
.form-select {
  min-height: 50px;
  border-color: var(--line);
  border-radius: 4px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 .2rem rgba(15, 118, 110, .14);
}

.form-status {
  color: var(--teal);
  font-weight: 820;
}

.visit-panel {
  overflow: hidden;
}

.visit-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.visit-content {
  padding: 1.3rem;
}

.visit-content h2 {
  font-size: 1.45rem;
  line-height: 1.1;
}

.visit-content ul {
  display: grid;
  gap: .8rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.visit-content li {
  display: flex;
  gap: .7rem;
}

.visit-content i {
  color: var(--teal);
}

@media (max-width: 1199.98px) {
  .hero-rail {
    display: none;
  }

  .hero-command-card {
    right: 1rem;
    width: min(330px, 36vw);
  }

  .hero-dock {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: -7rem;
  }
}

@media (max-width: 991.98px) {
  .hero-command-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: 520px;
    margin-top: -12rem;
    margin-bottom: 8rem;
  }

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

  .image-stack {
    min-height: auto;
  }

  .about-image.secondary {
    right: 1rem;
    bottom: -2rem;
  }

  .footer-cta,
  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }

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

  .summary-panel {
    position: static;
  }

  .checkout-summary {
    position: static;
  }
}

@media (min-width: 992px) {
  .nav-sidebar {
    position: static;
    visibility: visible !important;
    width: auto;
    height: auto;
    transform: none !important;
    color: inherit;
    background: transparent;
    border-right: 0;
  }

  .nav-sidebar .offcanvas-header {
    display: none;
  }

  .nav-sidebar .offcanvas-body {
    display: flex;
    padding: 0;
    overflow: visible;
  }

  .nav-sidebar .navbar-nav {
    flex-direction: row;
    width: auto;
  }

  .nav-sidebar .nav-link {
    min-height: auto;
    padding: .5rem 0.9rem;
    border-bottom: 0;
    color: rgba(255, 255, 255, .74);
    font-size: .93rem;
  }

  .nav-sidebar .btn-nav-cart {
    width: auto;
    margin-top: 0;
  }
}

@media (max-width: 767.98px) {

  .hero-section h1,
  .page-hero h1 {
    font-size: clamp(3rem, 17vw, 5rem);
  }

  .hero-section {
    min-height: auto;
  }

  .hero-section .min-vh-100 {
    min-height: 690px !important;
  }

  .hero-command-card {
    margin-top: -8rem;
    margin-bottom: 6rem;
  }

  .hero-dock,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-dock div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .hero-dock div:last-child {
    border-bottom: 0;
  }

  .section-pad {
    padding: 3.8rem 0;
  }

  .section-title-row,
  .service-title-row {
    display: block;
  }

  .section-code {
    display: block;
    margin-top: 1rem;
  }

  .why-item.wide {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-cta .btn {
    width: 100%;
  }

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

  .product-toolbar .btn {
    width: 100%;
  }

  .cart-header {
    display: none;
  }

  .cart-item {
    grid-template-columns: 96px 1fr;
    align-items: start;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--line);
    border-radius: 4px;
  }

  .cart-item img {
    width: 96px;
    height: 96px;
  }

  .cart-item-total {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    width: 100%;
    min-width: 0;
    padding-top: .85rem;
    border-top: 1px solid var(--line);
    text-align: left;
  }

  .cart-item-total::before {
    content: "Line total";
    color: var(--muted);
    font-weight: 800;
  }

  .cart-item-title {
    display: block;
  }

  .cart-item-title span {
    display: block;
    margin-top: .35rem;
    white-space: normal;
  }

  .checkout-item {
    grid-template-columns: 54px 1fr;
  }

  .checkout-item img {
    width: 54px;
    height: 54px;
  }

  .checkout-item strong {
    grid-column: 2;
  }
}

@media (max-width: 440px) {
  .btn:not(.btn-nav-cart):not(.remove-btn) {
    width: 100%;
  }

  .hero-section .min-vh-100 {
    min-height: 640px !important;
  }

  .hero-command-card {
    margin-top: -6.5rem;
  }

  .about-image.primary {
    aspect-ratio: 4 / 5;
  }

  .about-image.secondary {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 1rem;
    border: 0;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .cart-item-total {
    grid-column: auto;
  }
}

li.nav-item {
    margin: 0 20px;
}

a.footer-brand img {
    width: auto;
    height: 47px;
}
.navbar-brand img {
    width: auto;
    height: 45px;
}

.choose-band h2 {
    color: #ffffff;
}

section.prvcy-sec h2 {
    font-size: 20px;
    font-weight: 800;
}

.terms-sec h2 {
    font-size: 16px;
    font-weight: 600;
}