:root {
  --dealify-blue: #0cc4e9;
  --dealify-blue-dark: #08a9ca;
  --dealify-grey: #979492;
  --dealify-pink: #fa5391;
  --text: #111827;
  --muted: #5c6873;
  --page: #ffffff;
  --soft-page: #f6f8fa;
  --card: #ffffff;
  --line: rgba(12, 196, 233, 0.18);
  --shadow-soft: 0 8px 18px rgba(8, 36, 51, 0.07);
  --shadow-blue: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  width: 100%;
  min-height: 100%;
  background: #ffffff;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  min-width: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  background: #ffffff;
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
  overflow: hidden;
}

button,
a,
input,
textarea,
select {
  font-family: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

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

.app-shell {
  width: min(calc(100vw - 32px), 940px);
  max-width: 940px;
  min-height: 100vh;
  margin: 0 auto;
  padding: calc(env(safe-area-inset-top, 0px) + 76px) 0 calc(env(safe-area-inset-bottom, 0px) + 42px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.app-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  width: 100%;
  min-height: calc(env(safe-area-inset-top, 0px) + 62px);
  padding: calc(env(safe-area-inset-top, 0px) + 8px) max(16px, env(safe-area-inset-left, 0px)) 8px max(16px, env(safe-area-inset-right, 0px));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px solid #f0f0f0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-button {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: var(--dealify-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex: 0 0 auto;
}

.header-button:hover {
  background: rgba(12, 196, 233, 0.08);
}

.header-title {
  flex: 1;
  min-width: 0;
  margin: 0 8px;
  color: #1f2933;
  font-size: clamp(15px, 2vw, 16px);
  font-weight: 800;
  line-height: 40px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: capitalize;
}

.gallery-container {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 0;
  margin: 10px auto 0;
  border-radius: 14px;
  overflow: hidden;
  background: #f8f9fa;
  border: 3px solid var(--dealify-blue);
  box-shadow: var(--shadow-blue);
  align-self: center;
}

.listing-swiper,
.swiper-wrapper,
.swiper-slide,
.gallery-image-button,
.gallery-image-wrap {
  width: 100%;
  height: 100%;
}

.swiper-slide,
.gallery-image-button,
.gallery-image-wrap {
  background: #f8f9fa;
}

.gallery-image-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.gallery-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #f8f9fa;
}

.image-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(96px, 18vw, 108px);
  height: clamp(96px, 18vw, 108px);
  object-fit: contain;
  opacity: 0.35;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
}

.no-image-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  background: #f8f9fa;
  text-align: center;
}

.no-image-container i {
  font-size: 72px;
  color: #d1d5db;
  margin-bottom: 12px;
}

.no-image-container p {
  margin: 0;
  font-size: 15px;
  font-weight: 750;
}

.image-counter {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 16;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(12, 196, 233, 0.92);
  color: #fff;
  font-size: 11.5px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(12, 196, 233, 0.22);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 17;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transform: translateY(-50%);
}

.gallery-nav-left { left: 12px; }
.gallery-nav-right { right: 12px; }

.pagination-container {
  position: absolute;
  left: 50%;
  bottom: 13px;
  z-index: 18;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.24);
  transform: translateX(-50%);
}

.pagination-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #fff;
  opacity: 0.72;
  transition: width 0.2s ease, opacity 0.2s ease;
}

.pagination-dot.active {
  width: 18px;
  background: var(--dealify-blue);
  opacity: 1;
}

.details-container {
  width: 100%;
  max-width: 940px;
  margin: 12px auto 20px;
  padding: clamp(18px, 2.4vw, 28px);
  border-radius: clamp(18px, 2.6vw, 22px);
  background: var(--dealify-blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
  overflow: hidden;
}

.title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.listing-title {
  flex: 1;
  min-width: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: capitalize;
  word-break: break-word;
}

.title-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.action-icon-button {
  width: 38px;
  height: 38px;
  margin-top: -4px;
  padding: 4px;
  border-radius: 19px;
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  overflow: visible;
}

.action-icon-button:hover {
  background: rgba(255, 255, 255, 0.12);
}

.favorite-button.active,
.favorite-button.active i {
  background: transparent;
  color: var(--dealify-pink);
}

.price-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 14px;
}

.price-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: #fff;
  font-size: clamp(19px, 2.3vw, 24px);
  line-height: 1.15;
  font-weight: 800;
}

.price-text {
  font-size: 18px;
  font-weight: 800;
}

.aed-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 8;
  flex: 0 0 auto;
  display: block;
  transform: translateY(1px);
}

.seller-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 5px 0 6px;
  padding: 8px 0;
  background: transparent;
}

.seller-avatar-container {
  width: 54px;
  height: 54px;
  border-radius: 27px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.seller-avatar {
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 25px;
  object-fit: cover;
  background: #e8f7fb;
}

.seller-details {
  flex: 1;
  min-width: 0;
}

.seller-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  min-width: 0;
}

