/* ==========================================
   BASE
========================================== */

*, 
*::before, 
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background: #fff;
  color: #282828;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 16px;
  line-height: 1.5;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button, 
input, 
select {
  font: inherit;
}


/* ==========================================
   VARIABLES

   Change these two colors to the exact
   AA brand colors if needed.
========================================== */

:root {

  --aa-primary: #8f1d2c;
  --aa-primary-dark: #701522;

  --aa-dark: #242424;
  --aa-darker: #191919;

  --aa-text: #303030;
  --aa-muted: #6d6d6d;

  --aa-light: #f6f6f6;
  --aa-border: #e3e3e3;

  --aa-white: #ffffff;

  --container: 1180px;
}


/* ==========================================
   TOP BAR
========================================== */

.top-bar {
  background: var(--aa-dark);
  color: rgba(255,255,255,.85);
}

.top-bar__inner {
  width: min(
    var(--container),
    calc(100% - 40px)
  );

  min-height: 36px;

  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 20px;

  font-size: .78rem;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.top-bar a:hover {
  text-decoration: underline;
}


/* ==========================================
   HEADER
========================================== */

.site-header {
  position: relative;
  z-index: 100;

  background: #fff;

  border-bottom: 1px solid var(--aa-border);
}

.site-header__inner {
  width: min(
    var(--container),
    calc(100% - 40px)
  );

  min-height: 82px;

  margin: 0 auto;

  display: flex;
  align-items: center;

  gap: 28px;
}


/* BRAND */

.site-brand {
  display: flex;
  align-items: center;

  flex-shrink: 0;

  text-decoration: none;
}

.site-logo {
  display: block;

  width: auto;
  height: 55px;

  object-fit: contain;
}

.site-brand__divider {
  width: 1px;
  height: 40px;

  margin: 0 15px;

  background: #ddd;
}

.site-brand__product {
  display: flex;
  flex-direction: column;

  color: #777;

  font-size: .68rem;
  line-height: 1.05;

  letter-spacing: .09em;
  text-transform: uppercase;
}

.site-brand__product strong {
  margin-top: 4px;

  color: var(--aa-primary);

  font-size: .88rem;
  letter-spacing: .04em;
}


/* NAV */

.desktop-nav {
  align-self: stretch;

  margin-left: auto;

  display: flex;
  align-items: stretch;

  gap: 2px;
}

.nav-link {
  position: relative;

  display: flex;
  align-items: center;

  padding: 0 11px;

  color: #454545;

  text-decoration: none;

  font-size: .87rem;
  font-weight: 700;
}

.nav-link:hover, 
.nav-link.active {
  color: var(--aa-primary);
}

.nav-link::after {
  content: "";

  position: absolute;

  left: 11px;
  right: 11px;
  bottom: 0;

  height: 3px;

  background: var(--aa-primary);

  transform: scaleX(0);

  transition: transform .2s ease;
}

.nav-link:hover::after, 
.nav-link.active::after {
  transform: scaleX(1);
}


/* HEADER ACTIONS */

.header-actions {
  display: flex;
  gap: 8px;
}


/* ==========================================
   BUTTONS
========================================== */

.button {
  min-height: 45px;

  padding: 0 17px;

  display: inline-flex;
  justify-content: center;
  align-items: center;

  border-radius: 4px;

  text-decoration: none;

  font-size: .84rem;
  font-weight: 800;

  transition:
    background .2s ease,
    color .2s ease,
    border-color .2s ease;
}

.button--primary {
  border: 2px solid var(--aa-primary);

  background: var(--aa-primary);
  color: #fff;
}

.button--primary:hover {
  border-color: var(--aa-primary-dark);
  background: var(--aa-primary-dark);
}

.button--outline {
  border: 2px solid var(--aa-primary);

  background: transparent;
  color: var(--aa-primary);
}

.button--outline:hover {
  background: var(--aa-primary);
  color: #fff;
}




/* ==========================================
   MOBILE NAV
========================================== */

.mobile-menu-button {
  display: none;

  width: 46px;
  height: 46px;

  margin-left: auto;

  border: 0;
  border-radius: 4px;

  background: var(--aa-light);

  cursor: pointer;
}

.mobile-menu-button span {
  display: block;

  width: 22px;
  height: 2px;

  margin: 5px auto;

  background: var(--aa-dark);

  transition:
    transform .2s ease,
    opacity .2s ease;
}

.mobile-menu-button.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


.mobile-nav {
  display: none;

  padding: 8px 20px 22px;

  border-top: 1px solid var(--aa-border);

  background: #fff;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;

  padding: 14px 4px;

  border-bottom: 1px solid var(--aa-border);

  color: #333;

  text-decoration: none;

  font-weight: 700;
}

.mobile-nav a.active {
  color: var(--aa-primary);
}

.mobile-nav .mobile-manage-button {
  margin-top: 15px;

  padding: 14px;

  border: 0;

  background: var(--aa-primary);
  color: #fff;

  text-align: center;
}


/* ==========================================
   HERO
========================================== */








/* HERO CONTENT */

.eyebrow, 
.section-eyebrow {
  display: block;

  margin-bottom: 12px;

  font-size: .72rem;
  font-weight: 800;

  letter-spacing: .13em;
  text-transform: uppercase;
}








/* BENEFITS */





.check {
  display: inline-flex;

  width: 20px;
  height: 20px;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255,255,255,.16);

  font-size: .7rem;
}


/* LOCATION */








/* ==========================================
   RESERVATION CARD
========================================== */












/* SECTIONS */

.reservation-section {
  display: flex;

  gap: 15px;
}

.reservation-number {
  flex: 0 0 36px;

  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--aa-primary);
  color: #fff;

  font-size: .8rem;
  font-weight: 800;
}

.reservation-section__content {
  flex: 1;

  min-width: 0;
}

.reservation-section__title {
  min-height: 36px;

  display: flex;
  align-items: center;

  margin-bottom: 13px;
}

.reservation-small-label {
  display: block;

  margin-bottom: 2px;

  color: var(--aa-primary);

  font-size: .62rem;
  font-weight: 800;

  letter-spacing: .1em;
}

.reservation-section h3 {
  margin: 0;

  font-size: .93rem;
}

.reservation-divider {
  height: 1px;

  margin: 23px 0;

  background: var(--aa-border);
}


/* FIELDS */

.reservation-fields {
  display: grid;

  grid-template-columns: 1.25fr 1fr;

  gap: 11px;
}

.form-field label {
  display: block;

  margin-bottom: 6px;

  color: #555;

  font-size: .72rem;
  font-weight: 700;
}

.form-field input, 
.form-field select {
  width: 100%;
  min-height: 49px;

  padding: 0 12px;

  border: 1px solid #d6d6d6;
  border-radius: 4px;

  background: #fff;
  color: #292929;

  font-size: 16px;
}

.form-field input:focus, 
.form-field select:focus {
  outline: 2px solid rgba(143,29,44,.2);

  border-color: var(--aa-primary);
}


/* ERROR */

.form-error {
  margin-top: 20px;

  padding: 11px 13px;

  border-left: 4px solid #b3261e;

  background: #fff1f0;
  color: #8d1b15;

  font-size: .83rem;
}


/* SUBMIT */

.availability-button {
  width: 100%;
  min-height: 54px;

  margin-top: 28px;
  padding: 0 19px;

  border: 0;
  border-radius: 4px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: var(--aa-primary);
  color: #fff;

  font-weight: 800;

  cursor: pointer;

  transition: background .2s ease;
}

.availability-button:hover {
  background: var(--aa-primary-dark);
}


/* NOTE */

.reservation-note {
  margin-top: 13px;

  display: flex;
  justify-content: center;
  align-items: center;

  gap: 6px;

  color: #777;

  text-align: center;

  font-size: .72rem;
}

.reservation-note__icon {
  color: var(--aa-primary);

  font-weight: 900;
}


/* ==========================================
   SHARED SECTIONS
========================================== */

.section-container {
  width: min(
    var(--container),
    calc(100% - 48px)
  );

  margin: 0 auto;
}

.section-heading {
  max-width: 680px;

  margin: 0 auto 45px;

  text-align: center;
}

.section-eyebrow {
  color: var(--aa-primary);
}

.section-heading h2 {
  margin: 0 0 12px;

  color: var(--aa-dark);

  font-size: clamp(2rem, 4vw, 2.8rem);

  letter-spacing: -.035em;
}

.section-heading p {
  margin: 0;

  color: var(--aa-muted);

  line-height: 1.7;
}

/* =========================================================
   NEW HOME PAGE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.home-hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #171719;
}

.home-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero-background img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(10, 10, 12, .78) 0%,
      rgba(10, 10, 12, .62) 35%,
      rgba(10, 10, 12, .25) 62%,
      rgba(10, 10, 12, .08) 100%
    );
}

.home-hero .section-container {
  position: relative;
  z-index: 2;
}

.home-hero-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(380px, .85fr);

  gap: 80px;
  align-items: center;

  min-height: 650px;
  padding: 65px 0;
}


/* HERO COPY */

.home-hero-content {
  max-width: 650px;
  color: #fff;
}

.home-hero-eyebrow {
  display: block;

  margin-bottom: 17px;

  color: rgba(255,255,255,.9);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  line-height: 1.4;
}

.home-hero-content h1 {
  margin: 0 0 20px;

  color: #fff;

  font-size: clamp(42px, 4.4vw, 64px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -2px;

  text-shadow:
    0 2px 15px rgba(0,0,0,.18);
}

.home-hero-content p {
  max-width: 610px;
  margin: 0 0 28px;

  color: rgba(255,255,255,.92);

  font-size: 17px;
  line-height: 1.65;

  text-shadow:
    0 1px 8px rgba(0,0,0,.25);
}

.home-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  min-height: 52px;
  padding: 0 25px;

  border: 2px solid #fff;
  border-radius: 3px;

  background: #9b1d2d;
  color: #fff;

  font-size: 13px;
  font-weight: 800;
  text-decoration: none;

  box-shadow:
    0 7px 20px rgba(0,0,0,.18);

  transition:
    background .18s ease,
    transform .18s ease;
}

.home-hero-button:hover {
  background: #7f1724;
  transform: translateY(-1px);
}


/* =========================================================
   HERO BOOKING CARD
========================================================= */

.home-booking-card {
  width: 100%;
  max-width: 460px;
  justify-self: end;

  padding: 31px;

  border: 1px solid rgba(0,0,0,.1);
  border-radius: 5px;

  background: #fff;

  box-shadow:
    0 18px 50px rgba(0,0,0,.22);
}

.home-booking-heading {
  margin-bottom: 23px;
}

.home-booking-heading .section-eyebrow {
  color: #9b1d2d;
}

.home-booking-heading h2 {
  margin: 7px 0 0;

  color: #171719;

  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -.6px;
}






















/* =========================================================
   BENEFIT STRIP
========================================================= */

.home-pickup-strip {
  border-bottom: 1px solid #e2e2e2;
  background: #fff;
}

.home-pickup-strip-inner {
  display: grid;
  grid-template-columns:
    1fr auto
    1fr auto
    1fr;

  align-items: center;

  min-height: 92px;
}

.home-pickup-strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  padding: 20px 25px;
}

.home-pickup-strip-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 31px;

  width: 31px;
  height: 31px;

  border-radius: 50%;

  background: #f7e8ea;
  color: #9b1d2d;

  font-size: 13px;
  font-weight: 900;
}

.home-pickup-strip-item strong {
  display: block;

  margin-bottom: 2px;

  color: #171719;

  font-size: 12px;
}

.home-pickup-strip-item span:not(
  .home-pickup-strip-icon
) {
  display: block;

  color: #777;

  font-size: 10px;
}

.home-pickup-strip-divider {
  width: 1px;
  height: 38px;

  background: #ddd;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.home-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;

  margin-bottom: 30px;
}

.home-section-heading h2, 
.home-how-heading h2 {
  margin: 7px 0 9px;

  color: #171719;

  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -.7px;
}

.home-section-heading p, 
.home-how-heading p {
  max-width: 590px;
  margin: 0;

  color: #686868;

  font-size: 14px;
  line-height: 1.7;
}

.home-heading-link {
  flex-shrink: 0;

  color: #9b1d2d;

  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.home-heading-link:hover {
  text-decoration: underline;
}


/* =========================================================
   SHOP EQUIPMENT
========================================================= */

.home-shop-section {
  padding: 78px 0 86px;
  background: #fff;
}

.home-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.home-category-card {
  overflow: hidden;

  border: 1px solid #ddd;
  border-radius: 3px;

  background: #fff;
  color: #171719;

  text-decoration: none;

  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}

.home-category-card:hover {
  border-color: #9b1d2d;

  box-shadow:
    0 13px 34px rgba(0,0,0,.09);

  transform: translateY(-3px);
}

.home-category-image {
  position: relative;

  height: 290px;
  overflow: hidden;

  background: #eee;
}

.home-category-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.2),
      transparent 45%
    );

  pointer-events: none;
}

.home-category-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform .35s ease;
}

.home-category-card:hover
.home-category-image img {
  transform: scale(1.025);
}

.home-category-badge {
  position: absolute;
  z-index: 2;

  left: 18px;
  bottom: 18px;

  padding: 8px 11px;

  background: #9b1d2d;
  color: #fff;

  font-size: 9px;
  font-weight: 800;
  letter-spacing: .8px;
}

.home-category-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;

  padding: 25px;
}

.home-category-content h3 {
  margin: 0 0 7px;

  font-size: 22px;
  line-height: 1.15;
}

.home-category-content p {
  max-width: 390px;
  margin: 0;

  color: #686868;

  font-size: 13px;
  line-height: 1.65;
}

.home-category-link {
  flex-shrink: 0;

  color: #9b1d2d;

  font-size: 12px;
  font-weight: 800;
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.home-how-section {
  padding: 80px 0;
  background: #f5f5f5;
}

.home-how-heading {
  max-width: 670px;
  margin-bottom: 44px;
}

.home-how-grid {
  display: grid;

  grid-template-columns:
    1fr auto
    1fr auto
    1fr auto
    1fr;

  gap: 20px;
  align-items: start;
}

.home-how-step {
  min-width: 0;
}

.home-how-number {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  margin-bottom: 17px;

  border-radius: 50%;

  background: #9b1d2d;
  color: #fff;

  font-size: 11px;
  font-weight: 800;
}

.home-how-step h3 {
  margin: 0 0 7px;

  color: #171719;

  font-size: 17px;
}

.home-how-step p {
  margin: 0;

  color: #696969;

  font-size: 12px;
  line-height: 1.7;
}

.home-how-arrow {
  padding-top: 11px;

  color: #b5b5b5;

  font-size: 20px;
}

.home-how-footer {
  margin-top: 38px;
}

.home-outline-button {
  display: inline-flex;
  align-items: center;
  gap: 13px;

  min-height: 44px;
  padding: 0 19px;

  border: 2px solid #9b1d2d;

  color: #9b1d2d;

  font-size: 12px;
  font-weight: 800;
  text-decoration: none;

  transition:
    background .18s ease,
    color .18s ease;
}

.home-outline-button:hover {
  background: #9b1d2d;
  color: #fff;
}


/* =========================================================
   PICKUP EXPERIENCE
========================================================= */

.home-experience {
  padding: 88px 0;
  background: #fff;
}

.home-experience-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;

  min-height: 510px;

  overflow: hidden;

  border: 1px solid #ddd;
  background: #fff;
}

.home-experience-image {
  min-height: 510px;
  overflow: hidden;
}

.home-experience-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.home-experience-content {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 55px;
}

.home-experience-content h2 {
  max-width: 470px;

  margin: 8px 0 15px;

  color: #171719;

  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -.8px;
}

.home-experience-content > p {
  max-width: 500px;

  margin: 0;

  color: #686868;

  font-size: 14px;
  line-height: 1.75;
}

.home-experience-features {
  display: grid;
  gap: 18px;

  margin: 27px 0;
}

.home-experience-features > div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
}

.home-experience-features > div > span {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 28px;
  height: 28px;

  border-radius: 50%;

  background: #f7e8ea;
  color: #9b1d2d;

  font-size: 11px;
  font-weight: 900;
}

.home-experience-features p {
  margin: 0;

  color: #6b6b6b;

  font-size: 12px;
  line-height: 1.6;
}

.home-experience-features strong {
  display: block;

  margin-bottom: 2px;

  color: #171719;

  font-size: 13px;
}

.home-text-link {
  color: #9b1d2d;

  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.home-text-link:hover {
  text-decoration: underline;
}


/* =========================================================
   MANAGE PICKUP
========================================================= */

.home-manage-section {
  padding: 0 0 88px;
  background: #fff;
}

.home-manage-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;

  padding: 38px 42px;

  border-left: 4px solid #9b1d2d;

  background: #171719;
  color: #fff;
}

.home-manage-eyebrow {
  display: block;

  margin-bottom: 7px;

  color: #d65c6d;

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
}

.home-manage-card h2 {
  margin: 0 0 7px;

  color: #fff;

  font-size: 27px;
}

.home-manage-card p {
  max-width: 650px;

  margin: 0;

  color: #bbb;

  font-size: 13px;
  line-height: 1.65;
}

.home-manage-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;

  flex-shrink: 0;

  min-height: 47px;
  padding: 0 22px;

  background: #9b1d2d;
  color: #fff;

  font-size: 12px;
  font-weight: 800;
  text-decoration: none;

  transition: background .18s ease;
}

.home-manage-button:hover {
  background: #b12639;
}


/* =========================================================
   FINAL CTA
========================================================= */

.home-final-cta {
  position: relative;

  padding: 85px 0;

  overflow: hidden;

  background: #9b1d2d;
  color: #fff;
}

.home-final-cta::after {
  content: "";

  position: absolute;

  width: 380px;
  height: 380px;

  top: -180px;
  right: -80px;

  border: 70px solid rgba(255,255,255,.035);
  border-radius: 50%;
}

.home-final-cta-inner {
  position: relative;
  z-index: 1;

  max-width: 670px;
}

.home-final-cta .section-eyebrow {
  color: rgba(255,255,255,.7);
}

.home-final-cta h2 {
  margin: 9px 0 11px;

  color: #fff;

  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -.8px;
}

.home-final-cta p {
  margin: 0 0 25px;

  color: rgba(255,255,255,.82);

  font-size: 14px;
  line-height: 1.7;
}

.home-final-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;

  min-height: 48px;
  padding: 0 23px;

  border: 2px solid #fff;

  background: #fff;
  color: #9b1d2d;

  font-size: 12px;
  font-weight: 800;
  text-decoration: none;

  transition:
    background .18s ease,
    color .18s ease;
}

.home-final-button:hover {
  background: transparent;
  color: #fff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .home-hero-grid {
    grid-template-columns: 1fr 400px;
    gap: 40px;
  }

  .home-hero-content h1 {
    font-size: 46px;
  }

  .home-experience-content {
    padding: 40px;
  }

}


/* =========================================================
   MOBILE / SMALL TABLET
========================================================= */

