:root {
  --dark: #001436;
  --extra-dark: #000b1f;
  --blue: #007bff;
  --electric: #009dff;
  --white: #ffffff;
  --gray: #dce7f5;
  --shadow: rgba(0, 0, 0, 0.52);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--extra-dark);
  color: var(--white);
  font-family: "Montserrat", "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 110px;
}

body {
  overflow-x: hidden;
}

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-shell {
  min-height: 100vh;
  background: var(--extra-dark);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  width: 100%;
  min-height: 100px;
  padding: 0 clamp(22px, 5vw, 72px);
  background: linear-gradient(180deg, rgba(0, 20, 54, 0.98), rgba(0, 11, 31, 0.9));
  border-bottom: 1px solid rgba(0, 157, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: clamp(270px, 24vw, 360px);
  height: 78px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.34));
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-menu a {
  position: relative;
  padding: 39px 0 35px;
  opacity: 0.94;
}

.nav-menu a::after {
  position: absolute;
  right: 0;
  bottom: 27px;
  left: 0;
  height: 4px;
  content: "";
  background: var(--blue);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.4);
  transition: 180ms ease;
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.phone-button,
.quote-button,
.call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 8px;
}

.phone-button {
  justify-self: end;
  color: var(--white);
  background: linear-gradient(180deg, #009dff, #007bff);
  box-shadow: 0 14px 34px rgba(0, 123, 255, 0.42);
}

.phone-button svg,
.quote-button svg,
.call-button svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.4;
}

.hero {
  position: relative;
  min-height: 850px;
  height: max(850px, 100vh);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 37%, rgba(0, 157, 255, 0.22), transparent 34%),
    linear-gradient(130deg, #000b1f 4%, #001436 46%, #06285a 100%);
}

.tent-scene {
  position: absolute;
  inset: 0;
  z-index: -4;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 20, 54, 0.08), rgba(0, 11, 31, 0.28)),
    url("assets/hero-tent-cover.jpg") center center / cover no-repeat;
}

.tent-scene::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 72% 38%, rgba(0, 157, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(0, 11, 31, 0.12), rgba(0, 11, 31, 0.72));
  opacity: 0.74;
}

.tent-scene > * {
  display: none;
}

.tent-canopy {
  position: absolute;
  right: clamp(-130px, -7vw, -40px);
  top: 178px;
  width: min(880px, 67vw);
  height: 330px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.96), rgba(218, 231, 246, 0.92) 44%, rgba(255, 255, 255, 0.8)),
    repeating-linear-gradient(100deg, transparent 0 82px, rgba(0, 20, 54, 0.14) 84px 88px);
  clip-path: polygon(0 74%, 17% 22%, 50% 0, 84% 21%, 100% 73%, 76% 66%, 50% 71%, 25% 66%);
  filter: drop-shadow(0 35px 45px rgba(0, 0, 0, 0.38));
  opacity: 0.94;
}

.tent-body {
  position: absolute;
  right: clamp(-90px, -5vw, -20px);
  top: 408px;
  width: min(760px, 58vw);
  height: 265px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0 78px, rgba(214, 228, 244, 0.76) 80px 84px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(196, 213, 234, 0.56));
  clip-path: polygon(5% 0, 96% 0, 100% 100%, 0 100%);
  opacity: 0.84;
  box-shadow: inset 0 28px 44px rgba(255, 255, 255, 0.3);
}

.tent-poles {
  position: absolute;
  right: 4vw;
  top: 414px;
  width: min(700px, 53vw);
  height: 275px;
  background: repeating-linear-gradient(90deg, transparent 0 106px, rgba(255, 255, 255, 0.8) 108px 113px);
  opacity: 0.46;
}

.tables span,
.chairs span {
  position: absolute;
  display: block;
  background: rgba(245, 250, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.26);
}

.tables span {
  right: calc(8vw + var(--x, 0px));
  bottom: calc(115px + var(--y, 0px));
  width: 130px;
  height: 24px;
}

.tables span:nth-child(1) {
  --x: 420px;
  --y: 42px;
}

.tables span:nth-child(2) {
  --x: 230px;
  --y: 8px;
}

.tables span:nth-child(3) {
  --x: 50px;
  --y: 50px;
}

.chairs span {
  right: calc(10vw + var(--x, 0px));
  bottom: calc(86px + var(--y, 0px));
  width: 34px;
  height: 48px;
  border-radius: 12px 12px 5px 5px;
  background: rgba(229, 241, 255, 0.86);
}

.chairs span:nth-child(1) {
  --x: 515px;
  --y: 42px;
}

.chairs span:nth-child(2) {
  --x: 372px;
  --y: 32px;
}

.chairs span:nth-child(3) {
  --x: 312px;
  --y: -2px;
}

.chairs span:nth-child(4) {
  --x: 172px;
  --y: -8px;
}

.chairs span:nth-child(5) {
  --x: 86px;
  --y: 46px;
}

.chairs span:nth-child(6) {
  --x: 0px;
  --y: 35px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 11, 31, 0.98) 0%, rgba(0, 20, 54, 0.92) 34%, rgba(0, 20, 54, 0.5) 64%, rgba(0, 20, 54, 0.16) 100%),
    linear-gradient(180deg, rgba(0, 11, 31, 0.2), rgba(0, 11, 31, 0.72));
}

