:root {
  --bg: #f6f1ec;
  --bg-soft: #fff7f0;
  --card: #ffffff;
  --text: #2b2320;
  --muted: #6f5f57;
  --accent: #e2384f;
  --accent-deep: #c91e3a;
  --accent-soft: #d6a23a;
  --line: #eadfd7;
  --success: #1b9e63;
  --shadow: 0 18px 40px rgba(89, 56, 44, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Source Sans 3", sans-serif;
  background: #ffffff;
  color: var(--text);
  min-height: 100vh;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 32px clamp(20px, 4vw, 64px) 64px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 6px 11px;
  background: rgba(255, 253, 251, 0.95);
  border: 1px solid #f0e1d7;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(101, 68, 52, 0.08);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.brand-logo {
  width: 140px;
  /* height: 56px; */
  /* border-radius: 14px; */
  object-fit: contain;
  background: #fff;
  /* border: 1px solid #eadfd7; */
  padding: 3px;
}

.brand-text {
  font-family: "Allura", cursive;
  font-size: 1.6rem;
  color: #8a5a3c;
  letter-spacing: 0.4px;
}

.menu {
  display: flex;
  gap: 18px;
  align-items: center;
}

.menu a,
.menu .menu-item {
  color: #7a655c;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.menu a:hover,
.menu .menu-item:hover {
  color: var(--accent-deep);
}

.menu-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.menu-item.menu-item-has-children > a::after {
  content: "\25BE";
  font-size: 0.7rem;
  margin-left: 6px;
  color: #9a7a6c;
}

.sub-menu,
.sub-menu .sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  background: #fff9f4;
  border: 1px solid #f0dfd2;
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(70, 45, 33, 0.16);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 20;
}

.sub-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
}

.sub-menu a {
  text-transform: none;
  letter-spacing: 0.2px;
  font-size: 0.9rem;
  color: #6e5a51;
  padding: 10px 12px;
  border-radius: 10px;
}

.sub-menu a:hover {
  background: #f4e7dd;
  color: var(--accent-deep);
}

.menu-item:hover > .sub-menu,
.menu-item:focus-within > .sub-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sub-menu .menu-item > a {
  padding-right: 22px;
}

.sub-menu .menu-item.menu-item-has-children > a::after {
  content: "\25B8";
  margin-left: auto;
  color: #b08b7a;
}

.sub-menu .sub-menu {
  top: -4px;
  left: calc(100% + 12px);
  background: #ffffff;
  border-radius: 18px;
  padding: 14px;
  min-width: 230px;
}

.sub-menu .sub-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  width: 10px;
  height: 100%;
}

.header-actions {
  display: flex;
  gap: 12px;
}

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 40px;
  border-radius: 28px;
  overflow: hidden;
  /* background-image: url("assets/masaje-cerca-banner.jpeg"); */
  background-size: cover;
  background-position: 85% 25%;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  /* inset: 0; */
  background: linear-gradient(120deg, rgba(248, 232, 221, 0.92) 0%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0.6px;
  margin: 20px 0;
}

.hero-content h1 span {
  display: block;
  color: var(--accent-deep);
}

.hero-content p {
  color: var(--muted);
  max-width: 520px;
  line-height: 1.6;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #f8eee6;
  border: 1px solid #f1e1d6;
  color: var(--accent-deep);
  font-size: 0.85rem;
  font-weight: 600;
}

.search-card {
  margin-top: 28px;
  background: #fffdfb;
  padding: 20px;
  border-radius: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
}

.search-field input,
.search-field select {
  background: #fffaf7;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.9rem;
}

.search-btn {
  align-self: flex-end;
  padding: 12px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  color: #fff;
  border: none;
  font-weight: 600;
  letter-spacing: 0.4px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(201, 30, 58, 0.25);
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}