@media (max-width: 820px) {

  .home-hero {
    min-height: auto;
  }

  .home-hero-overlay {
    background:
      linear-gradient(
        rgba(10,10,12,.67),
        rgba(10,10,12,.78)
      );
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;

    min-height: auto;
    padding: 60px 0;
  }

  .home-hero-content {
    max-width: 620px;
  }

  .home-booking-card {
    max-width: 100%;
    justify-self: stretch;
  }


  /* BENEFITS */

  .home-pickup-strip-inner {
    grid-template-columns: 1fr;
    padding: 10px 0;
  }

  .home-pickup-strip-item {
    justify-content: flex-start;
    padding: 14px 0;
  }

  .home-pickup-strip-divider {
    width: 100%;
    height: 1px;
  }


  /* SHOP */

  .home-category-grid {
    grid-template-columns: 1fr;
  }

  .home-category-image {
    height: 310px;
  }


  /* HOW */

  .home-how-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .home-how-arrow {
    display: none;
  }


  /* EXPERIENCE */

  .home-experience-card {
    grid-template-columns: 1fr;
  }

  .home-experience-image {
    min-height: 360px;
  }


  /* MANAGE */

  .home-manage-card {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .home-hero-grid {
    padding: 48px 0;
  }

  .home-hero-content h1 {
    font-size: 39px;
    letter-spacing: -1.2px;
  }

  .home-hero-content p {
    font-size: 15px;
  }

  .home-hero-button {
    width: 100%;
  }

  .home-booking-card {
    padding: 24px 20px;
  }

  .home-booking-heading h2 {
    font-size: 25px;
  }


  /* SECTIONS */

  .home-shop-section, 
  .home-how-section, 
  .home-experience {
    padding: 58px 0;
  }

  .home-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .home-section-heading h2, 
  .home-how-heading h2 {
    font-size: 28px;
  }


  /* CATEGORY CARDS */

  .home-category-image {
    height: 230px;
  }

  .home-category-content {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;

    padding: 21px;
  }


  /* HOW */

  .home-how-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .home-how-step {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 15px;
  }

  .home-how-number {
    grid-row: 1 / 3;
    margin: 0;
  }

  .home-how-step h3 {
    align-self: end;
  }


  /* EXPERIENCE */

  .home-experience-image {
    min-height: 250px;
  }

  .home-experience-content {
    padding: 30px 23px;
  }

  .home-experience-content h2 {
    font-size: 28px;
  }


  /* MANAGE */

  .home-manage-section {
    padding-bottom: 58px;
  }

  .home-manage-card {
    padding: 30px 24px;
  }

  .home-manage-button {
    width: 100%;
  }


  /* FINAL CTA */

  .home-final-cta {
    padding: 60px 0;
  }

  .home-final-cta h2 {
    font-size: 31px;
  }

  .home-final-button {
    width: 100%;
  }

}

/* ==========================================
   HOW IT WORKS
========================================== */
















/* ==========================================
   PICKUP NOTICE
========================================== */




















/* ==========================================
   EQUIPMENT
========================================== */


















/* ==========================================
   HELP
========================================== */










/* ==========================================
   FOOTER
========================================== */

.site-footer {
  background: var(--aa-darker);
  color: #fff;
}

.site-footer__main {
  padding: 65px 24px 55px;
}

.footer-grid {
  width: min(var(--container), 100%);

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    1.6fr
    1fr
    1fr
    1fr;

  gap: 50px;
}


/* FOOTER BRAND */

.footer-logo {
  display: block;

  width: auto;
  max-width: 210px;
  max-height: 65px;

  margin-bottom: 20px;

  object-fit: contain;
}

.footer-brand > p {
  max-width: 350px;

  margin: 0;

  color: rgba(255,255,255,.6);

  font-size: .86rem;
  line-height: 1.7;
}

.footer-location {
  margin-top: 22px;

  display: flex;
  flex-direction: column;

  gap: 4px;

  color: rgba(255,255,255,.65);

  font-size: .78rem;
  line-height: 1.55;
}

.footer-location strong {
  color: #fff;

  font-size: .7rem;

  letter-spacing: .07em;
  text-transform: uppercase;
}


/* FOOTER COLUMNS */

.footer-column h2 {
  margin: 0 0 18px;

  color: #fff;

  font-size: .75rem;
  font-weight: 800;

  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;

  margin-bottom: 11px;

  color: rgba(255,255,255,.58);

  text-decoration: none;

  font-size: .83rem;
}

.footer-column a:hover {
  color: #fff;
}


/* FOOTER BOTTOM */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-bottom__inner {
  width: min(
    var(--container),
    calc(100% - 48px)
  );

  min-height: 65px;

  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 25px;
}

.footer-bottom p {
  margin: 0;

  color: rgba(255,255,255,.42);

  font-size: .72rem;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1050px) {

  .desktop-nav, 
  .header-actions {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

}


@media (max-width: 900px) {

  

  

  

  

  

  

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

}


@media (max-width: 650px) {

  .top-bar__inner {
    justify-content: center;
  }

  .top-bar__inner > div:first-child {
    display: none;
  }

  .site-header__inner {
    width: calc(100% - 28px);

    min-height: 70px;
  }

  .site-logo {
    height: 43px;
  }

  .site-brand__divider {
    height: 33px;

    margin: 0 10px;
  }

  .site-brand__product {
    font-size: .55rem;
  }

  .site-brand__product strong {
    font-size: .67rem;
  }


  /* HERO */

  

  

  


  /* FORM */

  

  .reservation-fields {
    grid-template-columns: 1fr;
  }

  .reservation-section {
    gap: 11px;
  }

  .reservation-number {
    flex-basis: 32px;

    width: 32px;
    height: 32px;
  }


  /* SECTIONS */

  .section-container {
    width: calc(100% - 34px);
  }

  

  

  

  

  

  

  

  


  /* FOOTER */

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 38px;
  }

  .footer-bottom__inner {
    padding: 20px 0;

    flex-direction: column;
    align-items: flex-start;

    gap: 6px;
  }

}

/* ==========================================
   HOW IT WORKS PAGE
========================================== */


/* PAGE HERO */
















/* ==========================================
   OVERVIEW
========================================== */


















/* ==========================================
   LARGE STEPS
========================================== */






















/* CHECK LIST */








/* ==========================================
   STEP 1 DEMO
========================================== */






















/* ==========================================
   PHONE PREVIEW
========================================== */




























/* ==========================================
   PHOTO CALLOUT
========================================== */












/* ==========================================
   INFO BOX
========================================== */







/* ==========================================================
   HOW IT WORKS - NEW DESIGN
========================================================== */


/* ==========================================================
   HERO
========================================================== */

.hiw-new-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #171719;
}

.hiw-new-hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hiw-new-hero__background img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hiw-new-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(10, 10, 12, .88) 0%,
            rgba(10, 10, 12, .78) 27%,
            rgba(10, 10, 12, .48) 48%,
            rgba(10, 10, 12, .12) 74%,
            rgba(10, 10, 12, .04) 100%
        );
}

.hiw-new-hero .section-container {
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 0;
}

.hiw-new-hero__content {
    width: 100%;
    max-width: 560px;
    padding: 65px 0;
}

.hiw-new-hero__content .eyebrow {
  display: block;
    margin: 0 0 13px;

    color: #fff;

    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 1.8px;
}

.hiw-new-hero__content h1 {
    margin: 0 0 18px;

    color: #fff;

    font-size: clamp(44px, 4.5vw, 62px);
    font-weight: 800;
    line-height: .98;
    letter-spacing: -2px;
}

.hiw-new-hero__content p {
    max-width: 525px;
    margin: 0;

    color: rgba(255, 255, 255, .9);

    font-size: 15px;
    line-height: 1.65;
}


.hiw-new-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    min-height: 50px;

    margin-top: 27px;
    padding: 0 23px;

    border: 2px solid #8f1d2c;
    border-radius: 3px;

    background: #8f1d2c;
    color: #fff;

    font-size: 12px;
    font-weight: 900;
    text-decoration: none;

    transition:
        background .18s ease,
        border-color .18s ease,
        color .18s ease;
}

.hiw-new-hero__button span {
    font-size: 18px;
    line-height: 1;
}

.hiw-new-hero__button:hover {
    border-color: #fff;
    background: #fff;
    color: #8f1d2c;
}


/* ==========================================================
   QUICK PROCESS BAR
========================================================== */

.hiw-process-bar {
    padding: 28px 0;

    border-bottom: 1px solid #e5e5e5;

    background: #fff;
}

.hiw-process-bar__grid {
    display: grid;

    grid-template-columns:
        1fr auto
        1fr auto
        1fr auto
        1fr;

    align-items: center;
    gap: 20px;
}

.hiw-process-bar__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hiw-process-bar__number {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #8f1d2c;
    color: #fff;

    font-size: 11px;
    font-weight: 900;
}

.hiw-process-bar__item > div {
    display: grid;
    gap: 2px;
}

.hiw-process-bar__item strong {
    color: #26262a;

    font-size: 16px;
    font-weight: 900;
}

.hiw-process-bar__item div span {
    color: #7b7b7b;

    font-size: 14px;
}

.hiw-process-bar__arrow {
    color: #b3b3b3;

    font-size: 18px;
}


/* ==========================================================
   MAIN STEPS
========================================================== */

.hiw-new-step {
    padding: 82px 0;

    background: #fff;
}

.hiw-new-step--alt {
    background: #f7f7f7;
}

.hiw-new-step__layout {
    display: grid;

    grid-template-columns:
        minmax(0, .9fr)
        minmax(0, 1.1fr);

    align-items: center;
    gap: 75px;
}

.hiw-new-step__layout--reverse {
    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(0, .9fr);
}


/* ==========================================================
   STEP CONTENT
========================================================== */

.hiw-new-step__content {
    max-width: 520px;
}

.hiw-new-step__heading {
    display: flex;
    align-items: flex-start;
    gap: 17px;

    margin-bottom: 20px;
}

.hiw-new-step__number {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    margin-top: 1px;

    border-radius: 50%;

    background: #8f1d2c;
    color: #fff;

    font-size: 12px;
    font-weight: 900;
}

.hiw-new-step__label {
    display: block;

    margin: 2px 0 6px;

    color: #8f1d2c;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.6px;
}

.hiw-new-step__content h2 {
    margin: 0;

    color: #202024;

    font-size: clamp(29px, 3.2vw, 39px);
    line-height: 1.04;
    letter-spacing: -1.3px;
}

.hiw-new-step__content > p {
    margin: 0 0 13px;

    color: #686868;

    font-size: 13px;
    line-height: 1.7;
}


/* ==========================================================
   CHECK LIST
========================================================== */

.hiw-new-check-list {
    display: grid;
    gap: 10px;

    margin: 22px 0 0;
    padding: 0;

    list-style: none;
}

.hiw-new-check-list li {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #3d3d3f;

    font-size: 12px;
    font-weight: 700;
}

.hiw-new-check-list li > span {
    flex: 0 0 21px;

    width: 21px;
    height: 21px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #8f1d2c;
    color: #fff;

    font-size: 9px;
    font-weight: 900;
}


/* STEP LINK */

.hiw-step-link {
    display: inline-flex;
    align-items: center;

    margin-top: 25px;

    color: #8f1d2c;

    font-size: 14px;
    font-weight: 900;

    text-decoration: none;
}

.hiw-step-link:hover {
    text-decoration: underline;
}


/* ==========================================================
   STEP PHOTOS
========================================================== */

.hiw-new-step__photo {
    position: relative;

    min-height: 410px;

    overflow: hidden;

    border-radius: 5px;

    background: #e8e8e8;

    box-shadow:
        0 12px 32px rgba(0, 0, 0, .10);
}

.hiw-new-step__photo img {
    position: absolute;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .4s ease;
}

.hiw-new-step__photo:hover img {
    transform: scale(1.02);
}


/* IMAGE LABEL */

.hiw-photo-tag {
    position: absolute;
    left: 18px;
    bottom: 18px;

    display: grid;
    gap: 2px;

    max-width: calc(100% - 36px);

    padding: 11px 15px;

    border-radius: 3px;

    background: rgba(22, 22, 25, .90);
    color: #fff;

    box-shadow:
        0 6px 20px rgba(0, 0, 0, .18);

    backdrop-filter: blur(5px);
}

.hiw-photo-tag span {
    color: rgba(255, 255, 255, .68);

    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.2px;
}

.hiw-photo-tag strong {
    color: #fff;

    font-size: 12px;
}


/* ==========================================================
   PICKUP PHOTO NOTICE
========================================================== */

.hiw-photo-notice {
    padding: 0;

    background: #8f1d2c;
}

.hiw-photo-notice__inner {
    display: grid;
    grid-template-columns: 62px 1fr;
    align-items: center;
    gap: 22px;

    padding: 31px 0;
}

.hiw-photo-notice__icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;

    background: rgba(255, 255, 255, .10);

    font-size: 25px;
}

.hiw-photo-notice .section-eyebrow {
    display: block;

    margin-bottom: 4px;

    color: rgba(255, 255, 255, .7);
}

.hiw-photo-notice h2 {
    margin: 0 0 5px;

    color: #fff;

    font-size: 21px;
}

.hiw-photo-notice p {
    max-width: 800px;

    margin: 0;

    color: rgba(255, 255, 255, .78);

    font-size: 12px;
    line-height: 1.6;
}


/* ==========================================================
   EVENT PHOTO / RENTAL OVERLAY
========================================================== */

.hiw-new-step__photo--event {
    min-height: 440px;
}

.hiw-rental-overlay {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    overflow: hidden;

    border-radius: 4px;

    background: rgba(255, 255, 255, .96);

    box-shadow:
        0 8px 24px rgba(0, 0, 0, .16);

    backdrop-filter: blur(5px);
}

.hiw-rental-overlay > div {
    display: grid;
    gap: 3px;

    padding: 13px 15px;
}

.hiw-rental-overlay > div:first-child {
    border-right: 1px solid #e4e4e4;
}

.hiw-rental-overlay span {
    color: #8f1d2c;

    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1px;
}

.hiw-rental-overlay strong {
    color: #252525;

    font-size: 12px;
}


/* ==========================================================
   RETURN REMINDER
========================================================== */

.hiw-return-reminder {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    margin-top: 24px;
    padding: 16px;

    border: 1px solid #e4d6d8;
    border-left: 3px solid #8f1d2c;
    border-radius: 3px;

    background: #fbf7f8;
}

.hiw-return-reminder__icon {
    flex: 0 0 31px;

    width: 31px;
    height: 31px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #8f1d2c;
    color: #fff;

    font-size: 13px;
}

.hiw-return-reminder strong {
    display: block;

    margin-bottom: 3px;

    color: #2c2c2f;

    font-size: 11px;
}

.hiw-return-reminder p {
    margin: 0;

    color: #717171;

    font-size: 10px;
    line-height: 1.5;
}


/* ==========================================================
   FINAL INFORMATION
========================================================== */

.hiw-final-info {
    padding: 45px 0;

    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;

    background: #fff;
}

.hiw-final-info__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hiw-final-info__item {
    display: grid;
    grid-template-columns: 52px 1fr;
    align-items: flex-start;
    gap: 15px;

    padding: 4px 28px;
}

.hiw-final-info__item:not(:last-child) {
    border-right: 1px solid #dedede;
}

.hiw-final-info__icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #8f1d2c;
    color: #fff;

    font-size: 17px;
    font-weight: 900;
}

.hiw-final-info__item h3 {
    margin: 2px 0 5px;

    color: #27272a;

    font-size: 14px;
}

.hiw-final-info__item p {
    margin: 0;

    color: #737373;

    font-size: 10px;
    line-height: 1.55;
}


/* ==========================================================
   IMPORTANT INFORMATION
========================================================== */

.hiw-important-new {
    padding: 80px 0 88px;

    background: #f7f7f7;
}

.hiw-important-new .section-heading {
    max-width: 650px;
    margin: 0 auto 38px;

    text-align: center;
}

.hiw-important-new .section-heading h2 {
    margin: 6px 0 9px;

    color: #222226;

    font-size: clamp(30px, 4vw, 40px);
    line-height: 1.1;
    letter-spacing: -1px;
}

.hiw-important-new .section-heading p {
    margin: 0;

    color: #727272;

    font-size: 13px;
}

.hiw-important-new__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.hiw-important-new__item {
    padding: 27px 23px;

    border: 1px solid #e0e0e0;
    border-radius: 5px;

    background: #fff;

    box-shadow:
        0 4px 14px rgba(0, 0, 0, .04);
}

.hiw-important-new__icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    margin-bottom: 17px;

    border-radius: 50%;

    background: #f5ebed;
    color: #8f1d2c;

    font-size: 17px;
    font-weight: 900;
}

.hiw-important-new__item h3 {
    margin: 0 0 7px;

    color: #27272a;

    font-size: 14px;
}

.hiw-important-new__item p {
    margin: 0;

    color: #717171;

    font-size: 11px;
    line-height: 1.6;
}


/* ==========================================================
   FINAL CTA
========================================================== */

.hiw-new-cta {
    padding: 52px 0;

    background: #8f1d2c;
}

.hiw-new-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.hiw-new-cta .eyebrow {
    color: rgba(255, 255, 255, .72);

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.hiw-new-cta h2 {
    margin: 6px 0 7px;

    color: #fff;

    font-size: 29px;
    line-height: 1.1;
}

.hiw-new-cta p {
    margin: 0;

    color: rgba(255, 255, 255, .78);

    font-size: 12px;
}

.hiw-new-cta__buttons {
    display: flex;
    align-items: center;
    gap: 10px;

    flex-shrink: 0;
}

.hiw-new-cta__primary, 
.hiw-new-cta__secondary {
    min-height: 45px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 19px;

    border: 2px solid #fff;
    border-radius: 3px;

    font-size: 10px;
    font-weight: 900;

    text-decoration: none;

    transition:
        background .18s ease,
        color .18s ease;
}

.hiw-new-cta__primary {
    background: #fff;
    color: #8f1d2c;
}

.hiw-new-cta__primary:hover {
    background: transparent;
    color: #fff;
}

.hiw-new-cta__secondary {
    background: transparent;
    color: #fff;
}

.hiw-new-cta__secondary:hover {
    background: #fff;
    color: #8f1d2c;
}


/* ==========================================================
   RESPONSIVE - TABLET
========================================================== */

@media (max-width: 1000px) {

    .hiw-new-step__layout, 
    .hiw-new-step__layout--reverse {
        gap: 45px;
    }

    .hiw-new-step__photo {
        min-height: 360px;
    }

    .hiw-important-new__grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* ==========================================================
   RESPONSIVE - SMALL TABLET
========================================================== */

@media (max-width: 820px) {

    .hiw-new-hero {
        min-height: 500px;
    }

    .hiw-new-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(10, 10, 12, .85),
                rgba(10, 10, 12, .55)
            );
    }

    .hiw-new-hero__content {
        max-width: 570px;
    }


    /* PROCESS */

    .hiw-process-bar__grid {
        grid-template-columns:
            repeat(4, 1fr);

        gap: 12px;
    }

    .hiw-process-bar__arrow {
        display: none;
    }

    .hiw-process-bar__item {
        flex-direction: column;

        text-align: center;
    }


    /* STEPS */

    .hiw-new-step {
        padding: 62px 0;
    }

    .hiw-new-step__layout, 
    .hiw-new-step__layout--reverse {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .hiw-new-step__content {
        max-width: none;
    }


    /*
       Reverse sections use the photo first in the HTML,
       which is what we want on tablet/mobile.
    */

    .hiw-new-step__photo {
        min-height: 390px;
    }


    /* FINAL INFO */

    .hiw-final-info__grid {
        grid-template-columns: 1fr;
    }

    .hiw-final-info__item {
        padding: 20px 0;
    }

    .hiw-final-info__item:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid #e2e2e2;
    }


    /* CTA */

    .hiw-new-cta__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

}


/* ==========================================================
   RESPONSIVE - MOBILE
========================================================== */

