@font-face {
  font-family: "GilroyRegular";
  font-style: normal;
  font-display: swap;
  src: local("GilroyRegular"),
    url("assets/fonts/1779726815103-gilroy-regular-0.woff2") format("woff2"),
    url("assets/fonts/1779726812995-gilroy-regular-0.woff") format("woff"),
    url("assets/fonts/1779726807905-gilroy-regular-0.ttf") format("truetype"),
    url("assets/fonts/1779726810881-gilroy-regular-0.otf") format("opentype");
}

:root {
  --interactive-bg: #0D8291;
  --interactive-fg: #FFFFFF;
  --brand-bg: #0b6e7c;
  --brand-fg: #FFFFFF;
  --font-family: "GilroyRegular", -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-family);
  color: #1a1a1a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
svg { display: block; }

/* Layout: narrow centered column like the original Hotbot shell */
.app { max-width: 650px; margin: 0 auto; min-height: 100vh; background: #fff; position: relative; box-shadow: 0 0 40px rgba(0,0,0,.04); }

/* Hero / top layer */
.hero {
  position: relative;
  background-image:
    linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.7)),
    url("assets/images/1779787156803-2119848853-1-1.jpg");
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  color: #fff;
  padding: 16px 14px;
}
.toolbar { display: flex; align-items: center; gap: 0; }
.toolbar .spacer { margin-left: auto; }
.iconbtn {
  background: transparent; border: 0; cursor: pointer; color: #fff;
  width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center;
  padding: 0; opacity: .92;
}
.iconbtn:hover { opacity: 1; }
.iconbtn svg { width: 28px; height: 28px; }