.blue-wash {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 28%, rgba(0, 157, 255, 0.2), transparent 23%),
    linear-gradient(105deg, rgba(0, 123, 255, 0.12), rgba(0, 157, 255, 0.05) 58%, transparent 78%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.booking-ribbon {
  position: absolute;
  top: 136px;
  left: clamp(22px, 5vw, 72px);
  z-index: 5;
  display: grid;
  grid-template-columns: 34px auto;
  gap: 2px 12px;
  align-items: center;
  min-width: 250px;
  padding: 17px 21px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #005bff, #007bff);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0 14px 14px 0;
  box-shadow: 0 22px 42px rgba(0, 91, 255, 0.42);
}

.booking-ribbon::before,
.booking-ribbon::after {
  position: absolute;
  left: 0;
  content: "";
  border-style: solid;
}

.booking-ribbon::before {
  top: -18px;
  border-width: 0 0 18px 22px;
  border-color: transparent transparent #003fc1 transparent;
}

.booking-ribbon::after {
  bottom: -18px;
  border-width: 18px 0 0 22px;
  border-color: #003fc1 transparent transparent transparent;
}

.booking-ribbon svg {
  grid-row: span 2;
  width: 34px;
  height: 34px;
}

.booking-ribbon span {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.booking-ribbon strong {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(820px, calc(100% - 44px));
  padding-top: clamp(230px, 25vh, 272px);
  margin-left: clamp(22px, 5vw, 72px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
  color: #008cff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 42px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #008cff);
  border-radius: 99px;
}

.eyebrow span:last-child {
  background: linear-gradient(90deg, #008cff, transparent);
}

h1 {
  max-width: 770px;
  margin: 0;
  color: var(--white);
  font-family: "Anton", "Montserrat", sans-serif;
  font-size: clamp(62px, 8.1vw, 134px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 6px 0 rgba(0, 0, 0, 0.2), 0 18px 38px var(--shadow);
}

h1 span {
  display: block;
}

.trusted {
  color: transparent;
  background: linear-gradient(180deg, #009dff, #005bff);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 14px 24px rgba(0, 91, 255, 0.38));
}

.service-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  max-width: 720px;
  margin-top: 28px;
}

.service-badges span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 7px 14px 7px 8px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 20, 54, 0.68);
  border: 1px solid rgba(0, 157, 255, 0.26);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.service-badges i {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--white);
  font-style: normal;
  line-height: 1;
  background: linear-gradient(180deg, #009dff, #007bff);
  border-radius: 999px;
}

.description {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--gray);
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 1.55vw, 21px);
  font-weight: 700;
  line-height: 1.55;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 32px;
}

.quote-button {
  min-width: 176px;
  color: var(--white);
  background: #007bff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 36px rgba(0, 123, 255, 0.35);
}

.call-button {
  min-width: 254px;
  color: var(--white);
  background: rgba(0, 11, 31, 0.56);
  border: 2px solid #007bff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 16px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.event-badge {
  position: absolute;
  right: clamp(32px, 6vw, 94px);
  bottom: 156px;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 234px;
  height: 234px;
  padding: 28px;
  text-align: center;
  text-transform: uppercase;
  background:
    radial-gradient(circle at 50% 26%, rgba(0, 157, 255, 0.18), transparent 38%),
    #001436;
  border: 4px solid #007bff;
  border-radius: 999px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45), 0 0 34px rgba(0, 123, 255, 0.32);
}

.event-badge::before {
  position: absolute;
  inset: 12px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: inherit;
}

.event-badge .stars {
  color: var(--electric);
  font-size: 14px;
  letter-spacing: 0.32em;
}

.event-badge p,
.event-badge strong,
.event-badge small {
  position: relative;
  z-index: 1;
  margin: 0;
}

.event-badge p {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.event-badge strong {
  margin-top: -4px;
  color: var(--electric);
  font-size: 33px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.event-badge small {
  color: var(--gray);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.event-badge svg {
  width: 58px;
  height: 38px;
  color: var(--electric);
  fill: rgba(0, 157, 255, 0.16);
}

.trust-bar {
  position: absolute;
  right: clamp(22px, 5vw, 72px);
  bottom: 38px;
  left: clamp(22px, 5vw, 72px);
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  background: rgba(0, 11, 31, 0.72);
  border: 1px solid rgba(220, 231, 245, 0.18);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.trust-bar article {
  min-height: 132px;
  padding: 26px 24px 24px;
  border-right: 1px solid rgba(220, 231, 245, 0.14);
}

.trust-bar article:last-child {
  border-right: 0;
}

.trust-bar svg {
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  color: var(--white);
}

.trust-bar h2 {
  margin: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
}

.trust-bar p {
  margin: 7px 0 0;
  color: var(--gray);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 22px;
  }

  .nav-menu {
    gap: 16px;
    font-size: 11px;
  }

  .event-badge {
    width: 190px;
    height: 190px;
    right: 28px;
  }

  .event-badge strong {
    font-size: 27px;
  }
}

@media (max-width: 940px) {
  .site-header {
    position: relative;
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: auto;
    padding: 20px 18px;
  }

  .logo,
  .phone-button {
    justify-self: center;
  }

  .nav-menu {
    order: 3;
    flex-wrap: wrap;
    padding-top: 8px;
  }

  .nav-menu a {
    padding: 8px 0 10px;
  }

  .nav-menu a::after {
    bottom: 2px;
  }

  .hero {
    min-height: 1040px;
    height: auto;
  }

  .booking-ribbon {
    top: 34px;
  }

  .hero-content {
    padding-top: 146px;
  }

  .tent-canopy {
    top: 335px;
    width: 88vw;
    opacity: 0.42;
  }

  .tent-body,
  .tent-poles,
  .tables,
  .chairs {
    opacity: 0.34;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 11, 31, 0.97), rgba(0, 20, 54, 0.82)),
      linear-gradient(180deg, rgba(0, 11, 31, 0.1), rgba(0, 11, 31, 0.78));
  }

  .event-badge {
    right: 22px;
    bottom: 270px;
    width: 160px;
    height: 160px;
    padding: 20px;
  }

  .event-badge p {
    font-size: 11px;
  }

  .event-badge strong {
    font-size: 22px;
  }

  .event-badge svg {
    width: 45px;
    height: 29px;
  }

  .trust-bar {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 36px);
    margin: 62px auto 28px;
  }

  .trust-bar article:nth-child(2) {
    border-right: 0;
  }

  .trust-bar article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(220, 231, 245, 0.14);
  }
}

@media (max-width: 620px) {
  .phone-button,
  .quote-button,
  .call-button {
    width: 100%;
  }

  .booking-ribbon {
    left: 18px;
    min-width: 220px;
    padding: 14px 16px;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-left: 18px;
  }

  .eyebrow {
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .eyebrow span {
    width: 25px;
  }

  h1 {
    font-size: clamp(52px, 16vw, 76px);
  }

  .service-badges span {
    width: 100%;
  }

  .description {
    font-size: 15px;
  }

  .event-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 34px 18px 0 auto;
  }

  .trust-bar {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .trust-bar article,
  .trust-bar article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(220, 231, 245, 0.14);
  }

  .trust-bar article:last-child {
    border-bottom: 0;
  }
}

.showroom-section {
  position: relative;
  padding: clamp(70px, 8vw, 110px) clamp(18px, 5vw, 72px);
  color: #ffffff;
  background:
    radial-gradient(circle at 15% 10%, rgba(0, 157, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #001436 0%, #000b1f 100%);
}

.service-area-section {
  padding: clamp(42px, 6vw, 76px) clamp(18px, 5vw, 72px);
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 157, 255, 0.18), transparent 28%),
    #000b1f;
}

.service-area-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(0, 123, 255, 0.18), rgba(255, 255, 255, 0.06)),
    #001436;
  border: 1px solid rgba(0, 157, 255, 0.24);
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.service-area-card p {
  margin: 0 0 8px;
  color: #009dff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.service-area-card h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(32px, 4.6vw, 58px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.96;
  text-transform: uppercase;
}