.stat {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-visual {
  display: grid;
  gap: 16px;
  position: relative;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.feature-card.main {
  background: linear-gradient(135deg, rgba(226, 56, 79, 0.2), rgba(214, 162, 58, 0.2));
  min-height: 220px;
}

.feature-card.sub {
  background: #fff5ee;
  color: var(--muted);
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.badge.ghost {
  background: rgba(214, 162, 58, 0.2);
  color: #8a5a3c;
}

.floating-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.floating-tags span {
  background: #f7efe8;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.8rem;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  letter-spacing: 0.4px;
}

.section-header p {
  color: var(--muted);
  max-width: 520px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 1200px) {
  .featured-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .featured-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.profile-card {
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.profile-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.profile-card-link:hover .profile-media {
  transform: scale(1.02);
  transition: transform 0.2s ease;
}

.profile-media {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.profile-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.profile-body p {
  color: var(--muted);
}

.profile-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e8dcd3;
  color: #9a6b4b;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.profile-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent-deep);
  font-weight: 600;
  font-size: 0.9rem;
}

.profile-hearts {
  letter-spacing: 2px;
}

.profile-subtitle {
  color: #6f5f57;
  font-size: 0.95rem;
}

.profile-desc {
  font-size: 0.95rem;
  line-height: 1.45;
}

.profile-price {
  font-weight: 600;
  color: var(--text);
}

.profile-location {
  font-size: 0.85rem;
  color: #7d6b62;
  text-align: center;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-tags span {
  background: #fff0e5;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
}

.grid-section .filter-pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: #f7efe8;
  color: var(--accent-deep);
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 18px;
}

@media (min-width: 640px) {
  .profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .profile-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .profile-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.demo-section {
  margin-top: 10px;
}

.demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.demo-media {
  display: flex;
  justify-content: center;
}

.demo-frame {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #000;
}

.demo-frame iframe {
  width: 100%;
  height: 100%;
}

.demo-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--text);
}

.demo-content p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.demo-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.highlight-card {
  background: #fff6ef;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 10px 24px rgba(89, 56, 44, 0.08);
}

.highlight-card h3 {
  color: var(--accent-deep);
  font-size: 1rem;
  margin-bottom: 6px;
}

.highlight-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.mini-card {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(89, 56, 44, 0.1);
}

.mini-media {
  height: 160px;
  background-size: cover;
  background-position: center;
}

.mini-body {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-body span {
  color: var(--muted);
}

.mini-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.banner-section {
  margin-top: 30px;
}

.banner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  background: linear-gradient(135deg, rgba(226, 56, 79, 0.24), rgba(214, 162, 58, 0.26));
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  align-items: center;
}

.banner-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.banner-content .cta {
  align-self: flex-start;
  margin-top: 6px;
}

.banner .badge {
  width: fit-content;
  align-self: flex-start;
}

.banner-image {
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  min-height: 260px;
  width: 100%;
  background-color: #f2e3d8;
}

.services-section {
  margin-top: 10px;
}

.section-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: 0 12px 26px rgba(89, 56, 44, 0.08);
  color: inherit;
  text-decoration: none;
}

.service-card h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
}

.service-meta {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #f1f2f7;
  border: 1px solid #e3e5f1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4259a8;
  flex-shrink: 0;
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.faq-section {
  background: #fffaf6;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--line);
}

.publish-section {
  margin-top: 10px;
}

.publish-card {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 0.45fr);
  gap: 24px;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 24px rgba(89, 56, 44, 0.08);
  align-items: center;
}

.publish-media {
  min-height: 220px;
  border-radius: 16px;
  background-image: url("assets/kphoto-87192-612x612.jpg");
  background-size: cover;
  background-position: 70% 15%;
}

.publish-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.publish-content p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.publish-link {
  color: var(--accent-deep);
  text-decoration: none;
  font-weight: 600;
}

.blog-section {
  margin-top: 10px;
}

.blog-nav {
  display: inline-flex;
  gap: 8px;
}

.blog-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fffaf6;
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.blog-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 28px rgba(89, 56, 44, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-media {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.blog-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-body h3 {
  font-size: 1rem;
  color: var(--text);
}

.blog-body p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.blog-date {
  background: #f1c0c4;
  color: #6b1f2f;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.blog-link {
  color: var(--accent-deep);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.faq-item {
  background: #fff6ef;
  border: 1px solid var(--line);
  padding: 14px 18px;
  border-radius: 14px;
  color: var(--text);
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-panel {
  display: none;
  padding: 14px 18px 20px;
  color: var(--muted);
  background: #fffaf6;
  border-radius: 0 0 14px 14px;
  margin-top: -8px;
}

.faq-panel.active {
  display: block;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-browse {
  background: #fdfaf7;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-browse h3 {
  font-family: "Playfair Display", serif;
  text-align: center;
  font-size: 1.7rem;
  color: #1d2b4f;
}

.footer-browse h3 span {
  color: #2f8f7a;
}

.footer-browse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.footer-browse-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-browse-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #1d2b4f;
}

.footer-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid #e1d5cc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #1d2b4f;
}

.footer-icon svg {
  width: 18px;
  height: 18px;
}

.footer-arrow {
  margin-left: auto;
  color: #2f8f7a;
  font-weight: 700;
}

.footer-browse-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.footer-browse-links a {
  color: #33302d;
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-browse-links a:hover {
  color: var(--accent-deep);
}

.footer-support {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.footer-support-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1d2b4f;
  text-decoration: none;
  font-weight: 600;
}

.support-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #1d2b4f;
}

.support-icon svg {
  width: 18px;
  height: 18px;
}

.footer-main {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ff7e88 0%, #ff6b7b 45%, #f4b59a 100%);
  border-radius: 28px;
  padding: 36px;
  color: #fff;
}

.footer-main::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  right: -120px;
  bottom: -160px;
}

.footer-main-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.footer-column h4 {
  font-size: 1rem;
  letter-spacing: 0.4px;
  margin-bottom: 12px;
}

.footer-column a {
  color: #fff;
  text-decoration: none;
  margin-top: 8px;
  display: block;
  opacity: 0.9;
}

.footer-column a:hover {
  opacity: 1;
}

.footer-apps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

.app-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  background: #111;
  color: #fff;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
  width: fit-content;
  box-shadow: 0 10px 20px rgba(17, 17, 17, 0.3);
  font-size: 0.7rem;
  letter-spacing: 0.4px;
}

.app-badge strong {
  font-size: 0.95rem;
  letter-spacing: 0.6px;
}

.footer-meta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.footer-socials svg {
  width: 16px;
  height: 16px;
}

.footer-country {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.cta {
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  border: none;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(201, 30, 58, 0.25);
}

.cta.small {
  padding: 8px 14px;
  font-size: 0.85rem;
}

.cta.whatsapp {
  background: #1f9a55;
  box-shadow: 0 10px 20px rgba(31, 154, 85, 0.25);
}

.ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 0.8rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ghost.small {
  padding: 6px 12px;
  font-size: 0.7rem;
  align-self: flex-start;
}

.create-ad-page {
  display: grid;
  gap: 22px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 6px 0 44px;
  position: relative;
  z-index: 0;
}

body.page-template-page-create-ad {
  background:
    radial-gradient(circle at 8% 12%, rgba(226, 56, 79, 0.1), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(47, 143, 122, 0.12), transparent 32%),
    linear-gradient(180deg, #f8f4f1 0%, #f5f2ef 45%, #f7f5f3 100%);
}

body.page-template-page-create-ad .page {
  position: relative;
}

.create-ad-page::before {
  content: "";
  position: absolute;
  inset: -30px -18px -20px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.78), transparent 44%),
    radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.7), transparent 40%);
  z-index: -1;
  pointer-events: none;
}

.create-ad-hero {
  position: relative;
  text-align: center;
  display: grid;
  gap: 12px;
  padding: 28px 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 15%, rgba(226, 56, 79, 0.12), transparent 34%),
    radial-gradient(circle at 90% 75%, rgba(47, 143, 122, 0.12), transparent 30%),
    #fffdfb;
}