@media (max-width: 600px) {

    /* HERO */

    .hiw-new-hero {
        min-height: 520px;
    }

    .hiw-new-hero__background img {
        object-position: 62% center;
    }

    .hiw-new-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(10, 10, 12, .88) 0%,
                rgba(10, 10, 12, .70) 65%,
                rgba(10, 10, 12, .48) 100%
            );
    }

    .hiw-new-hero__content {
        padding: 55px 0;
    }

    .hiw-new-hero__content h1 {
        font-size: 43px;
        letter-spacing: -1.7px;
    }

    .hiw-new-hero__content p {
        max-width: 92%;

        font-size: 14px;
        line-height: 1.6;
    }


    /* PROCESS BAR */

    .hiw-process-bar {
        padding: 22px 0;
    }

    .hiw-process-bar__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 10px;
    }

    .hiw-process-bar__number {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }


    /* STEPS */

    .hiw-new-step {
        padding: 52px 0;
    }

    .hiw-new-step__heading {
        gap: 12px;
    }

    .hiw-new-step__number {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .hiw-new-step__content h2 {
        font-size: 29px;
    }

    .hiw-new-step__content h2 br {
        display: none;
    }

    .hiw-new-step__photo, 
    .hiw-new-step__photo--event {
        min-height: 275px;
    }

    .hiw-photo-tag {
        right: 14px;
        bottom: 14px;
        left: 14px;
    }


    /* PHOTO NOTICE */

    .hiw-photo-notice__inner {
        grid-template-columns: 45px 1fr;
        gap: 14px;

        padding: 25px 0;
    }

    .hiw-photo-notice__icon {
        width: 43px;
        height: 43px;

        font-size: 18px;
    }

    .hiw-photo-notice h2 {
        font-size: 18px;
    }


    /* EVENT OVERLAY */

    .hiw-rental-overlay {
        right: 12px;
        bottom: 12px;
        left: 12px;
    }

    .hiw-rental-overlay > div {
        padding: 11px;
    }


    /* IMPORTANT */

    .hiw-important-new {
        padding: 55px 0 60px;
    }

    .hiw-important-new .section-heading {
        text-align: left;
    }

    .hiw-important-new__grid {
        grid-template-columns: 1fr;
    }


    /* FINAL INFO */

    .hiw-final-info {
        padding: 28px 0;
    }

    .hiw-final-info__item {
        grid-template-columns: 44px 1fr;
    }

    .hiw-final-info__icon {
        width: 40px;
        height: 40px;

        font-size: 14px;
    }


    /* CTA */

    .hiw-new-cta {
        padding: 42px 0;
    }

    .hiw-new-cta h2 {
        font-size: 25px;
    }

    .hiw-new-cta__buttons {
        width: 100%;

        flex-direction: column;
    }

    .hiw-new-cta__primary, 
    .hiw-new-cta__secondary {
        width: 100%;

        box-sizing: border-box;
    }

}

/* ==========================================
   RENTAL STATUS
========================================== */






















/* PROGRESS */
















/* ==========================================
   RETURN PREVIEW
========================================== */




















/* ==========================================
   INSPECTION
========================================== */


















/* ==========================================
   IMPORTANT
========================================== */














/* ==========================================
   FINAL CTA
========================================== */




















/* ==========================================
   HOW IT WORKS RESPONSIVE
========================================== */






/* ==========================================
   MY PICKUP PAGE
========================================== */


/* ==========================================
   HERO
========================================== */

.mypickup-hero {
  padding: 75px 24px 80px;

  background:
    linear-gradient(
      110deg,
      rgba(143,29,44,.98),
      rgba(112,21,34,.97)
    );

  color: #fff;
}

.mypickup-hero__inner {
  width: min(var(--container), 100%);

  margin: 0 auto;

  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(390px, 500px);

  gap: 75px;

  align-items: center;
}


/* CONTENT */

.mypickup-hero__content {
  max-width: 650px;
}

.mypickup-hero .eyebrow {
  color: rgba(255,255,255,.7);
}

.mypickup-hero h1 {
  margin: 0;

  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 1;

  letter-spacing: -.045em;
}

.mypickup-hero__content > p {
  max-width: 610px;

  margin: 22px 0 0;

  color: rgba(255,255,255,.8);

  font-size: 1.05rem;
  line-height: 1.7;
}


/* FEATURES */

.mypickup-features {
  margin-top: 35px;

  display: grid;

  gap: 17px;
}

.mypickup-feature {
  display: flex;
  align-items: center;

  gap: 13px;
}

.mypickup-feature__icon {
  flex: 0 0 31px;

  width: 31px;
  height: 31px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255,255,255,.14);

  font-size: .7rem;
  font-weight: 900;
}

.mypickup-feature div {
  display: flex;
  flex-direction: column;

  gap: 2px;
}

.mypickup-feature strong {
  font-size: .87rem;
}

.mypickup-feature div span {
  color: rgba(255,255,255,.65);

  font-size: .76rem;
}


/* ==========================================
   LOOKUP CARD
========================================== */

.pickup-lookup-card {
  padding: 34px;

  border-radius: 8px;

  background: #fff;
  color: var(--aa-text);

  box-shadow: 0 20px 50px rgba(0,0,0,.2);
}

.pickup-lookup-card__header {
  margin-bottom: 28px;
}

.pickup-lookup-label {
  display: block;

  margin-bottom: 7px;

  color: var(--aa-primary);

  font-size: .65rem;
  font-weight: 900;

  letter-spacing: .12em;
}

.pickup-lookup-card h2 {
  margin: 0 0 7px;

  font-size: 1.7rem;

  letter-spacing: -.025em;
}

.pickup-lookup-card__header p {
  margin: 0;

  color: var(--aa-muted);

  font-size: .86rem;
  line-height: 1.55;
}


/* FIELDS */

.pickup-lookup-field {
  margin-bottom: 19px;
}

.pickup-lookup-field label {
  display: block;

  margin-bottom: 7px;

  color: #444;

  font-size: .76rem;
  font-weight: 800;
}

.pickup-lookup-field input {
  width: 100%;
  min-height: 51px;

  padding: 0 13px;

  border: 1px solid #d3d3d3;
  border-radius: 4px;

  background: #fff;
  color: var(--aa-text);

  font-size: 16px;
}

.pickup-lookup-field input:focus {
  outline: 2px solid rgba(143,29,44,.15);

  border-color: var(--aa-primary);
}

.pickup-lookup-field small {
  display: block;

  margin-top: 6px;

  color: #888;

  font-size: .68rem;
  line-height: 1.45;
}


/* ERROR */

.pickup-lookup-error {
  margin: 5px 0 17px;

  padding: 12px 13px;

  border-left: 4px solid #b3261e;

  background: #fff1f0;
  color: #8d1b15;

  font-size: .8rem;
}


/* BUTTON */

.pickup-lookup-button {
  width: 100%;
  min-height: 54px;

  padding: 0 18px;

  border: 0;
  border-radius: 4px;

  display: flex;
  justify-content: center;
  align-items: center;

  gap: 12px;

  background: var(--aa-primary);
  color: #fff;

  font-weight: 800;

  cursor: pointer;

  transition: background .2s ease;
}

.pickup-lookup-button:hover {
  background: var(--aa-primary-dark);
}

.pickup-lookup-button:disabled {
  opacity: .7;

  cursor: wait;
}

.pickup-lookup-loading {
  font-weight: 800;
}


/* SECURITY */

.pickup-lookup-security {
  margin-top: 18px;
  padding-top: 17px;

  border-top: 1px solid var(--aa-border);

  display: flex;

  gap: 9px;

  color: #777;
}

.pickup-lookup-security__icon {
  flex: 0 0 20px;

  width: 20px;
  height: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(143,29,44,.1);
  color: var(--aa-primary);

  font-size: .6rem;
  font-weight: 900;
}

.pickup-lookup-security p {
  margin: 1px 0 0;

  font-size: .68rem;
  line-height: 1.5;
}

/* ==========================================================
   MY PICKUP PAGE - PHOTO REDESIGN
========================================================== */


/* ==========================================================
   HERO
========================================================== */

.mypickup-hero--photo {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  padding: 70px 0;
  background: #171719;
}

.mypickup-hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mypickup-hero__background img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mypickup-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(12, 12, 14, .82) 0%,
      rgba(12, 12, 14, .70) 34%,
      rgba(12, 12, 14, .38) 58%,
      rgba(12, 12, 14, .18) 100%
    );
}

.mypickup-hero--photo .mypickup-hero__inner {
  position: relative;
  z-index: 2;

  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(390px, 470px);

  align-items: center;
  gap: 70px;
}


/* LEFT HERO CONTENT */

.mypickup-hero--photo .mypickup-hero__content {
  max-width: 570px;
}

.mypickup-hero--photo .eyebrow {
  display: inline-block;
  margin-bottom: 14px;

  color: #fff;

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.7px;
}

.mypickup-hero--photo .mypickup-hero__content h1 {
  margin: 0 0 18px;

  color: #fff;

  font-size: clamp(42px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -2px;
}

.mypickup-hero--photo .mypickup-hero__content > p {
  max-width: 540px;
  margin: 0;

  color: rgba(255, 255, 255, .9);

  font-size: 16px;
  line-height: 1.7;
}


/* HERO FEATURES */

.mypickup-hero--photo .mypickup-features {
  display: grid;
  gap: 13px;

  margin-top: 30px;
}

.mypickup-hero--photo .mypickup-feature {
  display: flex;
  align-items: center;
  gap: 13px;
}

.mypickup-hero--photo .mypickup-feature__icon {
  flex: 0 0 30px;

  width: 30px;
  height: 30px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #fff;
  color: #8f1d2c;

  font-size: 13px;
  font-weight: 900;
}

.mypickup-hero--photo .mypickup-feature div {
  display: grid;
  gap: 2px;
}

.mypickup-hero--photo .mypickup-feature strong {
  color: #fff;

  font-size: 13px;
  font-weight: 800;
}

.mypickup-hero--photo .mypickup-feature span:not(
  .mypickup-feature__icon
) {
  color: rgba(255, 255, 255, .72);

  font-size: 12px;
}


/* ==========================================================
   LOOKUP CARD
========================================================== */

.mypickup-hero--photo .pickup-lookup-card {
  width: 100%;
  box-sizing: border-box;

  padding: 30px;

  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 6px;

  background: rgba(255, 255, 255, .98);

  box-shadow:
    0 18px 45px rgba(0, 0, 0, .28);
}

.pickup-lookup-card__header {
  margin-bottom: 24px;
}

.pickup-lookup-label {
  display: block;

  margin-bottom: 6px;

  color: #8f1d2c;

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px;
}

.pickup-lookup-card__header h2 {
  margin: 0 0 7px;

  color: #202024;

  font-size: 26px;
  line-height: 1.15;
}

.pickup-lookup-card__header p {
  margin: 0;

  color: #6a6a6a;

  font-size: 13px;
  line-height: 1.55;
}

.pickup-lookup-field {
  margin-bottom: 18px;
}

.pickup-lookup-field label {
  display: block;

  margin-bottom: 7px;

  color: #303034;

  font-size: 12px;
  font-weight: 800;
}

.pickup-lookup-field input {
  width: 100%;
  height: 48px;

  box-sizing: border-box;

  padding: 0 13px;

  border: 1px solid #c7c7c7;
  border-radius: 3px;

  outline: none;

  background: #fff;
  color: #222;

  font-family: inherit;
  font-size: 14px;

  transition:
    border-color .18s ease,
    box-shadow .18s ease;
}

.pickup-lookup-field input:focus {
  border-color: #8f1d2c;

  box-shadow:
    0 0 0 3px rgba(143, 29, 44, .08);
}

.pickup-lookup-field small {
  display: block;

  margin-top: 6px;

  color: #858585;

  font-size: 10px;
  line-height: 1.45;
}

.pickup-lookup-button {
  width: 100%;
  min-height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  margin-top: 6px;

  border: 2px solid #8f1d2c;
  border-radius: 3px;

  background: #8f1d2c;
  color: #fff;

  font-family: inherit;
  font-size: 12px;
  font-weight: 900;

  cursor: pointer;

  transition:
    background .18s ease,
    color .18s ease;
}

.pickup-lookup-button:hover {
  background: #fff;
  color: #8f1d2c;
}

.pickup-lookup-security {
  display: flex;
  align-items: flex-start;
  gap: 9px;

  margin-top: 18px;
  padding-top: 16px;

  border-top: 1px solid #e6e6e6;
}

.pickup-lookup-security__icon {
  flex: 0 0 21px;

  width: 21px;
  height: 21px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #f5eeee;
  color: #8f1d2c;

  font-size: 10px;
  font-weight: 900;
}

.pickup-lookup-security p {
  margin: 1px 0 0;

  color: #777;

  font-size: 10px;
  line-height: 1.5;
}


/* ==========================================================
   PICKUP + RETURN SECTION
========================================================== */

.pickup-process-section {
  padding: 78px 0 88px;

  background: #f7f7f7;
}

.pickup-process-section .section-heading {
  max-width: 690px;
  margin: 0 auto 40px;

  text-align: center;
}

.pickup-process-section .section-heading h2 {
  margin: 7px 0 10px;

  color: #202024;

  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.08;
  letter-spacing: -1px;
}

.pickup-process-section .section-heading p {
  margin: 0;

  color: #6e6e6e;

  font-size: 14px;
  line-height: 1.65;
}

.pickup-process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}


/* CARD */

.pickup-process-card {
  overflow: hidden;

  border: 1px solid #dedede;
  border-radius: 6px;

  background: #fff;

  box-shadow:
    0 5px 18px rgba(0, 0, 0, .06);

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.pickup-process-card:hover {
  transform: translateY(-3px);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, .10);
}


/* IMAGE */

.pickup-process-image {
  position: relative;

  height: 290px;

  overflow: hidden;

  background: #e8e8e8;
}

.pickup-process-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform .35s ease;
}

.pickup-process-card:hover
.pickup-process-image img {
  transform: scale(1.025);
}

.pickup-process-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;

  padding: 8px 13px;

  border-radius: 3px;

  background: #8f1d2c;
  color: #fff;

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;

  box-shadow:
    0 4px 12px rgba(0, 0, 0, .18);
}


/* CARD CONTENT */

.pickup-process-content {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 17px;

  padding: 27px;
}

.pickup-process-icon {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #f5eeee;
  color: #8f1d2c;

  font-size: 18px;
  font-weight: 900;
}

.pickup-process-label {
  display: block;

  margin-bottom: 5px;

  color: #8f1d2c;

  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.3px;
}

.pickup-process-content h3 {
  margin: 0 0 10px;

  color: #222;

  font-size: 21px;
  line-height: 1.2;
}

.pickup-process-content p {
  margin: 0;

  color: #6b6b6b;

  font-size: 13px;
  line-height: 1.65;
}


/* CHECK LIST */

.pickup-process-list {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 9px 15px;

  margin: 20px 0 0;
  padding: 17px 0 0;

  border-top: 1px solid #ececec;

  list-style: none;
}

.pickup-process-list li {
  display: flex;
  align-items: center;
  gap: 7px;

  color: #444;

  font-size: 11px;
  font-weight: 700;
}

.pickup-process-list li span {
  width: 18px;
  height: 18px;

  flex: 0 0 18px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #eef6ef;
  color: #28783b;

  font-size: 9px;
  font-weight: 900;
}


/* ==========================================================
   PORTAL PREVIEW
========================================================== */

.portal-preview-section {
  padding: 88px 0;

  background: #fff;
}

.portal-preview-layout {
  display: grid;
  grid-template-columns:
    minmax(0, .85fr)
    minmax(0, 1.15fr);

  align-items: center;
  gap: 75px;
}

.portal-preview-content {
  max-width: 470px;
}

.portal-preview-content h2 {
  margin: 8px 0 17px;

  color: #202024;

  font-size: clamp(31px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -1.2px;
}

.portal-preview-content p {
  margin: 0 0 14px;

  color: #696969;

  font-size: 14px;
  line-height: 1.7;
}

.portal-text-link {
  display: inline-block;

  margin-top: 12px;

  color: #8f1d2c;

  font-size: 12px;
  font-weight: 900;

  text-decoration: none;
}

.portal-text-link:hover {
  text-decoration: underline;
}


/* DASHBOARD */

.portal-dashboard {
  overflow: hidden;

  border: 1px solid #dadada;
  border-radius: 6px;

  background: #fff;

  box-shadow:
    0 14px 38px rgba(0, 0, 0, .10);
}

.portal-dashboard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: 20px 22px;

  border-bottom: 1px solid #e5e5e5;

  background: #fafafa;
}

.portal-dashboard__top > div {
  display: grid;
  gap: 3px;
}

.portal-dashboard__label {
  color: #8f1d2c;

  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.2px;
}

.portal-dashboard__top strong {
  color: #252525;

  font-size: 14px;
}

.portal-dashboard__status {
  padding: 7px 10px;

  border-radius: 20px;

  background: #edf7ef;
  color: #25733a;

  font-size: 9px;
  font-weight: 900;
  white-space: nowrap;
}


/* DATES */

.portal-dashboard__dates {
  display: grid;
  grid-template-columns: 1fr 1fr;

  border-bottom: 1px solid #e5e5e5;
}

.portal-dashboard__dates > div {
  display: grid;
  gap: 3px;

  padding: 18px 22px;
}

.portal-dashboard__dates > div:first-child {
  border-right: 1px solid #e5e5e5;
}

.portal-dashboard__dates span {
  color: #8f1d2c;

  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
}

.portal-dashboard__dates strong {
  color: #242424;

  font-size: 13px;
}

.portal-dashboard__dates small {
  color: #777;

  font-size: 10px;
}


/* LOCATION WITH REAL PHOTO */

.portal-dashboard__location {
  display: grid;
  grid-template-columns: 190px 1fr;

  min-height: 145px;

  border-bottom: 1px solid #e5e5e5;
}

.dashboard-location-image {
  min-height: 145px;

  overflow: hidden;

  background: #eee;
}

.dashboard-location-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.dashboard-location-content {
  padding: 22px;
}

.dashboard-location-content > span {
  display: block;

  margin-bottom: 5px;

  color: #8f1d2c;

  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
}

.dashboard-location-content strong {
  display: block;

  margin-bottom: 7px;

  color: #252525;

  font-size: 14px;
}

.dashboard-location-content p {
  margin: 0;

  color: #707070;

  font-size: 11px;
  line-height: 1.55;
}


/* DASHBOARD NOTICE */

.portal-dashboard__notice {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 14px 20px;

  background: #fafafa;
}

.portal-dashboard__notice > span {
  width: 23px;
  height: 23px;

  flex: 0 0 23px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #edf7ef;
  color: #26743a;

  font-size: 10px;
  font-weight: 900;
}

.portal-dashboard__notice p {
  margin: 0;

  color: #686868;

  font-size: 10px;
  line-height: 1.45;
}


/* ==========================================================
   HELP CTA
========================================================== */

.mypickup-help-section {
  padding: 0 0 85px;

  background: #fff;
}

.mypickup-help-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

  padding: 34px 38px;

  border-radius: 6px;

  background: #202024;
}

.mypickup-help-card h2 {
  margin: 6px 0 7px;

  color: #fff;

  font-size: 25px;
}

.mypickup-help-card p {
  max-width: 600px;

  margin: 0;

  color: rgba(255, 255, 255, .72);

  font-size: 12px;
  line-height: 1.6;
}

.mypickup-help-card .section-eyebrow {
  color: #fff;
}

.mypickup-help-button {
  flex-shrink: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;

  min-height: 46px;

  padding: 0 20px;

  border: 2px solid #fff;
  border-radius: 3px;

  background: #fff;
  color: #202024;

  font-size: 16px;
  font-weight: 900;

  text-decoration: none;

  transition:
    background .18s ease,
    color .18s ease;
}

