/* [project]/src/app/style.css [app-client] (css) */
@layer theme {
  :root, :host {
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
      "Noto Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
      "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}

@layer base {
  *, :after, :before, ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  html, :host {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(--default-font-family, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }

  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }

  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }

  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }

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

  b, strong {
    font-weight: bolder;
  }

  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }

  small {
    font-size: 80%;
  }

  sub, sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative;
  }

  sub {
    bottom: -.25em;
  }

  sup {
    top: -.5em;
  }

  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }

  :-moz-focusring:where(:not(iframe)) {
    outline: auto;
  }

  progress {
    vertical-align: baseline;
  }

  summary {
    display: list-item;
  }

  ol, ul, menu {
    list-style: none;
  }

  img, svg, video, canvas, audio, iframe, embed, object {
    vertical-align: middle;
    display: block;
  }

  img, video {
    max-width: 100%;
    height: auto;
  }

  button, input, select, optgroup, textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }

  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }

  ::file-selector-button {
    margin-inline-end: 4px;
  }

  ::placeholder {
    opacity: 1;
  }

  @supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentColor;
    }

    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }

  textarea {
    resize: vertical;
  }

  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }

  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }

  ::-webkit-datetime-edit {
    display: inline-flex;
  }

  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }

  ::-webkit-datetime-edit {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-year-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-month-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-day-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-hour-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-minute-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-second-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-millisecond-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }

  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }

  :-moz-ui-invalid {
    box-shadow: none;
  }

  button, input:where([type="button"], [type="reset"], [type="submit"]) {
    appearance: button;
  }

  ::file-selector-button {
    appearance: button;
  }

  ::-webkit-inner-spin-button {
    height: auto;
  }

  ::-webkit-outer-spin-button {
    height: auto;
  }

  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}

@layer components;

@layer utilities {
  .visible {
    visibility: visible;
  }

  .grid {
    display: grid;
  }
}

:root {
  --ink: #111;
  --accent: #f27a21;
  --cream: #fffaf5;
  --line: #eadfd6;
  --muted: #756c65;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--cream);
  color: var(--ink);
  margin: 0;
  font-family: Arial, Tahoma, sans-serif;
}

button, input, select {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
}

.shell {
  max-width: 1180px;
  margin: auto;
  padding: 0 24px;
}

.topbar {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
  height: 76px;
  display: flex;
}

.brand {
  align-items: center;
  gap: 9px;
  font-size: 21px;
  font-weight: 800;
  display: flex;
}

.brand-mark {
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  place-items: center;
  width: 34px;
  height: 34px;
  display: grid;
}

.topbar nav {
  gap: 30px;
  margin-left: auto;
  margin-right: 60px;
  display: flex;
}

.topbar nav a {
  color: var(--muted);
  font-size: 14px;
}

.topbar nav .active {
  color: var(--accent);
  font-weight: bold;
}

.topbar small {
  color: #b6500d;
  background: #ffe5d1;
  border-radius: 20px;
  padding: 2px 6px;
}

.outline-btn, .primary-btn {
  background: var(--accent);
  color: #fff;
  border-radius: 9px;
  padding: 11px 17px;
  font-weight: bold;
}

.outline-btn {
  color: var(--accent);
  background: none;
  border: 1px solid #f5b17b;
}

.hero {
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  min-height: 405px;
  display: flex;
}

.hero > div:first-child {
  max-width: 580px;
}

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: bold;
}

