:root {
  --primary-color: #234042;
  --secondary-color: #ffb389;
  --bg-1: #ebe9e5;
  --bg-2: #fffbf2;
  --inner-0: 1rem;
  --inner: 3rem;
  --spacer: 7rem;
  --radius: 30px;
}

.floating-cart {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #234042;
  color: #fff;
  padding: var(--radius);
  border-radius: var(--radius);
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  font-size: 14px;
  backdrop-filter: blur(10px);
}
.floating-cart h3 {
  font-size: 2rem;
  margin: 0;
  margin-bottom: 20px;
  padding: 0;
}
.floating-cart a {
  transition: 0.2s ease;
}
.floating-cart a:link, .floating-cart a:visited {
  color: var(--secondary-color);
  border-bottom: 1px solid rgba(255, 179, 137, 0);
}
.floating-cart a:hover {
  border-bottom: 1px solid #ffb389;
}

.floating-cart strong {
  display: block;
  margin-bottom: 8px;
}

.add-room {
  padding: 10px 16px;
  border-radius: 8px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
}

.cart-cta {
  margin-top: 20px;
  display: block;
  padding: 10px;
  background: #ffb389;
  color: #234042 !important;
  text-align: center;
  text-transform: uppercase;
  border-radius: 30px;
  font-weight: 400;
}
.cart-cta:link, .cart-cta:visited {
  text-decoration: none !important;
  font-weight: 500;
}

/*# sourceMappingURL=floating-cart.css.map */