.hero-head { display: flex; align-items: flex-end; margin: 28px 0 6px; }
.property-name { font-size: 42px; font-weight: 600; color: #fff; line-height: 1.05; margin: 0; }
.hero-head .iconbtn { margin-left: auto; }

.back-row { display: flex; align-items: center; }
.back {
  display: inline-flex; align-items: center; gap: 6px;
  color: #fff; font-size: 16px; opacity: .92; padding: 6px 0;
}
.back:hover { opacity: 1; }

/* Sections */
.section { padding: 24px 14px; }
.divider { border: 0; border-top: 1px solid #ececec; margin: 0; }
.section__title {
  font-size: 18px; color: var(--interactive-bg); font-weight: 700;
  margin: 0 0 14px; text-align: left;
}

/* Grid layouts */
.grid { display: grid; gap: 15px; }
.grid.cols-1 { grid-template-columns: 1fr; }
.grid.cols-2 { grid-template-columns: 1fr 1fr; }
.carousel { display: flex; gap: 15px; overflow-x: auto; padding-bottom: 4px; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; }
.carousel > .cardwrap { flex: 0 0 304px; scroll-snap-align: start; }
.carousel::-webkit-scrollbar { height: 6px; }
.carousel::-webkit-scrollbar-thumb { background: #cfd8da; border-radius: 3px; }

/* Card */
.cardwrap { position: relative; }
.tags { position: absolute; top: 10px; left: 10px; z-index: 3; display: flex; gap: 6px; }
.tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 16px; font-weight: 580; line-height: 1;
  padding: 5px 10px; border-radius: 10px;
  color: #fff; background: var(--interactive-bg);
}
.card {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  height: 180px; border-radius: 20px; overflow: hidden;
  background: #000;
}
.card__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: 50% 50%;
}
.card__info { position: relative; z-index: 2; padding: 14px; }
.card__title {
  color: #fff; font-size: 15px; font-weight: 700; line-height: 1.25;
  text-shadow: 0 0 22px rgba(0,0,0,1);
}
.card__desc {
  color: #fff; font-size: 14.4px; font-weight: 400; margin-top: 2px;
  text-shadow: 0 0 18px rgba(0,0,0,.9);
}

/* Category page */
.cat__head { margin-bottom: 18px; }
.cat__title { font-size: 22px; color: var(--interactive-bg); font-weight: 700; margin: 0 0 6px; }
.cat__desc { font-size: 16px; color: #555; white-space: pre-line; }
.sub { margin-bottom: 26px; }
.sub__title { font-size: 18px; color: var(--interactive-bg); font-weight: 700; margin: 0 0 10px; }
.sub__desc { font-size: 16px; color: #555; white-space: pre-line; margin-bottom: 12px; }

/* Product */
.products { display: grid; gap: 12px; grid-template-columns: 1fr; }
.product {
  background: #fff; border: 1px solid #eee; border-radius: 14px; padding: 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.product__title { font-size: 18px; font-weight: 600; color: #1a1a1a; }
.product__desc { font-size: 16px; color: #666; }
.product__price { margin-top: 4px; font-size: 18px; font-weight: 700; color: var(--interactive-bg); }
.product__badge { font-size: 11px; color: #888; }

/* Static page */
.page__title { font-size: 24px; color: var(--interactive-bg); font-weight: 700; margin: 0 0 18px; }
.block { margin-bottom: 14px; }
.block__heading { font-size: 18px; color: var(--interactive-bg); font-weight: 700; margin: 18px 0 6px; }
.block__paragraph { font-size: 18px; line-height: 1.5; color: #2a2a2a; white-space: pre-line; }
.block__buttons { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--interactive-bg); color: #fff;
  padding: 12px 20px; border-radius: 12px; font-size: 16px; font-weight: 600;
  border: none; cursor: pointer;
}
.btn:hover { background: var(--brand-bg); }
.btn.secondary { background: #fff; color: var(--interactive-bg); border: 1px solid var(--interactive-bg); }

/* Footer feedback + watermark */
.feedback {
  text-align: center; padding: 28px 14px 8px;
}
.feedback__text { font-size: 16px; color: #333; margin-bottom: 14px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.feedback__text .emoji { font-size: 20px; }
.watermark { text-align: center; padding: 18px 14px 28px; font-size: 14px; color: #9aa; }
.watermark a { display: inline-flex; align-items: center; gap: 6px; }
.watermark .hotbot-mark {
  width: 16px; height: 16px; background: #FF5D5C; border-radius: 3px; display: inline-block;
}
.watermark .o-70 { opacity: .7; }

@media (max-width: 600px) {
  .property-name { font-size: 34px; }
}

/* Compact hero for subpages */
.hero--compact { padding: 16px 14px 14px; }
.hero-head--compact { margin: 10px 0 4px; }
.page-heading { font-size: 22px; font-weight: 700; color: #fff; margin: 0; }

/* Product card with add button */
.product { flex-direction: row; align-items: stretch; gap: 12px; }
.product__main { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.product__foot { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; gap: 10px; min-width: 90px; }
.add-btn {
  background: var(--interactive-bg); color: #fff; border: 0; cursor: pointer;
  padding: 9px 16px; border-radius: 10px; font-size: 15px; font-weight: 600; white-space: nowrap;
}
.add-btn:hover { background: var(--brand-bg); }
.add-btn.added { background: #2a9d6a; }

/* Floating cart bar */
.cart-bar {
  position: fixed; left: 50%; bottom: 16px; transform: translateX(-50%);
  width: 100%; max-width: 618px; box-sizing: border-box;
  display: flex; align-items: center; gap: 12px;
  background: var(--interactive-bg); color: #fff;
  padding: 12px 16px; border-radius: 16px;
  box-shadow: 0 8px 28px rgba(13,130,145,.35);
  z-index: 50;
}
.cart-bar__info { display: flex; flex-direction: column; line-height: 1.2; }
.cart-bar__count { font-weight: 700; font-size: 16px; }
.cart-bar__total { margin-left: auto; font-weight: 700; font-size: 17px; }
.cart-bar__btn {
  background: #fff; color: var(--interactive-bg); border: 0; cursor: pointer;
  padding: 9px 18px; border-radius: 10px; font-weight: 700; font-size: 15px;
}

/* Cart modal */
.cart-modal { position: fixed; inset: 0; z-index: 100; }
.cart-modal[hidden] { display: none; }
.cart-modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.cart-modal__panel {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 100%; max-width: 650px; max-height: 92vh; overflow-y: auto;
  background: #fff; border-radius: 18px 18px 0 0;
  padding: 18px 16px 24px; box-sizing: border-box;
  animation: slideUp .2s ease;
}
@keyframes slideUp { from { transform: translate(-50%, 100%); } to { transform: translate(-50%, 0); } }
.cart-modal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cart-modal__title { font-size: 20px; font-weight: 700; color: var(--interactive-bg); }
.cart-modal__close { background: none; border: 0; font-size: 20px; color: #888; cursor: pointer; padding: 4px 8px; }
.cart-modal__items { display: flex; flex-direction: column; gap: 10px; }
.cart-item { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
.cart-item__title { flex: 1; font-size: 16px; font-weight: 600; }
.cart-item__desc { font-size: 13px; color: #888; font-weight: 400; }
.cart-item__qty { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 30px; height: 30px; border-radius: 8px; border: 1px solid #ddd; background: #fff; cursor: pointer; font-size: 18px; color: var(--interactive-bg); }
.qty-btn:hover { background: #f0f7f8; }
.cart-item__qtyval { min-width: 24px; text-align: center; font-weight: 600; }
.cart-item__price { font-weight: 700; color: var(--interactive-bg); min-width: 70px; text-align: right; }
.cart-item__remove { background: none; border: 0; color: #c0392b; cursor: pointer; font-size: 14px; padding: 4px; }
.cart-modal__total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 700; margin: 14px 0; color: var(--interactive-bg); }
.cart-empty { text-align: center; color: #888; padding: 30px 0; }
.cart-form { display: flex; flex-direction: column; gap: 12px; }
.field { display: flex; flex-direction: column; gap: 5px; font-size: 14px; color: #444; }
.field input, .field select, .field textarea { font-family: inherit; font-size: 16px; padding: 11px 12px; border: 1px solid #ddd; border-radius: 10px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--interactive-bg); }
.check { display: flex; gap: 8px; align-items: flex-start; font-size: 13px; color: #555; }
.cart-form__submit { margin-top: 4px; }
.cart-success { text-align: center; padding: 24px 8px; }
.cart-success__num { font-size: 22px; font-weight: 700; color: var(--interactive-bg); margin: 8px 0; }