.mypickup-help-button:hover {
  background: transparent;
  color: #fff;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 1000px) {

  .mypickup-hero--photo
  .mypickup-hero__inner {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(350px, 420px);

    gap: 40px;
  }

  .portal-preview-layout {
    gap: 45px;
  }

  .pickup-process-content {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 820px) {

  .mypickup-hero--photo {
    min-height: auto;
    padding: 55px 0;
  }

  .mypickup-hero--photo
  .mypickup-hero__inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .mypickup-hero--photo
  .mypickup-hero__content {
    max-width: 620px;
  }

  .mypickup-hero__overlay {
    background:
      rgba(12, 12, 14, .72);
  }

  .pickup-process-grid {
    grid-template-columns: 1fr;
  }

  .pickup-process-image {
    height: 330px;
  }

  .portal-preview-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .portal-preview-content {
    max-width: 650px;
  }

  .mypickup-help-card {
    align-items: flex-start;
    flex-direction: column;
  }

}


@media (max-width: 600px) {

  .mypickup-hero--photo {
    padding: 40px 0;
  }

  .mypickup-hero--photo
  .mypickup-hero__inner {
    width: min(
      100% - 28px,
      1120px
    );
  }

  .mypickup-hero--photo
  .mypickup-hero__content h1 {
    font-size: 40px;
    letter-spacing: -1.3px;
  }

  .mypickup-hero--photo
  .mypickup-hero__content > p {
    font-size: 14px;
  }

  .mypickup-hero--photo
  .pickup-lookup-card {
    padding: 23px 19px;
  }

  .pickup-process-section {
    padding: 55px 0 62px;
  }

  .pickup-process-section
  .section-heading {
    text-align: left;
  }

  .pickup-process-image {
    height: 235px;
  }

  .pickup-process-content {
    padding: 22px 19px;
  }

  .pickup-process-list {
    grid-template-columns: 1fr;
  }

  .portal-preview-section {
    padding: 62px 0;
  }

  .portal-dashboard__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .portal-dashboard__dates {
    grid-template-columns: 1fr;
  }

  .portal-dashboard__dates
  > div:first-child {
    border-right: 0;
    border-bottom: 1px solid #e5e5e5;
  }

  .portal-dashboard__location {
    grid-template-columns: 1fr;
  }

  .dashboard-location-image {
    height: 190px;
  }

  .mypickup-help-section {
    padding-bottom: 60px;
  }

  .mypickup-help-card {
    padding: 28px 22px;
  }

  .mypickup-help-button {
    width: 100%;
    box-sizing: border-box;
  }

}

/* ==========================================
   PORTAL FEATURES
========================================== */
















/* ==========================================
   PORTAL PREVIEW
========================================== */

.portal-preview-section {
  padding: 90px 0;

  background: var(--aa-light);
}

.portal-preview-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(400px, .85fr);

  gap: 85px;

  align-items: center;
}

.portal-preview-content {
  max-width: 570px;
}

.portal-preview-content h2 {
  margin: 0 0 18px;

  color: var(--aa-dark);

  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;

  letter-spacing: -.04em;
}

.portal-preview-content p {
  margin: 0 0 14px;

  color: var(--aa-muted);

  line-height: 1.75;
}

.portal-text-link {
  display: inline-block;

  margin-top: 12px;

  color: var(--aa-primary);

  text-decoration: none;

  font-size: .82rem;
  font-weight: 800;
}

.portal-text-link:hover {
  text-decoration: underline;
}


/* ==========================================
   DASHBOARD PREVIEW
========================================== */
















/* DATES */












/* PROGRESS */
















/* LOCATION */







.dashboard-location-image {
  height: 85px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #eee;

  color: #888;

  font-size: 1.5rem;
}








/* ==========================================
   HELP
========================================== */














/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 950px) {

  .mypickup-hero__inner {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .pickup-lookup-card {
    max-width: 600px;
  }

  

  .portal-preview-layout {
    grid-template-columns: 1fr;

    gap: 50px;
  }

}


@media (max-width: 650px) {

  .mypickup-hero {
    padding: 55px 18px;
  }

  .mypickup-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .pickup-lookup-card {
    padding: 25px 20px;
  }

  
  .portal-preview-section {
    padding: 65px 0;
  }

  

  

  

  

  

  

  

  

}

/* ==========================================
   CUSTOMER ORDER DASHBOARD
========================================== */

.customer-order-page {
  background: #f6f6f6;
}


/* ==========================================
   HEADER
========================================== */

.order-header {
  padding: 45px 0;

  background:
    linear-gradient(
      110deg,
      var(--aa-primary),
      var(--aa-primary-dark)
    );

  color: #fff;
}

.order-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 30px;
}

.order-eyebrow {
  display: block;

  margin-bottom: 5px;

  color: rgba(255,255,255,.65);

  font-size: .65rem;
  font-weight: 900;

  letter-spacing: .12em;
}

.order-header h1 {
  margin: 0;

  font-size: clamp(2.3rem, 5vw, 3.5rem);

  letter-spacing: -.04em;
}

.order-header p {
  margin: 7px 0 0;

  color: rgba(255,255,255,.72);

  font-size: .82rem;
}

.order-header p strong {
  color: #fff;
}

.order-status-badge {
  padding: 10px 14px;

  border: 1px solid rgba(255,255,255,.35);

  background: rgba(255,255,255,.12);

  color: #fff;

  font-size: .68rem;
  font-weight: 900;

  letter-spacing: .07em;
}


/* ==========================================
   PROGRESS
========================================== */

.order-progress-section {
  padding: 27px 0;

  border-bottom: 1px solid var(--aa-border);

  background: #fff;
}

.order-progress {
  display: flex;
  align-items: flex-start;
}

.order-progress__step {
  flex: 0 0 auto;

  display: flex;
  align-items: center;

  gap: 9px;
}

.order-progress__circle {
  flex: 0 0 30px;

  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid #d0d0d0;
  border-radius: 50%;

  background: #fff;
  color: #999;

  font-size: .7rem;
  font-weight: 900;
}

.order-progress__step > div:last-child {
  display: flex;
  flex-direction: column;
}

.order-progress__step strong {
  color: #555;

  font-size: .72rem;
}

.order-progress__step span {
  color: #999;

  font-size: .6rem;
}

.order-progress__step.complete
.order-progress__circle, 
.order-progress__step.current
.order-progress__circle {
  border-color: var(--aa-primary);

  background: var(--aa-primary);
  color: #fff;
}

.order-progress__step.complete strong, 
.order-progress__step.current strong {
  color: var(--aa-primary);
}

.order-progress__connector {
  flex: 1;

  min-width: 25px;
  height: 2px;

  margin: 14px 12px 0;

  background: #ddd;
}

.order-progress__connector.complete {
  background: var(--aa-primary);
}


/* ==========================================
   DASHBOARD
========================================== */

.order-dashboard {
  padding: 45px 0 80px;
}

.order-dashboard__grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    320px;

  gap: 25px;

  align-items: start;
}

.order-dashboard__main {
  display: grid;

  gap: 20px;
}

.order-dashboard__sidebar {
  display: grid;

  gap: 17px;
}


/* ==========================================
   ACTION CARD
========================================== */

.order-action-card {
  padding: 29px 32px;

  display: flex;
  align-items: center;

  gap: 22px;

  border-left: 5px solid var(--aa-primary);

  background: #fff;

  box-shadow: 0 4px 15px rgba(0,0,0,.04);
}

.order-action-card__icon {
  flex: 0 0 58px;

  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(143,29,44,.1);
  color: var(--aa-primary);

  font-size: 1.2rem;
  font-weight: 900;
}

.order-action-card__content {
  flex: 1;
}

.order-action-label {
  display: block;

  margin-bottom: 3px;

  color: var(--aa-primary);

  font-size: .62rem;
  font-weight: 900;

  letter-spacing: .1em;
}

.order-action-card h2 {
  margin: 0 0 5px;

  font-size: 1.45rem;

  letter-spacing: -.025em;
}

.order-action-card p {
  margin: 0;

  color: var(--aa-muted);

  font-size: .82rem;
}

.order-primary-button {
  min-height: 46px;

  margin-top: 17px;
  padding: 0 18px;

  border: 0;

  display: inline-flex;
  align-items: center;

  gap: 25px;

  background: var(--aa-primary);
  color: #fff;

  font-weight: 800;

  cursor: pointer;
}

.order-primary-button:hover {
  background: var(--aa-primary-dark);
}


/* ==========================================
   STANDARD CARD
========================================== */

.order-card {
  padding: 30px;

  border: 1px solid var(--aa-border);

  background: #fff;
}

.order-card__header {
  margin-bottom: 22px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 20px;
}

.order-card__label, 
.order-sidebar-label {
  display: block;

  margin-bottom: 4px;

  color: var(--aa-primary);

  font-size: .61rem;
  font-weight: 900;

  letter-spacing: .1em;
}

.order-card__header h2 {
  margin: 0;

  font-size: 1.25rem;
}

.order-item-count {
  padding: 5px 8px;

  background: var(--aa-light);

  color: #777;

  font-size: .64rem;
  font-weight: 800;
}


/* ==========================================
   LOCATION
========================================== */

.pickup-location-card {
  display: grid;

  grid-template-columns:
    minmax(260px, .9fr)
    minmax(0, 1fr);

  border: 1px solid var(--aa-border);
}

.pickup-location-photo {
  min-height: 240px;

  background: #eee;

  overflow: hidden;
}

.pickup-location-photo img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}

.pickup-location-info {
  padding: 27px;
}

.pickup-location-area {
  color: var(--aa-primary);

  font-size: .6rem;
  font-weight: 900;

  letter-spacing: .1em;
}

.pickup-location-info h3 {
  margin: 5px 0 9px;

  font-size: 1.35rem;
}

.pickup-location-info > p {
  margin: 0;

  color: var(--aa-muted);

  font-size: .82rem;
  line-height: 1.65;
}

.pickup-address {
  margin-top: 23px;
  padding-top: 20px;

  border-top: 1px solid var(--aa-border);

  display: flex;

  gap: 12px;
}

.pickup-address__icon {
  flex: 0 0 28px;

  width: 28px;
  height: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(143,29,44,.1);
  color: var(--aa-primary);

  font-size: .6rem;
}

.pickup-address div {
  display: flex;
  flex-direction: column;
}

.pickup-address small {
  color: #999;

  font-size: .55rem;
  font-weight: 800;

  letter-spacing: .08em;
}

.pickup-address strong {
  margin: 3px 0;

  font-size: .78rem;
}

.pickup-address div span {
  color: #777;

  font-size: .7rem;
}


/* ==========================================
   ITEMS
========================================== */

.order-items {
  border-top: 1px solid var(--aa-border);
}

.order-item {
  padding: 17px 4px;

  display: flex;
  align-items: center;

  gap: 15px;

  border-bottom: 1px solid var(--aa-border);
}

.order-item:last-child {
  border-bottom: 0;
}

.order-item__quantity {
  flex: 0 0 42px;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--aa-light);
  color: var(--aa-primary);

  font-size: .9rem;
  font-weight: 900;
}

.order-item__details {
  display: flex;
  flex-direction: column;

  gap: 3px;
}

.order-item__details strong {
  font-size: .84rem;
}

.order-item__details span {
  color: #888;

  font-size: .68rem;
}


/* ==========================================
   IMPORTANT
========================================== */

.order-important {
  padding: 22px 25px;

  display: flex;

  gap: 15px;

  border-left: 4px solid var(--aa-primary);

  background: #fff;
}

.order-important__icon {
  flex: 0 0 30px;

  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(143,29,44,.1);
  color: var(--aa-primary);

  font-size: .8rem;
  font-weight: 900;
}

.order-important strong {
  font-size: .8rem;
}

.order-important p {
  margin: 4px 0 0;

  color: var(--aa-muted);

  font-size: .72rem;
  line-height: 1.6;
}


/* ==========================================
   SIDEBAR
========================================== */

.order-sidebar-card {
  padding: 24px;

  border: 1px solid var(--aa-border);

  background: #fff;
}

.order-date-block {
  display: flex;

  gap: 12px;
}

.order-date-icon {
  flex: 0 0 34px;

  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(143,29,44,.1);
  color: var(--aa-primary);

  font-weight: 900;
}

.order-date-block div {
  display: flex;
  flex-direction: column;

  gap: 2px;
}

.order-date-block small {
  color: #999;

  font-size: .55rem;
  font-weight: 900;

  letter-spacing: .08em;
}

.order-date-block strong {
  font-size: .76rem;
}

.order-date-block div span {
  color: var(--aa-primary);

  font-size: .7rem;
  font-weight: 800;
}

.order-sidebar-divider {
  height: 1px;

  margin: 19px 0;

  background: var(--aa-border);
}


/* METHOD */

.order-pickup-method {
  margin-top: 15px;

  display: flex;
  align-items: center;

  gap: 12px;
}

.order-pickup-method__icon {
  flex: 0 0 36px;

  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(143,29,44,.1);
  color: var(--aa-primary);

  font-size: .7rem;
  font-weight: 900;
}

.order-pickup-method div {
  display: flex;
  flex-direction: column;
}

.order-pickup-method strong {
  font-size: .78rem;
}

.order-pickup-method span {
  margin-top: 2px;

  color: #888;

  font-size: .67rem;
}


/* HELP */

.order-sidebar-card h3 {
  margin: 10px 0 7px;

  font-size: 1rem;
}

.order-sidebar-card > p {
  margin: 0 0 17px;

  color: var(--aa-muted);

  font-size: .72rem;
  line-height: 1.55;
}

.order-help-button {
  min-height: 42px;

  padding: 0 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--aa-primary);
  color: #fff;

  text-decoration: none;

  font-size: .72rem;
  font-weight: 800;
}

.order-help-link {
  display: block;

  margin-top: 12px;

  color: var(--aa-primary);

  text-align: center;
  text-decoration: none;

  font-size: .68rem;
  font-weight: 800;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 950px) {

  .order-dashboard__grid {
    grid-template-columns: 1fr;
  }

  .order-dashboard__sidebar {
    grid-template-columns: repeat(3, 1fr);
  }

  .order-progress__step span {
    display: none;
  }

}


@media (max-width: 700px) {

  .order-header {
    padding: 35px 0;
  }

  .order-header__inner {
    align-items: flex-start;

    flex-direction: column;

    gap: 18px;
  }


  /* PROGRESS */

  .order-progress {
    justify-content: space-between;
  }

  .order-progress__step {
    flex-direction: column;

    gap: 5px;

    text-align: center;
  }

  .order-progress__step > div:last-child {
    display: block;
  }

  .order-progress__step strong {
    font-size: .55rem;
  }

  .order-progress__connector {
    min-width: 5px;

    margin:
      14px 4px
      0;
  }


  /* DASHBOARD */

  .order-dashboard {
    padding: 25px 0 60px;
  }

  .order-action-card {
    padding: 24px 20px;

    align-items: flex-start;
  }

  .order-action-card__icon {
    flex-basis: 42px;

    width: 42px;
    height: 42px;
  }

  .order-primary-button {
    width: 100%;

    justify-content: space-between;
  }

  .order-card {
    padding: 23px 18px;
  }

  .pickup-location-card {
    grid-template-columns: 1fr;
  }

  .pickup-location-photo {
    min-height: 200px;
  }

  .pickup-location-info {
    padding: 22px 18px;
  }

  .order-dashboard__sidebar {
    grid-template-columns: 1fr;
  }

}

/* ==========================================
   SELF-SERVICE PICKUP
========================================== */

.pickup-process-page {
  min-height: 100vh;
  background: #f6f6f6;
}


/* HEADER */

.pickup-process-header {
  padding: 38px 0;

  background:
    linear-gradient(
      110deg,
      var(--aa-primary),
      var(--aa-primary-dark)
    );

  color: #fff;
}

.pickup-process-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.pickup-process-eyebrow {
  display: block;

  margin-bottom: 5px;

  color: rgba(255,255,255,.65);

  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.pickup-process-header h1 {
  margin: 0;

  font-size: clamp(2rem, 5vw, 3.1rem);
  letter-spacing: -.04em;
}

.pickup-process-header p {
  margin: 6px 0 0;

  color: rgba(255,255,255,.72);

  font-size: .78rem;
}

.pickup-process-header p strong {
  color: #fff;
}

.pickup-back-button {
  padding: 11px 15px;

  border: 1px solid rgba(255,255,255,.35);

  color: #fff;

  text-decoration: none;

  font-size: .72rem;
  font-weight: 800;
}


/* ==========================================
   STEP BAR
========================================== */

.pickup-step-bar {
  padding: 22px 0;

  border-bottom: 1px solid var(--aa-border);

  background: #fff;
}

.pickup-step-progress {
  max-width: 750px;

  margin: 0 auto;

  display: flex;
  align-items: flex-start;
}

.pickup-step-indicator {
  flex: 0 0 75px;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 5px;

  color: #999;
}

.pickup-step-indicator span {
  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid #d4d4d4;
  border-radius: 50%;

  background: #fff;

  font-size: .68rem;
  font-weight: 900;
}

.pickup-step-indicator strong {
  font-size: .62rem;
}

.pickup-step-indicator.active, 
.pickup-step-indicator.complete {
  color: var(--aa-primary);
}

.pickup-step-indicator.active span, 
.pickup-step-indicator.complete span {
  border-color: var(--aa-primary);

  background: var(--aa-primary);
  color: #fff;
}

.pickup-step-line {
  flex: 1;

  height: 2px;

  margin-top: 14px;

  background: #ddd;
}

.pickup-step-line.complete {
  background: var(--aa-primary);
}


/* ==========================================
   LAYOUT
========================================== */

.pickup-process-content {
  padding: 40px 0 80px;
}

.pickup-process-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    285px;

  gap: 25px;

  align-items: start;
}

.pickup-process-main {
  min-width: 0;
}


/* STEPS */

.pickup-process-step {
  display: none;
}

.pickup-process-step.active {
  display: block;
}

.pickup-process-card {
  padding: 34px;

  border: 1px solid var(--aa-border);

  background: #fff;
}

.pickup-process-card__heading {
  margin-bottom: 27px;
}

.pickup-step-label {
  display: block;

  margin-bottom: 5px;

  color: var(--aa-primary);

  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .11em;
}

.pickup-process-card__heading h2 {
  margin: 0 0 8px;

  color: var(--aa-dark);

  font-size: clamp(1.6rem, 4vw, 2.2rem);
  letter-spacing: -.035em;
}

.pickup-process-card__heading p {
  max-width: 620px;

  margin: 0;

  color: var(--aa-muted);

  font-size: .85rem;
  line-height: 1.65;
}


/* ==========================================
   STAGING PHOTO
========================================== */

.pickup-staging-photo {
  position: relative;

  width: 100%;
  height: 370px;

  overflow: hidden;

  background: #eee;
}

.pickup-staging-photo img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}

.pickup-photo-badge {
  position: absolute;

  left: 17px;
  bottom: 17px;

  padding: 8px 10px;

  background: var(--aa-primary);
  color: #fff;

  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .08em;
}


/* LOCATION */

.pickup-location-details {
  margin-top: 20px;
  padding: 22px;

  display: flex;

  gap: 15px;

  background: var(--aa-light);
}

.pickup-location-marker {
  flex: 0 0 37px;

  width: 37px;
  height: 37px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(143,29,44,.1);
  color: var(--aa-primary);

  font-size: .7rem;
}

.pickup-location-details span {
  color: var(--aa-primary);

  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .09em;
}

.pickup-location-details h3 {
  margin: 3px 0 6px;

  font-size: 1.1rem;
}

.pickup-location-details p {
  margin: 0;

  color: var(--aa-muted);

  font-size: .76rem;
  line-height: 1.6;
}

.pickup-location-address {
  margin-top: 15px;
  padding: 18px 20px;

  border: 1px solid var(--aa-border);

  display: flex;
  flex-direction: column;
}

.pickup-location-address > span {
  color: #999;

  font-size: .56rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.pickup-location-address strong {
  margin-top: 3px;

  font-size: .78rem;
}

.pickup-location-address p {
  margin: 3px 0 0;

  color: #777;

  font-size: .7rem;
  line-height: 1.5;
}


/* ==========================================
   ACTION BUTTONS
========================================== */

.pickup-process-actions {
  margin-top: 28px;

  display: flex;
  justify-content: flex-end;
}

.pickup-process-actions--split {
  justify-content: space-between;

  gap: 15px;
}

.pickup-next-button, 
.pickup-complete-button, 
.pickup-secondary-button {
  min-height: 48px;

  padding: 0 19px;

  border: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 25px;

  font-family: inherit;
  font-weight: 800;

  cursor: pointer;
}

.pickup-next-button, 
.pickup-complete-button {
  background: var(--aa-primary);
  color: #fff;
}

.pickup-next-button:hover, 
.pickup-complete-button:hover {
  background: var(--aa-primary-dark);
}

.pickup-secondary-button {
  border: 1px solid #ccc;

  background: #fff;
  color: #555;
}

.pickup-next-button:disabled, 
.pickup-complete-button:disabled {
  background: #ccc;
  color: #777;

  cursor: not-allowed;
}


/* ==========================================
   VERIFY ITEMS
========================================== */

.pickup-verify-items {
  border-top: 1px solid var(--aa-border);
}

.pickup-verify-item {
  padding: 18px 4px;

  display: flex;
  align-items: center;

  gap: 15px;

  border-bottom: 1px solid var(--aa-border);
}

.pickup-verify-quantity {
  flex: 0 0 45px;

  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--aa-light);
  color: var(--aa-primary);

  font-size: .9rem;
  font-weight: 900;
}

