/* Profile Ads page - new design (simplified colors, image fit, sticky bar) */
.profile-ads-page {
  background: #f8f8f8;
  min-height: 100vh;
  font-family: 'DM Sans', -apple-system, sans-serif;
  color: #1a1a1a;
}

/* Breadcrumb - attached to hero (no gap), slightly larger text */
.pads-breadcrumb {
  background: #fff;
  border-bottom: 1px solid #eee;
  margin-bottom: 0;
}
.pads-breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 28px;
  font-size: 15px;
  color: #666;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.pads-breadcrumb a {
  color: #666;
  text-decoration: none;
}
.pads-breadcrumb a:hover {
  color: #E8521A;
}
.pads-bc-sep {
  color: #bbb;
  user-select: none;
}
.pads-bc-current {
  color: #111;
  font-weight: 600;
}

/* Sticky bar - hidden by default, shown via .visible */
.pads-sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #efefef;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transform: translateY(-100%);
  transition: transform 0.25s ease;
}
.pads-sticky-bar.visible {
  transform: translateY(0);
}
.pads-sticky-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.pads-sticky-user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pads-sticky-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #E8521A;
}
.pads-sticky-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #111;
}
.pads-sticky-responds {
  font-size: 12px;
  color: #666;
}
.pads-sticky-responds strong {
  color: #333;
}
.pads-sticky-actions {
  display: flex;
  gap: 8px;
}
.pads-sticky-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.15s;
  border: none;
}
.pads-sticky-wa {
  background: #25D366;
  color: #fff;
}
.pads-sticky-wa:hover {
  background: #1da851;
}
.pads-sticky-call {
  background: #fff;
  color: #E8521A;
  border: 1.5px solid #E8521A;
}
.pads-sticky-call:hover {
  background: #fff8f2;
}

