@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Oswald:wght@600;700&family=Playfair+Display:wght@600;700&family=Manrope:wght@600;700&display=swap');

html { scroll-behavior: smooth; }

/* =========================================================
   THEME TOKENS (EDIT THESE ONLY)
   ========================================================= */
:root{
  /* Base */
  --bg: #e9f0eb;
  --surface: #ffffff;
  --surface-2: #ffffff;

  /* Text */
  --text: #0f1a11;
  --text-muted: rgba(0,0,0,0.55);

  /* Brand */
  --forest: #1a4e2f;
  --gold: #d4a017;

  /* Borders & shadows */
  --line: rgba(26, 78, 47, 0.12);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06), 0 6px 20px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 12px 36px rgba(15, 23, 42, 0.13);
  --shadow-lg: 0 24px 56px rgba(15, 23, 42, 0.18);

  /* Radius */
  --radius: 18px;
  --radius-sm: 12px;

  /* Hero controls */
  --hero-title: #ffffff;
  --hero-desc: rgba(255,255,255,0.82);

  /* Pills (sub-nav) */
  --pill-bg: rgba(255,255,255,0.15);
  --pill-border: rgba(255,255,255,0.28);
  --pill-text: rgba(255,255,255,0.92);
  --pill-active-bg: rgb(255,255,255);

  /* Buttons */
  --btn-primary-bg: #d4a017;
  --btn-primary-text: #ffffff;
  --btn-secondary-text: #0f1a11;
  --btn-secondary-border: rgba(26,78,47,0.28);
}

/* =========================================================
   BASE
   ========================================================= */
body{
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 18px;
  line-height: 1.65;
}

.page-white{
  background: #fff;
}

.logo-img{ height: 42px; width: auto; }

.brand-logo{
  height: clamp(28px, 3.2vw, 38px);
  width: auto;
  flex-shrink: 0;
  margin-right: 5px !important;
  filter: saturate(1.08) contrast(1.08);
}

a { color: inherit; }
.text-warning{ color: var(--gold) !important; }

select.form-control { background-image: none; }

/* ── Section label (gold uppercase tag above headings) ─ */
.section-label{
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--gold);
  margin-bottom: 8px;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar{
  background: rgba(255,255,255,0.92) !important;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  min-height: 72px;
  position: relative;
  z-index: 1050;
}

.navbar-brand{
  font-family: 'Playfair Display', 'Oswald', serif;
  font-size: clamp(32px, 2.4vw, 42px);
  letter-spacing: 0.06em;
  color: var(--forest) !important;
  line-height: 1;
}

.nav-user-center{
  flex: 1;
  text-align: center;
}

.nav-user-name{
  font-family: 'Playfair Display', 'Oswald', serif;
  font-size: clamp(24px, 2.2vw, 34px);
  letter-spacing: 0.02em;
  font-weight: 700;
  color: var(--forest);
  text-transform: none;
}

@media (min-width: 901px){
  .nav-user-center{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 44vw;
    flex: 0 0 auto;
    pointer-events: none;
  }
  .nav-user-name{
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

h1, h2, h3, h4, h5, h6{
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: normal;
}
.site-content h1,
.site-content h2,
.site-content h3{
  font-family: 'Playfair Display', 'Oswald', serif;
  letter-spacing: 0.01em;
}

.trade-profile-page h1,
.trade-profile-page h2,
.trade-profile-page h3,
.trade-profile-page h4,
.trade-profile-page h5,
.trade-profile-page h6{
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: normal;
}

.trade-profile-page .site-title{
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: normal;
}

.nav-link{
  color: rgba(0, 0, 0, 0.72) !important;
  font-weight: 500;
  transition: color 0.15s ease;
}
.nav-link:hover{ color: var(--forest) !important; }

.active .nav-link{
  color: var(--forest) !important;
  text-decoration: none !important;
  position: relative;
}
.active .nav-link::after{
  content:"";
  display:block;
  height:2px;
  margin-top:6px;
  background: linear-gradient(90deg, var(--forest), var(--gold));
  border-radius: 999px;
}

/* Login button */
.btn-outline-light{
  color: var(--forest) !important;
  border-color: rgba(26, 78, 47, 0.22) !important;
  background: #fff !important;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  min-height: 46px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.btn-outline-light:hover{
  background: #f6f9f7 !important;
}

.navbar #signOut.btn-outline-light{
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 700;
  border-width: 1.5px;
  border-color: rgba(26, 78, 47, 0.38) !important;
  background: #fff !important;
  color: var(--forest) !important;
  box-shadow: 0 4px 12px rgba(26, 78, 47, 0.1);
}
.navbar #signOut.btn-outline-light:hover{
  background: #f6f9f7 !important;
}

.navbar #loginBtn.btn-outline-light{
  display: inline-block;
  height: 46px;
  line-height: 48px;
  padding: 0 16px;
  text-align: center;
  white-space: nowrap;
}

/* =========================================================
   HERO
   ========================================================= */
.site-content{
  min-height: 70vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse at 75% 30%, rgba(212,160,23,0.20) 0%, transparent 60%),
    linear-gradient(145deg, #0b1a11 0%, #1a4e2f 58%, #2a6640 100%);
  position: relative;
}

/* Compact hero for utility pages */
.utility-page .site-content{
  min-height: auto;
  padding: 36px 0 28px;
}
.messages-page .section-1{
  padding: 24px 0 32px;
}

.home-page #aiSearchForm .buy-btn{
  background: var(--gold) !important;
  color: var(--forest) !important;
  border: 1px solid var(--gold) !important;
}

.home-page #aiSearchForm .buy-btn:hover{
  filter: brightness(0.96);
}

.site-title{
  font-family: 'Playfair Display', serif;
  color: var(--hero-title);
  font-size: clamp(36px, 5vw, 62px);
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
  line-height: 1.1;
  font-weight: 800;
}

.site-desc{
  color: var(--hero-desc);
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.1rem;
  font-weight: 400 !important;
  line-height: 1.6;
  opacity: 0.88;
}

.hero-title,
.hero-subtitle{
  color: #fff;
}
.hero-subtitle{
  font-family: 'Playfair Display', 'Oswald', serif;
  font-weight: 600 !important;
  font-size: 1.6rem;
}

.site-desc.hero-subtitle{
  font-weight: 700 !important;
}

.hero-strong{
  font-weight: 800;
}

.brand-accent{
  color: #ffffff;
}

.login-hero-title,
.login-hero-desc{
  color: #fff;
}

/* =========================================================
   SUB NAV (PILLS) – HERO ONLY LOOK
   ========================================================= */