.hero h1 {
  letter-spacing: -2px;
  margin: 13px 0;
  font-size: 56px;
  line-height: 1.08;
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero p {
  color: var(--muted);
  max-width: 490px;
  font-size: 16px;
  line-height: 1.8;
}

.search {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  margin-top: 22px;
  padding: 5px;
  display: flex;
  box-shadow: 0 8px 22px #6b311210;
}

.search span {
  color: #8c8078;
  padding: 6px 10px;
  font-size: 27px;
}

.search input {
  border: 0;
  outline: 0;
  flex: 1;
  min-width: 0;
}

.search button {
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  padding: 10px 23px;
}

.filters {
  gap: 9px;
  margin-top: 10px;
  display: flex;
}

.filters label {
  border: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
  border-radius: 9px;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  font-size: 11px;
  display: flex;
}

.filters select {
  color: var(--ink);
  background: none;
  border: 0;
  outline: 0;
  font-size: 12px;
}

.hero-art {
  width: 400px;
  height: 300px;
  position: relative;
}

.sun {
  background: #ffe6d2;
  border-radius: 50% 50% 20% 20%;
  position: absolute;
  inset: 30px 15px;
  transform: rotate(-8deg);
}

.art-card {
  background: #fff;
  border-radius: 15px;
  flex-direction: column;
  gap: 4px;
  padding: 17px;
  font-size: 31px;
  display: flex;
  position: absolute;
  box-shadow: 0 13px 30px #6b311220;
}

.art-card b {
  font-size: 14px;
}

.art-card small {
  color: var(--muted);
  font-size: 11px;
}

.card-one {
  top: 35px;
  right: 35px;
}

.card-two {
  bottom: 25px;
  left: 20px;
}

.art-circle {
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  place-items: center;
  width: 100px;
  height: 100px;
  font-size: 13px;
  display: grid;
  position: absolute;
  bottom: 85px;
  right: 140px;
  transform: rotate(10deg);
}

.section-head {
  justify-content: space-between;
  align-items: end;
  margin-bottom: 20px;
  display: flex;
}

.section-head h2 {
  margin: 6px 0 0;
  font-size: 25px;
}

.muted {
  color: #9a8d84;
  font-size: 13px;
}

.categories {
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 62px;
  display: flex;
}

.category {
  border: 1px solid var(--line);
  color: #6d625b;
  background: #fff;
  border-radius: 11px;
  padding: 12px 15px;
  font-size: 13px;
}

.category span {
  margin-left: 7px;
  font-size: 20px;
}

.category.selected, .category:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.listings {
  padding-bottom: 55px;
}

.link-btn {
  color: var(--accent);
  background: none;
  font-size: 13px;
}

.grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  display: grid;
}

.listing {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}

.listing-image {
  background: #fff0e4;
  place-items: center;
  height: 170px;
  display: grid;
  position: relative;
}

.listing-image > span {
  font-size: 72px;
}

.listing-image label {
  color: #fff;
  background: #111;
  border-radius: 5px;
  padding: 4px 8px;
  font-size: 11px;
  position: absolute;
  top: 11px;
  right: 11px;
}

.heart {
  color: #8a7c73;
  background: #fff;
  border-radius: 50%;
  width: 33px;
  height: 33px;
  font-size: 21px;
  position: absolute;
  top: 9px;
  left: 11px;
}

.heart.saved {
  color: #e35432;
}

.listing-body {
  padding: 15px;
}

.tag-row {
  color: #90847c;
  font-size: 11px;
}

.tag-row span:first-child {
  color: var(--accent);
}

.listing h3 {
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 9px 0 11px;
  font-size: 15px;
  overflow: hidden;
}

.listing strong {
  color: var(--accent);
  font-size: 18px;
}

.listing strong small {
  font-size: 11px;
  font-weight: normal;
}

.listing p {
  color: #958980;
  margin: 9px 0 0;
  font-size: 11px;
}

.empty {
  text-align: center;
  color: var(--muted);
  padding: 45px;
}

.cta {
  color: #fff;
  background: #111;
  border-radius: 16px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  padding: 32px 37px;
  display: flex;
}

.cta h2 {
  margin: 7px 0;
  font-size: 26px;
}

.cta p {
  color: #c6bbb4;
  margin: 0;
  font-size: 13px;
}

.cta button {
  background: var(--accent);
  color: #fff;
  border-radius: 9px;
  padding: 13px 18px;
}

.cta button span {
  margin-right: 13px;
}

footer {
  border-top: 1px solid var(--line);
  color: #91857d;
  align-items: center;
  gap: 22px;
  padding: 23px 0;
  font-size: 12px;
  display: flex;
}

footer .brand {
  color: var(--ink);
  margin-left: auto;
}

footer .brand + span {
  margin-right: auto;
}