.pickup-verify-details {
  flex: 1;

  display: flex;
  flex-direction: column;

  gap: 3px;
}

.pickup-verify-details strong {
  font-size: .82rem;
}

.pickup-verify-details span {
  color: #888;

  font-size: .68rem;
}

.pickup-verify-check {
  width: 27px;
  height: 27px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(143,29,44,.1);
  color: var(--aa-primary);

  font-size: .65rem;
  font-weight: 900;
}


/* WARNING */

.pickup-warning-box {
  margin-top: 22px;
  padding: 18px;

  display: flex;

  gap: 12px;

  border-left: 4px solid var(--aa-primary);

  background: #faf5f5;
}

.pickup-warning-icon {
  flex: 0 0 28px;

  width: 28px;
  height: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--aa-primary);
  color: #fff;

  font-size: .7rem;
  font-weight: 900;
}

.pickup-warning-box strong {
  font-size: .75rem;
}

.pickup-warning-box p {
  margin: 3px 0 0;

  color: #777;

  font-size: .69rem;
  line-height: 1.55;
}


/* ==========================================
   CONFIRMATION CHECKBOX
========================================== */

.pickup-confirm-box {
  position: relative;

  margin-top: 14px;
  padding: 16px;

  border: 1px solid var(--aa-border);

  display: flex;
  align-items: flex-start;

  gap: 12px;

  color: #555;

  font-size: .75rem;
  line-height: 1.5;

  cursor: pointer;
}

.pickup-confirm-box input {
  position: absolute;

  opacity: 0;
  pointer-events: none;
}

.pickup-custom-checkbox {
  flex: 0 0 21px;

  width: 21px;
  height: 21px;

  border: 2px solid #ccc;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;
}

.pickup-confirm-box input:checked +
.pickup-custom-checkbox {
  border-color: var(--aa-primary);

  background: var(--aa-primary);
}

.pickup-confirm-box input:checked +
.pickup-custom-checkbox::after {
  content: "✓";

  color: #fff;

  font-size: .65rem;
  font-weight: 900;
}


/* ==========================================
   LOAD STEP
========================================== */

.pickup-load-visual {
  padding: 40px 25px;

  background: var(--aa-light);

  text-align: center;
}

.pickup-load-icon {
  width: 60px;
  height: 60px;

  margin: 0 auto 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(143,29,44,.1);
  color: var(--aa-primary);

  font-size: 1.3rem;
  font-weight: 900;
}

.pickup-load-visual h3 {
  margin: 0 0 7px;
}

.pickup-load-visual p {
  max-width: 500px;

  margin: 0 auto;

  color: var(--aa-muted);

  font-size: .76rem;
  line-height: 1.6;
}

.pickup-load-tips {
  margin-top: 20px;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 10px;
}

.pickup-load-tips > div {
  padding: 14px;

  display: flex;
  align-items: flex-start;

  gap: 9px;

  border: 1px solid var(--aa-border);
}

.pickup-load-tips span {
  flex: 0 0 20px;

  width: 20px;
  height: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(143,29,44,.1);
  color: var(--aa-primary);

  font-size: .55rem;
  font-weight: 900;
}

.pickup-load-tips p {
  margin: 1px 0 0;

  color: #666;

  font-size: .7rem;
  line-height: 1.5;
}


/* ==========================================
   PHOTO STEP
========================================== */

.pickup-photo-instructions {
  padding: 20px;

  display: flex;

  gap: 15px;

  background: var(--aa-light);
}

.pickup-camera-icon {
  flex: 0 0 45px;

  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(143,29,44,.1);
  color: var(--aa-primary);

  font-size: 1.2rem;
}

.pickup-photo-instructions strong {
  font-size: .77rem;
}

.pickup-photo-instructions ul {
  margin: 7px 0 0;
  padding-left: 18px;

  color: #777;

  font-size: .7rem;
  line-height: 1.7;
}


/* UPLOAD */

.pickup-photo-upload {
  margin-top: 20px;

  border: 2px dashed #ccc;

  background: #fafafa;
}

.pickup-upload-empty {
  padding: 50px 25px;

  text-align: center;
}

.pickup-upload-icon {
  width: 55px;
  height: 55px;

  margin: 0 auto 13px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(143,29,44,.1);
  color: var(--aa-primary);

  font-size: 1.4rem;
}

.pickup-upload-empty h3 {
  margin: 0 0 5px;

  font-size: 1rem;
}

.pickup-upload-empty p {
  margin: 0 auto 18px;

  max-width: 390px;

  color: #888;

  font-size: .7rem;
  line-height: 1.5;
}

.pickup-photo-button {
  min-height: 43px;

  padding: 0 17px;

  border: 0;

  background: var(--aa-primary);
  color: #fff;

  font-family: inherit;
  font-size: .72rem;
  font-weight: 800;

  cursor: pointer;
}


/* PREVIEW */

.pickup-upload-preview img {
  width: 100%;
  max-height: 430px;

  display: block;

  object-fit: contain;

  background: #222;
}

.pickup-upload-preview__footer {
  padding: 15px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;

  background: #fff;
}

.pickup-upload-preview__footer > div {
  display: flex;
  flex-direction: column;

  gap: 2px;
}

.pickup-photo-success {
  color: var(--aa-primary);

  font-size: .72rem;
  font-weight: 900;
}

.pickup-upload-preview__footer small {
  max-width: 350px;

  color: #888;

  font-size: .62rem;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pickup-upload-preview__footer button {
  border: 0;

  background: none;
  color: var(--aa-primary);

  font-size: .68rem;
  font-weight: 800;

  cursor: pointer;
}


/* ERROR */

.pickup-submit-error {
  margin-top: 17px;
  padding: 13px;

  border-left: 4px solid #b3261e;

  background: #fff1f0;
  color: #8d1b15;

  font-size: .74rem;
}


/* ==========================================
   SUCCESS
========================================== */

.pickup-success-card {
  padding-top: 55px;
  padding-bottom: 55px;

  text-align: center;
}

.pickup-success-icon {
  width: 68px;
  height: 68px;

  margin: 0 auto 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--aa-primary);
  color: #fff;

  font-size: 1.4rem;
  font-weight: 900;
}

.pickup-success-card h2 {
  margin: 5px 0 8px;

  font-size: 2rem;
}

.pickup-success-card > p {
  max-width: 500px;

  margin: 0 auto;

  color: var(--aa-muted);

  line-height: 1.6;
}

.pickup-success-details {
  max-width: 620px;

  margin: 30px auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border: 1px solid var(--aa-border);
}

.pickup-success-details div {
  padding: 17px 12px;

  display: flex;
  flex-direction: column;

  gap: 4px;

  border-right: 1px solid var(--aa-border);
}

.pickup-success-details div:last-child {
  border-right: 0;
}

.pickup-success-details span {
  color: #999;

  font-size: .55rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.pickup-success-details strong {
  font-size: .75rem;
}

.pickup-return-reminder {
  max-width: 620px;

  margin: 0 auto 25px;
  padding: 19px;

  background: var(--aa-light);
}

.pickup-return-reminder strong {
  font-size: .78rem;
}

.pickup-return-reminder p {
  margin: 4px 0 0;

  color: #777;

  font-size: .7rem;
  line-height: 1.5;
}

.pickup-dashboard-button {
  min-height: 46px;

  padding: 0 20px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: var(--aa-primary);
  color: #fff;

  text-decoration: none;

  font-size: .73rem;
  font-weight: 800;
}


/* ==========================================
   SIDEBAR
========================================== */

.pickup-process-sidebar {
  display: grid;

  gap: 15px;
}

.pickup-sidebar-card, 
.pickup-sidebar-help {
  padding: 22px;

  border: 1px solid var(--aa-border);

  background: #fff;
}

.pickup-sidebar-label {
  display: block;

  margin-bottom: 5px;

  color: var(--aa-primary);

  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.pickup-sidebar-order {
  font-size: 1rem;
}

.pickup-sidebar-divider {
  height: 1px;

  margin: 17px 0;

  background: var(--aa-border);
}

.pickup-sidebar-detail {
  display: flex;
  flex-direction: column;

  gap: 2px;
}

.pickup-sidebar-detail small {
  color: #999;

  font-size: .54rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.pickup-sidebar-detail strong {
  font-size: .73rem;
}

.pickup-sidebar-detail span {
  color: var(--aa-primary);

  font-size: .67rem;
  font-weight: 800;
}

.pickup-sidebar-item {
  padding: 11px 0;

  display: flex;
  align-items: center;

  gap: 10px;

  border-bottom: 1px solid var(--aa-border);
}

.pickup-sidebar-item:last-child {
  border-bottom: 0;
}

.pickup-sidebar-item > span {
  flex: 0 0 31px;

  width: 31px;
  height: 31px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--aa-light);
  color: var(--aa-primary);

  font-size: .7rem;
  font-weight: 900;
}

.pickup-sidebar-item p {
  margin: 0;

  color: #555;

  font-size: .7rem;
}

.pickup-sidebar-help {
  border-left: 3px solid var(--aa-primary);
}

.pickup-sidebar-help strong {
  font-size: .78rem;
}

.pickup-sidebar-help p {
  margin: 5px 0 13px;

  color: #777;

  font-size: .67rem;
  line-height: 1.5;
}

.pickup-sidebar-help a {
  color: var(--aa-primary);

  text-decoration: none;

  font-size: .7rem;
  font-weight: 900;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 900px) {

  .pickup-process-layout {
    grid-template-columns: 1fr;
  }

  .pickup-process-sidebar {
    grid-template-columns: 1fr 1fr;
  }

  .pickup-sidebar-help {
    grid-column: 1 / -1;
  }

}


@media (max-width: 650px) {

  .pickup-process-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .pickup-step-indicator {
    flex-basis: 50px;
  }

  .pickup-step-indicator strong {
    font-size: .53rem;
  }

  .pickup-step-line {
    margin-left: 2px;
    margin-right: 2px;
  }

  .pickup-process-content {
    padding-top: 20px;
  }

  .pickup-process-card {
    padding: 23px 18px;
  }

  .pickup-staging-photo {
    height: 260px;
  }

  .pickup-process-actions--split {
    flex-direction: column-reverse;
  }

  .pickup-next-button, 
  .pickup-complete-button, 
  .pickup-secondary-button {
    width: 100%;
  }

  .pickup-next-button, 
  .pickup-complete-button {
    justify-content: space-between;
  }

  .pickup-load-tips {
    grid-template-columns: 1fr;
  }

  .pickup-process-sidebar {
    grid-template-columns: 1fr;
  }

  .pickup-sidebar-help {
    grid-column: auto;
  }

  .pickup-success-details {
    grid-template-columns: 1fr;
  }

  .pickup-success-details div {
    border-right: 0;
    border-bottom: 1px solid var(--aa-border);
  }

  .pickup-success-details div:last-child {
    border-bottom: 0;
  }

  .pickup-upload-preview__footer {
    align-items: flex-start;
    flex-direction: column;
  }

}

/* ==========================================
   SELF-SERVICE RETURN
========================================== */

.return-process-page {
  min-height: 100vh;
  background: #f6f6f6;
}


/* HEADER */

.return-process-header {
  padding: 38px 0;

  background:
    linear-gradient(
      110deg,
      var(--aa-primary),
      var(--aa-primary-dark)
    );

  color: #fff;
}

.return-process-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.return-process-eyebrow {
  display: block;

  margin-bottom: 5px;

  color: rgba(255,255,255,.65);

  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.return-process-header h1 {
  margin: 0;

  font-size: clamp(2rem, 5vw, 3.1rem);
  letter-spacing: -.04em;
}

.return-process-header p {
  margin: 6px 0 0;

  color: rgba(255,255,255,.72);

  font-size: .78rem;
}

.return-process-header p strong {
  color: #fff;
}

.return-back-button {
  padding: 11px 15px;

  border: 1px solid rgba(255,255,255,.35);

  color: #fff;

  text-decoration: none;

  font-size: .72rem;
  font-weight: 800;
}


/* ==========================================
   PROGRESS
========================================== */

.return-step-bar {
  padding: 22px 0;

  border-bottom: 1px solid var(--aa-border);

  background: #fff;
}

.return-step-progress {
  max-width: 750px;

  margin: 0 auto;

  display: flex;
  align-items: flex-start;
}

.return-step-indicator {
  flex: 0 0 75px;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 5px;

  color: #999;
}

.return-step-indicator span {
  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid #d4d4d4;
  border-radius: 50%;

  background: #fff;

  font-size: .68rem;
  font-weight: 900;
}

.return-step-indicator strong {
  font-size: .62rem;
}

.return-step-indicator.active, 
.return-step-indicator.complete {
  color: var(--aa-primary);
}

.return-step-indicator.active span, 
.return-step-indicator.complete span {
  border-color: var(--aa-primary);

  background: var(--aa-primary);
  color: #fff;
}

.return-step-line {
  flex: 1;

  height: 2px;

  margin-top: 14px;

  background: #ddd;
}

.return-step-line.complete {
  background: var(--aa-primary);
}


/* ==========================================
   LAYOUT
========================================== */

.return-process-content {
  padding: 40px 0 80px;
}

.return-process-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    285px;

  gap: 25px;

  align-items: start;
}

.return-process-main {
  min-width: 0;
}

.return-process-step {
  display: none;
}

.return-process-step.active {
  display: block;
}

.return-process-card {
  padding: 34px;

  border: 1px solid var(--aa-border);

  background: #fff;
}

.return-process-card__heading {
  margin-bottom: 27px;
}

.return-step-label {
  display: block;

  margin-bottom: 5px;

  color: var(--aa-primary);

  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .11em;
}

.return-process-card__heading h2 {
  margin: 0 0 8px;

  font-size: clamp(1.6rem, 4vw, 2.2rem);
  letter-spacing: -.035em;
}

.return-process-card__heading p {
  max-width: 620px;

  margin: 0;

  color: var(--aa-muted);

  font-size: .85rem;
  line-height: 1.65;
}


/* ==========================================
   RETURN LOCATION
========================================== */

.return-location-photo {
  position: relative;

  height: 370px;

  overflow: hidden;

  background: #eee;
}

.return-location-photo img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}

.return-photo-badge {
  position: absolute;

  left: 17px;
  bottom: 17px;

  padding: 8px 10px;

  background: var(--aa-primary);
  color: #fff;

  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.return-location-details {
  margin-top: 20px;
  padding: 22px;

  display: flex;

  gap: 15px;

  background: var(--aa-light);
}

.return-location-marker {
  flex: 0 0 37px;

  width: 37px;
  height: 37px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(143,29,44,.1);
  color: var(--aa-primary);

  font-size: .7rem;
}

.return-location-details span {
  color: var(--aa-primary);

  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .09em;
}

.return-location-details h3 {
  margin: 3px 0 6px;

  font-size: 1.1rem;
}

.return-location-details p {
  margin: 0;

  color: var(--aa-muted);

  font-size: .76rem;
  line-height: 1.6;
}

.return-location-address {
  margin-top: 15px;
  padding: 18px 20px;

  border: 1px solid var(--aa-border);

  display: flex;
  flex-direction: column;
}

.return-location-address > span {
  color: #999;

  font-size: .56rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.return-location-address strong {
  margin-top: 3px;

  font-size: .78rem;
}

.return-location-address p {
  margin: 3px 0 0;

  color: #777;

  font-size: .7rem;
  line-height: 1.5;
}

.return-important-box {
  margin-top: 15px;
  padding: 17px;

  display: flex;
  align-items: flex-start;

  gap: 12px;

  border-left: 4px solid var(--aa-primary);

  background: #faf5f5;
}

.return-important-box > div {
  flex: 0 0 27px;

  width: 27px;
  height: 27px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--aa-primary);
  color: #fff;

  font-size: .7rem;
  font-weight: 900;
}

.return-important-box p {
  margin: 2px 0 0;

  color: #666;

  font-size: .7rem;
  line-height: 1.55;
}


/* ==========================================
   BUTTONS
========================================== */

.return-process-actions {
  margin-top: 28px;

  display: flex;
  justify-content: flex-end;
}

.return-process-actions--split {
  justify-content: space-between;

  gap: 15px;
}

.return-next-button, 
.return-secondary-button, 
.return-complete-button {
  min-height: 48px;

  padding: 0 19px;

  border: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 25px;

  font-family: inherit;
  font-weight: 800;

  cursor: pointer;
}

.return-next-button, 
.return-complete-button {
  background: var(--aa-primary);
  color: #fff;
}

.return-next-button:hover, 
.return-complete-button:hover {
  background: var(--aa-primary-dark);
}

.return-secondary-button {
  border: 1px solid #ccc;

  background: #fff;
  color: #555;
}

.return-next-button:disabled, 
.return-complete-button:disabled {
  background: #ccc;
  color: #777;

  cursor: not-allowed;
}


/* ==========================================
   UNLOAD
========================================== */

.return-unload-visual {
  padding: 40px 25px;

  background: var(--aa-light);

  text-align: center;
}

.return-unload-icon {
  width: 60px;
  height: 60px;

  margin: 0 auto 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(143,29,44,.1);
  color: var(--aa-primary);

  font-size: 1.3rem;
  font-weight: 900;
}

.return-unload-visual h3 {
  margin: 0 0 7px;
}

.return-unload-visual p {
  max-width: 500px;

  margin: 0 auto;

  color: var(--aa-muted);

  font-size: .76rem;
  line-height: 1.6;
}

.return-instruction-grid {
  margin-top: 20px;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 10px;
}

.return-instruction-grid > div {
  padding: 14px;

  display: flex;
  align-items: flex-start;

  gap: 9px;

  border: 1px solid var(--aa-border);
}

.return-instruction-grid span {
  flex: 0 0 20px;

  width: 20px;
  height: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(143,29,44,.1);
  color: var(--aa-primary);

  font-size: .55rem;
  font-weight: 900;
}

.return-instruction-grid p {
  margin: 1px 0 0;

  color: #666;

  font-size: .7rem;
  line-height: 1.5;
}


/* ==========================================
   CHECKBOXES
========================================== */

.return-confirm-box {
  position: relative;

  margin-top: 15px;
  padding: 16px;

  border: 1px solid var(--aa-border);

  display: flex;
  align-items: flex-start;

  gap: 12px;

  color: #555;

  font-size: .75rem;
  line-height: 1.5;

  cursor: pointer;
}

.return-confirm-box input {
  position: absolute;

  opacity: 0;
  pointer-events: none;
}

.return-custom-checkbox {
  flex: 0 0 21px;

  width: 21px;
  height: 21px;

  border: 2px solid #ccc;

  display: flex;
  align-items: center;
  justify-content: center;
}

.return-confirm-box input:checked +
.return-custom-checkbox {
  border-color: var(--aa-primary);

  background: var(--aa-primary);
}

.return-confirm-box input:checked +
.return-custom-checkbox::after {
  content: "✓";

  color: #fff;

  font-size: .65rem;
  font-weight: 900;
}


/* ==========================================
   RETURN ITEMS
========================================== */

.return-items {
  border-top: 1px solid var(--aa-border);
}

.return-item {
  position: relative;

  padding: 17px 4px;

  display: flex;
  align-items: center;

  gap: 14px;

  border-bottom: 1px solid var(--aa-border);

  cursor: pointer;
}

.return-item__quantity {
  flex: 0 0 44px;

  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--aa-light);
  color: var(--aa-primary);

  font-size: .85rem;
  font-weight: 900;
}

.return-item__details {
  flex: 1;

  display: flex;
  flex-direction: column;

  gap: 3px;
}

.return-item__details strong {
  font-size: .8rem;
}

.return-item__details span {
  color: #888;

  font-size: .67rem;
}

.return-item input {
  position: absolute;

  opacity: 0;
}

.return-item-checkbox {
  width: 27px;
  height: 27px;

  border: 2px solid #ccc;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: transparent;

  font-size: .6rem;
  font-weight: 900;
}

.return-item input:checked +
.return-item-checkbox {
  border-color: var(--aa-primary);

  background: var(--aa-primary);
  color: #fff;
}


/* QUESTION */

.return-question {
  margin-top: 24px;
  padding: 20px;

  background: var(--aa-light);
}

.return-question > strong {
  font-size: .8rem;
}

.return-question > p {
  margin: 4px 0 15px;

  color: #777;

  font-size: .7rem;
  line-height: 1.55;
}

.return-answer-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 10px;
}