.service-area-card span {
  display: block;
  max-width: 760px;
  margin-top: 12px;
  color: rgba(220, 231, 245, 0.84);
  font-family: "Poppins", sans-serif;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 700;
  line-height: 1.55;
}

.service-area-card a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  background: linear-gradient(180deg, #009dff, #007bff);
  border-radius: 12px;
  box-shadow: 0 18px 36px rgba(0, 123, 255, 0.34);
}

.showroom-inner {
  width: min(1480px, 100%);
  margin: 0 auto;
}

.showroom-copy {
  display: grid;
  gap: 10px;
  max-width: 820px;
  margin-bottom: 32px;
}

.showroom-copy p {
  margin: 0;
  color: #009dff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.showroom-copy h2 {
  margin: 0;
  font-family: "Montserrat", "Poppins", sans-serif;
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.96;
  text-transform: uppercase;
}

.showroom-copy span {
  color: rgba(220, 231, 245, 0.84);
  font: 700 clamp(15px, 1.6vw, 19px) "Poppins", sans-serif;
}

.showroom-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.showroom-feature img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center center;
}

.showroom-feature div {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(24px, 4vw, 46px);
}

.showroom-feature strong {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.showroom-catalog-button,
.open-catalog-button {
  width: fit-content;
  min-height: 52px;
  padding: 0 24px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  background: linear-gradient(180deg, #009dff, #007bff);
  border: 0;
  border-radius: 12px;
  box-shadow: 0 18px 36px rgba(0, 123, 255, 0.34);
}

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

.showroom-tile {
  position: relative;
  min-height: 190px;
  padding: 0;
  overflow: hidden;
  color: #ffffff;
  text-align: left;
  cursor: pointer;
  background: #001436;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  appearance: none;
}

.showroom-tile:nth-child(1),
.showroom-tile:nth-child(6) {
  grid-column: span 2;
}

.showroom-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center center;
  transition: transform 220ms ease, filter 220ms ease;
}

.showroom-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(0, 11, 31, 0.82));
}

.showroom-tile span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
}

.showroom-tile:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.06);
}

.rentals-section {
  position: relative;
  padding: clamp(70px, 8vw, 112px) clamp(18px, 5vw, 72px);
  color: #001436;
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 107, 255, 0.08), transparent 28%),
    radial-gradient(circle at 92% 16%, rgba(0, 157, 255, 0.09), transparent 30%),
    #f8faff;
}

.catalog-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto 28px;
  padding: 20px 22px;
  background: #ffffff;
  border: 1px solid rgba(0, 107, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(0, 20, 54, 0.08);
}

.catalog-intro span {
  display: block;
  margin-bottom: 5px;
  color: #006bff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-intro strong {
  display: block;
  color: rgba(0, 20, 54, 0.78);
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.45;
}

.catalog-collapsed .product-grid {
  display: none;
}

.rentals-section.catalog-open .catalog-intro {
  display: none;
}

.product-card.catalog-focus {
  outline: 4px solid rgba(0, 157, 255, 0.45);
  box-shadow: 0 28px 90px rgba(0, 107, 255, 0.24);
}

.rentals-inner {
  width: min(1480px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 980px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 12px;
  color: #006bff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-heading p span {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #006bff);
  border-radius: 999px;
}

.section-heading p span:last-child {
  background: linear-gradient(90deg, #006bff, transparent);
}

.section-heading h2 {
  margin: 0;
  color: #001436;
  font-family: "Montserrat", "Poppins", sans-serif;
  font-size: clamp(36px, 5.2vw, 72px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.96;
  text-transform: uppercase;
}

.section-heading strong {
  display: block;
  margin-top: 14px;
  color: rgba(0, 20, 54, 0.76);
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 1.7vw, 23px);
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  background: #ffffff;
  border: 1px solid rgba(0, 20, 54, 0.08);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(0, 20, 54, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(0, 20, 54, 0.16);
}

.product-image-wrap {
  position: relative;
  height: 218px;
  width: 100%;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: #dce7f5;
  border: 0;
  appearance: none;
}

.product-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(0, 20, 54, 0.12));
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.01);
}

.product-image-wrap span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 8px 12px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(0, 20, 54, 0.78);
  border: 1px solid rgba(0, 157, 255, 0.34);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.product-image-wrap:hover img {
  transform: scale(1.05);
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 19px 20px 20px;
}

.product-card h3 {
  margin: 0 0 8px;
  color: #001436;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.product-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
  color: #006bff;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.product-price small {
  color: rgba(0, 20, 54, 0.68);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.product-details {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  color: rgba(0, 20, 54, 0.78);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.product-details li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.product-details li::before {
  display: grid;
  flex: 0 0 18px;
  place-items: center;
  width: 18px;
  height: 18px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  content: "✓";
  background: #006bff;
  border-radius: 999px;
}

.option-field {
  display: grid;
  gap: 7px;
  margin-top: auto;
  margin-bottom: 14px;
  color: #001436;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.option-field select {
  width: 100%;
  height: 44px;
  padding: 0 13px;
  color: #001436;
  font: inherit;
  background: #f8faff;
  border: 1px solid rgba(0, 107, 255, 0.2);
  border-radius: 10px;
}

.quantity-control {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  height: 46px;
  overflow: hidden;
  background: #f8faff;
  border: 1px solid rgba(0, 20, 54, 0.1);
  border-radius: 10px;
}

.quantity-control button {
  height: 100%;
  color: #006bff;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.quantity-control output {
  text-align: center;
  color: #001436;
  font-size: 15px;
  font-weight: 900;
}

.product-actions {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 10px;
  margin-top: auto;
}

.product-quantity {
  height: 44px;
}

.auto-cart-hint {
  display: grid;
  place-items: center;
  min-height: 44px;
  padding: 0 12px;
  color: #0c447c;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  background: #e6f1fb;
  border: 1px solid rgba(0, 107, 255, 0.16);
  border-radius: 10px;
}

.floating-cart-button svg,
.view-patio-button svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.view-patio-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 44px;
  margin-top: 12px;
  color: #001436;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  background: #ffffff;
  border: 2px solid rgba(0, 107, 255, 0.26);
  border-radius: 10px;
}

.view-patio-button:hover {
  color: #006bff;
  border-color: #006bff;
}

.yard-measurements {
  display: block;
  margin-top: 9px;
  color: rgba(0, 20, 54, 0.68);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.instant-quote {
  max-width: 1040px;
  margin: clamp(64px, 8vw, 104px) auto 0;
  padding: clamp(24px, 4vw, 42px);
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 107, 255, 0.08), transparent 34%),
    #ffffff;
  border: 1px solid rgba(0, 20, 54, 0.08);
  border-radius: 28px;
  box-shadow: 0 26px 80px rgba(0, 20, 54, 0.1);
}