.seller-name {
  min-width: 0;
  color: #fff;
  font-size: clamp(14px, 1.7vw, 16px);
  font-weight: 600;
  line-height: 20px;
  text-transform: capitalize;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.seller-stats {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(12.5px, 1.4vw, 13px);
  font-weight: 500;
}

.verified-badge {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: inline-block;
}

.verified-badge-base {
  position: absolute;
  inset: 0;
  color: #fff;
  font-size: 20px;
  line-height: 20px;
}

.verified-badge-check {
  position: absolute;
  left: 4px;
  top: 4px;
  color: var(--dealify-blue);
  font-size: 11px;
  line-height: 11px;
}

.verified-material-icon {
  color: #fff;
  font-size: 20px;
  line-height: 20px;
}

.action-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(8px, 1.4vw, 12px);
  margin: 12px 0 6px;
}

.contact-button {
  min-width: 0;
  min-height: 0;
  padding: clamp(12px, 1.8vw, 14px) 12px;
  border-radius: 12px;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: clamp(14px, 1.6vw, 15px);
  font-weight: 600;
  box-shadow: none;
}

.whatsapp-button { background: #25d366; }
.call-button { background: var(--dealify-grey); }

.secure-payment-link {
  margin: 0 0 20px;
  padding-top: 10px;
  padding-bottom: 14px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.secure-payment-banner {
  width: 100%;
  min-height: 0;
  margin-bottom: 16px;
  padding: 12px 10px;
  border: 2px solid #fff;
  border-radius: 14px;
  background: #fff;
  color: var(--dealify-blue) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.secure-payment-banner span {
  color: var(--dealify-blue);
  font-size: clamp(13.5px, 1.7vw, 15px);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.secure-payment-banner small {
  margin-top: 4px;
  color: #a6a6a6;
  font-size: 11px;
  font-weight: 500;
}

.learn-more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 28px;
  margin-top: 0;
  padding: 5px 10px;
  border-radius: 7px;
  background: var(--dealify-blue);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.description-divider {
  display: none;
}

.description-container,
.additional-details-container {
  margin: 0 0 18px;
}

.section-title {
  width: 100%;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(18px, 2.1vw, 20px);
  font-weight: 800;
  text-align: center;
  align-self: center;
  letter-spacing: 0.2px;
}

.meta-info,
.description-meta-pills-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 12px;
  margin: 0;
}

.meta-item,
.description-meta-pill {
  flex: 1 1 30%;
  min-width: 130px;
  max-width: 100%;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.meta-item span:last-child,
.description-meta-pill span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.meta-icon-wrap {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(12, 196, 233, 0.10);
  color: var(--dealify-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 11px;
}

.description-message-box,
.additional-details-box {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  color: #222;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.08);
}

.description-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) 1fr;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #edf2f5;
}

.description-row:first-child {
  padding-top: 0;
}

.description-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.description-label,
.description-value,
.description-line,
.additional-details-text {
  color: #222;
  font-size: 15px;
  line-height: 23px;
}

.description-label {
  font-weight: 800;
}

.description-value,
.description-line,
.additional-details-text {
  font-weight: 500;
  word-break: break-word;
}

.description-line {
  margin: 0 0 9px;
}

.description-line:last-child {
  margin-bottom: 0;
}

.map-section {
  margin-bottom: 20px;
}

.map-container {
  position: relative;
  width: 100%;
  height: 200px;
  display: block;
  overflow: hidden;
  padding: 0;
  border-radius: 12px;
  background: #e9f7fb;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.map-preview {
  width: 100%;
  height: 100%;
}

.map-overlay {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--dealify-blue);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.report-button {
  width: auto;
  min-height: 44px;
  margin: 18px auto 0;
  padding: 12px 20px;
  border-radius: 10px;
  background: #ffffff;
  color: #ef233c;
  border: 1px solid #ffc6c6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.seller-section-wrapper {
  width: 100%;
  max-width: 940px;
  margin-top: 20px;
  align-self: center;
}

.seller-section-title {
  margin: 0 0 12px;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.seller-listings-container {
  overflow: hidden;
  padding: 12px 0 12px 12px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--dealify-blue);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.seller-listings-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 2px 16px 8px 0;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.seller-listings-scroll::-webkit-scrollbar {
  display: none;
}

.seller-listing-card {
  position: relative;
  width: 168px;
  min-width: 168px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 9px rgba(0, 0, 0, 0.10);
}

.seller-listing-image-wrap {
  position: relative;
  width: 100%;
  height: 116px;
  background: #f6f8fa;
  overflow: hidden;
}

.seller-listing-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.seller-image-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  object-fit: contain;
  opacity: 0.32;
  transform: translate(-50%, -50%);
}

.seller-listing-details {
  padding: 8px;
  background: var(--dealify-blue);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.seller-listing-title {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 17px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: capitalize;
}

.seller-listing-price-row {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.seller-aed-icon {
  width: 13px;
  height: 13px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 8;
  transform: translateY(1px);
}

.seller-listing-city {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.seller-empty-container {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  padding: 0 16px;
}

.image-modal,
.report-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.86);
}

.image-modal.active,
.report-modal.active {
  display: flex;
}

.modal-close-button {
  position: fixed;
  top: max(16px, env(safe-area-inset-top));
  right: max(16px, env(safe-area-inset-right));
  z-index: 304;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.modal-image-container {
  position: relative;
  width: min(94vw, 1040px);
  height: min(86vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.modal-image-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 116px;
  height: 116px;
  object-fit: contain;
  opacity: 0.25;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.modal-image-nav {
  position: fixed;
  top: 50%;
  z-index: 303;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

.modal-image-prev { left: max(18px, env(safe-area-inset-left)); }
.modal-image-next { right: max(18px, env(safe-area-inset-right)); }

.report-modal {
  background: rgba(17, 24, 39, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.report-modal-card {
  width: min(100%, 430px);
  padding: 22px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.24);
}

.report-modal-card h3 {
  margin: 0 0 8px;
  color: #222;
  font-size: 22px;
  font-weight: 950;
}

.report-modal-card p {
  margin: 0 0 14px;
  color: #6b7280;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.report-options {
  display: grid;
  gap: 9px;
  margin-bottom: 12px;
}

.report-options label {
  min-height: 46px;
  padding: 0 12px;
  border-radius: 16px;
  background: #f7fbfd;
  border: 1px solid rgba(151, 148, 146, 0.10);
  display: flex;
  align-items: center;
  gap: 10px;
  color: #222;
  font-size: 14px;
  font-weight: 800;
}

.report-options input {
  accent-color: var(--dealify-blue);
}

.report-modal textarea {
  width: 100%;
  min-height: 96px;
  resize: vertical;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(12, 196, 233, 0.24);
  background: #fbfeff;
  color: #222;
  outline: none;
  font-size: 14px;
  font-weight: 650;
}

.report-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.report-submit,
.report-cancel {
  min-height: 46px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 900;
}

.report-submit {
  background: var(--dealify-blue);
  color: #fff;
}

.report-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.report-cancel {
  background: rgba(12, 196, 233, 0.10);
  color: var(--dealify-blue);
}

@media (min-width: 700px) {
  .app-header {
    left: 50%;
    right: auto;
    top: 12px;
    width: min(calc(100vw - 48px), 760px);
    min-height: 62px;
    padding: 10px 14px;
    transform: translateX(-50%);
    align-items: center;
    border: 1px solid rgba(151, 148, 146, 0.12);
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(31, 41, 51, 0.07);
  }

  .app-shell {
    padding-top: 92px;
  }

  .gallery-container {
    width: min(100%, 560px);
  }

  .seller-listing-card {
    width: 190px;
    min-width: 190px;
  }

  .seller-listing-image-wrap {
    height: 128px;
  }
}

@media (max-width: 699px) {
  .app-shell {
    width: 100%;
    padding: calc(env(safe-area-inset-top, 0px) + 66px) 0 32px;
  }

  .gallery-container {
    width: calc(100% - 32px);
    margin: 10px 16px 0;
    border-radius: 14px;
  }

  .details-container {
    width: calc(100% - 32px);
    margin: 12px 16px 18px;
    padding: 20px 18px;
    border-radius: 18px;
  }

  .listing-title {
    font-size: 22px;
  }

  .price-row {
    font-size: 21px;
  }

  .meta-info,
  .description-meta-pills-row {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 12px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .meta-info::-webkit-scrollbar,
  .description-meta-pills-row::-webkit-scrollbar {
    display: none;
  }

  .meta-item,
  .description-meta-pill {
    flex: 0 0 auto;
    min-width: max-content;
    max-width: 82%;
  }

  .description-row {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 10px 0;
  }

  .description-label,
  .description-value,
  .description-line,
  .additional-details-text {
    font-size: 14px;
    line-height: 21px;
  }

  .map-container {
    height: 200px;
  }

  .gallery-nav {
    display: none !important;
  }

  .seller-section-wrapper {
    width: 100%;
    padding: 0 16px;
  }

  .seller-listings-container {
    padding: 12px 0 12px 12px;
  }

  .seller-listing-card {
    width: 168px;
    min-width: 168px;
  }

  .seller-listing-image-wrap {
    height: 116px;
  }
}

@media (max-width: 390px) {
  .gallery-container {
    width: calc(100% - 28px);
    margin-left: 14px;
    margin-right: 14px;
  }

  .details-container {
    width: calc(100% - 28px);
    margin-left: 14px;
    margin-right: 14px;
    padding: 18px 16px;
  }

  .listing-title {
    font-size: 21px;
  }

  .action-icon-button {
    width: 36px;
    height: 36px;
  }

  .seller-avatar-container {
    width: 54px;
    height: 54px;
  }

  .seller-avatar {
    width: 50px;
    height: 50px;
  }

  .secure-payment-banner span {
    font-size: 14px;
  }

  .report-modal-card {
    padding: 18px;
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