.return-answer-buttons label {
  position: relative;

  cursor: pointer;
}

.return-answer-buttons input {
  position: absolute;

  opacity: 0;
}

.return-answer-buttons span {
  min-height: 44px;

  padding: 0 12px;

  border: 1px solid #ccc;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;

  color: #555;

  text-align: center;

  font-size: .68rem;
  font-weight: 800;
}

.return-answer-buttons input:checked + span {
  border-color: var(--aa-primary);

  background: var(--aa-primary);
  color: #fff;
}

.return-issue-box {
  margin-top: 15px;
}

.return-issue-box label {
  display: block;

  margin-bottom: 7px;

  font-size: .72rem;
  font-weight: 800;
}

.return-issue-box textarea {
  width: 100%;

  padding: 12px;

  border: 1px solid #ccc;

  font: inherit;

  resize: vertical;
}


/* ==========================================
   PHOTO
========================================== */

.return-photo-instructions {
  padding: 20px;

  display: flex;

  gap: 15px;

  background: var(--aa-light);
}

.return-camera-icon {
  flex: 0 0 45px;

  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(143,29,44,.1);
  color: var(--aa-primary);

  font-size: 1.2rem;
}

.return-photo-instructions strong {
  font-size: .77rem;
}

.return-photo-instructions ul {
  margin: 7px 0 0;
  padding-left: 18px;

  color: #777;

  font-size: .7rem;
  line-height: 1.7;
}

.return-photo-upload {
  margin-top: 20px;

  border: 2px dashed #ccc;

  background: #fafafa;
}

.return-upload-empty {
  padding: 50px 25px;

  text-align: center;
}

.return-upload-icon {
  width: 55px;
  height: 55px;

  margin: 0 auto 13px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(143,29,44,.1);
  color: var(--aa-primary);

  font-size: 1.4rem;
}

.return-upload-empty h3 {
  margin: 0 0 5px;

  font-size: 1rem;
}

.return-upload-empty p {
  margin: 0 auto 18px;

  max-width: 390px;

  color: #888;

  font-size: .7rem;
  line-height: 1.5;
}

.return-photo-button {
  min-height: 43px;

  padding: 0 17px;

  border: 0;

  background: var(--aa-primary);
  color: #fff;

  font-family: inherit;
  font-size: .72rem;
  font-weight: 800;

  cursor: pointer;
}

.return-upload-preview img {
  width: 100%;
  max-height: 430px;

  display: block;

  object-fit: contain;

  background: #222;
}

.return-upload-preview__footer {
  padding: 15px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;

  background: #fff;
}

.return-upload-preview__footer > div {
  display: flex;
  flex-direction: column;

  gap: 2px;
}

.return-photo-success {
  color: var(--aa-primary);

  font-size: .72rem;
  font-weight: 900;
}

.return-upload-preview__footer small {
  color: #888;

  font-size: .62rem;
}

.return-upload-preview__footer button {
  border: 0;

  background: none;
  color: var(--aa-primary);

  font-size: .68rem;
  font-weight: 800;

  cursor: pointer;
}

.return-submit-error {
  margin-top: 17px;
  padding: 13px;

  border-left: 4px solid #b3261e;

  background: #fff1f0;
  color: #8d1b15;

  font-size: .74rem;
}


/* ==========================================
   SUCCESS
========================================== */

.return-success-card {
  padding-top: 55px;
  padding-bottom: 55px;

  text-align: center;
}

.return-success-icon {
  width: 68px;
  height: 68px;

  margin: 0 auto 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--aa-primary);
  color: #fff;

  font-size: 1.4rem;
  font-weight: 900;
}

.return-success-card h2 {
  margin: 5px 0 8px;

  font-size: 2rem;
}

.return-success-card > p {
  max-width: 540px;

  margin: 0 auto;

  color: var(--aa-muted);

  line-height: 1.6;
}

.return-status-panel {
  max-width: 540px;

  margin: 28px auto;

  display: grid;
  grid-template-columns: 1fr 1fr;

  border: 1px solid var(--aa-border);
}

.return-status-panel div {
  padding: 18px;

  display: flex;
  flex-direction: column;

  gap: 4px;
}

.return-status-panel div:first-child {
  border-right: 1px solid var(--aa-border);
}

.return-status-panel span {
  color: #999;

  font-size: .55rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.return-status-panel strong {
  font-size: .76rem;
}

.return-inspection-notice {
  max-width: 620px;

  margin: 0 auto 25px;
  padding: 18px;

  display: flex;
  align-items: flex-start;

  gap: 12px;

  background: var(--aa-light);

  text-align: left;
}

.return-inspection-notice > div {
  flex: 0 0 27px;

  width: 27px;
  height: 27px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--aa-primary);
  color: #fff;

  font-size: .7rem;
  font-weight: 900;
}

.return-inspection-notice p {
  margin: 1px 0 0;

  color: #666;

  font-size: .7rem;
  line-height: 1.55;
}

.return-dashboard-button {
  min-height: 46px;

  padding: 0 20px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: var(--aa-primary);
  color: #fff;

  text-decoration: none;

  font-size: .73rem;
  font-weight: 800;
}


/* ==========================================
   SIDEBAR
========================================== */

.return-process-sidebar {
  display: grid;

  gap: 15px;
}

.return-sidebar-card, 
.return-sidebar-help {
  padding: 22px;

  border: 1px solid var(--aa-border);

  background: #fff;
}

.return-sidebar-label {
  display: block;

  margin-bottom: 5px;

  color: var(--aa-primary);

  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.return-sidebar-order {
  font-size: 1rem;
}

.return-sidebar-divider {
  height: 1px;

  margin: 17px 0;

  background: var(--aa-border);
}

.return-sidebar-detail {
  display: flex;
  flex-direction: column;

  gap: 2px;
}

.return-sidebar-detail small {
  color: #999;

  font-size: .54rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.return-sidebar-detail strong {
  font-size: .73rem;
}

.return-sidebar-detail span {
  color: var(--aa-primary);

  font-size: .67rem;
  font-weight: 800;
}

.return-sidebar-item {
  padding: 11px 0;

  display: flex;
  align-items: center;

  gap: 10px;

  border-bottom: 1px solid var(--aa-border);
}

.return-sidebar-item:last-child {
  border-bottom: 0;
}

.return-sidebar-item > span {
  flex: 0 0 31px;

  width: 31px;
  height: 31px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--aa-light);
  color: var(--aa-primary);

  font-size: .7rem;
  font-weight: 900;
}

.return-sidebar-item p {
  margin: 0;

  color: #555;

  font-size: .7rem;
}

.return-sidebar-help {
  border-left: 3px solid var(--aa-primary);
}

.return-sidebar-help strong {
  font-size: .78rem;
}

.return-sidebar-help p {
  margin: 5px 0 13px;

  color: #777;

  font-size: .67rem;
  line-height: 1.5;
}

.return-sidebar-help a {
  color: var(--aa-primary);

  text-decoration: none;

  font-size: .7rem;
  font-weight: 900;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 900px) {

  .return-process-layout {
    grid-template-columns: 1fr;
  }

  .return-process-sidebar {
    grid-template-columns: 1fr 1fr;
  }

  .return-sidebar-help {
    grid-column: 1 / -1;
  }

}

@media (max-width: 650px) {

  .return-process-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .return-step-indicator {
    flex-basis: 50px;
  }

  .return-step-indicator strong {
    font-size: .53rem;
  }

  .return-process-content {
    padding-top: 20px;
  }

  .return-process-card {
    padding: 23px 18px;
  }

  .return-location-photo {
    height: 260px;
  }

  .return-instruction-grid {
    grid-template-columns: 1fr;
  }

  .return-answer-buttons {
    grid-template-columns: 1fr;
  }

  .return-process-actions--split {
    flex-direction: column-reverse;
  }

  .return-next-button, 
  .return-secondary-button, 
  .return-complete-button {
    width: 100%;
  }

  .return-next-button, 
  .return-complete-button {
    justify-content: space-between;
  }

  .return-process-sidebar {
    grid-template-columns: 1fr;
  }

  .return-sidebar-help {
    grid-column: auto;
  }

  .return-status-panel {
    grid-template-columns: 1fr;
  }

  .return-status-panel div:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--aa-border);
  }

  .return-upload-preview__footer {
    align-items: flex-start;
    flex-direction: column;
  }

}

/* ==========================================================
   RENT PAGE
========================================================== */

.rent-page {
  min-height: 100vh;

  background: #f6f6f6;
}

.rent-container {
  width: min(1180px, calc(100% - 40px));

  margin: 0 auto;
}


/* ==========================================================
   HEADING
========================================================== */



.rent-eyebrow {
  display: block;

  margin-bottom: 7px;

  color: #8f1d2c;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: .1em;
}






/* ==========================================================
   RENTAL PERIOD
========================================================== */



.rent-period-card {
  min-height: 90px;

  padding: 17px 20px;

  box-sizing: border-box;

  border: 1px solid #ddd;

  display: flex;
  align-items: center;

  background: #fff;
}

.rent-period-item {
  flex: 1;

  display: flex;
  align-items: center;

  gap: 12px;
}

.rent-period-icon {
  flex: 0 0 36px;

  width: 36px;
  height: 36px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(143, 29, 44, .08);
  color: #8f1d2c;

  font-size: 16px;
  font-weight: 800;
}

.rent-period-item > div {
  display: flex;
  flex-direction: column;

  gap: 4px;
}

.rent-period-label {
  color: #999;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: .09em;
}

.rent-period-item strong {
  color: #333;

  font-size: 14px;
}

.rent-period-divider {
  width: 1px;
  height: 42px;

  margin: 0 25px;

  background: #e4e4e4;
}

.rent-change-dates {
  min-height: 40px;

  padding: 0 15px;

  border: 1px solid #d5d5d5;

  background: #fff;
  color: #555;

  font-family: inherit;
  font-size: 12px;
  font-weight: 700;

  cursor: pointer;
}

.rent-change-dates:hover {
  border-color: #8f1d2c;

  color: #8f1d2c;
}


/* ==========================================================
   PRODUCTS
========================================================== */

.rent-products-section {
  padding: 35px 0 110px;
}

.rent-products-header {
  margin-bottom: 18px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 20px;
}

.rent-products-header h2 {
  margin: 0;

  color: #282828;

  font-size: 28px;
}

.rent-category-filters {
  display: flex;

  gap: 6px;
}

.rent-category-button {
  min-height: 38px;

  padding: 0 16px;

  border: 1px solid #d7d7d7;

  background: #fff;
  color: #666;

  font-family: inherit;
  font-size: 12px;
  font-weight: 700;

  cursor: pointer;
}

.rent-category-button:hover {
  border-color: #aaa;
}

.rent-category-button.active {
  border-color: #8f1d2c;

  background: #8f1d2c;
  color: #fff;
}


/* ==========================================================
   PICKUP NOTICE
========================================================== */

.rent-pickup-notice {
  margin-bottom: 22px;
  padding: 15px 17px;

  border: 1px solid #dfdfdf;

  display: flex;
  align-items: center;

  gap: 12px;

  background: #fff;
}

.rent-pickup-notice-icon {
  flex: 0 0 32px;

  width: 32px;
  height: 32px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #edf7f0;
  color: #34764a;

  font-size: 13px;
  font-weight: 900;
}

.rent-pickup-notice strong {
  display: block;

  margin-bottom: 3px;

  color: #333;

  font-size: 13px;
}

.rent-pickup-notice span {
  color: #777;

  font-size: 12px;
}


/* ==========================================================
   PRODUCT LIST
========================================================== */

.rent-product-grid {
  display: flex;
  flex-direction: column;

  gap: 16px;
}


.rent-product-card {
  overflow: hidden;

  border: 1px solid #dedede;
  border-radius: 4px;

  background: #fff;

  transition:
    border-color .2s ease,
    box-shadow .2s ease;
}


.rent-product-card:hover {
  border-color: #cfcfcf;

  box-shadow:
    0 4px 16px
    rgba(0, 0, 0, .045);
}


.rent-product-main {
  min-height: 245px;

  padding: 24px 28px;

  display: grid;

  grid-template-columns:
    250px
    minmax(0, 1fr)
    200px;

  gap: 40px;
}


/* ==========================================================
   PRODUCT LEFT
========================================================== */

.rent-product-left {
  min-width: 0;
}


.rent-product-title {
  margin-bottom: 12px;
}


.rent-product-title h3 {
  margin: 0;

  color: #292929;

  font-size: 17px;
  line-height: 1.3;
}


.rent-product-image {
  width: 100%;
  height: 175px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background: #fff;
}

.rent-product-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: contain;
  object-position: center;
}


/* ==========================================================
   PRODUCT DETAILS
========================================================== */

.rent-product-details {
  min-width: 0;

  padding-top: 40px;
}


.rent-product-description {
  max-width: 600px;

  color: #333;

  font-size: 14px;
  line-height: 1.65;

  white-space: pre-line;
}


.rent-product-description--empty {
  color: #888;
}


.rent-product-note {
  margin-top: 15px;
  padding: 10px 12px;

  border-left: 3px solid #8f1d2c;

  background: #f8f8f8;
  color: #666;

  font-size: 11px;
  line-height: 1.5;
}


.rent-product-stock {
  margin-top: 18px;

  color: #39764c;

  font-size: 12px;
  font-weight: 800;
}

.rent-product-stock--unavailable {
  color: #a33a3a;
}


/* ==========================================================
   PRODUCT ACTIONS
========================================================== */

.rent-product-actions {
  padding-top: 0;

  display: flex;
  flex-direction: column;
  align-items: stretch;
}


.rent-product-price {
  margin-bottom: 20px;

  color: #222;

  font-size: 20px;
  font-weight: 800;

  text-align: right;
}


.rent-product-price span {
  display: block;

  margin-top: 2px;

  color: #888;

  font-size: 11px;
  font-weight: 500;
}


.rent-product-select {
  width: 100%;
  min-height: 44px;

  margin-top: auto;
  padding: 0 20px;

  border: 2px solid #8f1d2c;
  border-radius: 4px;

  background: #fff;
  color: #8f1d2c;

  font-family: inherit;
  font-size: 12px;
  font-weight: 800;

  cursor: pointer;

  transition:
    background .18s ease,
    color .18s ease,
    border-color .18s ease;
}


.rent-product-select:hover:not(:disabled) {
  background: #8f1d2c;
  color: #fff;
}


.rent-product-select:disabled {
  border-color: #d7d7d7;

  background: #f5f5f5;
  color: #999;

  cursor: not-allowed;
}


.rent-product-selected-label {
  margin-top: auto;
  margin-bottom: 7px;

  color: #39764c;

  font-size: 10px;
  font-weight: 800;

  text-align: center;

  text-transform: uppercase;
  letter-spacing: .06em;
}


/* ==========================================================
   QUANTITY
========================================================== */

.rent-quantity-control {
  width: 100%;

  display: grid;

  grid-template-columns:
    42px
    1fr
    42px;

  align-items: center;

  border: 1px solid #d7d7d7;
}


.rent-quantity-button {
  width: 42px;
  height: 42px;

  border: 0;

  background: #fff;
  color: #333;

  font-family: inherit;
  font-size: 19px;

  cursor: pointer;
}


.rent-quantity-button:hover:not(:disabled) {
  background: #f4f4f4;
}


.rent-quantity-button:disabled {
  color: #ccc;

  cursor: not-allowed;
}


.rent-quantity-value {
  color: #333;

  font-size: 13px;
  font-weight: 800;

  text-align: center;
}


/* ==========================================================
   LOADING / ERROR
========================================================== */

.rent-loading, 
.rent-error, 
.rent-no-products {
  min-height: 260px;

  padding: 40px;

  box-sizing: border-box;

  border: 1px solid #dedede;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background: #fff;

  text-align: center;
}

.rent-loading-spinner {
  width: 28px;
  height: 28px;

  margin-bottom: 14px;

  border: 3px solid #e2e2e2;
  border-top-color: #8f1d2c;
  border-radius: 50%;

  animation:
    rent-spin .7s linear infinite;
}

@keyframes rent-spin {

  to {
    transform: rotate(360deg);
  }

}

.rent-loading strong, 
.rent-error strong, 
.rent-no-products strong {
  color: #333;

  font-size: 15px;
}

.rent-loading span, 
.rent-error span, 
.rent-no-products span {
  max-width: 450px;

  margin-top: 5px;

  color: #888;

  font-size: 12px;
  line-height: 1.5;
}

.rent-error button {
  margin-top: 16px;

  min-height: 39px;

  padding: 0 15px;

  border: 0;

  background: #8f1d2c;
  color: #fff;

  font-family: inherit;
  font-size: 12px;
  font-weight: 700;

  cursor: pointer;
}


/* ==========================================================
   CART BAR
========================================================== */

.rent-cart-bar {
  position: fixed;

  right: 0;
  bottom: 0;
  left: 0;

  z-index: 500;

  border-top: 1px solid #ddd;

  background: #fff;

  box-shadow:
    0 -6px 20px
    rgba(0, 0, 0, .08);
}

.rent-cart-bar-inner {
  width: min(1180px, calc(100% - 40px));

  min-height: 76px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

.rent-cart-bar-inner > div {
  display: flex;
  flex-direction: column;

  gap: 2px;
}

.rent-cart-bar-inner span {
  color: #777;

  font-size: 11px;
}

.rent-cart-bar-inner strong {
  color: #222;

  font-size: 20px;
}

#rent-view-cart {
  min-height: 44px;

  padding: 0 20px;

  border: 0;

  display: flex;
  align-items: center;

  gap: 18px;

  background: #8f1d2c;
  color: #fff;

  font-family: inherit;
  font-size: 13px;
  font-weight: 800;

  cursor: pointer;
}


/* ==========================================================
   CART DRAWER
========================================================== */

.rent-cart-overlay {
  position: fixed;

  inset: 0;

  z-index: 800;

  visibility: hidden;

  background: rgba(0, 0, 0, .42);

  opacity: 0;

  transition:
    opacity .2s ease,
    visibility .2s ease;
}

.rent-cart-overlay.active {
  visibility: visible;

  opacity: 1;
}

.rent-cart-drawer {
  position: fixed;

  top: 0;
  right: 0;
  bottom: 0;

  z-index: 900;

  width: min(470px, 100%);

  box-sizing: border-box;

  display: flex;
  flex-direction: column;

  background: #fff;

  box-shadow:
    -10px 0 30px
    rgba(0, 0, 0, .12);

  transform: translateX(105%);

  transition:
    transform .25s ease;
}

.rent-cart-drawer.active {
  transform: translateX(0);
}