.instant-quote-copy {
  margin-bottom: 28px;
}

.instant-quote-copy p {
  margin: 0 0 8px;
  color: #006bff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.instant-quote-copy h2 {
  margin: 0;
  color: #001436;
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.instant-quote-copy span {
  display: block;
  margin-top: 8px;
  color: rgba(0, 20, 54, 0.72);
  font-family: "Poppins", sans-serif;
  font-size: clamp(15px, 1.7vw, 19px);
  font-weight: 700;
}

.quote-builder {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: start;
}

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

.quote-field {
  display: grid;
  gap: 9px;
  color: rgba(0, 20, 54, 0.76);
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.quote-field--full {
  grid-column: 1 / -1;
}

.quote-field input,
.quote-field select {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  color: #001436;
  font: 900 17px "Montserrat", sans-serif;
  background: #ffffff;
  border: 1px solid rgba(0, 20, 54, 0.12);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(0, 20, 54, 0.03);
}

.quote-field input:focus,
.quote-field select:focus {
  outline: 3px solid rgba(0, 123, 255, 0.18);
  border-color: #007bff;
}

.quote-delivery-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: #001436;
  font-family: "Poppins", sans-serif;
  background: #f8faff;
  border: 1px solid rgba(0, 107, 255, 0.16);
  border-radius: 12px;
}

.quote-delivery-note strong {
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-delivery-note span {
  color: rgba(0, 20, 54, 0.72);
  font-size: 14px;
  font-weight: 800;
  text-align: right;
}

.pkg-section {
  margin: clamp(64px, 8vw, 104px) auto 0;
  padding: clamp(34px, 5vw, 56px) clamp(18px, 4vw, 32px);
  font-family: "Inter", sans-serif;
  background: #f4f8ff;
  border: 1px solid rgba(0, 20, 54, 0.06);
  border-radius: 28px;
  box-shadow: 0 22px 70px rgba(0, 20, 54, 0.08);
}

.pkg-head {
  margin-bottom: 40px;
  text-align: center;
}

.pkg-label {
  display: inline-block;
  padding: 5px 14px;
  margin-bottom: 12px;
  color: #0c447c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #e6f1fb;
  border-radius: 20px;
}

.pkg-title {
  margin: 0 0 8px;
  color: #042c53;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.pkg-sub {
  max-width: 620px;
  margin: 0 auto;
  color: #666666;
  font-size: 14px;
  line-height: 1.65;
}

.pkg-extra-note {
  max-width: 900px;
  margin: -18px auto 30px;
  padding: 15px 20px;
  text-align: center;
  background: #e6f1fb;
  border: 1px solid rgba(0, 107, 255, 0.16);
  border-radius: 14px;
}

.pkg-extra-note p {
  margin: 0;
  color: rgba(0, 20, 54, 0.72);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
}

.pkg-extra-note strong {
  color: #0c447c;
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pkg-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e0eaf5;
  border-radius: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(0, 20, 54, 0.12);
}

.pkg-card.popular {
  border: 2px solid #0c447c;
}

.pkg-badge-pop {
  position: absolute;
  top: -1px;
  left: 50%;
  z-index: 1;
  padding: 4px 16px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  background: #0c447c;
  border-radius: 0 0 10px 10px;
  transform: translateX(-50%);
}

.pkg-top {
  padding: 20px 20px 14px;
}

.pkg-top-popular {
  padding-top: 32px;
}

.pkg-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  font-size: 22px;
  border-radius: 10px;
}

.pkg-icon-green {
  background: #f4f4f4;
}

.pkg-icon-blue {
  background: #e6f1fb;
}

.pkg-icon-gold {
  background: #faeeda;
}

.pkg-icon-pink {
  background: #fbeaf0;
}

.pkg-people {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  border-radius: 8px;
}

.pkg-people-starter {
  background: #444441;
}

.pkg-people-classic {
  background: #185fa5;
}

.pkg-people-premium {
  background: #633806;
}

.pkg-people-fiesta {
  background: #72243e;
}

.pkg-inside {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: -2px 0 10px;
  color: rgba(0, 20, 54, 0.58);
  font-size: 11px;
  font-weight: 800;
}

.pkg-inside::before {
  color: #0c447c;
  content: "⛺";
}

.pkg-name {
  margin-bottom: 4px;
  color: #042c53;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
}

.pkg-desc {
  min-height: 54px;
  margin: 0 0 14px;
  color: #777777;
  font-size: 12px;
  line-height: 1.5;
}

.pkg-price-row {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin-bottom: 6px;
}

.pkg-orig {
  color: #b9c1cc;
  font-size: 13px;
  text-decoration: line-through;
}

.pkg-price {
  color: #0c447c;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.pkg-save {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 800;
  border-radius: 20px;
}

.save-0 {
  color: #777777;
  background: #f4f4f4;
}

.save-5 {
  color: #3b6d11;
  background: #eaf3de;
}

.save-8 {
  color: #0c447c;
  background: #e6f1fb;
}

.save-10 {
  color: #854f0b;
  background: #faeeda;
}

.pkg-divider {
  height: 1px;
  margin: 0 -20px 14px;
  background: #f0f4fa;
}

.pkg-items {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 7px;
  padding: 0 20px 16px;
}

.pkg-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: #444444;
  font-size: 12px;
  line-height: 1.4;
}

.pkg-item i {
  flex-shrink: 0;
  margin-top: 1px;
  color: #0c447c;
  font-style: normal;
  font-weight: 900;
}

.pkg-hl {
  color: #0c447c;
  font-weight: 800;
}

.pkg-new {
  padding: 1px 6px;
  margin-left: 4px;
  color: #854f0b;
  font-size: 10px;
  font-weight: 800;
  vertical-align: middle;
  background: #faeeda;
  border-radius: 10px;
}

.pkg-more {
  margin: 0 16px 12px;
  padding: 9px 12px;
  color: rgba(0, 20, 54, 0.66);
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  background: #f8faff;
  border: 1px solid rgba(0, 107, 255, 0.12);
  border-radius: 10px;
}

.pkg-more strong {
  color: #0c447c;
}

.pkg-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 32px);
  min-height: 44px;
  padding: 0 12px;
  margin: 0 16px 16px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  border: 0;
  border-radius: 8px;
  transition: background 0.2s;
}

.pkg-cta-gray {
  background: #888888;
}

.pkg-cta-blue {
  background: #378add;
}

.pkg-cta-dark {
  background: #0c447c;
}

.pkg-cta-amber {
  background: #ba7517;
}

.pkg-cta:hover {
  background: #185fa5;
}

.pkg-note {
  margin: 24px 0 0;
  color: #777777;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.pkg-note strong {
  color: #0c447c;
}