.modal-backdrop {
  z-index: 5;
  background: #111b;
  place-items: center;
  padding: 18px;
  display: grid;
  position: fixed;
  inset: 0;
}

.modal {
  background: var(--cream);
  border-radius: 16px;
  width: 100%;
  max-width: 510px;
  padding: 28px;
  position: relative;
}

.modal h2 {
  margin: 8px 0 22px;
}

.modal label {
  color: var(--muted);
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 12px;
  display: flex;
}

.modal input, .modal select {
  border: 1px solid var(--line);
  outline-color: var(--accent);
  background: #fff;
  border-radius: 8px;
  padding: 11px;
}

.form-row {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  display: grid;
}

.close {
  color: var(--muted);
  background: none;
  font-size: 24px;
  position: absolute;
  top: 14px;
  left: 18px;
}

.primary-btn {
  width: 100%;
  margin-top: 4px;
}

@media (max-width: 760px) {
  .shell {
    padding: 0 16px;
  }

  .topbar {
    height: 68px;
  }

  .topbar nav {
    display: none;
  }

  .outline-btn {
    padding: 9px 11px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding: 45px 0 52px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-art {
    display: none;
  }

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

  .listing-image {
    height: 135px;
  }

  .listing-image > span {
    font-size: 56px;
  }

  .section-head {
    align-items: start;
  }

  .muted {
    display: none;
  }

  .categories {
    flex-wrap: nowrap;
    margin-bottom: 44px;
    padding-bottom: 3px;
    overflow: auto;
  }

  .category {
    white-space: nowrap;
  }

  .cta {
    padding: 26px 22px;
    display: block;
  }

  .cta button {
    margin-top: 20px;
  }

  footer {
    flex-wrap: wrap;
    gap: 13px;
  }

  footer .brand {
    margin-left: 0;
  }

  footer .brand + span {
    order: 3;
    width: 100%;
    margin-right: 0;
  }
}

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

  .listing-image {
    height: 155px;
  }

  .search button {
    padding: 10px 13px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .filters {
    flex-wrap: wrap;
  }
}

.contact-btn {
  color: #fff;
  background: #111;
  border-radius: 8px;
  width: 100%;
  margin-top: 13px;
  padding: 9px;
  font-size: 12px;
}

.support-fab {
  background: var(--accent);
  color: #fff;
  z-index: 3;
  border-radius: 50%;
  width: 62px;
  height: 62px;
  font-size: 25px;
  position: fixed;
  bottom: 22px;
  right: 22px;
  box-shadow: 0 8px 22px #f27a2166;
}

.support-fab span {
  margin-top: 2px;
  font-size: 10px;
  display: block;
}

.contact-modal {
  background: var(--cream);
  border-radius: 16px;
  width: 100%;
  max-width: 360px;
  padding: 28px;
  position: relative;
}

.contact-modal h2 {
  margin: 8px 0;
}

.contact-modal p {
  color: var(--muted);
  font-size: 13px;
}

.contact-option {
  text-align: center;
  border-radius: 9px;
  margin-top: 10px;
  padding: 13px;
  font-weight: bold;
  text-decoration: none;
  display: block;
}

.contact-option.call {
  background: var(--accent);
  color: #fff;
}

.contact-option.whatsapp {
  color: #fff;
  background: #20a863;
}

@media (max-width: 760px) {
  .support-fab {
    width: 58px;
    height: 58px;
    bottom: 16px;
    right: 16px;
  }
}

.details {
  line-height: 1.5;
  color: #756c65 !important;
}

.tag-row span:first-child {
  white-space: normal;
}

.form-error {
  color: #d9482b;
  margin-top: 5px;
  font-size: 11px;
  display: block;
}

.modal input[type="file"] {
  padding: 9px;
}

.photo-upload {
  border: 2px dashed var(--accent);
  text-align: center;
  background: #fff3e9;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 150px !important;
  font-size: 14px !important;
}

.photo-upload span {
  font-size: 34px;
}

.photo-upload small {
  font-size: 11px;
}

.photo-upload input {
  opacity: 0;
  cursor: pointer;
  position: absolute;
  inset: 0;
}

/*# sourceMappingURL=src_app_style_0i_b2ca.css.map*/