.rent-cart-header {
  padding: 22px;

  border-bottom: 1px solid #e4e4e4;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rent-cart-header h2 {
  margin: 0;

  color: #222;

  font-size: 24px;
}

.rent-cart-close {
  width: 40px;
  height: 40px;

  border: 1px solid #ddd;

  background: #fff;
  color: #555;

  font-size: 24px;

  cursor: pointer;
}


/* CART PERIOD */

.rent-cart-period {
  padding: 14px 22px;

  border-bottom: 1px solid #e5e5e5;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 15px;

  background: #fafafa;
}

.rent-cart-period div {
  display: flex;
  flex-direction: column;

  gap: 3px;
}

.rent-cart-period span {
  color: #999;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: .08em;
}

.rent-cart-period strong {
  color: #444;

  font-size: 11px;
}


/* CART ITEMS */

.rent-cart-items {
  flex: 1;

  overflow-y: auto;

  padding: 0 22px;
}

.rent-cart-item {
  padding: 17px 0;

  border-bottom: 1px solid #eee;

  display: grid;
  grid-template-columns: 60px 1fr;

  gap: 12px;
}

.rent-cart-item-image {
  width: 60px;
  height: 60px;

  overflow: hidden;

  background: #eee;
}

.rent-cart-item-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}

.rent-cart-item-info strong {
  display: block;

  color: #333;

  font-size: 13px;
}

.rent-cart-item-price {
  margin-top: 3px;

  color: #888;

  font-size: 11px;
}

.rent-cart-item-bottom {
  margin-top: 9px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rent-cart-item-quantity {
  display: flex;
  align-items: center;

  border: 1px solid #ddd;
}

.rent-cart-item-quantity button {
  width: 29px;
  height: 29px;

  border: 0;

  background: #fff;

  cursor: pointer;
}

.rent-cart-item-quantity span {
  width: 30px;

  font-size: 11px;
  font-weight: 800;

  text-align: center;
}

.rent-cart-item-total {
  color: #333;

  font-size: 12px;
  font-weight: 800;
}


/* EMPTY CART */

.rent-cart-empty {
  flex: 1;

  padding: 50px 25px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.rent-cart-empty strong {
  color: #444;

  font-size: 14px;
}

.rent-cart-empty span {
  margin-top: 4px;

  color: #999;

  font-size: 12px;
}


/* CART FOOTER */

.rent-cart-footer {
  padding: 18px 22px 22px;

  border-top: 1px solid #ddd;

  background: #fff;
}

.rent-cart-total-row {
  margin-bottom: 9px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

.rent-cart-total-row span {
  color: #666;

  font-size: 12px;
}

.rent-cart-total-row strong {
  color: #333;

  font-size: 14px;
}

.rent-free {
  color: #39764c !important;
}

.rent-cart-total-note {
  margin: 12px 0 15px;

  color: #999;

  font-size: 10px;
  line-height: 1.45;
}

.rent-pickup-confirmation {
  margin-bottom: 14px;
  padding: 12px;

  border: 1px solid #e1e1e1;

  display: flex;
  align-items: flex-start;

  gap: 9px;

  background: #fafafa;

  cursor: pointer;
}

.rent-pickup-confirmation input {
  margin-top: 2px;
}

.rent-pickup-confirmation span {
  color: #666;

  font-size: 11px;
  line-height: 1.45;
}

.rent-checkout-button {
  width: 100%;
  min-height: 49px;

  padding: 0 17px;

  border: 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #8f1d2c;
  color: #fff;

  font-family: inherit;
  font-size: 13px;
  font-weight: 800;

  cursor: pointer;
}

.rent-checkout-button:disabled {
  opacity: .6;

  cursor: wait;
}

.rent-checkout-error {
  margin-bottom: 12px;
  padding: 10px 12px;

  background: #fff0f0;
  color: #a33131;

  font-size: 11px;
  line-height: 1.45;
}

.rent-secure-checkout {
  margin-top: 10px;

  color: #aaa;

  font-size: 10px;

  text-align: center;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 900px) {

  .rent-product-main {
  grid-template-columns:
    220px
    minmax(0, 1fr)
    180px;

  gap: 24px;
}

}


@media (max-width: 700px) {

  .rent-container {
    width:
      min(100% - 28px, 1180px);
  }

  

  .rent-period-card {
    align-items: stretch;
    flex-direction: column;

    gap: 15px;
  }

  .rent-period-divider {
    width: 100%;
    height: 1px;

    margin: 0;
  }

  .rent-change-dates {
    width: 100%;
  }

  .rent-products-header {
    align-items: stretch;
    flex-direction: column;
  }

  .rent-category-filters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

.rent-product-main {
  padding: 18px;

  grid-template-columns: 1fr;

  gap: 18px;
}


.rent-product-title {
  margin-bottom: 10px;
}


.rent-product-image {
  height: 190px;

  justify-content: center;
}


.rent-product-image img {
  object-position: center;
}


.rent-product-details {
  padding-top: 0;
}


.rent-product-price {
  margin-bottom: 15px;

  text-align: left;
}


.rent-product-actions {
  padding-top: 0;
}


.rent-product-select {
  min-height: 48px;
}

  .rent-cart-bar-inner {
    width: calc(100% - 28px);
  }

}


@media (max-width: 450px) {

  .rent-cart-bar-inner {
    min-height: 70px;
  }

  #rent-view-cart {
    padding: 0 15px;
  }

}

[hidden] {
  display: none !important;
}

/* ==========================================================
   ORDER COMPLETE
========================================================== */

.order-complete-page {
  min-height: 70vh;
  background: var(--aa-light);
}

.order-complete-section {
  padding: 80px 0;
}

.order-complete-card {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px;
  background: var(--aa-white);
  border: 1px solid var(--aa-border);
  border-radius: 18px;
  text-align: center;
}

.order-complete-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--aa-primary);
  color: #fff;
  font-size: 30px;
  font-weight: 700;
}

.order-complete-label {
  display: block;
  margin-bottom: 10px;
  color: var(--aa-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.order-complete-card h1 {
  margin: 0 0 16px;
  color: var(--aa-dark);
}

.order-complete-card p {
  max-width: 520px;
  margin: 0 auto 24px;
  color: var(--aa-muted);
  line-height: 1.65;
}

.order-complete-number {
  margin: 28px 0;
  padding: 20px;
  background: var(--aa-light);
  border-radius: 12px;
}

.order-complete-number span {
  display: block;
  margin-bottom: 4px;
  color: var(--aa-muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.order-complete-number strong {
  color: var(--aa-dark);
  font-size: 24px;
}

.order-complete-note {
  font-size: 14px;
}

@media (max-width: 700px) {

  .order-complete-section {
    padding: 40px 0;
  }

  .order-complete-card {
    padding: 32px 22px;
  }

}

/* ==========================================
   HELP PAGE
========================================== */




/* ==========================================
   HELP OVERVIEW
========================================== */


















/* ==========================================
   HELP CATEGORIES
========================================== */














/* ==========================================
   FAQ
========================================== */



.help-faq-item {
  border-bottom: 1px solid #d9d9d9;
}

.help-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  width: 100%;
  min-height: 72px;
  padding: 20px 4px;

  border: 0;
  background: transparent;

  color: #171719;

  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  text-align: left;

  cursor: pointer;
}

.help-faq-question:hover {
  color: #941d2c;
}

.help-faq-plus {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 32px;

  width: 32px;
  height: 32px;

  border-radius: 50%;

  background: #f8e9eb;
  color: #941d2c;

  font-size: 20px;
  font-weight: 400;

  transition:
    transform .2s ease,
    background .2s ease,
    color .2s ease;
}

.help-faq-answer {
  display: none;

  max-width: 650px;
  padding: 0 55px 24px 4px;
}

.help-faq-answer p {
  margin: 0;

  color: #626262;
  font-size: 14px;
  line-height: 1.75;
}

.help-faq-item.active .help-faq-answer {
  display: block;
}

.help-faq-item.active .help-faq-plus {
  transform: rotate(45deg);
  background: #941d2c;
  color: #fff;
}


/* ==========================================
   CONTACT CTA
========================================== */
























/* ==========================================
   HELP MOBILE
========================================== */




@media (max-width: 600px) {

  

  

  

  .help-faq-question {
    min-height: 66px;
    padding: 18px 2px;
  }

  

  

  

}

/* ==========================================================
   RENT PAGE - BROWSE / DATE SEARCH
========================================================== */

.rent-browse-hero {
  position: relative;
  padding: 48px 0 38px;

  background:
    linear-gradient(
      rgba(12, 12, 14, .58),
      rgba(12, 12, 14, .58)
    ),
    url("/images/rent/rent-hero.jpg");

  background-size: cover;
  background-position: center 55%;
  background-repeat: no-repeat;

  border-bottom: 1px solid #dedede;
}

.rent-browse-intro {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.rent-browse-intro h1 {
  margin: 7px 0 10px;
  color: #fff;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -1.2px;
}

.rent-browse-intro p {
  max-width: 650px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .9);
  font-size: 15px;
  line-height: 1.65;
}

.rent-browse-intro .rent-eyebrow {
  color: #fff;
}

/* SEARCH CARD */

.rent-search-card {
  max-width: 1120px;
  margin: 0 auto;

  background: rgba(255, 255, 255, .98);

  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 5px;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, .22);
}

.rent-search-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 20px 24px 17px;
  border-bottom: 1px solid #e4e4e4;
}

.rent-search-label {
  display: block;
  margin-bottom: 3px;
  color: #8f1d2c;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px;
}

.rent-search-heading h2 {
  margin: 0;
  color: #222;
  font-size: 21px;
  line-height: 1.2;
}

.rent-search-badge {
  flex-shrink: 0;
  padding: 7px 11px;
  border-radius: 3px;
  background: #f5eeee;
  color: #8f1d2c;
  font-size: 11px;
  font-weight: 800;
}


/* FORM */

.rent-search-form {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, .8fr)
    minmax(0, 1fr)
    minmax(0, .8fr)
    auto;
  align-items: end;
  gap: 14px;
  padding: 22px 24px 24px;
}

.rent-search-field {
  min-width: 0;
}

.rent-search-field label {
  display: block;
  margin-bottom: 7px;
  color: #333;
  font-size: 11px;
  font-weight: 800;
}

.rent-search-field input, 
.rent-search-field select {
  width: 100%;
  height: 46px;
  box-sizing: border-box;
  padding: 0 12px;
  border: 1px solid #bdbdbd;
  border-radius: 3px;
  outline: none;
  background: #fff;
  color: #262626;
  font-family: inherit;
  font-size: 13px;
}

.rent-search-field input:focus, 
.rent-search-field select:focus {
  border-color: #8f1d2c;
  box-shadow: 0 0 0 2px rgba(143, 29, 44, .08);
}

.rent-search-submit-wrap {
  display: flex;
}

.rent-search-submit {
  height: 46px;
  min-width: 170px;
  padding: 0 21px;
  border: 0;
  border-radius: 3px;
  background: #8f1d2c;
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.rent-search-submit:hover {
  background: #741724;
}

.rent-search-error {
  grid-column: 1 / -1;
  margin: 0;
}


/* SELECTED DATES */

#rent-selected-period {
  max-width: 1120px;
  margin: 0 auto;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 1000px) {

  .rent-search-form {
    grid-template-columns: 1fr 1fr;
  }

  .rent-search-submit-wrap {
    grid-column: 1 / -1;
  }

  .rent-search-submit {
    width: 100%;
  }

}


@media (max-width: 650px) {

  .rent-browse-hero {
    padding: 30px 0 24px;
  }

  .rent-browse-intro {
    text-align: left;
  }

  .rent-search-heading {
    align-items: flex-start;
    padding: 18px;
  }

  .rent-search-badge {
    display: none;
  }

  .rent-search-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .rent-search-submit-wrap {
    grid-column: auto;
  }

}

/* ==========================================================
   HELP PAGE - NEW DESIGN
========================================================== */


/* ==========================================================
   HERO
========================================================== */

.help-new-hero {
    position: relative;
    min-height: 470px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #171719;
}

.help-new-hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.help-new-hero__background img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}

.help-new-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(10, 10, 12, .91) 0%,
            rgba(10, 10, 12, .82) 24%,
            rgba(10, 10, 12, .55) 43%,
            rgba(10, 10, 12, .20) 62%,
            rgba(10, 10, 12, .03) 82%
        );
}

.help-new-hero .section-container {
    position: relative;
    z-index: 2;

    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 0;
}

.help-new-hero__content {
    width: 100%;
    max-width: 570px;

    padding: 70px 0;
}

.help-new-hero__content .eyebrow {
    display: block;

    margin: 0 0 13px;

    color: #fff;

    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 1.8px;
}

.help-new-hero__content h1 {
    margin: 0 0 17px;

    color: #fff;

    font-size: clamp(46px, 5vw, 64px);
    font-weight: 800;
    line-height: .98;
    letter-spacing: -2px;
}

.help-new-hero__content p {
    max-width: 525px;

    margin: 0;

    color: rgba(255, 255, 255, .88);

    font-size: 15px;
    line-height: 1.65;
}


/* HERO BUTTONS */

.help-new-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 26px;
}

.help-new-hero__primary, 
.help-new-hero__secondary {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 0 21px;

    border: 2px solid #fff;
    border-radius: 3px;

    font-size: 16px;
    font-weight: 900;

    text-decoration: none;

    transition:
        background .18s ease,
        color .18s ease,
        border-color .18s ease;
}

.help-new-hero__primary {
    border-color: #8f1d2c;

    background: #8f1d2c;
    color: #fff;
}

.help-new-hero__primary:hover {
    border-color: #fff;

    background: #fff;
    color: #8f1d2c;
}

.help-new-hero__primary span {
    font-size: 17px;
}

.help-new-hero__secondary {
    background: rgba(0, 0, 0, .12);
    color: #fff;

    backdrop-filter: blur(3px);
}

.help-new-hero__secondary:hover {
    background: #fff;
    color: #202024;
}


/* ==========================================================
   HELP TOPICS
========================================================== */

.help-topics-new {
    padding: 76px 0 82px;

    background: #f7f7f7;
}

.help-topics-new .section-heading {
    max-width: 670px;

    margin: 0 auto 37px;

    text-align: center;
}

.help-topics-new .section-heading h2 {
    margin: 7px 0 10px;

    color: #202024;

    font-size: clamp(30px, 4vw, 40px);
    line-height: 1.08;
    letter-spacing: -1px;
}

.help-topics-new .section-heading p {
    margin: 0;

    color: #6f6f6f;

    font-size: 13px;
    line-height: 1.6;
}


/* TOPIC GRID */

.help-topics-new__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 18px;
}


/* TOPIC CARD */