.estimate-card {
  position: sticky;
  top: 120px;
  padding: 28px;
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 157, 255, 0.28), transparent 30%),
    #0b4d86;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 20, 54, 0.22);
}

.estimate-card h3 {
  margin: 0 0 18px;
  padding-bottom: 18px;
  font-size: 21px;
  font-weight: 900;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.estimate-lines {
  display: grid;
  gap: 13px;
  min-height: 112px;
}

.estimate-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.estimate-line strong {
  color: #ffffff;
  white-space: nowrap;
}

.estimate-line-delivery {
  padding-top: 10px;
  margin-top: 4px;
  border-top: 1px dashed rgba(255, 255, 255, 0.24);
}

.estimate-total-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.estimate-total-row span {
  color: rgba(255, 255, 255, 0.78);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.estimate-total-row strong {
  color: #ffffff;
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.estimate-card p {
  margin: 14px 0 22px;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.estimate-request-button {
  width: 100%;
  min-height: 48px;
  color: #001436;
  font: 900 14px "Montserrat", sans-serif;
  cursor: pointer;
  background: #ffffff;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.floating-cart-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  background: linear-gradient(180deg, #007bff, #006bff);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 20px 48px rgba(0, 107, 255, 0.36);
}

.cart-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.cart-count {
  display: grid;
  place-items: center;
  min-width: 25px;
  height: 25px;
  padding: 0 7px;
  color: #006bff;
  background: #ffffff;
  border-radius: 999px;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0, 11, 31, 0.48);
  backdrop-filter: blur(5px);
}

.quote-cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  display: flex;
  flex-direction: column;
  width: min(460px, 100%);
  height: 100vh;
  color: #001436;
  background: #ffffff;
  box-shadow: -28px 0 70px rgba(0, 20, 54, 0.24);
  transform: translateX(104%);
  transition: transform 220ms ease;
}

.quote-cart-panel.open {
  transform: translateX(0);
}

.quote-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 12%, rgba(0, 157, 255, 0.22), transparent 28%),
    #001436;
}

.quote-cart-header > div {
  flex: 1;
  min-width: 0;
}