/* Hero - PropertyFinder style: prominent section, height & width */
.pads-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 8px;
}
.pads-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #96453b 0%, #ff6d36 50%, #8c403b 100%);
}
.pads-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 36px 24px 0;
  display: flex;
  gap: 20px;
  align-items: stretch;
}
.pads-profile-card {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 28px 24px;
  border: 1px solid rgba(255,255,255,0.12);
  position: relative;
}
.pads-btn-share {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.pads-btn-share:hover {
  color: #fff;
}
.pads-share-toast {
  position: absolute;
  top: -34px;
  right: 0;
  background: #333;
  color: #fff;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  display: none;
}
.pads-profile-top {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 18px;
}
.pads-avatar-wrap {
  flex-shrink: 0;
}
.pads-avatar-ring {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, #f5c842 0%, #e8a82a 50%, #e84042 100%);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.2);
}
.pads-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 3px solid #8c403b;
}
.pads-profile-info {
  padding-top: 2px;
}
.pads-superagent-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.pads-badge-icon { color: #f5c842; }
.pads-info-icon { font-size: 11px; opacity: 0.7; cursor: help; }
.pads-profile-name {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.pads-profile-meta {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 10px;
  font-weight: 500;
}
/* Status bar - fit and clean (PropertyFinder style) */
.pads-responds-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.pads-dot-green {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(74,222,128,0.3);
}
.pads-responds-text {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.pads-responds-text strong {
  color: #fff;
  font-weight: 700;
}
.pads-profile-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
/* Elegant buttons - WhatsApp: white + green icon (PF style), View listings: dark */
.pads-btn-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: 1.5px solid rgba(255,255,255,0.45);
  background: #fff;
  color: #333;
}
.pads-btn-action:hover {
  background: #f8f8f8;
  border-color: rgba(255,255,255,0.6);
}
.pads-btn-wa {
  background: #fff;
  border-color: rgba(255,255,255,0.5);
  color: #1a1a1a;
}
.pads-btn-wa .pads-wa-icon { color: #25D366; display: inline-flex; }
.pads-btn-view .pads-view-icon { opacity: 0.95; display: inline-flex; }
.pads-btn-wa:hover {
  background: #f0fdf4;
  border-color: #25D366;
}
.pads-btn-view {
  background: rgba(0,0,0,0.25);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.pads-btn-view:hover {
  background: rgba(0,0,0,0.35);
  color: #fff;
}

/* Brokerage card (PropertyFinder style) */
/* Titans Pet LLC card - same translucent style & height as profile card */
.pads-titans-card {
  width: 180px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.pads-titans-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.pads-titans-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}
.pads-titans-logo-img {
  max-width: 88px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.95;
  filter: brightness(0) invert(1);
}
.pads-titans-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.pads-titans-link {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 500;
}
.pads-titans-link:hover {
  color: #fff;
}

/* Stats row - inside hero, same dark band as PropertyFinder */
.pads-stats-row {
  max-width: 1120px;
  margin: 24px auto 28px;
  padding: 0 24px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px 12px 0 0;
  position: relative;
  z-index: 2;
}
.pads-stats-inner {
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.pads-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 0;
}
.pads-stat-num {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.pads-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}
.pads-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* Page body */
.pads-page-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 28px 48px;
}
.pads-section-block {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #efefef;
  padding: 28px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}
.pads-section-title {
  font-size: 18px;
  font-weight: 800;
  color: #111;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.pads-ads-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.pads-ads-filters {
  display: flex;
  gap: 8px;
}
.pads-filter-sel {
  padding: 8px 12px;
  border: 1.5px solid #e8e8e8;
  background: #fff;
  border-radius: 9px;
  font-size: 13px;
  color: #555;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  font-weight: 500;
}
.pads-filter-sel:focus {
  border-color: #E8521A;
}
.pads-ads-count {
  font-size: 13px;
  color: #888;
  margin-bottom: 18px;
  font-weight: 500;
}

/* Ad row - PropertyFinder "My Properties" style */
.pads-ads-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pads-ad-row.pads-ad-card {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.pads-ad-row.pads-ad-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  border-color: #ddd;
}

/* PREMIUM badge - top-right of card */
.pads-ad-card-premium {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  background: linear-gradient(135deg, #f5c842, #e8a82a);
  color: #1a1a1a;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* Image block - fixed size, cover */
.pads-ad-img-block {
  position: relative;
  width: 320px;
  height: 260px;
  flex-shrink: 0;
  overflow: hidden;
  background: #f0f0f0;
}
.pads-ad-img-link {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
}
.pads-ad-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.pads-ad-card:hover .pads-ad-img {
  transform: scale(1.04);
}

/* Badges - top-left of image, stacked */
.pads-ad-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.pads-ad-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  line-height: 1.2;
}
.pads-ad-badge-super {
  background: rgba(124,58,237,0.95);
  color: #fff;
}
.pads-ad-badge-new {
  background: #fff;
  color: #333;
}
.pads-ad-badge-verified {
  background: rgba(22,163,74,0.95);
  color: #fff;
}

/* Photo count - bottom-left of image */
.pads-ad-img-count {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.pads-ad-img-count svg {
  flex-shrink: 0;
  opacity: 0.9;
}

/* Heart - top-right of image */
.pads-ad-img-block .pads-ad-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: rgba(0,0,0,0.35);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  color: inherit;
}
.pads-ad-img-block .pads-ad-heart:hover {
  background: rgba(0,0,0,0.55);
}
.pads-ad-img-block .pads-ad-heart svg {
  display: block;
}

/* Image footer - seller avatar + Listed X ago */
.pads-ad-img-footer {
  position: absolute;
  bottom: 10px;
  right: 10px;
  left: 10px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}
.pads-ad-seller-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  flex-shrink: 0;
}
.pads-ad-listed {
  font-size: 11px;
  color: rgba(255,255,255,0.95);
  font-weight: 500;
}

/* Body - type, price, title, location, specs */
.pads-ad-body {
  flex: 1;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.pads-ad-type-tag {
  font-size: 12px;
  color: #888;
  font-weight: 600;
  display: block;
}
.pads-ad-price {
  font-size: 22px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.pads-ad-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  line-height: 1.35;
}
.pads-ad-title a {
  color: inherit;
  text-decoration: none;
}
.pads-ad-title a:hover {
  color: #E8521A;
}
.pads-ad-location-row {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #555;
}
.pads-ad-pin {
  flex-shrink: 0;
  color: #888;
}
.pads-ad-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-top: 2px;
}
.pads-ad-spec {
  font-size: 12px;
  color: #666;
  font-weight: 500;
}

/* Actions - Call, Email, WhatsApp + heart + more (PropertyFinder style) */
.pads-ad-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 16px;
  justify-content: center;
  align-items: center;
  border-left: 1px solid #e8e8e8;
  min-width: 140px;
  flex-shrink: 0;
}
.pads-ad-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
  border: none;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  width: 100%;
  max-width: 160px;
}
.pads-ad-btn svg {
  flex-shrink: 0;
}
.pads-ad-btn-call {
  border: 1.5px solid #e8e8e8;
  background: #fff;
  color: #555;
}
.pads-ad-btn-call:hover {
  border-color: #3498db;
  color: #3498db;
  background: #f0f8ff;
}
.pads-ad-btn-email {
  border: 1.5px solid #e8e8e8;
  background: #fff;
  color: #555;
}
.pads-ad-btn-email:hover {
  border-color: #E8521A;
  color: #E8521A;
  background: #fff8f2;
}
.pads-ad-btn-wa {
  background: #25D366;
  color: #fff;
}
.pads-ad-btn-wa:hover {
  background: #1da851;
}
.pads-ad-actions .pads-ad-action-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #e8e8e8;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
  margin-top: 4px;
  color: #555;
}
.pads-ad-actions .pads-ad-action-icon:hover {
  border-color: #E8521A;
  color: #E8521A;
  background: #fff8f2;
}
.pads-ad-actions .pads-ad-action-icon svg {
  display: block;
}
.pads-ad-actions-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