.site-content .nav-pills .nav-link{
  font-family: 'Manrope', 'Inter', sans-serif;
  border-radius: 999px;
  padding: 0.62rem 1.2rem;
  min-width: 122px;
  text-align: center;
  background: #fff;
  border: 1px solid #fff;
  color: #000;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.site-content .nav-pills .nav-link:hover{
  background: #fff;
  border-color: #fff;
}
.site-content .nav-pills .nav-link.active{
  background: var(--gold);
  color: var(--forest);
  border-color: var(--gold);
}

/* =========================================================
   SECTIONS (NORMAL PAGES) – BLACK TEXT ALWAYS
   ========================================================= */
.section-1,
.section-2{
  padding: 70px 0;
  background: var(--bg);
  color: var(--text);
}

.section-2{
  background: #f0f5f2;
  border-top: 1px solid rgba(26, 78, 47, 0.08);
  border-bottom: 1px solid rgba(26, 78, 47, 0.08);
}

.heading-1{
  font-family: 'Playfair Display', serif;
  color: #0f1a11 !important;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.messages-heading{
  width: 100%;
  text-align: center;
}

.para-1{
  color: var(--text-muted);
  font-size: 18px;
  max-width: 760px;
  margin: 0 auto 26px auto;
}

/* =========================================================
   CARDS
   ========================================================= */
.contact-card,
.product-card{
  background: var(--surface) !important;
  border: 1px solid rgba(26,78,47,0.13) !important;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  color: var(--text);
  transition: box-shadow 0.18s, transform 0.15s, border-color 0.15s;
}

.auth-card{
  border: 1px solid rgba(26,78,47,0.15) !important;
  box-shadow: 0 8px 32px rgba(26,78,47,0.12) !important;
  border-radius: var(--radius) !important;
}

.filter-bar{
  position: sticky;
  top: 16px;
  z-index: 5;
  background: var(--surface) !important;
}

.product-card{
  height: 100%;
  cursor: pointer;
}

.product-card .card-body{
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card .trade-card-actions{
  margin-top: auto;
  align-items: stretch;
}
.product-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15,23,42,0.13);
  border-color: rgba(212,160,23,0.45) !important;
}

.product-card.product-card--expanded{
  transform: scale(1.03);
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.22);
  z-index: 2;
}

.product-card .card-title{
  font-weight: 700;
  color: var(--text);
  min-height: 1.5rem;
}

.product-card .trade-name-link{
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card .card-text{
  color: rgba(0,0,0,0.68);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 3.2em;
}

.product-card .small.mb-3{
  min-height: 3.1rem;
}

.product-card.product-card--expanded .trade-name-link{
  display: inline;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
  text-overflow: clip;
}

.product-card.product-card--expanded .card-text{
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
  text-overflow: clip;
  min-height: 0;
}

.product-card.product-card--expanded .small.mb-3{
  min-height: 0;
}

.product-card .trade-card-actions .btn{
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
}

.product-card .text-muted,
.product-card .small,
.contact-card .text-muted,
.contact-card .small{
  color: rgba(0,0,0,0.55) !important;
}

/* Hero search card: no green border */
#aiSearchForm .contact-card{
  border: none !important;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.buy-btn{
  background: linear-gradient(90deg, #d4a017, #b8860b) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--radius-sm);
  font-weight: 700;
  padding: 10px 20px;
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 14px rgba(212,160,23,0.3);
}
.buy-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 8px 24px rgba(212,160,23,0.38);
}
/* Hero scroll chevron */
.scroll-btn{
  display: inline-block;
  margin-top: 18px;
  color: var(--gold) !important;
  font-size: 1.6rem;
  animation: bounce 2s infinite;
}
@keyframes bounce{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(6px); }
}

.my-profile-btn{
  background: var(--forest) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--radius-sm);
  font-weight: 700;
  padding: 10px 14px;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.my-profile-btn:hover,
.my-profile-btn:focus{
  transform: translateY(-1px);
  filter: brightness(1.03);
  color: #fff !important;
}

.btn-outline-dark{
  border-radius: var(--radius-sm);
  border-color: var(--btn-secondary-border) !important;
  color: var(--btn-secondary-text) !important;
}
.btn-outline-dark:hover{
  background: rgba(0,0,0,0.05) !important;
}

.btn-view{
  background: var(--gold) !important;
  color: #1a4e2f !important;
  border: 2px solid var(--gold) !important;
  border-radius: 999px;
  font-weight: 700;
  padding: 6px 16px;
}
.btn-view:hover{
  filter: brightness(0.98);
}
.btn-book{
  background: var(--forest) !important;
  color: #fff !important;
  border: 2px solid var(--forest) !important;
  border-radius: 999px;
  font-weight: 700;
  padding: 6px 16px;
}
.btn-book:hover{
  filter: brightness(1.03);
}

main > :not(.site-content) .btn-book,
main > :not(.site-content) .btn-book * {
  color: #fff !important;
}

.auth-mode-stack .btn{
  border-radius: var(--radius-sm);
  font-weight: 600;
}

/* =========================================================
   FORMS (fixes your “grey text won’t change” issue)
   ========================================================= */
.form-control{
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #fff;
  color: var(--text) !important;
}
.form-control::placeholder{
  color: rgba(0,0,0,0.45) !important;
  opacity: 1;
}
.form-control:focus{
  border-color: rgba(26, 78, 47, 0.35) !important;
  box-shadow: 0 0 0 0.18rem rgba(26, 78, 47, 0.12) !important;
}

.trade-disclosure{
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius-sm);
  padding: 12px;
  background: rgba(255,255,255,0.6);
}

/* =========================================================
   BADGES
   ========================================================= */
.badge-success,
.badge-secondary{
  background: rgba(26, 78, 47, 0.08) !important;
  color: var(--forest) !important;
  border: 1px solid rgba(26, 78, 47, 0.16) !important;
  font-weight: 700;
}

/* =========================================================
   CHAT THREADS
   ========================================================= */
.chat-thread{
  background: #f6f9f7;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-sm);
  padding: 12px;
}
.chat-messages{
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 40px;
  max-height: 160px;
  overflow-y: auto;
  font-size: 0.9rem;
  color: var(--text);
}
.chat-bubble{
  padding: 8px 10px;
  border-radius: 12px;
  background: #fff;
  border: 1.5px solid rgba(26, 78, 47, 0.32);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
  max-width: 85%;
}
.chat-bubble--mine{
  align-self: flex-end;
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
}
.chat-bubble--theirs{
  align-self: flex-start;
  background: #eef3f0;
  color: var(--text);
  border-color: transparent;
  color: #111;
}

/* =========================================================
   WHATSAPP-STYLE MESSAGES
   ========================================================= */