.quote-cart-header span {
  color: #009dff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.quote-cart-header h3 {
  margin: 4px 0 0;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.cart-help-button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 14px 0 8px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  background: linear-gradient(135deg, #0c447c, #378add);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.cart-help-button .chat-bubble-icon {
  width: 34px;
  height: 34px;
  color: #0c447c;
  font-size: 11px;
  letter-spacing: -0.04em;
  background: #ffffff;
}

.cart-help-button .chat-bubble-text {
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

.cart-close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.cart-view,
.quote-form,
.quote-confirmation {
  overflow-y: auto;
  padding: 22px 24px 26px;
}

.cart-items {
  display: grid;
  gap: 14px;
}

.cart-item {
  display: grid;
  gap: 12px;
  padding: 15px;
  background: #f8faff;
  border: 1px solid rgba(0, 20, 54, 0.08);
  border-radius: 14px;
}

.cart-item-locked {
  background: #eef6ff;
  border-color: rgba(0, 107, 255, 0.18);
}

.cart-item-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.cart-item h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
}

.cart-item small {
  display: block;
  margin-top: 3px;
  color: rgba(0, 20, 54, 0.62);
  font-weight: 800;
}

.cart-item-package-label {
  margin-top: 8px;
  color: #006bff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-item-includes {
  display: grid;
  gap: 5px;
  margin: 7px 0 0;
  padding: 10px 12px;
  color: #163352;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
  background: #ffffff;
  border: 1px solid rgba(0, 107, 255, 0.14);
  border-radius: 10px;
}

.cart-item-includes li::before {
  margin-right: 7px;
  color: #006bff;
  content: "✓";
}

.remove-cart-item {
  color: #006bff;
  font-weight: 900;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.locked-cart-label,
.locked-cart-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  color: #0c447c;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: #ffffff;
  border: 1px solid rgba(0, 107, 255, 0.18);
  border-radius: 999px;
}

.locked-cart-control {
  min-height: 42px;
  border-radius: 10px;
}

.cart-item-bottom {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  align-items: center;
}

.cart-line-prices {
  display: grid;
  gap: 4px;
  color: rgba(0, 20, 54, 0.72);
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.cart-line-prices strong {
  color: #001436;
  font-size: 16px;
  font-weight: 900;
}

.empty-cart-message {
  margin: 16px 0;
  padding: 18px;
  color: rgba(0, 20, 54, 0.7);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  background: #f8faff;
  border: 1px dashed rgba(0, 107, 255, 0.28);
  border-radius: 14px;
}

.package-suggestion {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 16px;
  color: #ffffff;
  background:
    radial-gradient(circle at 92% 0%, rgba(0, 157, 255, 0.28), transparent 38%),
    linear-gradient(135deg, #001436, #0c447c);
  border: 1px solid rgba(0, 157, 255, 0.26);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(0, 20, 54, 0.18);
}

.package-suggestion[hidden] {
  display: none;
}

.package-suggestion span {
  display: block;
  margin-bottom: 5px;
  color: #009dff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.package-suggestion strong {
  display: block;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.15;
}

.package-suggestion p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.switch-package-button {
  min-height: 44px;
  color: #001436;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  background: #ffffff;
  border: 0;
  border-radius: 10px;
}

.cart-delivery-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 14px 16px;
  color: #001436;
  background: #eef6ff;
  border: 1px solid rgba(0, 107, 255, 0.18);
  border-radius: 14px;
}

.cart-delivery-line[hidden] {
  display: none;
}

.cart-delivery-line span {
  color: #0c447c;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cart-delivery-line strong {
  color: #006bff;
  font-size: 20px;
  font-weight: 900;
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding: 18px 0;
  border-top: 1px solid rgba(0, 20, 54, 0.12);
}

.cart-total-row span {
  color: rgba(0, 20, 54, 0.68);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-total-row strong {
  color: #006bff;
  font-size: 28px;
  font-weight: 900;
}

.request-quote-button,
.submit-quote-button {
  width: 100%;
  min-height: 52px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  background: linear-gradient(180deg, #007bff, #006bff);
  border: 0;
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(0, 107, 255, 0.24);
}

.request-quote-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.cart-note {
  margin: 12px 0 0;
  color: rgba(0, 20, 54, 0.58);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.quote-form {
  display: grid;
  gap: 14px;
}

.hidden-field {
  display: none;
}

.quote-form[hidden],
.quote-confirmation[hidden],
.cart-backdrop[hidden] {
  display: none;
}

.back-to-cart {
  justify-self: start;
  color: #006bff;
  font-weight: 900;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.quote-form h4,
.quote-confirmation h4 {
  margin: 0;
  color: #001436;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.quote-form-note {
  margin: 0;
  padding: 12px 14px;
  color: #0c447c;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
  background: #e6f1fb;
  border: 1px solid #b5d4f4;
  border-radius: 12px;
}

.add-more-rentals-button {
  width: 100%;
  min-height: 46px;
  color: #0c447c;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  background: #ffffff;
  border: 2px solid rgba(0, 107, 255, 0.24);
  border-radius: 10px;
}

.add-more-rentals-button:hover {
  color: #ffffff;
  background: #0c447c;
  border-color: #0c447c;
}

.modify-order-button {
  width: 100%;
  min-height: 48px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  background: linear-gradient(180deg, #009dff, #007bff);
  border: 0;
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(0, 123, 255, 0.24);
}

.modify-order-button:hover {
  background: linear-gradient(180deg, #007bff, #005bff);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: #001436;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: #001436;
  font: 700 14px "Poppins", sans-serif;
  background: #f8faff;
  border: 1px solid rgba(0, 20, 54, 0.12);
  border-radius: 10px;
  outline: none;
}

#selectedItemsField {
  min-height: 210px;
  color: #0c2748;
  font: 700 13px/1.65 "Inter", "Poppins", sans-serif;
  white-space: pre-wrap;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(248, 250, 255, 0.94)),
    #f8faff;
  border-color: rgba(0, 107, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.selected-items-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #001436, #0c447c);
  border: 1px solid rgba(0, 157, 255, 0.24);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(0, 20, 54, 0.16);
}

.selected-items-total span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.selected-items-total strong {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: #006bff;
  box-shadow: 0 0 0 4px rgba(0, 107, 255, 0.12);
}

.quote-confirmation {
  display: grid;
  place-items: center;
  min-height: 360px;
  text-align: center;
}

.confirmation-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 34px;
  font-weight: 900;
  background: #006bff;
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(0, 107, 255, 0.28);
}

.quote-confirmation p {
  max-width: 330px;
  margin: 10px 0 0;
  color: rgba(0, 20, 54, 0.72);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.5;
}

.quote-send-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 330px;
  margin-top: 18px;
}

.quote-send-actions a {
  display: grid;
  place-items: center;
  min-height: 46px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  background: linear-gradient(180deg, #009dff, #007bff);
  border-radius: 10px;
  box-shadow: 0 12px 26px rgba(0, 123, 255, 0.24);
}

.quote-send-actions a:last-child {
  color: #0c447c;
  background: #e6f1fb;
  box-shadow: none;
}

.patio-viewer,
.ar-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  background: #000;
  overflow: hidden;
}

.patio-viewer.open,
.ar-screen.open {
  display: block;
}

.ar-screen #arCamera {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.real-ar-screen model-viewer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 50% 28%, rgba(0, 157, 255, 0.18), transparent 35%),
    #001436;
}

.launch-ar-button {
  position: absolute;
  left: 50%;
  bottom: 190px;
  z-index: 6;
  min-height: 54px;
  padding: 0 22px;
  color: #ffffff;
  font: 900 13px "Montserrat", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #009dff, #007bff);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(0, 123, 255, 0.38);
  transform: translateX(-50%);
}

.ar-help {
  position: absolute;
  left: 50%;
  top: 40%;
  width: min(320px, calc(100vw - 40px));
  padding: 18px;
  color: #ffffff;
  font: 800 15px "Poppins", sans-serif;
  line-height: 1.45;
  text-align: center;
  background: rgba(0, 20, 54, 0.72);
  border: 1px solid rgba(0, 191, 255, 0.34);
  border-radius: 18px;
  transform: translate(-50%, -50%);
}

.ar-round-btn {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: #ffffff;
  font-size: 25px;
  font-weight: 900;
  cursor: pointer;
  background: rgba(0, 20, 54, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.back-btn {
  top: max(16px, env(safe-area-inset-top));
  left: 16px;
}

.reset-btn {
  top: max(16px, env(safe-area-inset-top));
  right: 136px;
}

.share-btn {
  top: max(16px, env(safe-area-inset-top));
  right: 76px;
}

.move-btn {
  top: max(16px, env(safe-area-inset-top));
  right: 16px;
}

.rotate-left-btn {
  top: calc(max(16px, env(safe-area-inset-top)) + 62px);
  right: 76px;
}

.rotate-right-btn {
  top: calc(max(16px, env(safe-area-inset-top)) + 62px);
  right: 16px;
}

.patio-viewer-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  color: #001436;
  background: #001436;
}

.patio-viewer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 18%, rgba(0, 157, 255, 0.24), transparent 30%),
    #001436;
}

.patio-viewer-header span {
  color: #009dff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.patio-viewer-header h3 {
  margin: 4px 0 0;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.patio-close {
  display: grid;
  flex: 0 0 42px;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.camera-stage {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 20, 54, 0.9), rgba(0, 107, 255, 0.24)),
    #001436;
}

.camera-stage video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.camera-fallback {
  position: absolute;
  inset: 92px 24px 260px;
  z-index: 3;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
  background: rgba(0, 20, 54, 0.78);
  border: 1px solid rgba(0, 157, 255, 0.32);
  border-radius: 18px;
}

.ar-tent {
  --tent-scale: 0.95;
  --tent-rotation: 0deg;
  position: absolute;
  left: 50%;
  top: 66%;
  width: calc(430px * var(--tent-scale));
  aspect-ratio: 1.45;
  cursor: grab;
  pointer-events: auto;
  touch-action: none;
  transform: translate(-50%, -50%) rotate(var(--tent-rotation));
  filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.42));
}

.ar-tent:active {
  cursor: grabbing;
}

.ar-tent strong {
  position: absolute;
  left: 50%;
  top: -34px;
  z-index: 2;
  padding: 7px 12px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  background: rgba(0, 20, 54, 0.84);
  border: 1px solid rgba(0, 123, 255, 0.75);
  border-radius: 999px;
  transform: translateX(-50%);
}

.ar-tent img,
.tent-overlay {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  border: 3px solid #00bfff;
  border-radius: 18px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.58);
}