/* Lightbox (optional - for multi-image gallery on image click) */
.pads-gallery-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: 'DM Sans', sans-serif;
}
.pads-gallery-lightbox.open {
  display: flex;
}
.pads-gl-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
}
.pads-gl-dialog {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  padding: 24px;
}
.pads-gl-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.pads-gl-main {
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  max-height: 70vh;
}
.pads-gl-main img {
  max-width: 100%;
  max-height: 70vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.pads-gl-caption {
  text-align: center;
  margin-top: 10px;
  font-size: 13px;
  color: #f3f4f6;
}
.pads-gl-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

@media (max-width: 900px) {
  .pads-stats-inner {
    flex-wrap: wrap;
  }
  .pads-stat-item {
    min-width: 50%;
  }
  .pads-ad-row {
    flex-direction: column;
  }
  .pads-ad-img-wrap {
    width: 100%;
    min-height: 220px;
  }
  .pads-ad-img {
    min-height: 220px;
    object-fit: contain;
  }
  .pads-ad-actions {
    flex-direction: row;
    padding: 12px 14px;
    border-left: none;
    border-top: 1px solid #f5f5f5;
    min-width: unset;
  }
  .pads-ad-body {
    padding: 14px;
  }
}
@media (max-width: 600px) {
  .pads-hero-content {
    padding: 28px 16px 28px;
  }
  .pads-profile-name {
    font-size: 22px;
  }
  .pads-page-body {
    padding: 16px 16px 32px;
  }
  .pads-section-block {
    padding: 18px;
  }
  .pads-stats-inner {
    padding: 0 16px;
  }
.pads-stat-num {
  font-size: 20px;
}
  .pads-sticky-inner {
    padding: 10px 16px;
  }
  .pads-ads-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