.help-topic-new {
    position: relative;

    min-height: 245px;

    display: flex;
    flex-direction: column;

    box-sizing: border-box;

    padding: 27px 25px 23px;

    overflow: hidden;

    border: 1px solid #dedede;
    border-radius: 5px;

    background: #fff;
    color: inherit;

    text-decoration: none;

    box-shadow:
        0 4px 14px rgba(0, 0, 0, .04);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.help-topic-new:hover {
    transform: translateY(-4px);

    border-color: #c9b0b4;

    box-shadow:
        0 13px 30px rgba(0, 0, 0, .09);
}

.help-topic-new__number {
    position: absolute;
    top: 20px;
    right: 21px;

    color: #d7d7d7;

    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.help-topic-new__icon {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    margin-bottom: 21px;

    border-radius: 50%;

    background: #8f1d2c;
    color: #fff;

    font-size: 17px;
    font-weight: 900;
}

.help-topic-new__content {
    padding-right: 8px;
}

.help-topic-new__label {
    display: block;

    margin-bottom: 6px;

    color: #8f1d2c;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.2px;
}

.help-topic-new__content h3 {
    margin: 0 0 8px;

    color: #242428;

    font-size: 18px;
    line-height: 1.2;
}

.help-topic-new__content p {
    margin: 0;

    color: #717171;

    font-size: 11px;
    line-height: 1.6;
}

.help-topic-new__arrow {
    margin-top: auto;
    padding-top: 18px;

    color: #8f1d2c;

    font-size: 19px;
    font-weight: 700;

    transition: transform .18s ease;
}

.help-topic-new:hover
.help-topic-new__arrow {
    transform: translateX(5px);
}


/* ==========================================================
   RESERVATION SHORTCUT
========================================================== */

.help-reservation-strip {
    background: #202024;
}

.help-reservation-strip__inner {
    min-height: 92px;

    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;

    gap: 17px;
}

.help-reservation-strip__icon {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #8f1d2c;
    color: #fff;

    font-size: 12px;
    font-weight: 900;
}

.help-reservation-strip__content {
    display: grid;
    gap: 3px;
}

.help-reservation-strip__content span {
    color: rgba(255, 255, 255, .55);

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.2px;
}

.help-reservation-strip__content strong {
    color: #fff;

    font-size: 16px;
    font-weight: 700;
}

.help-reservation-strip__button {
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 0 17px;

    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 3px;

    color: #fff;

    font-size: 16px;
    font-weight: 900;

    text-decoration: none;

    transition:
        background .18s ease,
        color .18s ease;
}

.help-reservation-strip__button:hover {
    background: #fff;
    color: #202024;
}


/* ==========================================================
   FAQ SECTIONS
========================================================== */

.help-faq-new {
    padding: 82px 0;

    scroll-margin-top: 120px;

    background: #fff;
}

.help-faq-new--alt {
    background: #f7f7f7;
}

.help-faq-new__layout {
    display: grid;
    grid-template-columns:
        minmax(260px, .65fr)
        minmax(0, 1.35fr);

    align-items: start;

    gap: 80px;
}


/* CATEGORY INTRO */

.help-faq-new__intro {
    position: sticky;
    top: 125px;
}

.help-faq-new__number {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    margin-bottom: 18px;

    border-radius: 50%;

    background: #8f1d2c;
    color: #fff;

    font-size: 11px;
    font-weight: 900;
}

.help-faq-new__intro .section-eyebrow {
    display: block;

    margin-bottom: 6px;

    color: #8f1d2c;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.3px;
}

.help-faq-new__intro h2 {
    margin: 0 0 14px;

    color: #222226;

    font-size: clamp(29px, 3.5vw, 38px);
    line-height: 1.04;
    letter-spacing: -1.2px;
}

.help-faq-new__intro p {
    max-width: 330px;

    margin: 0;

    color: #707070;

    font-size: 12px;
    line-height: 1.65;
}

.help-faq-new__intro > a {
    display: inline-block;

    margin-top: 19px;

    color: #8f1d2c;

    font-size: 14px;
    font-weight: 900;

    text-decoration: none;
}

.help-faq-new__intro > a:hover {
    text-decoration: underline;
}


/* ==========================================================
   FAQ ACCORDIONS
========================================================== */

.help-faq-new__questions {
    overflow: hidden;

    border: 1px solid #dedede;
    border-radius: 5px;

    background: #fff;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, .04);
}

.help-faq-item {
    margin: 0;

    border: 0;
    border-bottom: 1px solid #e5e5e5;

    background: #fff;
}

.help-faq-item:last-child {
    border-bottom: 0;
}


/* SUMMARY */

.help-faq-item summary {
    min-height: 68px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    box-sizing: border-box;

    padding: 19px 21px;

    cursor: pointer;

    color: #2b2b2e;

    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;

    list-style: none;

    transition:
        background .18s ease,
        color .18s ease;
}

.help-faq-item summary::-webkit-details-marker {
    display: none;
}

.help-faq-item summary::marker {
    display: none;
    content: "";
}

.help-faq-item summary:hover {
    background: #fafafa;
    color: #8f1d2c;
}


/* PLUS */

.help-faq-item summary > span {
    flex: 0 0 30px;

    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #f5ebed;
    color: #8f1d2c;

    font-size: 17px;
    font-weight: 500;
    line-height: 1;

    transition:
        transform .2s ease,
        background .2s ease,
        color .2s ease;
}

.help-faq-item[open]
summary > span {
    transform: rotate(45deg);

    background: #8f1d2c;
    color: #fff;
}

.help-faq-item[open]
summary {
    color: #8f1d2c;
}


/* ANSWER */

.help-faq-answer {
    padding:
        0 65px 22px
        21px;
}

.help-faq-answer p {
    margin: 0;

    color: #6c6c6c;

    font-size: 11px;
    line-height: 1.7;
}


/* ==========================================================
   CONTACT CTA
========================================================== */

.help-contact-new {
    padding: 0 0 80px;

    background: #fff;
}

.help-contact-new__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 45px;

    padding: 38px 40px;

    border-radius: 6px;

    background: #8f1d2c;

    box-shadow:
        0 10px 30px rgba(70, 12, 20, .12);
}

.help-contact-new .eyebrow {
    display: block;

    margin-bottom: 5px;

    color: rgba(255, 255, 255, .68);

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.help-contact-new h2 {
    margin: 0 0 7px;

    color: #fff;

    font-size: 27px;
    line-height: 1.1;
}

.help-contact-new p {
    max-width: 610px;

    margin: 0;

    color: rgba(255, 255, 255, .78);

    font-size: 11px;
    line-height: 1.6;
}


/* CONTACT BUTTONS */

.help-contact-new__actions {
    display: flex;
    align-items: center;
    gap: 9px;

    flex-shrink: 0;
}

.help-contact-new__primary, 
.help-contact-new__secondary {
    min-height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 18px;

    border: 2px solid #fff;
    border-radius: 3px;

    font-size: 16px;
    font-weight: 900;

    text-decoration: none;

    transition:
        background .18s ease,
        color .18s ease;
}

.help-contact-new__primary {
    background: #fff;
    color: #8f1d2c;
}

.help-contact-new__primary:hover {
    background: transparent;
    color: #fff;
}

.help-contact-new__secondary {
    background: transparent;
    color: #fff;
}

.help-contact-new__secondary:hover {
    background: #fff;
    color: #8f1d2c;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1000px) {

    .help-topics-new__grid {
        gap: 14px;
    }

    .help-faq-new__layout {
        gap: 50px;
    }

    .help-contact-new__inner {
        gap: 30px;
    }

}


/* ==========================================================
   SMALL TABLET
========================================================== */

@media (max-width: 820px) {

    /* HERO */

    .help-new-hero {
        min-height: 470px;
    }

    .help-new-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(10, 10, 12, .90) 0%,
                rgba(10, 10, 12, .72) 58%,
                rgba(10, 10, 12, .38) 100%
            );
    }

    .help-new-hero__content {
        max-width: 540px;

        padding: 58px 0;
    }


    /* TOPICS */

    .help-topics-new__grid {
        grid-template-columns: 1fr;
    }

    .help-topic-new {
        min-height: 0;

        display: grid;
        grid-template-columns: 48px 1fr auto;
        align-items: center;
        gap: 17px;

        padding: 22px;
    }

    .help-topic-new__number {
        display: none;
    }

    .help-topic-new__icon {
        margin: 0;
    }

    .help-topic-new__arrow {
        margin: 0;
        padding: 0;
    }


    /* FAQ */

    .help-faq-new {
        padding: 65px 0;
    }

    .help-faq-new__layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .help-faq-new__intro {
        position: static;

        max-width: 620px;
    }

    .help-faq-new__intro h2 br {
        display: none;
    }


    /* CONTACT */

    .help-contact-new__inner {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 600px) {

    /* HERO */

    .help-new-hero {
        min-height: 500px;
    }

    .help-new-hero .section-container {
        width: calc(100% - 28px);
    }

    .help-new-hero__background img {
        /*
           Staff/customer are near the middle-right,
           so keep them visible on narrow screens.
        */
        object-position: 57% center;
    }

    .help-new-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(10, 10, 12, .93) 0%,
                rgba(10, 10, 12, .78) 66%,
                rgba(10, 10, 12, .50) 100%
            );
    }

    .help-new-hero__content {
        max-width: 100%;

        padding: 50px 0;
    }

    .help-new-hero__content h1 {
        font-size: 42px;
        letter-spacing: -1.5px;
    }

    .help-new-hero__content p {
        max-width: 94%;

        font-size: 14px;
    }

    .help-new-hero__actions {
        align-items: stretch;
        flex-direction: column;

        width: 100%;
    }

    .help-new-hero__primary, 
    .help-new-hero__secondary {
        width: 100%;

        box-sizing: border-box;
    }


    /* TOPICS */

    .help-topics-new {
        padding: 55px 0 60px;
    }

    .help-topics-new .section-heading {
        margin-bottom: 28px;

        text-align: left;
    }

    .help-topic-new {
        grid-template-columns: 42px 1fr auto;

        padding: 19px 17px;
    }

    .help-topic-new__icon {
        width: 40px;
        height: 40px;

        font-size: 15px;
    }

    .help-topic-new__content h3 {
        font-size: 16px;
    }

    .help-topic-new__content p {
        font-size: 10px;
    }


    /* RESERVATION STRIP */

    .help-reservation-strip__inner {
        grid-template-columns: 38px 1fr;

        gap: 13px;

        padding: 21px 0;
    }

    .help-reservation-strip__button {
        grid-column: 1 / -1;

        width: 100%;

        box-sizing: border-box;
    }


    /* ==========================================================
   FAQ ACCORDIONS
========================================================== */

.help-faq-new__questions {
    overflow: hidden;

    border: 1px solid #dedede;
    border-radius: 5px;

    background: #fff;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, .04);
}

.help-faq-item {
    margin: 0;

    border: 0;
    border-bottom: 1px solid #e5e5e5;

    background: #fff;
}

.help-faq-item:last-child {
    border-bottom: 0;
}


/* QUESTION BUTTON */

.help-faq-question {
    width: 100%;
    min-height: 68px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    box-sizing: border-box;

    padding: 19px 21px;

    border: 0;
    outline: 0;

    background: #fff;
    color: #2b2b2e;

    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
    text-align: left;

    cursor: pointer;

    transition:
        background .18s ease,
        color .18s ease;
}

.help-faq-question:hover {
    background: #fafafa;
    color: #8f1d2c;
}

.help-faq-question:focus-visible {
    outline: 2px solid #8f1d2c;
    outline-offset: -2px;
}


/* PLUS */

.help-faq-plus {
    flex: 0 0 30px;

    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #f5ebed;
    color: #8f1d2c;

    font-size: 17px;
    font-weight: 500;
    line-height: 1;

    transition:
        transform .2s ease,
        background .2s ease,
        color .2s ease;
}


/* OPEN */

.help-faq-item.is-open
.help-faq-question {
    color: #8f1d2c;
}

.help-faq-item.is-open
.help-faq-plus {
    transform: rotate(45deg);

    background: #8f1d2c;
    color: #fff;
}


/* ANSWER */

.help-faq-answer {
    padding:
        0 65px 22px
        21px;
}

.help-faq-answer[hidden] {
    display: none !important;
}

.help-faq-answer p {
    margin: 0;

    color: #6c6c6c;

    font-size: 11px;
    line-height: 1.7;
}


/* MOBILE */

@media (max-width: 600px) {

    .help-faq-question {
        min-height: 64px;

        gap: 15px;

        padding: 17px;
    }

    .help-faq-plus {
        flex-basis: 28px;

        width: 28px;
        height: 28px;
    }

    .help-faq-answer {
        padding:
            0 17px 19px
            17px;
    }

}


    /* CONTACT */

    .help-contact-new {
        padding-bottom: 60px;
    }

    .help-contact-new__inner {
        padding: 29px 22px;
    }

    .help-contact-new h2 {
        font-size: 24px;
    }

    .help-contact-new__actions {
        width: 100%;

        flex-direction: column;
    }

    .help-contact-new__primary, 
    .help-contact-new__secondary {
        width: 100%;

        box-sizing: border-box;
    }

}

/* ==========================================================
   HELP FAQ - FINAL OPEN/CLOSE OVERRIDE
========================================================== */

.help-faq-answer {
    display: none;
}

.help-faq-answer[hidden] {
    display: none !important;
}

.help-faq-item.is-open
.help-faq-answer {
    display: block;
}

.help-faq-item.is-open
.help-faq-plus {
    transform: rotate(45deg);

    background: #8f1d2c;
    color: #fff;
}

.help-faq-item.is-open
.help-faq-question {
    color: #8f1d2c;
}


/* ==========================================================
   SITE FOOTER
========================================================== */

.site-footer {
    background: #171719;
    color: #fff;
}


/* ==========================================================
   FOOTER CTA
========================================================== */

.footer-cta {
    background: #8f1d2c;
}

.footer-cta__inner {
    width: min(1120px, calc(100% - 40px));
    min-height: 145px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 45px;
}

.footer-cta__content {
    max-width: 650px;
}

.footer-cta__eyebrow {
    display: block;

    margin-bottom: 6px;

    color: rgba(255, 255, 255, .68);

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.footer-cta__content h2 {
    margin: 0 0 6px;

    color: #fff;

    font-size: 27px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.5px;
}

.footer-cta__content p {
    margin: 0;

    color: rgba(255, 255, 255, .78);

    font-size: 11px;
    line-height: 1.6;
}


/* CTA BUTTON */

.footer-cta__button {
    min-width: 190px;
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    padding: 0 21px;

    box-sizing: border-box;

    border: 2px solid #fff;
    border-radius: 3px;

    background: #fff;
    color: #8f1d2c;

    font-size: 10px;
    font-weight: 900;

    text-decoration: none;

    white-space: nowrap;

    transition:
        background .18s ease,
        color .18s ease;
}

.footer-cta__button span {
    font-size: 17px;

    transition: transform .18s ease;
}

.footer-cta__button:hover {
    background: transparent;
    color: #fff;
}

.footer-cta__button:hover span {
    transform: translateX(4px);
}


/* ==========================================================
   MAIN FOOTER
========================================================== */

.site-footer__main {
    padding: 64px 0 58px;

    background:
        linear-gradient(
            135deg,
            #1c1c1f 0%,
            #151517 100%
        );
}

.footer-grid {
    width: min(1120px, calc(100% - 40px));

    margin: 0 auto;

    display: grid;
    grid-template-columns:
        minmax(280px, 1.45fr)
        repeat(3, minmax(150px, 1fr));

    gap: 60px;
}


/* ==========================================================
   BRAND
========================================================== */

.footer-brand {
    max-width: 310px;
}

.footer-logo {
    display: block;

    width: 175px;
    max-width: 100%;
    height: auto;

    margin-bottom: 20px;
}

.footer-brand__description {
    max-width: 290px;

    margin: 0 0 24px;

    color: #aaa;

    font-size: 11px;
    line-height: 1.7;
}


/* ==========================================================
   LOCATION CARD
========================================================== */

.footer-location {
    display: flex;
    align-items: center;

    gap: 13px;

    max-width: 285px;

    padding: 15px 16px;

    box-sizing: border-box;

    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 4px;

    background: rgba(255, 255, 255, .035);
}

.footer-location__icon {
    flex: 0 0 36px;

    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(143, 29, 44, .20);
    color: #d35b6a;

    font-size: 18px;
}

.footer-location__content {
    display: flex;
    flex-direction: column;

    gap: 2px;
}

.footer-location__label {
    margin-bottom: 2px;

    color: #d35b6a;

    font-size: 7px;
    font-weight: 900;
    letter-spacing: 1px;
}

.footer-location__content strong {
    color: #fff;

    font-size: 11px;
    font-weight: 800;
}

.footer-location__content > span:last-child {
    color: #9e9e9e;

    font-size: 10px;
}


/* ==========================================================
   FOOTER COLUMNS
========================================================== */

.footer-column h2 {
    position: relative;

    margin: 4px 0 23px;
    padding-bottom: 11px;

    color: #fff;

    font-size: 11px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .4px;
}

.footer-column h2::after {
    content: "";

    position: absolute;
    bottom: 0;
    left: 0;

    width: 28px;
    height: 2px;

    background: #8f1d2c;
}

.footer-column nav {
    display: flex;
    flex-direction: column;

    gap: 0;
}

.footer-column a {
    min-height: 34px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    border-bottom: 1px solid rgba(255, 255, 255, .055);

    color: #a9a9ab;

    font-size: 10px;
    line-height: 1.35;

    text-decoration: none;

    transition:
        color .18s ease,
        padding-left .18s ease;
}

.footer-column a:last-child {
    border-bottom: 0;
}

.footer-column a:hover {
    padding-left: 4px;

    color: #fff;
}


/* LINK ARROWS */

.footer-link-arrow {
    flex-shrink: 0;

    color: #68686b;

    font-size: 12px;

    transition:
        color .18s ease,
        transform .18s ease;
}

.footer-column a:hover
.footer-link-arrow {
    transform: translateX(3px);

    color: #c84556;
}


/* ==========================================================
   FOOTER BOTTOM
========================================================== */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);

    background: #101012;
}

.footer-bottom__inner {
    width: min(1120px, calc(100% - 40px));
    min-height: 64px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.footer-bottom p {
    margin: 0;

    color: #77777a;

    font-size: 9px;
    line-height: 1.5;
}

.footer-bottom__right {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #77777a;

    font-size: 9px;
}

.footer-bottom__dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #8f1d2c;
}

.footer-bottom__separator {
    color: #444447;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 950px) {

    .footer-grid {
        grid-template-columns:
            minmax(260px, 1.3fr)
            repeat(2, 1fr);

        gap: 45px 40px;
    }

    .footer-brand {
        grid-row: span 2;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 700px) {

    /* CTA */

    .footer-cta__inner {
        min-height: 0;

        padding: 34px 0;

        align-items: flex-start;
        flex-direction: column;

        gap: 20px;
    }

    .footer-cta__content h2 {
        font-size: 24px;
    }

    .footer-cta__button {
        width: 100%;
    }


    /* MAIN */

    .site-footer__main {
        padding: 47px 0 42px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 39px;
    }

    .footer-brand {
        max-width: none;

        grid-row: auto;
    }

    .footer-brand__description {
        max-width: 420px;
    }

    .footer-location {
        max-width: 100%;
    }


    /* COLUMNS */

    .footer-column h2 {
        margin-bottom: 12px;
    }

    .footer-column a {
        min-height: 40px;
    }


    /* BOTTOM */

    .footer-bottom__inner {
        min-height: 0;

        padding: 22px 0;

        align-items: flex-start;
        flex-direction: column;

        gap: 8px;
    }

    .footer-bottom__right {
        flex-wrap: wrap;
    }

}


/* ==========================================================
   FOOTER - LARGER TYPOGRAPHY
========================================================== */

/* CTA */

.footer-cta__eyebrow {
    font-size: 11px;
}

.footer-cta__content h2 {
    font-size: 32px;
}

.footer-cta__content p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-cta__button {
    min-height: 52px;

    font-size: 13px;
}


/* BRAND */

.footer-logo {
    width: 195px;
}

.footer-brand__description {
    font-size: 14px;
    line-height: 1.65;
}


/* LOCATION */

.footer-location__label {
    font-size: 9px;
}

.footer-location__content strong {
    font-size: 14px;
}

.footer-location__content > span:last-child {
    font-size: 12px;
}


/* COLUMN HEADINGS */

.footer-column h2 {
    font-size: 14px;
}


/* FOOTER LINKS */

.footer-column a {
    min-height: 40px;

    font-size: 13px;
    line-height: 1.4;
}

.footer-link-arrow {
    font-size: 15px;
}


/* BOTTOM FOOTER */

.footer-bottom p, 
.footer-bottom__right {
    font-size: 11px;
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 700px) {

    .footer-cta__content h2 {
        font-size: 28px;
    }

    .footer-cta__content p {
        font-size: 13px;
    }

    .footer-brand__description {
        font-size: 13px;
    }

    .footer-column h2 {
        font-size: 14px;
    }

    .footer-column a {
        min-height: 43px;

        font-size: 13px;
    }

    .footer-bottom p, 
    .footer-bottom__right {
        font-size: 10px;
    }

}

/* ==========================================================
   READABILITY FLOOR - CUSTOMER-FACING TEXT
   Keeps normal copy and controls comfortably readable.
========================================================== */
body { font-size: 16px; }
button, input, select, textarea { font-size: max(16px, 1em); }
@media (max-width: 700px) {
  body { font-size: 16px; }
}

/* ==========================================================
   FINAL TYPOGRAPHY / READABILITY OVERRIDES
   Keep this section at the end of the stylesheet.
========================================================== */

/* Base */
body {
    font-size: 16px;
    line-height: 1.55;
}

/* Paragraphs: prevent old component rules from shrinking copy */
body p {
    font-size: 16px !important;
    line-height: 1.65 !important;
}

/* Header */
.top-bar__inner {
    font-size: 13px;
}

.site-brand__product {
    font-size: 12px;
}

.site-brand__product strong {
    font-size: 14px;
}

.nav-link,
.button {
    font-size: 14px;
}

.mobile-nav a {
    font-size: 15px;
}

/* Small labels / eyebrows */
.eyebrow,
.home-hero-eyebrow,
.rent-eyebrow,
.rent-search-label,
.order-eyebrow,
.pickup-process-eyebrow,
.return-process-eyebrow {
    font-size: 12px;
}

/* Forms */
label {
    font-size: 14px;
}

input,
select,
textarea {
    font-size: 16px;
}

button {
    font-size: 14px;
}

.form-error {
    font-size: 14px;
}

/* Rent products */
.rent-product-title h3 {
    font-size: 20px;
}

.rent-product-description {
    font-size: 15px;
    line-height: 1.65;
}

.rent-product-stock {
    font-size: 14px;
}

.rent-product-price {
    font-size: 25px;
}

.rent-product-price span {
    font-size: 13px;
}

.rent-product-select {
    font-size: 14px;
}

/* Rent cart */
.rent-cart-item-info > strong {
    font-size: 15px;
}

.rent-cart-item-price {
    font-size: 13px;
}

.rent-cart-item-quantity span {
    font-size: 14px;
}

.rent-cart-item-quantity button {
    font-size: 18px;
}

.rent-cart-item-total {
    font-size: 16px;
}

/* Help */
.help-faq-question {
    font-size: 16px;
}

.help-faq-answer {
    font-size: 15px;
    line-height: 1.65;
}

/* How It Works */
.hiw-new-check-list li {
    font-size: 15px;
}

/* Manage My Pickup */
.mypickup-feature strong {
    font-size: 15px;
}

.mypickup-feature span {
    font-size: 14px;
}

/* Pickup / return progress */
.order-progress__step strong,
.pickup-step-indicator strong,
.return-step-indicator strong {
    font-size: 14px;
}

.order-progress__step span {
    font-size: 13px;
}

/* Footer */
.footer-cta__eyebrow {
    font-size: 11px;
}

.footer-cta__content h2 {
    font-size: 32px;
}

.footer-cta__button {
    font-size: 13px;
}

.footer-brand__description {
    font-size: 14px;
}

.footer-location__label {
    font-size: 10px;
}

.footer-location__content strong {
    font-size: 14px;
}

.footer-location__content > span:last-child {
    font-size: 13px;
}

.footer-column h2 {
    font-size: 14px;
}

.footer-column a {
    font-size: 13px;
}

.footer-bottom p,
.footer-bottom__right {
    font-size: 11px;
}

/* Mobile */
@media (max-width: 700px) {
    body {
        font-size: 16px;
    }

    body p {
        font-size: 16px !important;
        line-height: 1.65 !important;
    }

    .mobile-nav a {
        font-size: 15px;
    }

    input,
    select,
    textarea {
        font-size: 16px;
    }

    .rent-product-description {
        font-size: 15px;
    }

    .rent-product-stock,
    .rent-product-select {
        font-size: 14px;
    }

    .footer-cta__content h2 {
        font-size: 28px;
    }

    .footer-brand__description,
    .footer-column a {
        font-size: 13px;
    }
}