.chat-layout{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 18px;
}
.thread-list{
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0;
  max-height: 560px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.thread-item{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1.5px solid rgba(26, 78, 47, 0.2);
  cursor: pointer;
  background: #fff;
}
.thread-item:hover{
  background: rgba(26, 78, 47, 0.08);
  border-color: var(--forest);
}
.thread-active{
  background: rgba(26, 78, 47, 0.16);
  border-color: var(--forest);
}
.thread-main{
  flex: 1;
  min-width: 0;
}
.thread-name{
  font-weight: 700;
  color: var(--forest);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 8px;
}
.thread-phone{
  font-size: 0.85rem;
  color: rgba(26, 78, 47, 0.85);
}
.thread-preview{
  font-size: 0.85rem;
  color: rgba(26, 78, 47, 0.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}
.thread-meta{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(26, 78, 47, 0.78);
  flex: 0 0 auto;
  margin-left: 10px;
  padding-top: 2px;
}
.thread-time{
  white-space: nowrap;
}
.thread-badges{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.thread-badge{
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.2;
}
.thread-badge--unread{
  background: #1a4e2f;
  color: #fff;
}
.thread-badge--request{
  background: #f4c23c;
  color: #0f3a2f;
}
.thread-empty{
  padding: 14px;
  text-align: center;
  color: rgba(0,0,0,0.6);
}
.chat-panel{
  background: #fff;
  border: 1.5px solid rgba(26, 78, 47, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  min-height: 560px;
}
.chat-header-mini{
  padding: 12px 16px;
  margin: 12px 12px 0;
  border-radius: 14px;
  background: linear-gradient(to right, #091a10 0%, #2e8c52 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 22px rgba(9, 26, 16, 0.24);
}
.chat-back-btn{
  margin-bottom: 8px;
  border-radius: 999px;
}
.chat-header-mini .chat-header-title{
  font-weight: 700;
  color: #ffffff;
}
.chat-header-mini .chat-header-sub{
  font-size: 0.85rem;
  color: rgba(255,255,255,0.88);
}
.messages-page .chat-header-mini .chat-back-btn{
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.55) !important;
  background: rgba(255,255,255,0.12) !important;
}
.messages-page .chat-header-mini .chat-back-btn:hover{
  background: rgba(255,255,255,0.2) !important;
}
.messages-page main > :not(.site-content) .chat-header-mini,
.messages-page main > :not(.site-content) .chat-header-mini *{
  color: #ffffff !important;
}
.chat-intro{
  padding: 12px 16px 0;
  font-weight: 600;
  color: rgba(0,0,0,0.6);
}
.chat-header{
  padding: 12px 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.chat-header-title{
  font-weight: 700;
  color: var(--text);
}
.chat-header-sub{
  font-size: 0.85rem;
  color: rgba(0,0,0,0.6);
}
.chat-body{
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f6f9f7;
}
.chat-placeholder{
  color: rgba(0,0,0,0.55);
}
.chat-input-bar{
  padding: 14px 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  gap: 12px;
  align-items: center;
  background: #fff;
}
.chat-input-wrap{
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 1.5px solid rgba(26, 78, 47, 0.25);
  border-radius: 16px;
  background: linear-gradient(135deg, #f9fdfb 0%, #eef6f1 100%);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.chat-input-wrap:focus-within{
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(26, 78, 47, 0.22);
}
.chat-input-icon{
  color: rgba(26, 78, 47, 0.72);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
}
.chat-input-bar .chat-composer-input{
  flex: 1;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  color: var(--forest) !important;
  min-height: 46px;
  padding-left: 0;
  padding-right: 0;
}
.chat-input-bar .chat-composer-input::placeholder{
  color: rgba(26, 78, 47, 0.55) !important;
}
.chat-send-btn{
  min-height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.22);
  background: var(--forest);
  color: #fff;
  font-weight: 700;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.15s ease, transform 0.15s ease, opacity 0.15s ease;
}
.chat-send-btn:hover{
  color: #fff;
  filter: brightness(1.03);
}
.chat-send-btn:disabled{
  opacity: 0.55;
  cursor: not-allowed;
  filter: none;
}

@media (max-width: 576px){
  .chat-input-bar{
    padding: 10px;
    gap: 8px;
  }
  .chat-send-btn{
    padding: 0 12px;
    min-height: 42px;
  }
  .chat-input-bar .chat-composer-input{
    min-height: 42px;
  }
}

/* =========================================================
   REQUEST LIST
   ========================================================= */
.request-card{
  border-radius: var(--radius-sm);
}
.request-row{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.request-main{
  flex: 1 1 320px;
}
.request-actions{
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 140px;
}
.distance-row{
  color: #1f2937;
}
.distance-row a{
  margin-left: 6px;
  font-weight: 600;
  color: var(--forest);
  text-decoration: underline;
}

.myjobs-split-row{
  align-items: stretch;
}
.myjobs-panel{
  background: #fff;
  border: 1px solid rgba(26,78,47,0.12);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 4px 20px rgba(15,23,42,0.07);
  transition: box-shadow 0.18s;
}

/* ── Quote Funnel ─────────────────────────────── */
.quote-funnel{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.funnel-step{
  display: grid;
  grid-template-columns: 80px 1fr 36px;
  align-items: center;
  gap: 10px;
}
.funnel-step-label{
  font-size: 0.78rem;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.funnel-bar-wrap{
  background: rgba(26, 78, 47, 0.08);
  border-radius: 20px;
  height: 10px;
  overflow: hidden;
}
.funnel-bar{
  height: 10px;
  border-radius: 20px;
  background: rgba(26, 78, 47, 0.38);
  transition: width 0.5s ease;
  width: 0%;
}
.funnel-bar--mid{
  background: var(--forest);
}
.funnel-bar--done{
  background: var(--gold);
}
.funnel-step-count{
  font-size: 0.88rem;
  font-weight: 700;
  text-align: right;
  color: #1e293b;
}
.funnel-rate{
  border-top: 1px solid rgba(26, 78, 47, 0.12);
  padding-top: 10px;
}

/* ── Outstanding Quotes ───────────────────────── */
.outstanding-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(26, 78, 47, 0.1);
  flex-wrap: wrap;
}
.outstanding-row:last-child{ border-bottom: none; }
.outstanding-row--overdue .outstanding-row-days{
  color: #dc2626;
  font-weight: 600;
}
.outstanding-row-main{
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 0.88rem;
}
.outstanding-row-desc{
  font-size: 0.82rem;
}
.outstanding-row-meta{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  white-space: nowrap;
}
.outstanding-row-budget{
  background: rgba(26, 78, 47, 0.1);
  border-radius: 8px;
  padding: 1px 7px;
  font-weight: 600;
  color: var(--forest);
}
.outstanding-row-days{
  color: #64748b;
}

/* ── Upcoming Work ────────────────────────────── */
.upcoming-work-list{
  display: flex;
  flex-direction: column;
  gap: 0;
}
.upcoming-work-row{
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(26, 78, 47, 0.1);
  font-size: 0.88rem;
}
.upcoming-work-row:last-child{ border-bottom: none; }
.upcoming-work-date{
  font-weight: 600;
  color: var(--forest);
  font-size: 0.82rem;
}
.upcoming-work-info{
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.upcoming-status{
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.upcoming-status--accepted{
  background: rgba(26, 78, 47, 0.12);
  color: var(--forest);
}
.upcoming-status--other{
  background: #f1f5f9;
  color: #475569;
}

/* ── Response Time Badge (trade_public.html) ───── */
.trade-response-badge{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(26, 78, 47, 0.09);
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 8px;
  margin-bottom: 4px;
}
.trade-response-badge i{
  font-size: 0.78rem;
  color: var(--gold);
}

.ireland-map-wrap{
  position: relative;
  min-height: 640px;
  border: 1px solid rgba(26, 78, 47, 0.18);
  border-radius: 18px;
  background: #f7fbf9;
  overflow: hidden;
}
.ireland-live-map{
  position: absolute;
  inset: 0;
}
.map-toolbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.map-toolbar-left,
.map-toolbar-right{
  display: flex;
  align-items: center;
  gap: 8px;
}
.map-toolbar .btn.is-active{
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
}
.map-metrics{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
}
.map-metric{
  border: 1px solid rgba(26, 78, 47, 0.18);
  border-radius: 12px;
  padding: 6px 8px;
  background: #fbfaf7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.map-metric .label{
  font-size: 0.72rem;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.map-metric strong{
  font-size: 1rem;
  color: #0f3a2f;
}
.map-legend{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  color: #334155;
}
.legend-title{
  font-weight: 700;
  color: #0f3a2f;
  margin-right: 2px;
}
.legend-swatch{
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 1px solid rgba(15,23,42,0.12);
}
.legend-line{
  display: inline-block;
  width: 18px;
  border-top: 3px solid #64748b;
}
.legend-line--soft{ border-top-color: #64748b; }
.legend-line--active{ border-top-color: #1a4e2f; }
.legend-line--selected{ border-top-color: #0f3a2f; }
.legend-note{
  margin-left: 4px;
  color: #64748b;
}
.service-area-box{
  border: 1px solid rgba(26, 78, 47, 0.2);
  border-radius: 14px;
  padding: 10px;
  background: #fbfaf7;
}
.map-quality-panel{
  border: 1px solid rgba(26, 78, 47, 0.18);
  border-radius: 12px;
  padding: 10px;
  background: #fff;
}
.quality-title{
  font-weight: 700;
  color: #0f3a2f;
  margin-bottom: 8px;
}
.quality-group{
  margin-bottom: 8px;
}
.quality-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
  font-size: 0.86rem;
}
.county-map-label{
  background: transparent;
  border: none;
}
.county-map-label span{
  display: inline-block;
  background: rgba(26, 78, 47, 0.92);
  color: #fff;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.2);
  white-space: nowrap;
}
.county-chip-list{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.county-chip{
  border-radius: 999px;
  border: 1px solid rgba(26, 78, 47, 0.2);
  padding: 6px 10px;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.86);
}
.county-chip strong{
  font-weight: 800;
  color: var(--forest);
}
.county-chip--active{
  border-color: rgba(26, 78, 47, 0.45);
  background: #e8f5ee;
}

@media (max-width: 991.98px){
  .ireland-map-wrap{
    min-height: 560px;
  }
  .map-metrics{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .quality-row{
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================================
   UPLOAD LISTS
   ========================================================= */
.upload-list{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 8px;
}
.upload-item{
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  padding: 6px;
  text-align: center;
}
.upload-item img{
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}

/* =========================================================
   TRADE CARD PHOTO
   ========================================================= */
.trade-photo{
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  margin-bottom: 10px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}
.trade-photo-link,
.trade-name-link{
  text-decoration: none;
  color: inherit;
}
.trade-name-link:hover{
  color: var(--forest);
}

/* =========================================================
   EXPLORE FEED
   ========================================================= */
.explore-feed{
  display: grid;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.explore-card{
  background: #fff;
  border: 2px solid var(--forest);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.explore-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.14);
}
.explore-header{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: #fff;
}
.explore-avatar{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
}
.explore-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.explore-head-text{
  flex: 1;
  min-width: 0;
}
.explore-title{
  font-weight: 700;
  font-size: 1rem;
}
.explore-media-wrap{
  background: #f6f4ef;
  position: relative;
  overflow: hidden;
}
.explore-media{
  width: 100%;
  display: block;
  max-height: 640px;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.explore-card:hover .explore-media{
  transform: scale(1.02);
}
.explore-media-wrap::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.18));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.explore-card:hover .explore-media-wrap::after{
  opacity: 1;
}
.explore-body{
  padding: 14px 16px 18px;
}
.explore-meta{
  font-size: 0.8rem;
  color: rgba(0,0,0,0.55);
}
.explore-caption{
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
}
.explore-time{
  font-size: 0.75rem;
  color: rgba(0,0,0,0.45);
  white-space: nowrap;
}
.explore-caption-name{
  font-weight: 700;
  margin-right: 6px;
}
.explore-actions{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: rgba(0,0,0,0.7);
}
.explore-action{
  border: none;
  background: transparent;
  color: inherit;
  font-size: 1.05rem;
  padding: 4px 2px;
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
}
.explore-action:hover{
  color: var(--forest);
  transform: translateY(-1px);
}

/* =========================================================
   PUBLIC TRADE PROFILE
   ========================================================= */
.trade-profile-shell{
  max-width: 980px;
  margin: 0 auto;
}
.trade-profile-card{
  background: #fff;
  border: 2px solid var(--forest);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 18px 20px;
}
.trade-profile-header{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.trade-profile-nameblock{
  min-width: 0;
}
.trade-profile-actions{
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.trade-profile-posts-count{
  font-weight: 700;
  color: var(--forest);
  text-align: right;
}
.trade-profile-divider{
  height: 2px;
  background: var(--gold);
  margin: 10px 0;
  border-radius: 999px;
}
.trade-profile-header{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.trade-profile-avatar{
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(26, 78, 47, 0.12);
  color: var(--forest);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.trade-profile-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trade-profile-title{
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0;
}
.trade-profile-meta{
  color: rgba(0,0,0,0.6);
  font-size: 0.95rem;
}
.trade-profile-actions{
  margin-left: auto;
  display: flex;
  gap: 10px;
}
.trade-profile-rating{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: rgba(0,0,0,0.7);
}
.trade-profile-rating .fa-star{
  color: #f2c94c;
}
.trade-profile-description{
  margin-top: 12px;
  color: rgba(0,0,0,0.75);
}
.trade-profile-section{
  margin-top: 12px;
}
.trade-profile-section-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.trade-profile-section-title{
  font-weight: 700;
  margin: 0;
}
.trade-profile-section-line{
  flex: 1;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
  margin-left: 12px;
}
.trade-profile-section h4{
  font-weight: 700;
  margin-bottom: 10px;
}
.trade-profile-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 2px;
  padding: 2px;
  background: var(--gold);
  border-radius: 12px;
}
.trade-profile-tile{
  background: #f6f4ef;
  border-radius: 8px;
  overflow: hidden;
}
.trade-profile-media{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.trade-profile-empty{
  text-align: center;
  padding: 18px;
  color: rgba(0,0,0,0.6);
  border: 1px dashed rgba(0,0,0,0.2);
  border-radius: 12px;
  background: #fff;
}

/* =========================================================
   CALENDAR LIST
   ========================================================= */
.calendar-list{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.calendar-layout-row{
  row-gap: 1.25rem;
}

.calendar-main-pane{
  padding-top: 0.25rem;
}

@media (min-width: 992px){
  .calendar-layout-row{
    margin-left: -18px;
    margin-right: -18px;
  }
  .calendar-layout-row > [class*="col-"]{
    padding-left: 18px;
    padding-right: 18px;
  }
  .calendar-quick-add{
    border-right: 1px solid rgba(15, 23, 42, 0.1);
  }
}

.calendar-item{
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
  border: 2px solid var(--forest);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calendar-item small{
  color: rgba(0,0,0,0.6);
}

.calendar-hover-bubble{
  position: fixed;
  z-index: 2000;
  width: min(540px, calc(100vw - 20px));
  max-height: 72vh;
  overflow: auto;
  background: rgba(255,255,255,0.99);
  border: 2px solid var(--forest);
  border-radius: 18px;
  box-shadow: 0 22px 56px rgba(0,0,0,0.24);
  padding: 14px;
  backdrop-filter: blur(6px);
}
.calendar-day-info-panel{
  margin-top: 16px;
  border: 1px solid rgba(26, 78, 47, 0.28);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf9 100%);
  box-shadow: 0 10px 24px rgba(13, 37, 30, 0.12);
  padding: 14px;
}
.calendar-hover-bubble--panel{
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: none;
  overflow: visible;
  margin-top: 14px;
  border: 1px solid rgba(26, 78, 47, 0.28);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf9 100%);
  box-shadow: 0 10px 24px rgba(13, 37, 30, 0.12);
}
.calendar-hover-bubble--panel .calendar-hover-title{
  font-size: 1.35rem;
}
.calendar-hover-title{
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--forest);
  margin-bottom: 10px;
}
.calendar-hover-body{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calendar-hover-row{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(26, 78, 47, 0.22);
  border-radius: 14px;
  background: #fbfaf7;
}
.calendar-hover-client{
  font-weight: 800;
  font-size: 1rem;
  color: var(--forest);
  margin-bottom: 2px;
}
.calendar-hover-time{
  font-weight: 700;
  font-size: 0.98rem;
}
.calendar-hover-note{
  font-size: 0.98rem;
  color: #2d3a45;
}
.calendar-hover-actions{
  display: flex;
  gap: 8px;
}
.calendar-hover-empty{
  color: rgba(0,0,0,0.65);
  padding: 10px 2px;
  font-size: 0.98rem;
}
.calendar-hover-footer{
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
}
.calendar-hover-footer .btn{
  border-radius: 999px;
  font-weight: 700;
  padding: 8px 14px;
}
.calendar-hover-actions .btn{
  border-radius: 999px;
  font-weight: 700;
  padding: 6px 12px;
}

.calendar-grid{
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  user-select: none;
}
.calendar-dayview{
  display: none;
  margin-top: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  padding: 12px;
  background: #fff;
}
.calendar-mini{
  border: 2px solid var(--forest);
  border-radius: 12px;
  padding: 10px;
  background: #fff;
}
.calendar-mini-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.calendar-mini-month{
  font-weight: 700;
  color: var(--text);
}
.calendar-mini-grid{
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.calendar-mini-weekday{
  text-align: center;
  font-size: 0.7rem;
  color: rgba(0,0,0,0.6);
}
.calendar-mini-day{
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  border-radius: 8px;
  padding: 6px 0;
  font-size: 0.8rem;
  text-align: center;
  cursor: pointer;
  color: var(--text);
}
.calendar-mini-day:hover{
  border-color: rgba(26, 78, 47, 0.35);
}
.calendar-mini-day--outside{
  background: #f6f4ef;
  color: rgba(0,0,0,0.35);
}
.calendar-mini-day--busy{
  background: rgba(26, 78, 47, 0.12);
  border-color: rgba(26, 78, 47, 0.35);
  font-weight: 700;
}
.calendar-mini-day--booking{
  background: rgba(34, 175, 88, 0.28);
  border-color: rgba(34, 175, 88, 0.7);
  font-weight: 700;
}
.calendar-mini-day--unavailable{
  background: rgba(200, 57, 57, 0.18);
  border-color: rgba(200, 57, 57, 0.5);
  color: rgba(0,0,0,0.8);
  font-weight: 700;
}
.calendar-mini-day--blocked{
  background: rgba(26, 78, 47, 0.18);
  border-color: rgba(26, 78, 47, 0.45);
  cursor: not-allowed;
  color: rgba(0,0,0,0.5);
}
.calendar-mini-day--selected{
  border-color: var(--forest);
  box-shadow: 0 0 0 2px rgba(26, 78, 47, 0.15);
  font-weight: 700;
}
.calendar-dayview-header{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 12px;
}
.calendar-week-nav{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.calendar-week-label{
  font-weight: 700;
  color: var(--text);
}
.calendar-week-buttons{
  display: grid;
  grid-template-columns: repeat(7, minmax(70px, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}
.calendar-week-btn{
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  border-radius: 10px;
  padding: 8px 6px;
  cursor: pointer;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.calendar-week-btn strong{
  font-size: 0.95rem;
}
.calendar-week-btn:hover{
  border-color: rgba(26, 78, 47, 0.4);
}
.calendar-week-btn--active{
  background: rgba(26, 78, 47, 0.12);
  border-color: rgba(26, 78, 47, 0.35);
  font-weight: 700;
}
.calendar-dayview-legend{
  font-size: 0.85rem;
  color: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}
.calendar-legend-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(26, 78, 47, 0.6);
  display: inline-block;
}
.calendar-dayview-slots{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 8px;
  user-select: none;
}
.calendar-dayview-slot{
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  border-radius: 10px;
  padding: 8px 6px;
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.calendar-dayview-slot:hover{
  border-color: rgba(26, 78, 47, 0.4);
}
.calendar-dayview-slot--booking{
  background: rgba(34, 175, 88, 0.28);
  border-color: rgba(34, 175, 88, 0.7);
  font-weight: 700;
}
.calendar-dayview-slot--unavailable{
  background: rgba(200, 57, 57, 0.18);
  border-color: rgba(200, 57, 57, 0.5);
  cursor: not-allowed;
}
.calendar-nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.calendar-toggles{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.calendar-toggles .btn,
.calendar-nav .btn{
  border-radius: 999px;
  font-weight: 700;
  padding: 8px 14px;
}
.calendar-toggle-active{
  background: var(--forest) !important;
  color: #fff !important;
  border-color: var(--forest) !important;
}
.calendar-toggles .btn.calendar-toggle-active,
.calendar-toggles .btn.calendar-toggle-active:hover,
.calendar-toggles .btn.calendar-toggle-active:focus{
  color: #fff !important;
}
.calendar-block-menu{
  min-width: 220px;
}
.calendar-month{
  font-weight: 800;
  color: #0f3a2f;
  font-size: clamp(1.6rem, 2vw, 2rem);
}
.calendar-weekday{
  text-align: center;
  font-size: 0.8rem;
  color: rgba(0,0,0,0.62);
  font-weight: 700;
}
.calendar-day{
  background: #fff;
  border: 1px solid rgba(26, 78, 47, 0.55);
  border-radius: 14px;
  padding: 10px 8px;
  text-align: center;
  font-size: 1.08rem;
  color: var(--text);
  cursor: pointer;
  font-weight: 700;
  min-height: 52px;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}
.calendar-day:hover{
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(26, 78, 47, 0.14);
  border-color: rgba(26, 78, 47, 0.85);
}
.calendar-day--outside{
  color: rgba(0,0,0,0.35);
  background: #f6f4ef;
}
.calendar-day--weekend{
  background: rgba(193, 123, 74, 0.08);
  border-color: rgba(193, 123, 74, 0.2);
}
.calendar-day--unavailable{
  background: rgba(226, 74, 74, 0.62);
  border-color: rgba(180, 42, 42, 0.84);
  font-weight: 700;
}
.calendar-day--booking{
  background: rgba(75, 203, 132, 0.56);
  border-color: rgba(22, 122, 67, 0.88);
  font-weight: 700;
}
.calendar-day--requested{
  background: rgba(82, 145, 235, 0.5);
  border-color: rgba(41, 89, 177, 0.72);
  font-weight: 700;
}

@media (max-width: 900px){
  .navbar{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  /* Left side: brand directly or a wrapper div — allow shrink */
  .navbar > .navbar-brand,
  .navbar > div:first-child,
  .navbar > .d-flex:first-child{
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-start !important;
    margin-right: 0 !important;
  }
  .navbar > .navbar-brand span,
  .navbar > .d-flex:first-child .navbar-brand span,
  .navbar > div:first-child .navbar-brand span{
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
  }
  /* Right side: action buttons — never shrink */
  .navbar > .d-flex:last-child,
  .navbar > div:last-child{
    flex: 0 0 auto;
  }
  /* User name: hide on mobile, accessible via gear dropdown */
  .nav-user-center{
    display: none !important;
  }
  .navbar #loginBtn.btn-outline-light{
    display: inline-block;
    min-height: 36px;
    height: 36px;
    padding: 0 12px;
    line-height: 36px;
    font-size: 0.82rem;
    text-align: center;
    white-space: nowrap;
    transform: none;
  }
  .navbar #signOut.btn-outline-light{
    min-height: 36px;
    height: 36px;
    padding: 0 12px;
    font-size: 0.82rem;
  }
  .navbar .dropdown .btn{
    min-height: 36px;
    height: 36px;
    padding: 0 10px;
  }
  .chat-layout{
    grid-template-columns: 1fr;
  }
  .chat-layout.chat-layout--mobile-list .chat-panel{
    display: none;
  }
  .chat-layout.chat-layout--mobile-chat .thread-list{
    display: none;
  }
  .chat-layout.chat-layout--mobile-chat .chat-panel{
    display: flex;
  }
  .chat-layout.chat-layout--mobile-chat .chat-back-btn{
    display: inline-flex !important;
  }
  .thread-preview{
    max-width: 100%;
  }
  .site-content .nav-pills .nav-link{
    min-width: 0;
    width: 100%;
  }
  .navbar-brand{
    font-size: clamp(21px, 6.2vw, 29px);
  }
  .brand-logo{
    height: clamp(24px, 6.2vw, 34px) !important;
    margin-right: 5px !important;
  }
  .home-page .site-content{
    padding-bottom: 26px;
  }
}

/* =========================================================
   IMAGE FRAME
   ========================================================= */
.image-frame{
  max-width: 560px;
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

/* =========================================================
   FAQ + ACCENTS
   ========================================================= */
.faq-icon{
  color: var(--forest) !important;
}

.faq-heading,
.faq-body,
.faq-link{
  color: var(--text) !important;
}

.faq-link:hover{
  color: var(--forest) !important;
}

.accent-icon{
  color: var(--gold) !important;
}

/* =========================================================
   MODALS + AI LABELS
   ========================================================= */
.ai-suggestion-label{
  color: var(--text);
}

.quote-modal-content{
  background: var(--forest);
  color: #ffffff;
}
.quote-modal-content,
.quote-modal-content *{
  color: #ffffff !important;
}
.quote-modal-content .form-control,
.quote-modal-content .form-control::placeholder,
.quote-modal-content .calendar-mini,
.quote-modal-content .calendar-mini *{
  color: #111 !important;
}
.quote-modal-content .modal-title,
.quote-modal-content .modal-header,
.quote-modal-content .modal-body,
.quote-modal-content .modal-body p,
.quote-modal-content .modal-body label,
.quote-modal-content .modal-body strong,
.quote-modal-content .modal-body span,
.quote-modal-content .modal-body small,
.quote-modal-content hr{
  color: #fff !important;
  border-color: rgba(255,255,255,0.2) !important;
}
.quote-modal-content .calendar-mini .calendar-mini-month,
.quote-modal-content .calendar-mini .calendar-mini-weekday,
.quote-modal-content .calendar-mini .calendar-mini-day,
.quote-modal-content .calendar-mini .calendar-mini-day span,
.quote-modal-content .calendar-mini button{
  color: #111 !important;
}

.trade-modal-content{
  background: rgba(15,46,43,0.85);
  border: 1px solid rgba(245,242,234,0.25);
  backdrop-filter: blur(14px);
  color: #f5f3ef;
}

/* =========================================================
   QUOTE MODAL — REDESIGNED
   ========================================================= */
.qm-sheet {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
}

/* Header */
.qm-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  background: var(--forest);
  border-radius: 20px 20px 0 0;
  color: #fff;
}
.qm-header-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 4px;
  font-weight: 600;
}
.qm-header-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: #fff;
  font-family: 'Playfair Display', serif;
}
.qm-header-category {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.72rem;
  padding: 2px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}
.qm-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 12px;
  padding: 0;
  line-height: 1;
}
.qm-close:hover { background: rgba(255,255,255,0.25); }

/* Body */
.qm-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.qm-section { display: flex; flex-direction: column; gap: 8px; }
.qm-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.02em;
}
.qm-optional { font-weight: 400; color: rgba(0,0,0,0.45); }

/* Textarea */
.qm-textarea {
  width: 100%;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.9rem;
  color: #111;
  resize: none;
  background: #fafaf9;
  transition: border-color 0.15s;
  font-family: inherit;
  box-sizing: border-box;
}
.qm-textarea:focus {
  outline: none;
  border-color: var(--forest);
  background: #fff;
}

/* Calendar */
.qm-calendar {
  background: #fafaf9;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 12px;
}
.qm-calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.qm-calendar-month {
  font-size: 0.85rem;
  font-weight: 700;
  color: #111;
}
.qm-cal-arrow {
  background: none;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 1.1rem;
  cursor: pointer;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  transition: border-color 0.15s, background 0.15s;
}
.qm-cal-arrow:hover { border-color: var(--forest); background: rgba(26,78,47,0.06); }

.qm-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.qm-cal-weekday {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(0,0,0,0.4);
  padding-bottom: 4px;
  letter-spacing: 0.05em;
}
.qm-cal-day {
  aspect-ratio: 1;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-size: 0.8rem;
  color: #111;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s, color 0.12s;
  font-family: inherit;
  padding: 0;
}
.qm-cal-day:hover:not(:disabled) {
  background: rgba(26,78,47,0.1);
}
.qm-cal-day--past {
  color: rgba(0,0,0,0.25);
  cursor: default;
}
.qm-cal-day--busy {
  background: rgba(212,160,23,0.15);
  color: rgba(0,0,0,0.4);
  cursor: not-allowed;
}
.qm-cal-day--blocked {
  background: rgba(200,57,57,0.1);
  color: rgba(0,0,0,0.35);
  cursor: not-allowed;
}
.qm-cal-day--selected {
  background: var(--forest) !important;
  color: #fff !important;
  font-weight: 700;
  border-radius: 8px;
}

/* Legend */
.qm-cal-legend {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  font-size: 0.7rem;
  color: rgba(0,0,0,0.5);
}
.qm-cal-legend span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.qm-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.qm-dot--free { background: var(--forest); }
.qm-dot--busy { background: var(--gold); }
.qm-dot--blocked { background: rgba(200,57,57,0.6); }

/* Selected date chip */
.qm-date-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26,78,47,0.08);
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(26,78,47,0.2);
}
.qm-date-chip-icon { font-style: normal; }

/* Budget */
.qm-budget-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 12px;
  background: #fafaf9;
  overflow: hidden;
  transition: border-color 0.15s;
}
.qm-budget-wrap:focus-within { border-color: var(--forest); background: #fff; }
.qm-budget-prefix {
  padding: 0 12px;
  font-weight: 600;
  color: rgba(0,0,0,0.45);
  font-size: 0.95rem;
  border-right: 1.5px solid rgba(0,0,0,0.08);
  height: 100%;
  display: flex;
  align-items: center;
  align-self: stretch;
}
.qm-budget-input {
  border: none;
  background: transparent;
  padding: 11px 14px;
  font-size: 0.9rem;
  color: #111;
  width: 100%;
  font-family: inherit;
}
.qm-budget-input:focus { outline: none; }

/* Loading */
.qm-loading {
  text-align: center;
  color: rgba(0,0,0,0.45);
  font-size: 0.85rem;
  padding: 16px;
  background: #fafaf9;
  border-radius: 12px;
  border: 1.5px solid rgba(0,0,0,0.08);
}

/* Error */
.qm-error {
  background: rgba(200,57,57,0.08);
  color: #c83939;
  border: 1px solid rgba(200,57,57,0.2);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.85rem;
}

/* Submit */
.qm-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), #b8860b);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: opacity 0.15s, transform 0.12s;
  font-family: inherit;
}
.qm-submit:hover:not(:disabled) { opacity: 0.92; transform: translateY(-1px); }
.qm-submit:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

/* Success */
.qm-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
  gap: 8px;
}
.qm-success-icon {
  width: 52px;
  height: 52px;
  background: var(--forest);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.qm-success-title { font-size: 1.1rem; font-weight: 700; color: #111; margin: 0; }
.qm-success-sub { color: rgba(0,0,0,0.5); font-size: 0.88rem; margin: 0; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer-section{
  background: var(--bg) !important;
  border-top: none;
  color: rgba(0,0,0,0.80);
  padding: 22px 0;
}
.footer-section .social-icon{
  color: var(--forest);
  transition: 0.2s ease;
}
.footer-section .social-icon:hover{ color: var(--gold); }

.footer-line{
  border-top: 1px solid var(--line);
  width: 60%;
  margin: 10px auto;
}

.footer-link{
  color: var(--forest);
  text-decoration: underline;
  font-size: 0.875rem;
}
.footer-link:hover{ color: var(--gold); }

/* Everything after hero becomes black */
main > :not(.site-content),
main > :not(.site-content) * {
  color: #111 !important;
}

/* Bottom nav colours must never be overridden */
.bottom-nav .bottom-nav-item,
.bottom-nav .bottom-nav-item * {
  color: #1a4e2f !important;
}
.bottom-nav .bottom-nav-item.active,
.bottom-nav .bottom-nav-item.active * {
  color: #d4a017 !important;
}

/* Keep buttons readable */
main > :not(.site-content) .buy-btn,
main > :not(.site-content) .buy-btn * {
  color: var(--btn-primary-text) !important;
}
/* Active/hover category pills — white text on green */
main > :not(.site-content) .cat-pill.active,
main > :not(.site-content) .cat-pill:hover {
  color: #fff !important;
}
/* Star rating colour carve-outs */
main > :not(.site-content) .star-btn { color: #d1d5db !important; }
main > :not(.site-content) .star-btn.is-active,
main > :not(.site-content) .star-btn.is-hover { color: #d6c940 !important; }

/* Keep white text on dark-bg elements */
main > :not(.site-content) .chat-bubble--mine,
main > :not(.site-content) .chat-bubble--mine *,
main > :not(.site-content) .ob-quote-card,
main > :not(.site-content) .ob-quote-card * {
  color: #fff !important;
}
main > :not(.site-content) .chat-bubble--theirs,
main > :not(.site-content) .chat-bubble--theirs * {
  color: #111 !important;
}
main > :not(.site-content) .chat-send-btn,
main > :not(.site-content) .chat-send-btn * {
  color: #fff !important;
}

/* Messages header strip must stay white on dark gradient */
.messages-page #chatHeaderMini,
.messages-page #chatHeaderMini *,
.messages-page #chatHeaderTitle,
.messages-page #chatHeaderSub{
  color: #ffffff !important;
}

/* =========================================================
   BOOKING PANEL
   ========================================================= */
.booking-panel{
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding: 16px;
  background: #fff;
}
.booking-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  color: var(--text);
}
.booking-meta{
  font-size: 0.95rem;
  color: rgba(0,0,0,0.6);
  margin-bottom: 12px;
}
.jobflow-progress{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.jobflow-step-pill{
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #3b4a59;
  background: #f8fafc;
}
.jobflow-step-pill--active{
  border-color: #1a4e2f;
  color: #1a4e2f;
  background: #e8f5ee;
}
.jobflow-step-pill--done{
  border-color: #1a4e2f;
  color: #fff;
  background: #1a4e2f;
}
.jobflow-step-panel{
  margin-top: 10px;
  padding: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 14px;
  background: #fbfaf7;
}
.chat-request-card{
  border: 1px solid rgba(26, 78, 47, 0.22);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 10px;
  background: #fbfaf7;
}
.chat-request-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}
.chat-request-badge{
  border-radius: 999px;
  border: 1px solid rgba(26, 78, 47, 0.22);
  padding: 3px 9px;
  font-size: 0.74rem;
  font-weight: 800;
  color: #1a4e2f;
  background: #e8f5ee;
}
.chat-request-title{
  font-weight: 800;
  color: #1a4e2f;
  margin-bottom: 3px;
}
.chat-request-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 8px;
}
.chat-request-grid-item{
  border: 1px solid rgba(26, 78, 47, 0.12);
  border-radius: 10px;
  background: #fff;
  padding: 7px 9px;
}
.chat-request-grid-item .label{
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #5b6670;
}
.chat-request-grid-item .value{
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #1f2f3d;
}
.chat-request-meta{
  font-size: 0.92rem;
  color: #425466;
}
.chat-request-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.chat-request-actions .btn{
  border-radius: 999px;
  font-weight: 700;
  padding: 6px 12px;
}
.request-timeline{
  margin-top: 10px;
}
.request-timeline .jobflow-progress{
  margin-bottom: 0;
}
.booking-form{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
}
.booking-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.booking-actions--main .btn{
  border-radius: 999px;
  padding: 7px 15px;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 700;
}
.booking-actions--main .btn-success{
  background: var(--forest) !important;
  border-color: var(--forest) !important;
  color: #fff !important;
}
.payment-mode-row{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.booking-actions--composer{
  margin-top: 10px;
  justify-content: flex-end;
}
.booking-actions--composer .buy-btn{
  min-width: 148px;
}

.calendar-day:hover{
  border-color: rgba(26, 78, 47, 0.45);
  box-shadow: 0 6px 16px rgba(26, 78, 47, 0.12);
}

/* =========================================================
   OBAIR+ UPGRADE BAR (navbar dropdown)
   ========================================================= */
.obair-plus-tgl { display: none; }
.obair-plus-section { position: relative; }
.obair-plus-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: linear-gradient(90deg, #1a4e2f 0%, #b8860b 100%);
  color: #fff;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 600;
  user-select: none;
  transition: filter 0.15s;
}
.obair-plus-bar:hover { filter: brightness(1.1); }
.obair-plus-bar span { color: #fff; }
.obair-plus-badge {
  background: rgba(255,255,255,0.22);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.07em;
  flex-shrink: 0;
}
.obair-plus-bubble {
  display: none;
  background: #fff;
  border-top: 1px solid rgba(26,78,47,0.1);
  padding: 12px 14px 10px;
  text-align: center;
}
.obair-plus-tgl:checked ~ .obair-plus-bubble { display: block; }
/* =========================================================
   MOBILE FIXES
   ========================================================= */

/* Hide hero sub-nav on mobile — main navbar handles navigation */
@media (max-width: 767px) {
  .nav.nav-pills.flex-column { display: none !important; }
}

/* Trade public profile — stack button below nameblock on mobile */
@media (max-width: 575px) {
  .trade-profile-header {
    flex-wrap: wrap;
  }
  .trade-profile-nameblock {
    flex: 1 1 0;
    min-width: 0;
  }
  .trade-profile-actions {
    margin-left: 0;
    width: 100%;
    margin-top: 10px;
  }
  .trade-profile-actions .btn-book {
    width: 100%;
    justify-content: center;
  }
}

.obair-plus-upgrade-btn {
  background: linear-gradient(90deg, #1a4e2f 0%, #b8860b 100%) !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  border: none !important;
  font-size: 0.9rem;
  padding: 8px 0;
  letter-spacing: 0.02em;
}

/* =========================================================
   CATEGORY PILLS BAR (homepage + explore)
   ========================================================= */
.category-pills-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 0 0 20px;
}
.cat-pill {
  border: 1.5px solid rgba(26,78,47,0.3);
  background: transparent;
  color: var(--forest);
  border-radius: 999px;
  padding: 5px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  font-family: inherit;
  white-space: nowrap;
}
.cat-pill.active,
.cat-pill:hover {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
}
.cat-pill--more {
  border-style: dashed;
  opacity: 0.7;
}

/* =========================================================
   BOTTOM NAV (mobile only)
   ========================================================= */
.bottom-nav {
  display: none;
}
@media (max-width: 900px) {
  .bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: var(--bg);
    border-top: 2px solid rgba(26,78,47,0.18);
    z-index: 1100;
    align-items: stretch;
  }
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)) !important;
  }
  .bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #1a4e2f;
    text-decoration: none !important;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    gap: 4px;
    transition: color 0.15s;
    padding: 10px 0 8px;
    border: none;
    background: none;
    position: relative;
  }
  .bottom-nav-item i {
    font-size: 20px;
    line-height: 1;
    transition: transform 0.15s;
  }
  .bottom-nav-item.active {
    color: #d4a017;
  }
  .bottom-nav-item.active i {
    transform: translateY(-1px);
  }
  /* Gold indicator bar on active tab */
  .bottom-nav-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    right: 25%;
    height: 2.5px;
    background: linear-gradient(90deg, #d4a017, #b8860b);
    border-radius: 0 0 3px 3px;
  }
  .bottom-nav-item:hover {
    color: var(--forest);
    text-decoration: none !important;
  }
}
