:root {
  --text: #1d212c;
  --muted: #7a8296;
  --blue: #ff5040;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 12% -10%, #ffffff 0%, #f5f8ff 40%, #f4f6fb 100%);
  line-height: 1.42;
}
body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

label {
  color: #4f5d7a;
}

input,
select,
textarea {
  color: var(--text);
}

.page-shell {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

.page-content {
  padding: 1rem 0 7rem;
}
@media (max-width: 767px) {
  .page-content {
    padding-bottom: 6.9rem;
  }
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin: 0.2rem 0 1rem;
  padding: 0.55rem 0.7rem;
  border-radius: 1.9rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 40px rgba(115, 136, 175, 0.12);
  backdrop-filter: blur(14px);
}
@media (max-width: 767px) {
  .desktop-nav {
    display: none;
  }
}

.desktop-nav-links {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: auto;
}
.desktop-nav-links > a {
  padding: 0.45rem 0.82rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 400;
}
.desktop-nav-links > a.is-active {
  color: #fff;
  background: linear-gradient(145deg, #ff5040 0%, #ff7b70 100%);
}

.desktop-nav-end {
  width: min(460px, 45vw);
}

.hero,
.section-block {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 0 0 0.95rem;
}

.hero-kicker {
  margin: 0 0 0.35rem;
  color: #4a5572;
  font-size: 1rem;
  font-weight: 500;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.65rem, 4.8vw, 2.25rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  margin: 0.72rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.home-page-content {
  padding-top: 0.2rem;
}
@media (max-width: 767px) {
  .home-page-content {
    padding-top: 4.8rem;
  }
}

.tag-strip-section {
  margin-bottom: 0.55rem;
}

.tag-strip-scroll {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.5rem;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0 0 0.35rem;
}
.tag-strip-scroll::-webkit-scrollbar {
  display: none;
}
@media (max-width: 767px) {
  .tag-strip-scroll {
    display: flex;
    overflow-x: auto;
    margin-left: -1rem;
    margin-right: -1rem;
    margin-top: -1rem;
    margin-bottom: -4rem;
    padding: 1rem 1rem 5rem 1rem;
    scroll-snap-type: x proximity;
    scroll-padding-left: 1rem;
    scroll-padding-right: 1rem;
    scrollbar-width: none;
  }
}

.tag-strip-card {
  min-width: 0;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.45rem;
  padding: 0.72rem 0.55rem 0.68rem;
  border-radius: 20px;
  background: radial-gradient(circle at top right, rgba(255, 170, 158, 0.18), transparent 34%), linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 255, 0.92) 100%);
  box-shadow: 0 12px 26px rgba(72, 88, 121, 0.08);
  scroll-snap-align: start;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  text-align: center;
}
.tag-strip-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(72, 88, 121, 0.11);
}
@media (max-width: 767px) {
  .tag-strip-card {
    flex: 0 0 28%;
    flex-basis: 28%;
    min-width: 90px;
  }
}

.tag-strip-icon {
  width: auto;
  height: auto;
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  color: #d24d40;
}
.tag-strip-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.tag-strip-content {
  min-width: 0;
  display: grid;
  gap: 0;
  width: 100%;
}

.tag-strip-name {
  font-size: 0.86rem;
  line-height: 1.2;
  color: #1f2940;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.home-search-wrap {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.home-search-wrap-desktop {
  width: 100%;
}
@media (max-width: 767px) {
  .home-search-wrap-desktop {
    display: none;
  }
}

.home-search-wrap-mobile {
  display: none;
}
@media (max-width: 767px) {
  .home-search-wrap-mobile {
    position: fixed;
    top: 0.65rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(1080px, 94vw);
    z-index: 70;
    display: flex;
  }
}

.home-search-logo {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 0.75rem;
  object-fit: cover;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .home-search-logo {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.7rem;
  }
}

.home-search-form {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex: 1;
}

.home-search-input-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
}