.bottom-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 16px;
  padding: 18px 20px max(22px, env(safe-area-inset-bottom));
  color: #ffffff;
  background: rgba(0, 0, 0, 0.78);
  border-radius: 26px 26px 0 0;
  box-shadow: 0 -20px 48px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.bottom-panel label {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bottom-panel select {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  color: #001436;
  font: 900 13px "Montserrat", sans-serif;
  background: #ffffff;
  border: 0;
  border-radius: 12px;
}

.bottom-panel h2 {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-transform: uppercase;
}

.ar-rating {
  margin: 0;
  color: #ffcf33;
  font-size: 13px;
  font-weight: 900;
}

.ar-rating span {
  color: rgba(255, 255, 255, 0.68);
}

.bottom-panel .price {
  grid-row: span 2;
  align-self: start;
  margin: 0;
  color: #ffffff;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.camera-launch-button {
  min-height: 48px;
  padding: 0 18px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  background: linear-gradient(180deg, #009dff, #007bff);
  border: 0;
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(0, 123, 255, 0.32);
}

.ar-mini-controls {
  display: flex;
  gap: 8px;
}

.ar-mini-controls .yard-adjust {
  min-height: 36px;
  padding: 0 12px;
}

.add-btn {
  position: absolute;
  right: 20px;
  top: -32px;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: #001436;
  font-size: 42px;
  font-weight: 900;
  cursor: pointer;
  background: linear-gradient(180deg, #ffd84d, #ffb800);
  border: 4px solid #00bfff;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
}

.patio-controls {
  display: grid;
  grid-template-columns: minmax(190px, 1.2fr) auto minmax(230px, 1fr) minmax(190px, 1fr);
  gap: 14px;
  padding: 18px 20px 20px;
  background: rgba(0, 20, 54, 0.98);
  border-top: 1px solid rgba(0, 123, 255, 0.28);
}

.patio-controls label {
  display: grid;
  gap: 8px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.patio-controls select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  color: #001436;
  font: 900 12px "Montserrat", sans-serif;
  background: #ffffff;
  border: 1px solid rgba(0, 123, 255, 0.34);
  border-radius: 10px;
}

.yard-control-grid {
  display: grid;
  grid-template-columns: repeat(4, 42px);
  gap: 8px;
  align-self: end;
}

.yard-move,
.yard-adjust,
.add-preview-quote-button {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  cursor: pointer;
  border: 0;
  border-radius: 10px;
}

.yard-move {
  width: 42px;
  height: 42px;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

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

.yard-adjust {
  min-height: 38px;
  padding: 0 10px;
  color: #ffffff;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.yard-adjust.reset {
  grid-column: 1 / -1;
  color: #001436;
  background: #ffffff;
}

.add-preview-quote-button {
  align-self: stretch;
  min-height: 48px;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #007bff, #006bff);
}

.yard-disclaimer {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

@media (max-width: 1100px) {
  .showroom-feature {
    grid-template-columns: 1fr;
  }

  .showroom-feature img {
    height: 360px;
  }

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

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

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

  .quote-builder {
    grid-template-columns: 1fr;
  }

  .estimate-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .service-area-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .service-area-card {
    align-items: stretch;
    flex-direction: column;
    border-radius: 22px;
  }

  .service-area-card a {
    width: 100%;
  }

  .showroom-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .showroom-feature {
    border-radius: 22px;
  }

  .showroom-feature img {
    height: 260px;
  }

  .showroom-catalog-button,
  .open-catalog-button {
    width: 100%;
  }

  .showroom-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .showroom-tile,
  .showroom-tile:nth-child(1),
  .showroom-tile:nth-child(6) {
    grid-column: auto;
    min-height: 150px;
  }

  .showroom-tile span {
    right: 10px;
    bottom: 10px;
    left: 10px;
    font-size: 11px;
  }

  .rentals-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .section-heading p {
    gap: 10px;
    font-size: 12px;
  }

  .section-heading p span {
    width: 34px;
  }

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

  .product-actions {
    grid-template-columns: 1fr;
  }

  .product-quantity,
  .auto-cart-hint {
    min-height: 48px;
  }

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

  .instant-quote {
    padding: 22px;
    border-radius: 22px;
  }

  .quote-builder-form {
    grid-template-columns: 1fr;
  }

  .pkg-section {
    padding: 30px 18px;
  }

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

  .quote-field input,
  .quote-field select {
    min-height: 52px;
    font-size: 15px;
  }

  .quote-delivery-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .quote-delivery-note span {
    text-align: left;
  }

  .estimate-card {
    padding: 22px;
  }

  .estimate-total-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-cart-button {
    right: 14px;
    bottom: 14px;
    min-height: 52px;
    padding: 0 14px;
  }

  .quote-cart-panel {
    width: 100%;
  }

  .patio-viewer {
    padding: 0;
  }

  .patio-viewer-card {
    width: 100%;
    height: 100vh;
    max-height: none;
    border-radius: 0;
  }

  .patio-controls {
    grid-template-columns: 1fr;
    max-height: 46vh;
    overflow-y: auto;
  }

  .ar-tent {
    width: calc(280px * var(--tent-scale));
  }

  .yard-control-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .yard-move {
    width: 100%;
  }

  .bottom-panel {
    grid-template-columns: 1fr;
  }

  .bottom-panel .price {
    grid-row: auto;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes kenburns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

.a1 {
  animation: fadeUp 0.7s 0.1s ease both;
}

.a2 {
  animation: fadeUp 0.7s 0.25s ease both;
}

.a3 {
  animation: fadeUp 0.7s 0.4s ease both;
}

.a4 {
  animation: fadeUp 0.7s 0.55s ease both;
}

.hero {
  position: relative;
  height: 680px;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
  background: #042c53;
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: -4;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  animation: kenburns 8s ease-out forwards;
}

.hero-overlay-lr {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: linear-gradient(90deg, rgba(4, 44, 83, 0.92) 0%, rgba(4, 44, 83, 0.7) 55%, rgba(4, 44, 83, 0.15) 100%);
}

.hero-overlay-bt {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(0deg, rgba(4, 44, 83, 0.85) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: min(1280px, 100%);
  height: 100%;
  padding: 120px 48px 60px;
  margin: 0 auto;
}

.hero-text {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 15px;
  margin-bottom: 20px;
  color: #85b7eb;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(55, 138, 221, 0.2);
  border: 1px solid rgba(55, 138, 221, 0.4);
  border-radius: 20px;
}

.hero-title {
  margin: 0 0 22px;
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(58px, 8vw, 92px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  text-shadow: 0 14px 32px rgba(0, 0, 0, 0.34);
}

.hero-title .accent {
  color: #378add;
}

.hero-sub {
  max-width: 500px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

.hero-sub strong {
  color: #ffffff;
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.btn-book,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 24px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.btn-book {
  color: #ffffff;
  background: #378add;
  border: 0;
}

.btn-book:hover {
  background: #185fa5;
  transform: translateY(-1px);
}

.btn-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.56);
  transform: translateY(-1px);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.hero-avatars {
  display: flex;
}

.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-left: -8px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.avatar:first-child {
  margin-left: 0;
}

.hero-stars {
  color: #fac775;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.hero-reviews {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-family: "Inter", sans-serif;
  font-size: 11px;
}

.hero-stats {
  position: absolute;
  right: 40px;
  bottom: 36px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stat-card {
  min-width: 96px;
  padding: 14px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  backdrop-filter: blur(12px);
}

.stat-card.accent {
  background: rgba(55, 138, 221, 0.2);
  border-color: rgba(55, 138, 221, 0.35);
}

.stat-num {
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.stat-card.accent .stat-num {
  color: #378add;
}

.stat-card.gold .stat-num {
  color: #fac775;
}

.stat-label {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-family: "Inter", sans-serif;
  font-size: 10px;
}

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
  transform: translateX(-50%);
}

.dot {
  display: inline-block;
  width: 8px;
  height: 4px;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.3);
  border: 0;
  border-radius: 2px;
  transition: width 0.3s, background 0.3s;
}

.dot.active {
  width: 24px;
  background: #378add;
}

@media (max-width: 840px) {
  .hero {
    height: auto;
    min-height: 760px;
  }

  .hero-content {
    align-items: flex-start;
    justify-content: center;
    min-height: 620px;
    padding: 132px 24px 190px;
    text-align: center;
  }

  .hero-text {
    max-width: 620px;
    margin: 0 auto;
  }

  .hero-buttons,
  .hero-social-proof {
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-stats {
    right: 18px;
    bottom: 66px;
    left: 18px;
    flex-direction: row;
    justify-content: center;
  }

  .stat-card {
    flex: 1;
    min-width: 0;
    padding: 12px 10px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 820px;
  }

  .hero-content {
    min-height: 650px;
    padding: 126px 20px 230px;
  }

  .hero-title {
    font-size: clamp(52px, 17vw, 72px);
  }

  .hero-sub {
    font-size: 14px;
  }

  .btn-book,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-social-proof {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    border-radius: 18px;
  }

  .hero-stats {
    bottom: 62px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stat-card {
    padding: 10px 7px;
  }

  .stat-num {
    font-size: 24px;
  }

  .stat-label {
    font-size: 9px;
  }
}

@keyframes chatBounce {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

.chat-bubble {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 142px;
  height: 56px;
  padding: 0 16px 0 10px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, #0c447c, #378add);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0, 20, 54, 0.28);
  animation: chatBounce 2s infinite;
}

.chat-bubble-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #0c447c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: #ffffff;
  border-radius: 50%;
}

.chat-bubble-text {
  white-space: nowrap;
}

.chat-window {
  position: fixed;
  right: 24px;
  bottom: 164px;
  z-index: 9999;
  display: none;
  flex-direction: column;
  width: min(360px, calc(100vw - 32px));
  height: min(520px, calc(100vh - 190px));
  overflow: hidden;
  font-family: "Inter", "Poppins", sans-serif;
  background: #ffffff;
  border: 1px solid #e0eaf5;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.chat-window.open {
  display: flex;
}

.chat-header {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
  background: #0c447c;
}

.chat-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  background: #378add;
  border-radius: 50%;
}

.chat-title {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.chat-status {
  display: flex;
  gap: 5px;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

.chat-status span {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
}

.chat-close {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 22px;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.chat-messages {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  overflow-y: auto;
  background: #f8faff;
}

.chat-messages::-webkit-scrollbar {
  width: 4px;
}

.chat-messages::-webkit-scrollbar-track {
  background: #f8faff;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: #b5d4f4;
  border-radius: 4px;
}

.chat-message {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 84%;
}

.chat-message.bot {
  align-self: flex-start;
}

.chat-message.user {
  align-self: flex-end;
}

.chat-message-bubble {
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.55;
}

.chat-message.bot .chat-message-bubble {
  color: #222222;
  background: #ffffff;
  border: 1px solid #e0eaf5;
  border-radius: 4px 14px 14px 14px;
}

.chat-message.user .chat-message-bubble {
  color: #ffffff;
  background: #0c447c;
  border-radius: 14px 14px 4px 14px;
}

.chat-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.chat-quick-actions button {
  padding: 6px 12px;
  color: #0c447c;
  font: 700 12px "Inter", sans-serif;
  cursor: pointer;
  background: #e6f1fb;
  border: 1px solid #b5d4f4;
  border-radius: 20px;
}

.chat-typing {
  display: flex;
  gap: 4px;
  align-items: center;
  width: fit-content;
  padding: 10px 14px;
  background: #ffffff;
  border: 1px solid #e0eaf5;
  border-radius: 4px 14px 14px 14px;
}

.chat-typing span {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #0c447c;
  border-radius: 50%;
  animation: chatBounce 0.9s infinite;
}

.chat-typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.chat-typing span:nth-child(3) {
  animation-delay: 0.3s;
}

.chat-input-row {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  background: #ffffff;
  border-top: 1px solid #e0eaf5;
}

.chat-input-row input {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  font: 500 13px "Inter", sans-serif;
  color: #001436;
  border: 1px solid #e0eaf5;
  border-radius: 20px;
  outline: none;
}

.chat-input-row input:focus {
  border-color: #378add;
  box-shadow: 0 0 0 3px rgba(55, 138, 221, 0.16);
}

.chat-input-row button {
  width: 36px;
  height: 36px;
  color: #ffffff;
  font-size: 15px;
  cursor: pointer;
  background: #0c447c;
  border: 0;
  border-radius: 50%;
}

@media (max-width: 560px) {
  .quote-cart-header {
    padding: 18px 16px;
  }

  .quote-cart-header h3 {
    font-size: 28px;
  }

  .cart-help-button {
    min-height: 42px;
    padding: 0;
    width: 42px;
  }

  .cart-help-button .chat-bubble-text {
    display: none;
  }

  .cart-help-button .chat-bubble-icon {
    width: 32px;
    height: 32px;
  }

  .chat-bubble {
    right: 14px;
    top: 92px;
    bottom: auto;
    width: 52px;
    min-width: 52px;
    height: 52px;
    padding: 0;
    gap: 0;
  }

  .chat-bubble-text {
    display: none;
  }

  .chat-bubble-icon {
    width: 36px;
    height: 36px;
  }

  .chat-window {
    right: 10px;
    top: 154px;
    bottom: auto;
    width: calc(100vw - 20px);
    height: min(500px, calc(100vh - 174px));
  }
}

.floating-call-button {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px 0 10px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 900;
  background: linear-gradient(135deg, #007bff, #009dff);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0, 123, 255, 0.34);
}

.floating-call-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #007bff;
  font-size: 18px;
  background: #ffffff;
  border-radius: 50%;
}

@media (max-width: 560px) {
  .floating-call-button {
    left: 14px;
    bottom: 14px;
    justify-content: center;
    width: 52px;
    min-width: 52px;
    height: 52px;
    min-height: 52px;
    padding: 0;
  }

  .floating-call-button span:not(.floating-call-icon) {
    display: none;
  }

  .floating-call-icon {
    width: 36px;
    height: 36px;
  }
}