.create-ad-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 1.04;
  color: #231f2a;
}

.create-ad-hero p {
  color: var(--muted);
  font-size: 0.98rem;
}

.create-ad-steps {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.create-ad-steps .step {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.2px;
  font-weight: 600;
}

.create-ad-steps .step.active {
  background: linear-gradient(135deg, #fff0f2, #ffe8ec);
  color: #ab2039;
  border-color: #f6c4ce;
  box-shadow: 0 6px 12px rgba(226, 56, 79, 0.13);
}

.create-ad-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 16px 15px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(89, 56, 44, 0.07);
}

.stat-card h3 {
  font-size: 0.98rem;
  margin: 6px 0;
  color: #1f2b4c;
}

.stat-card p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.42;
}

.stat-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff5f6;
  color: var(--accent-deep);
  border: 1px solid #f3ced5;
  font-weight: 700;
  font-size: 0.78rem;
}

.create-ad-form {
  background: linear-gradient(180deg, #fffefe 0%, #fffaf7 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 18px 34px rgba(89, 56, 44, 0.11);
  display: grid;
  gap: 14px;
}

.create-ad-form .field {
  display: grid;
  gap: 6px;
}

.create-ad-form label {
  font-size: 0.8rem;
  color: #332a26;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.create-ad-form input,
.create-ad-form textarea,
.create-ad-form select {
  border: 1px solid #e9ddd5;
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.create-ad-form input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.create-ad-form textarea,
.create-ad-form select {
  width: 100%;
  display: block;
}

.create-ad-form input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.create-ad-form select {
  min-height: 52px;
}

.create-ad-form textarea {
  min-height: 180px;
  line-height: 1.45;
  resize: vertical;
}

.create-ad-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
  background-image:
    linear-gradient(45deg, transparent 50%, #9b7b6e 50%),
    linear-gradient(135deg, #9b7b6e 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.create-ad-form input[type="file"] {
  width: 100%;
  min-height: 52px;
  padding: 8px 10px;
  border: 1px dashed #e2c8ba;
  background: #fff9f5;
  border-radius: 12px;
  cursor: pointer;
}

.create-ad-form input[type="file"]::file-selector-button {
  border: none;
  background: linear-gradient(135deg, #d4314e, #e35469);
  color: #fff;
  border-radius: 10px;
  padding: 9px 14px;
  margin-right: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.25px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 16px rgba(211, 49, 78, 0.24);
}

.create-ad-form input[type="file"]::file-selector-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(211, 49, 78, 0.3);
}

.create-ad-form input[type="checkbox"] {
  width: auto;
  accent-color: var(--accent-deep);
}

.create-ad-form input:focus,
.create-ad-form textarea:focus,
.create-ad-form select:focus {
  outline: none;
  border-color: #e77384;
  box-shadow: 0 0 0 3px rgba(226, 56, 79, 0.12);
  background: #fffdfd;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px 10px;
  font-size: 0.86rem;
  color: var(--muted);
}

.checkbox-grid label {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid #eddcd2;
  border-radius: 12px;
  background: #fff;
  color: #4a403a;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.checkbox-grid label:hover {
  border-color: #e4c8ba;
  background: #fffaf8;
}

.checkbox-grid input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid #d7bbb0;
  border-radius: 6px;
  background: #fff;
  margin: 0;
  display: inline-grid;
  place-content: center;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.checkbox-grid input[type="checkbox"]::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 3px;
  transform: scale(0);
  transition: transform 0.15s ease;
  background: linear-gradient(135deg, #d4314e, #f06f84);
}

.checkbox-grid input[type="checkbox"]:checked {
  border-color: #d84a64;
  box-shadow: 0 0 0 2px rgba(216, 74, 100, 0.13);
}

.checkbox-grid input[type="checkbox"]:checked::before {
  transform: scale(1);
}

.upload-box {
  border: 1px dashed #efc7a7;
  background: linear-gradient(180deg, #fffaf1 0%, #fff6e9 100%);
  border-radius: 14px;
  padding: 14px;
  display: grid;
  gap: 8px;
  color: #8a6b3c;
  font-size: 0.82rem;
  line-height: 1.4;
}

.modern-upload {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.modern-upload-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.modern-upload-drop {
  min-height: 260px;
  border: 2px dashed #cfd4db;
  border-radius: 14px;
  background: #f8fafc;
  color: #8393a4;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 8px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.modern-upload-drop:hover {
  border-color: #b7c1cc;
  background: #f4f8fb;
  color: #6f8297;
}

.modern-upload-input:focus + .modern-upload-drop {
  border-color: #e77384;
  box-shadow: 0 0 0 3px rgba(226, 56, 79, 0.14);
}

.modern-upload-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.modern-upload-icon svg {
  width: 20px;
  height: 20px;
}

.modern-upload-title {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.2;
}

.modern-upload-filename {
  margin: 0;
  font-size: 0.8rem;
  color: #7a6b63;
}

.modern-upload.modern-upload-compact .modern-upload-drop {
  min-height: 96px;
}

.modern-upload.modern-upload-compact .modern-upload-title {
  font-size: 0.88rem;
}

.auth-box {
  border: 1px solid #d9e8cb;
  background: linear-gradient(180deg, #f9fdea 0%, #f3f8e1 100%);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 10px;
}

.auth-box h3 {
  font-size: 1rem;
  color: #33461f;
}

.auth-box ul {
  padding-left: 18px;
  color: #4f5d46;
  font-size: 0.86rem;
  line-height: 1.4;
}

.auth-box .checkbox {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.84rem;
  color: #384533;
}

.auth-box .checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1.5px solid #b8c9a7;
  background: #fff;
  margin: 0;
  display: inline-grid;
  place-content: center;
}

.auth-box .checkbox input[type="checkbox"]::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 2px;
  transform: scale(0);
  transition: transform 0.15s ease;
  background: #6a8a45;
}

.auth-box .checkbox input[type="checkbox"]:checked {
  border-color: #6a8a45;
  box-shadow: 0 0 0 2px rgba(106, 138, 69, 0.15);
}

.auth-box .checkbox input[type="checkbox"]:checked::before {
  transform: scale(1);
}

.create-ad-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.create-ad-actions .cta {
  min-width: 186px;
  padding: 12px 22px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.35px;
}

.create-ad-actions .ghost.small {
  padding: 11px 16px;
  border-radius: 999px;
  border-color: #e7d6cc;
  background: #fff;
  color: #78635a;
  font-size: 0.74rem;
  letter-spacing: 0.5px;
}

.profile-page {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: start;
}

.profile-hero-alt {
  align-items: stretch;
}

.profile-left,
.profile-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.profile-title-block h1 {
  margin-bottom: 6px;
}

.profile-info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 22px rgba(89, 56, 44, 0.08);
}

.profile-info-card h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.profile-right .profile-summary {
  position: sticky;
  top: 110px;
}

.profile-gallery {
  display: grid;
  gap: 16px;
}

.profile-media.main {
  border-radius: 18px;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  box-shadow: 0 14px 26px rgba(89, 56, 44, 0.12);
}

.profile-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 10px;
}

.profile-thumb {
  height: 70px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
}

.profile-video iframe {
  width: 100%;
  min-height: 260px;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 22px rgba(89, 56, 44, 0.12);
}

.profile-summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.profile-summary h1 {
  margin: 0;
}

.profile-headline {
  color: var(--muted);
}

.profile-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.profile-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.profile-about h2,
.profile-about h3,
.profile-neighborhoods h3,
.profile-reviews h3,
.profile-faq h3 {
  margin-bottom: 10px;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-tags span {
  background: #fff0e5;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 10px 22px rgba(89, 56, 44, 0.08);
}

.review-rating {
  display: inline-block;
  margin-left: 8px;
  color: var(--accent-deep);
  font-weight: 600;
}

@media (max-width: 980px) {
  .profile-hero {
    grid-template-columns: 1fr;
  }
}
.login-page {
  min-height: calc(100vh - 140px);
  display: grid;
  place-items: center;
  padding: 20px 0 50px;
  /* background:
    radial-gradient(circle at 10% 90%, rgba(253, 193, 173, 0.45), transparent 42%),
    radial-gradient(circle at 92% 8%, rgba(166, 219, 246, 0.55), transparent 45%),
    #eef2f6; */
}

.login-hero {
  width: min(560px, 100%);
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 18px;
}

.login-card {
  background: #fff;
  border-radius: 34px;
  padding: 38px 42px 32px;
  box-shadow: 0 20px 46px rgba(23, 31, 44, 0.28);
  display: grid;
  gap: 20px;
  width: 100%;
  max-width: 520px;
}

.login-logo-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.login-logo {
  width: 230px;
  height: auto;
  object-fit: contain;
}

.login-card form {
  display: grid;
  gap: 16px;
}

.login-card label {
  font-size: 1.05rem;
  font-weight: 500;
  color: #1f2d3d;
  margin-bottom: 8px;
}

.login-card input[type="text"],
.login-card input[type="password"],
.login-card input[type="email"] {
  width: 100%;
  padding: 14px 14px;
  border-radius: 0;
  border: 1px solid #b8bec8;
  background: #fff;
  font-size: 1.05rem;
}

.login-card .login-remember label {
  font-weight: 400;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.login-card .login-submit input {
  width: 100%;
  background: #06c55c;
  color: #fff;
  border: none;
  padding: 14px 18px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-size: 2rem;
}

.login-actions {
  display: flex;
  justify-content: center;
}

.login-help-btn {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  background: #d56d7c;
  color: #fff;
  border: none;
  padding: 12px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
}

body.page-template-page-login .site-header,
body.page-template-page-login .site-footer {
  display: none;
}

body.page-template-page-login .page {
  gap: 0;
  padding: 0;
}

@media (max-width: 720px) {
  .create-ad-form {
    padding: 20px;
  }
  .create-ad-hero {
    padding: 22px 14px;
  }
  .create-ad-stats {
    grid-template-columns: 1fr;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .checkbox-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .modern-upload-drop {
    min-height: 220px;
  }
  .modern-upload.modern-upload-compact .modern-upload-drop {
    min-height: 88px;
  }
  .login-card {
    padding: 26px 22px;
  }
  .login-logo {
    width: 130px;
  }
}

@media (max-width: 980px) {
  .hero {
    padding: 28px;
    background-position: 80% 20%;
  }
  .menu {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .search-card {
    grid-template-columns: 1fr;
  }
  .banner {
    grid-template-columns: 1fr;
  }
  .demo-grid {
    grid-template-columns: 1fr;
  }
  .publish-card {
    grid-template-columns: 1fr;
  }
  .faq-list {
    grid-template-columns: 1fr;
  }
  .footer-browse {
    padding: 24px;
  }
  .footer-main {
    padding: 28px;
  }
  .create-ad-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .checkbox-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }
  .site-header {
    flex-wrap: wrap;
    gap: 12px;
  }
  .header-actions {
    width: 100%;
    justify-content: flex-end;
  }
  .hero {
    background-position: 75% 15%;
  }
  .footer-support {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Modern create-ad refresh */
body.page-template-page-create-ad {
  background:
    linear-gradient(180deg, rgba(246, 241, 236, 0.9) 0%, rgba(246, 241, 236, 0.84) 100%),
    url("assets/masaje-cerca-banner.jpeg") center center / cover no-repeat fixed;
    overflow-x: hidden;
}

.create-ad-page {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.create-ad-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid #eadfd7;
  border-radius: 28px;
  padding: 34px 28px;
  box-shadow: 0 16px 35px rgba(80, 48, 38, 0.1);
  background:
    radial-gradient(circle at 6% 8%, rgba(255, 205, 213, 0.45), transparent 40%),
    radial-gradient(circle at 90% 92%, rgba(190, 236, 225, 0.45), transparent 42%),
    linear-gradient(140deg, #fffdfc 0%, #fbf7f4 100%);
}

.create-ad-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.42) 42%, transparent 74%);
  pointer-events: none;
}

.create-ad-hero h1 {
  margin: 6px 0 0;
  font-size: clamp(2.2rem, 3.2vw, 3.1rem);
  line-height: 1.03;
  letter-spacing: -0.5px;
}

.create-ad-hero-note {
  font-size: 0.98rem;
  color: #6e5f57;
}

.create-ad-hero-note a {
  color: #b61f3d;
  text-underline-offset: 3px;
  font-weight: 700;
}

.create-ad-steps .step {
  padding: 8px 14px;
  border: 1px solid #ebddd4;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #6f5f57;
}

.create-ad-steps .step.active {
  color: #aa1f3b;
  border-color: #f0c3cc;
  background: linear-gradient(135deg, #fff1f4, #ffe8ee);
}

.create-ad-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stat-card {
  border-radius: 18px;
  border: 1px solid #eadfd7;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 24px rgba(89, 56, 44, 0.09);
  padding: 16px;
}

.stat-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.8px;
  color: #ad1f3c;
  background: linear-gradient(180deg, #fff0f3 0%, #ffe2e8 100%);
  border: 1px solid #f5cad3;
}

.create-ad-form {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  gap: 14px;
}

.form-section {
  border: 1px solid #eadfd7;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 252, 250, 0.93) 100%);
  border-radius: 22px;
  box-shadow: 0 16px 32px rgba(89, 56, 44, 0.08);
  padding: 20px;
  display: grid;
  gap: 12px;
}

.form-section-head {
  display: grid;
  gap: 4px;
}

.form-section-head h2 {
  font-size: 1.06rem;
  color: #2a2430;
  letter-spacing: 0.2px;
}

.form-section-head p {
  font-size: 0.87rem;
  color: #7a6a62;
  line-height: 1.45;
}

.create-ad-form label {
  font-size: 0.79rem;
  color: #413630;
  letter-spacing: 0.25px;
  text-transform: uppercase;
}

.create-ad-form input,
.create-ad-form textarea,
.create-ad-form select {
  border-color: #e7dad1;
  background: #fff;
  border-radius: 13px;
}

.create-ad-form input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.create-ad-form select {
  min-height: 50px;
}

.create-ad-form textarea {
  min-height: 170px;
}

.checkbox-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.checkbox-grid label {
  min-height: 44px;
  border-radius: 12px;
  padding: 9px 11px;
}

.checkbox-grid label span {
  font-size: 0.85rem;
  font-weight: 600;
}

.upload-box {
  border-radius: 16px;
  border-color: #efd6bf;
  background: linear-gradient(180deg, #fffdf8 0%, #fff8ef 100%);
}

.modern-upload-drop {
  min-height: 210px;
  border-radius: 16px;
  border-color: #ced6df;
  background: linear-gradient(180deg, #f7fafd 0%, #f3f7fc 100%);
}

.modern-upload-title {
  font-size: 0.95rem;
  font-weight: 700;
}

.modern-upload-subtitle {
  display: block;
  font-size: 0.78rem;
  color: #8b98a8;
}

.modern-upload.modern-upload-compact .modern-upload-drop {
  min-height: 92px;
}

.auth-box {
  border-color: #d7e4c6;
  background: linear-gradient(180deg, #fbfff0 0%, #f4f9e7 100%);
}

.auth-doc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.auth-box .checkbox {
  margin-top: 2px;
}

.create-ad-actions {
  position: sticky;
  bottom: 14px;
  z-index: 4;
  border: 1px solid #eadfd7;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 28px rgba(89, 56, 44, 0.1);
  padding: 12px;
  justify-content: flex-start;
}

.create-ad-actions .cta {
  min-height: 46px;
  min-width: 190px;
}

.create-ad-actions .ghost.small {
  min-height: 42px;
  font-size: 0.76rem;
}

@media (max-width: 1100px) {
  .checkbox-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .auth-doc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .create-ad-stats {
    grid-template-columns: 1fr;
  }

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

  .checkbox-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body.page-template-page-create-ad {
    background-attachment: scroll;
  }

  .create-ad-hero {
    padding: 26px 16px;
    border-radius: 22px;
  }

  .form-section {
    padding: 16px;
    border-radius: 18px;
  }

  .checkbox-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .modern-upload-drop {
    min-height: 172px;
  }

  .create-ad-actions {
    position: static;
  }
}

/* Profile page redesign (single-profile.php) */
.profile-page-modern {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.profile-heading-bar {
  text-align: center;
}

.profile-heading-bar h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.3rem, 2.1vw, 2rem);
}

.profile-hero-modern {
  grid-template-columns: minmax(0, 0.54fr) minmax(0, 0.46fr);
  gap: 18px;
}

.profile-gallery-modern {
  gap: 10px;
}

.profile-main-media {
  min-height: 470px;
  border-radius: 10px;
}

.profile-thumbs-modern {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.profile-thumb-btn {
  border: 2px solid transparent;
  cursor: pointer;
}

.profile-thumb-btn.is-active {
  border-color: #d12a4c;
}

.profile-voice-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  display: grid;
  gap: 8px;
}

.profile-voice-wave {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d5d5d5 0%, #adadad 50%, #d5d5d5 100%);
}

.profile-info-card-modern {
  border-radius: 12px;
}

.profile-info-list-modern {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px 12px;
}

.profile-info-list-modern dt {
  font-weight: 700;
}

.profile-info-list-modern dd {
  margin: 0;
  color: #7d262f;
}

.profile-summary-modern {
  border-radius: 12px;
  gap: 10px;
  background: #fff;
}

.profile-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-hearts-modern {
  color: #b5153a;
  letter-spacing: 2px;
}

.profile-rating-text-modern {
  color: var(--muted);
  font-size: 0.9rem;
}

.profile-actions-modern {
  display: grid;
  gap: 8px;
}

.profile-actions-modern .cta {
  width: 100%;
  justify-content: center;
}

.cta.telegram {
  background: linear-gradient(135deg, #0b89d6, #1aa7f0);
}

.profile-alert-modern {
  border: 1px solid #e8d9ab;
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff4cf;
  color: #604d0e;
  font-size: 0.86rem;
}

.profile-about-modern,
.profile-services-modern {
  border-top: 1px solid #efe5dc;
  padding-top: 8px;
}

.profile-about-modern p {
  color: #2f2f2f;
  line-height: 1.45;
}

.profile-services-modern ul {
  margin: 0;
  padding-left: 16px;
  display: grid;
  gap: 4px;
}

.profile-price-line-modern {
  font-weight: 700;
}

.profile-video-modern iframe {
  min-height: 220px;
}

.profile-share-modern {
  border-top: 1px solid #efe5dc;
  padding-top: 10px;
  display: grid;
  gap: 8px;
}

.profile-share-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-share-chips span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8f8f8;
  padding: 6px 10px;
  font-size: 0.78rem;
}

.profile-feature-banner {
  border-radius: 14px;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.profile-feature-content {
  min-height: inherit;
  color: #fff;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 26px;
  max-width: 780px;
}

.profile-feature-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}

.profile-feature-pill {
  display: inline-flex;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f14366;
  font-size: 0.74rem;
  font-weight: 700;
}

.profile-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-feature-tags span {
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.12);
}

.profile-reviews-modern,
.profile-neighborhoods-modern,
.profile-faq-modern,
.profile-more-modern {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 16px;
}

.review-date-modern {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 2px;
}

.profile-neighborhoods-modern .profile-tags span {
  background: #f6eaee;
}

.profile-faq-modern .faq-list {
  grid-template-columns: 1fr;
  gap: 8px;
}

.profile-faq-modern .faq-item {
  background: #eaf3ff;
  border-color: #cbdbf3;
}

.profile-grid-modern {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.profile-grid-modern .mini-card {
  border-radius: 14px;
}

.profile-grid-modern .mini-actions {
  flex-wrap: wrap;
  gap: 8px;
}

.profile-grid-modern .mini-actions .cta,
.profile-grid-modern .mini-actions .ghost {
  font-size: 0.75rem;
}

@media (max-width: 980px) {
  .profile-hero-modern {
    grid-template-columns: 1fr;
  }

  .profile-main-media {
    min-height: 360px;
  }

  .profile-grid-modern {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .profile-thumbs-modern {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-feature-content {
    padding: 18px;
  }
}

/* Single post matches profile layout */
.post-page-modern .profile-about-modern p,
.post-page-modern .profile-about-modern ul,
.post-page-modern .profile-about-modern ol,
.post-page-modern .profile-about-modern blockquote {
  margin-bottom: 12px;
}

.post-page-modern .profile-about-modern img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.post-page-modern .profile-about-modern a {
  color: #b11f3d;
}

.post-page-modern .profile-services-modern ul {
  list-style: disc;
}

.post-page-modern .review-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .post-page-modern .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .post-page-modern .review-grid {
    grid-template-columns: 1fr;
  }
}