.home-search-input {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 0.68rem 2.85rem 0.68rem 0.95rem;
  background: rgba(255, 255, 255, 0.88);
  outline: none;
}
.home-search-input:focus {
  border-color: #ff978f;
  box-shadow: 0 0 0 3px rgba(255, 80, 64, 0.2);
}
.home-search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.56rem 0.56rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b3382c' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E");
}

.home-search-icon-btn {
  position: absolute;
  right: 0.34rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.1rem;
  height: 2.1rem;
  border: none;
  border-radius: 999px;
  color: #ff5040;
  background: #fff0ee;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.home-search-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.36rem 0.32rem;
  border-radius: 999px;
  font-size: 0.98rem;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  color: #5e6d8f;
}
@media (max-width: 767px) {
  .home-search-clear {
    padding: 0.3rem 0.28rem;
    font-size: 0.9rem;
  }
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.74rem;
}
.section-header h2 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .section-header h2 {
    font-size: 1.18rem;
  }
}

.section-link {
  font-size: 0.96rem;
  color: #5a6890;
  font-weight: 600;
}

.featured-scroll {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}
@media (max-width: 767px) {
  .featured-scroll {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.28rem;
    scroll-snap-type: x mandatory;
  }
}

.featured-card,
.feed-item,
.dashboard-card {
  border-radius: 10px;
  border: 1px solid #edf0f8;
  overflow: hidden;
  background: #fff;
}

.featured-card {
  min-width: 0;
}
@media (max-width: 767px) {
  .featured-card {
    flex: 0 0 74%;
    scroll-snap-align: start;
  }
}

.listing-thumb {
  height: 136px;
}

.listing-card-media {
  height: 136px;
  overflow: hidden;
  background: #f3f6fb;
}

.listing-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gradient-a {
  background: linear-gradient(145deg, #dceeff 0%, #cce5ff 100%);
}

.gradient-b {
  background: linear-gradient(145deg, #efe3ff 0%, #e7dcff 100%);
}

.gradient-c {
  background: linear-gradient(145deg, #ddefff 0%, #d3f2ff 100%);
}

.gradient-d {
  background: linear-gradient(145deg, #d9e8ff 0%, #d9dcff 100%);
}

.gradient-e {
  background: linear-gradient(145deg, #e3f2ff 0%, #d5e4ff 100%);
}

.gradient-f {
  background: linear-gradient(145deg, #e9ecff 0%, #e2f0ff 100%);
}

.listing-content {
  padding: 0.85rem;
}

.listing-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}
.listing-card-header .listing-title {
  flex: 1;
  min-width: 0;
}

.listing-title {
  margin: 0;
  font-size: 1.04rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.listing-meta {
  margin: 0.24rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.listing-footer {
  margin-top: 0.62rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.listing-footer strong {
  color: #29395f;
  font-size: 1rem;
}

.card-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.inline-form {
  display: inline;
}

.btn-icon-edit,
.btn-icon-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  height: 2.35rem;
  padding: 0.45rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, #ff5040 0%, #ff7064 100%);
  border: 1px solid #ff6c60;
  box-shadow: 0 10px 22px rgba(255, 80, 64, 0.2);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
}
.btn-icon-edit:hover,
.btn-icon-detail:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(255, 80, 64, 0.26);
}
.btn-icon-edit:focus-visible,
.btn-icon-detail:focus-visible {
  outline: 2px solid #ffb4ad;
  outline-offset: 2px;
}
.btn-icon-edit .ph,
.btn-icon-detail .ph {
  font-size: 1.1rem;
}

.detail-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.detail-modal[hidden] {
  display: none !important;
}

.detail-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.detail-modal-content {
  position: relative;
  background: #fff;
  border-radius: 20px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.detail-modal-close-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 999px;
  background: #edf2ff;
  color: #4b5a7d;
  cursor: pointer;
}
.detail-modal-close-btn:hover {
  background: #ffe7e4;
  color: #ff5040;
}

.detail-modal-body {
  padding: 1rem;
}
.detail-modal-body.loading {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

.detail-modal-error {
  padding: 1rem;
  color: #b91c1c;
}

.confirm-modal-inner {
  padding: 0.5rem 0;
}

.confirm-modal-message {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: #29395f;
}

.confirm-modal-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.listing-grid-feed {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.1rem;
}
@media (max-width: 767px) {
  .listing-grid-feed {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.feed-media {
  aspect-ratio: 1/1;
}

.feed-content {
  padding: 0.74rem 0.78rem 0.82rem;
}

.page-head .page-head-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.6rem;
}
@media (max-width: 767px) {
  .page-head .page-head-top {
    flex-direction: column;
    align-items: stretch;
  }
}
.page-head h1 {
  margin: 0;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
}
.page-head p {
  margin: 0.42rem 0 0;
  color: var(--muted);
}

.listing-form {
  display: grid;
  gap: 0.88rem;
}
.listing-form .listing-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1rem;
  align-items: start;
}
@media (max-width: 767px) {
  .listing-form .listing-form-layout {
    grid-template-columns: 1fr;
  }
}
.listing-form .listing-form-panel {
  display: grid;
  gap: 0.88rem;
  padding: 1rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
}
.listing-form .listing-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.88rem;
}
@media (max-width: 767px) {
  .listing-form .listing-form-grid {
    grid-template-columns: 1fr;
  }
}
.listing-form .listing-form-span-2 {
  grid-column: 1/-1;
}
.listing-form .listing-submit-btn {
  justify-self: start;
}
.listing-form label {
  display: grid;
  gap: 0.36rem;
  font-weight: 400;
  font-size: 0.95rem;
}
.listing-form label input,
.listing-form label select,
.listing-form label textarea {
  font-weight: 400;
}
.listing-form label input::placeholder,
.listing-form label select::placeholder,
.listing-form label textarea::placeholder {
  font-weight: 400;
}
.listing-form label.remember-option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  align-self: start;
}
.listing-form label.remember-option input[type=checkbox] {
  appearance: none;
  width: 1.1rem;
  height: 1.1rem;
  margin: 0;
  padding: 0;
  border: 1.5px solid #cfd8ec;
  border-radius: 0.3rem;
  background: #fff;
  display: inline-grid;
  place-content: center;
  cursor: pointer;
}
.listing-form label.remember-option input[type=checkbox]::after {
  content: "";
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 0.14rem;
  background: #ff5040;
  transform: scale(0);
  transition: transform 0.14s ease;
}
.listing-form label.remember-option input[type=checkbox]:checked::after {
  transform: scale(1);
}
.listing-form label.remember-option input[type=checkbox]:focus-visible {
  outline: 2px solid #ffb4ad;
  outline-offset: 2px;
}
.listing-form label.checkbox-label {
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 0.85rem;
  padding: 0.9rem 1rem;
  border: 1px solid #dfe6f3;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}
.listing-form label.checkbox-label:hover {
  border-color: #ffc3bc;
  box-shadow: 0 10px 24px rgba(34, 44, 74, 0.06);
}
.listing-form label.checkbox-label:has(input[type=checkbox]:checked) {
  border-color: #ff978f;
  background: linear-gradient(180deg, #fff7f5 0%, #fffdfc 100%);
  box-shadow: 0 0 0 3px rgba(255, 80, 64, 0.1);
}
.listing-form label.checkbox-label input[type=checkbox] {
  appearance: none;
  width: 1.35rem;
  height: 1.35rem;
  margin: 0;
  border: 1.5px solid #c9d4e8;
  border-radius: 0.4rem;
  background: #fff;
  display: inline-grid;
  place-content: center;
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}
.listing-form label.checkbox-label input[type=checkbox]::after {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 0.2rem;
  background: linear-gradient(180deg, #ff7b6e 0%, #ff5040 100%);
  transform: scale(0);
  transition: transform 0.14s ease;
}
.listing-form label.checkbox-label input[type=checkbox]:checked {
  border-color: #ff7b6e;
  background: #fff4f2;
}
.listing-form label.checkbox-label input[type=checkbox]:checked::after {
  transform: scale(1);
}
.listing-form label.checkbox-label input[type=checkbox]:focus-visible {
  outline: 2px solid #ffb4ad;
  outline-offset: 2px;
}
.listing-form label.checkbox-label span {
  line-height: 1.4;
}
.listing-form input,
.listing-form select,
.listing-form textarea {
  border: 1px solid #dfe6f3;
  border-radius: 20px;
  padding: 0.74rem 0.78rem;
  background: #fff;
  outline: none;
  font-weight: 500;
}
.listing-form input::placeholder,
.listing-form select::placeholder,
.listing-form textarea::placeholder {
  color: #8f98ac;
  font-weight: 500;
  opacity: 0.6;
}
.listing-form .ts-wrapper {
  width: 100%;
}
.listing-form .ts-wrapper .ts-control {
  min-height: 52px;
  border: 1px solid #dfe6f3;
  border-radius: 20px;
  background: #fff;
  padding: 0.36rem 0.62rem;
  box-shadow: none;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  gap: 0.28rem !important;
}
.listing-form .ts-wrapper.multi .ts-control {
  align-items: center;
  align-content: center;
  padding: 0.5rem 0.7rem;
}
.listing-form .ts-wrapper.focus .ts-control, .listing-form .ts-wrapper.dropdown-active .ts-control {
  border-color: #ff978f;
  border-radius: 20px !important;
  box-shadow: 0 0 0 3px rgba(255, 80, 64, 0.14);
}
.listing-form .ts-wrapper.multi .ts-control > div {
  margin: 0 !important;
  padding: 0.1rem 0.5rem !important;
  line-height: 1 !important;
  display: inline-flex;
  align-items: center !important;
  gap: 0.2rem !important;
  background: #fff0ee;
  color: #c73d31;
  border-radius: 999px;
  border: 0 !important;
  font-size: 0.84rem;
  font-weight: 600;
}
.listing-form .ts-wrapper.plugin-remove_button .item .remove {
  position: static !important;
  order: 2;
  border: 0 !important;
  margin: 0 0 0 0.5rem !important;
  padding: 0.1rem !important;
  color: #9f554d;
  font-size: 0.92rem !important;
  line-height: 1 !important;
  display: inline-grid;
  place-items: center;
}
.listing-form .ts-wrapper.plugin-remove_button .item .remove:hover {
  background: transparent !important;
  color: #b3382c;
}
.listing-form .ts-wrapper.multi .ts-control > input {
  margin: 0 !important;
  padding: 0 !important;
  min-width: 88px;
  flex: 1 0 88px;
  font-size: 0.94rem;
  font-weight: 500;
  color: #1d212c;
  align-self: center;
}
.listing-form .ts-wrapper.multi .ts-control > input::placeholder {
  color: #8f98ac;
  font-weight: 500;
}
.listing-form .ts-wrapper.has-items .ts-control > input::placeholder {
  opacity: 0;
}
.listing-form .ts-wrapper .ts-dropdown {
  border: 1px solid #dfe6f3;
  border-radius: 18px !important;
  top: calc(100% + 8px) !important;
  overflow: hidden;
  box-shadow: 0 10px 24px -18px rgba(30, 41, 59, 0.42);
}
.listing-form .ts-dropdown .option {
  border-radius: 12px;
  margin: 0.2rem 0.32rem;
  padding: 0.52rem 0.64rem;
  font-size: 0.92rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}
@media (max-width: 767px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.optional-section {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.2rem;
  padding-top: 0.4rem;
  border-top: 1px dashed #e2e8f5;
}

.optional-section-title {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.btn-primary-modern,
.btn-ghost {
  border-radius: 999px;
  font-weight: 400;
}

.btn-primary-modern {
  border: none;
  padding: 0.7rem 1.12rem;
  background: linear-gradient(145deg, #ff5040 0%, #ff7064 100%);
  color: #fff;
}

.my-listings-create-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: max-content;
}
.my-listings-create-btn i {
  font-size: 1.15rem;
  line-height: 1;
}
.my-listings-create-btn span {
  line-height: 1;
}

.btn-ghost {
  padding: 0.65rem 1rem;
  border: 1px solid #dce4f5;
  color: #4b5a7d;
}

.action-text-link {
  display: inline-flex;
  align-items: center;
  color: #4b5a7d;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.2rem 0;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.action-text-link:hover {
  color: #ff5040;
  border-bottom-color: #ff5040;
}

.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}
@media (max-width: 767px) {
  .dashboard-cards {
    grid-template-columns: 1fr;
  }
}

.dashboard-card {
  padding: 0.86rem;
}

.progress-line {
  margin-top: 0.65rem;
  height: 8px;
  border-radius: 999px;
  background: #edf2ff;
  overflow: hidden;
}
.progress-line span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff5040 0%, #ffb0a9 100%);
}

.listing-detail {
  border-radius: 30px;
  overflow: hidden;
}

.detail-media,
.detail-media-wrapper {
  aspect-ratio: 16/9;
}

.detail-media-images {
  display: flex;
  gap: 0.5rem;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.detail-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 1;
  min-width: 0;
}

.detail-main {
  padding: 1.1rem;
}
.detail-main h1 {
  margin: 0;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
}

.detail-price {
  margin: 0.55rem 0 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #29395f;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.75rem 0;
}

.tag-pill {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #edf2ff;
  color: #4b5a7d;
  font-size: 0.85rem;
}

.detail-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.account-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #fff3f1;
  color: #c73d31;
  font-size: 0.86rem;
  line-height: 1;
}

.account-shell {
  display: grid;
  gap: 0.9rem;
}

.account-hero-card {
  padding: 1.2rem 1.25rem;
  border-radius: 28px;
  background: radial-gradient(circle at top right, rgba(255, 159, 148, 0.22), transparent 34%), linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(249, 251, 255, 0.94) 100%);
  box-shadow: 0 18px 44px rgba(70, 86, 122, 0.08);
}
.account-hero-card h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.account-kicker {
  margin: 0 0 0.38rem;
  color: #7c86a0;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-subtitle {
  margin: 0.55rem 0 0;
  max-width: 38rem;
  color: var(--muted);
}

.account-actions {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.account-inline-form {
  display: inline-flex;
}

.account-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: max-content;
}
.account-action-btn i {
  font-size: 1rem;
  line-height: 1;
}
.account-action-btn span {
  line-height: 1;
}

.account-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (max-width: 767px) {
  .account-metric-grid {
    grid-template-columns: 1fr;
  }
}

.account-metric-card {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(80, 95, 130, 0.07);
}

.account-metric-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.9rem;
  display: inline-grid;
  place-items: center;
  background: #fff0ee;
  color: #d24d40;
}
.account-metric-icon i {
  font-size: 1.18rem;
  line-height: 1;
}

.account-metric-label {
  margin: 0.85rem 0 0.32rem;
  color: #7b859e;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.account-metric-value {
  display: block;
  color: #1f2940;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.2;
}

.account-metric-copy {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.saved-listings-empty {
  display: grid;
  justify-items: start;
  gap: 0.75rem;
}
.saved-listings-empty .text-muted {
  margin: 0;
}
.saved-listings-empty .btn-primary-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
}

.my-listing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}
@media (max-width: 767px) {
  .my-listing-grid {
    grid-template-columns: 1fr;
  }
}

.my-listing-card {
  display: grid;
  gap: 0.95rem;
  padding: 1rem 1.05rem;
  border-radius: 24px;
  background: radial-gradient(circle at top right, rgba(255, 164, 154, 0.12), transparent 28%), linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(249, 251, 255, 0.94) 100%);
  box-shadow: 0 16px 34px rgba(72, 88, 121, 0.08);
}

.my-listing-card-top {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.my-listing-card-thumb {
  position: relative;
  width: 92px;
  aspect-ratio: 1/1;
  align-self: start;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, #f6f9ff 0%, #eef3ff 100%);
  box-shadow: inset 0 0 0 1px rgba(224, 232, 244, 0.95);
}
@media (max-width: 767px) {
  .my-listing-card-thumb {
    width: 84px;
  }
}

.my-listing-card-thumb-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.my-listing-card-thumb-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0.5rem;
  color: #7c869f;
  font-size: 0.78rem;
  text-align: center;
}

.my-listing-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.75rem;
  min-width: 0;
}

.my-listing-card-title-wrap {
  min-width: 0;
  display: grid;
  gap: 0.42rem;
}

.my-listing-card-title {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #1f2940;
  font-size: 1.08rem;
  line-height: 1.25;
}
.my-listing-card-title .ph {
  color: #d35a4d;
  font-size: 0.98rem;
  line-height: 1;
}

.my-listing-card-status-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.my-listing-card-status-label,
.my-listing-card-price-label {
  color: #7c869f;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.my-listing-card-body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.my-listing-card-price-block {
  display: grid;
  gap: 0.22rem;
}

.my-listing-card-price {
  color: #22314e;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.1;
}

.my-listing-card-actions {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.my-listing-pay-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding-inline: 0.95rem;
}

.my-listing-card-metrics {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(229, 235, 244, 0.9);
  color: #697691;
  font-size: 0.88rem;
}
.my-listing-card-metrics strong {
  color: #23314e;
  font-weight: 400;
}

.my-listing-metric-item {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
}
.my-listing-metric-item .ph {
  font-size: 1.08rem;
  line-height: 1;
  color: #7c869f;
}

.mobile-nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.78rem;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.16rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(223, 230, 243, 0.95);
  border-radius: 999px;
  padding: 0.34rem;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 14px 38px -24px rgba(30, 41, 59, 0.65);
  z-index: 60;
}
@media (max-width: 767px) {
  .mobile-nav {
    display: flex;
  }
}
.mobile-nav a {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  color: #8a91a3;
  border-radius: 999px;
}
.mobile-nav a .ph {
  font-size: 1.36rem;
  line-height: 1;
}
.mobile-nav a.is-active {
  color: #fff;
  background: linear-gradient(145deg, #ff5040 0%, #ff7b70 100%);
}

.form-success {
  margin-top: 0.65rem;
  font-size: 0.92rem;
  color: #c73d31;
  font-weight: 600;
}

.field-error {
  color: #c2364f;
  font-size: 0.82rem;
  font-weight: 600;
}

.field-optional {
  color: #8b93a6;
  font-size: 0.82rem;
  font-weight: 500;
}

.description-meta {
  margin-top: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.char-counter {
  color: #7a8296;
  font-size: 0.82rem;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.image-upload-card {
  display: block;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
}
.image-upload-card input[type=file] {
  display: none;
}
.image-upload-card:hover .image-preview {
  border-color: #ff9b92;
  transform: translateY(-1px);
}

.image-preview {
  aspect-ratio: 1/1;
  border-radius: 22px;
  border: 1px dashed #c9d5ee;
  background: linear-gradient(145deg, #f6f9ff 0%, #eef3ff 100%);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0.75rem;
  color: #5d6f95;
  font-weight: 600;
  background-size: cover;
  background-position: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.image-preview.has-image {
  border-style: solid;
}
.image-preview.has-image span {
  display: none;
}

.payment-method-section {
  border-radius: 28px;
  background: radial-gradient(circle at top right, rgba(255, 160, 150, 0.12), transparent 26%), linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 250, 255, 0.9) 100%);
  padding: 1.25rem;
  display: grid;
  gap: 1rem;
}

.payment-method-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.payment-method-grid {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
@media (max-width: 767px) {
  .payment-method-grid {
    flex-direction: column;
  }
}

.payment-method-btn {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 2px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.payment-method-btn:hover {
  border-color: #d1d5db;
}
.payment-method-btn:has(:checked) {
  border-color: #ff5040;
  box-shadow: 0 0 0 2px rgba(255, 80, 64, 0.2);
}
.payment-method-btn input.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.payment-method-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: #111827;
  border-radius: 0.25rem;
  flex-shrink: 0;
}

.payment-method-content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.payment-method-label {
  font-weight: 500;
  color: #111827;
}

.payment-method-desc {
  font-size: 0.875rem;
  color: #6b7280;
}

.transfer-accounts {
  display: grid;
  gap: 1.2rem;
}

.payment-form {
  display: grid;
  gap: 1rem;
}

.payment-method-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.1rem;
}

.payment-method-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  min-height: 2.7rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: #fff;
  color: #5d6d8f;
  box-shadow: inset 0 0 0 1px rgba(224, 231, 243, 0.95);
  cursor: pointer;
  transition: color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}
.payment-method-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.payment-method-pill span {
  line-height: 1;
}
.payment-method-pill small {
  color: inherit;
  font-size: 0.76rem;
  line-height: 1;
  opacity: 0.72;
}
.payment-method-pill:has(input:checked) {
  color: #fff;
  background: linear-gradient(145deg, #ff5040 0%, #ff7b70 100%);
  box-shadow: none;
}
.payment-method-pill.is-disabled {
  color: #97a1b7;
  background: rgba(255, 255, 255, 0.72);
  cursor: not-allowed;
}

.payment-section-head {
  display: grid;
  gap: 0.2rem;
}

.payment-step {
  margin: 0;
  color: #d35a4d;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.transfer-slip-label {
  font-size: 1.08rem;
  font-weight: 400;
  color: #1f2940;
  margin: 0;
}

.transfer-slip-upload {
  max-width: 280px;
}
.transfer-slip-upload .image-upload-card {
  width: 100%;
}

.transfer-accounts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 767px) {
  .transfer-accounts-grid {
    grid-template-columns: 1fr;
  }
}

.transfer-account-option {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(228, 234, 245, 0.9);
}

.transfer-copy-btn {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0.85rem;
  background: #fff;
  color: #5d6f95;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(225, 232, 244, 0.95);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.transfer-copy-btn:hover {
  color: #c73d31;
  background: #fff4f2;
  transform: translateY(-1px);
}
.transfer-copy-btn:focus-visible {
  outline: 2px solid #c73d31;
  outline-offset: 2px;
}
.transfer-copy-btn i {
  font-size: 1.125rem;
}

.transfer-account-icon {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-grid;
  place-items: center;
  background: #fff1ef;
  color: #d2584b;
  border-radius: 0.95rem;
  flex-shrink: 0;
}
.transfer-account-icon i {
  font-size: 1.25rem;
  line-height: 1;
}

.transfer-account-top {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.transfer-account-bottom {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.transfer-account-header {
  font-weight: 400;
  color: #273552;
  font-size: 1rem;
}

.transfer-account-details {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  min-width: 0;
  box-shadow: inset 0 0 0 1px rgba(233, 238, 246, 0.95);
}

.transfer-account-name {
  font-size: 0.875rem;
  color: #6d7891;
  font-weight: 400;
}

.transfer-account-number {
  font-size: 0.94rem;
  color: #1f2940;
  font-family: ui-monospace, monospace;
  letter-spacing: 0.02em;
}

.payment-summary-card {
  justify-self: start;
  display: grid;
  gap: 0.32rem;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(78, 94, 128, 0.08);
}

.payment-summary-label {
  margin: 0;
  color: #7a849b;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.payment-summary-value {
  color: #1f2940;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.1;
}

.payment-summary-copy {
  margin: 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.payment-submit-btn {
  justify-self: start;
  margin-top: 0.35rem;
}

.status-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
}
.status-badge.status-processing, .status-badge.status-transferapprovalrequired, .status-badge.status-googlevisionprocessing, .status-badge.status-adminapprovalrequired  {
  background: rgba(43, 123, 255, 0.15);
  color: #4b9aff;
}
.status-badge.status-denied, .status-badge.status-googlevisiondenied, .status-badge.status-admindenied {
  background: rgba(255, 107, 107, 0.15);
  color: #ff6b6b;
}
.status-badge.status-approved {
  background: rgba(46, 213, 115, 0.15);
  color: #2ed573;
}
.status-badge.status-editstatusapproval {
  background: rgba(253, 246, 178, 0.5);
  color: #c5a800;
}
.status-badge.status-inactive {
  background: rgba(156, 163, 175, 0.15);
  color: #9ca3af;
}
.status-badge.status-pendingpayment {
  background: rgba(251, 191, 36, 0.2);
  color: #d97706;
}
.status-badge.status-sold {
  background: rgba(107, 114, 128, 0.2);
  color: #6b7280;
}
.status-badge.status-active {
  background: rgba(46, 213, 115, 0.15);
  color: #2ed573;
}

.report-link {
  margin-top: 0.75rem;
  padding: 0;
  border: none;
  background: none;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
}
.report-link:hover {
  color: #b91c1c;
  text-decoration: underline;
}

.report-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 1rem;
}
.report-modal[hidden] {
  display: none !important;
}

.report-modal-panel {
  position: relative;
  background: #fff;
  border-radius: 20px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
}

.report-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.report-modal-header h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
}

.report-modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 999px;
  background: #edf2ff;
  color: #4b5a7d;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}
.report-modal-close:hover {
  background: #ffe7e4;
  color: #ff5040;
}

.report-modal-textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 0.75rem;
  font-size: 0.875rem;
  font-family: inherit;
  min-height: 120px;
  resize: vertical;
}
.report-modal-textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(255, 80, 64, 0.15);
}

.report-modal-wordcount {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

.report-modal-message {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.report-modal-message[hidden] {
  display: none;
}

.report-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1rem;
}

.report-btn-cancel {
  padding: 0.5rem 1rem;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  font-size: 0.875rem;
}
.report-btn-cancel:hover {
  background: #f9fafb;
}

.report-btn-submit {
  padding: 0.5rem 1rem;
  border-radius: 10px;
  border: none;
  background: #dc2626;
  color: #fff;
  cursor: pointer;
  font-size: 0.875rem;
}
.report-btn-submit:hover {
  background: #b91c1c;
}
.report-btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.suggestion-tab-headers {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.suggestion-tab-btn {
  padding: 0.45rem 0.82rem;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
}
.suggestion-tab-btn:hover {
  color: var(--text);
}
.suggestion-tab-btn.is-active {
  color: #fff;
  background: linear-gradient(145deg, #ff5040 0%, #ff7b70 100%);
}

.suggestion-list {
  display: grid;
  gap: 0.8rem;
}

.suggestion-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 24px;
  background: radial-gradient(circle at top right, rgba(255, 164, 154, 0.16), transparent 28%), linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 251, 255, 0.95) 100%);
  box-shadow: 0 16px 34px rgba(72, 88, 121, 0.07);
}
@media (max-width: 767px) {
  .suggestion-card {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
}

.suggestion-card-body {
  min-width: 0;
}

.suggestion-comment {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.5;
}

.suggestion-meta {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.suggestion-meta-item,
.suggestion-status {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
}

.suggestion-status {
  padding: 0.24rem 0.55rem;
  border-radius: 999px;
  background: #f5f7fc;
}
.suggestion-status .ph {
  font-size: 0.95rem;
  line-height: 1;
}

.suggestion-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  align-self: end;
}

.suggestion-action-group {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  min-height: 2.5rem;
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
  background: #fff;
  color: #5f6d8f;
  box-shadow: inset 0 0 0 1px rgba(232, 237, 246, 0.9);
}

.suggestion-action-count {
  min-width: 1.1ch;
  font-size: 0.9rem;
  color: #21314f;
  line-height: 1;
}

.suggestion-engagement {
  color: var(--muted);
  min-height: 2.5rem;
}
.suggestion-engagement .ph {
  font-size: 1rem;
  line-height: 1;
}

.suggestion-vote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border: none;
  background: transparent;
  color: #6d7a99;
  cursor: pointer;
  border-radius: 999px;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.suggestion-vote-btn:hover {
  color: #ff5040;
  background: #fff0ee;
  transform: translateY(-1px);
}
.suggestion-vote-btn .ph {
  font-size: 1rem;
  line-height: 1;
}
.suggestion-vote-btn.is-active {
  color: #fff;
  background: linear-gradient(145deg, #ff5040 0%, #ff7b70 100%);
}

/*# sourceMappingURL=global.css.map */
