/* SouthEnd Climate Co. – Premium HVAC demo. Forest green, copper, cream. */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&display=swap');

:root {
  /* Brand */
  --se-forest: #1B4332;
  --se-forest-dark: #0d261c;
  --se-copper: #C17B4A;
  --se-copper-dark: #a86638;
  --se-cream: #FAF8F5;
  --se-cream-dark: #F0EDE8;
  --se-charcoal: #1A1A2E;
  --se-sage: #95B8A3;
  --se-sage-muted: rgba(149, 184, 163, 0.4);
  /* Typography */
  --se-font-heading: 'DM Serif Display', Georgia, serif;
  --se-font-body: 'DM Sans', system-ui, sans-serif;
  /* Spacing & layout */
  --se-container: min(1100px, 100% - 2rem);
  --se-section-padding: clamp(3rem, 6vw, 5rem);
  --se-radius: 12px;
  --se-radius-lg: 16px;
  --se-shadow: 0 4px 20px rgba(27, 67, 50, 0.08);
  --se-shadow-lg: 0 12px 40px rgba(27, 67, 50, 0.12);
}

* { box-sizing: border-box; }

body.theme-southend {
  margin: 0;
  font-family: var(--se-font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--se-charcoal);
  background: var(--se-cream);
  -webkit-font-smoothing: antialiased;
}

.theme-southend img { max-width: 100%; height: auto; display: block; }
.theme-southend a { color: var(--se-forest); text-decoration: none; }
.theme-southend a:hover { text-decoration: underline; }

/* ----- Demo banner ----- */
.theme-southend .mock-demo-banner {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--se-charcoal);
  background: var(--se-cream-dark);
  border-bottom: 1px solid var(--se-sage-muted);
}
.theme-southend .mock-demo-banner.is-dismissed { display: none; }
.theme-southend .mock-demo-banner-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
}
.theme-southend .mock-demo-banner-inner span { flex: 1 1 280px; }
.theme-southend .mock-demo-banner-cta {
  flex-shrink: 0;
  display: inline-block;
  padding: 0.4rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: var(--se-forest);
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
}
.theme-southend .mock-demo-banner-cta:hover { background: var(--se-forest-dark); color: #fff; text-decoration: none; }
.theme-southend .mock-demo-banner-close {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--se-charcoal);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 4px;
}
.theme-southend .mock-demo-banner-close:hover { color: var(--se-forest); background: var(--se-sage-muted); }

/* ----- Return to H4Services ----- */
.theme-southend .mock-return-banner {
  display: block;
  width: 100%;
  padding: 0.75rem 1.5rem;
  text-align: center;
  background: var(--se-forest);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s;
}
.theme-southend .mock-return-banner::before { content: "← "; font-weight: 700; }
.theme-southend .mock-return-banner:hover,
.theme-southend .mock-return-banner:focus {
  background: var(--se-forest-dark);
  color: #fff;
  text-decoration: none;
  outline: none;
}

/* ----- Header / Nav ----- */
.theme-southend .se-header {
  background: var(--se-forest);
  color: #fff;
  padding: 0.85rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--se-copper);
}
.theme-southend .se-header-inner {
  max-width: var(--se-container);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.theme-southend .se-logo {
  font-family: var(--se-font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.theme-southend .se-logo:hover { color: var(--se-sage) !important; text-decoration: none; }
.theme-southend .se-logo-icon { width: 28px; height: 28px; flex-shrink: 0; }
.theme-southend .se-header-phone {
  font-weight: 700;
  color: var(--se-copper);
  text-decoration: none;
}
.theme-southend .se-header-phone:hover { color: #fff; text-decoration: none; }
.theme-southend .se-nav { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.theme-southend .se-nav a { color: rgba(255,255,255,0.95) !important; font-weight: 500; }
.theme-southend .se-nav a:hover { color: var(--se-copper) !important; text-decoration: none; }
.theme-southend .se-nav .se-nav-book { color: var(--se-copper) !important; font-weight: 600; }
.theme-southend .se-nav .se-back { color: var(--se-sage); font-size: 0.9rem; }
.theme-southend .se-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}
.theme-southend .se-menu-toggle:hover { color: var(--se-copper); }

@media (max-width: 768px) {
  .theme-southend .se-menu-toggle { display: block; }
  .theme-southend .se-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 0.25rem;
  }
  .theme-southend .se-nav.is-open { display: flex; }
  .theme-southend .se-nav a, .theme-southend .se-nav .se-back { padding: 0.5rem 0; }
}

/* ----- Hero ----- */
.theme-southend .se-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--se-charcoal) center/cover no-repeat;
  color: #fff;
}
.theme-southend .se-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,46,0.75) 0%, rgba(26,26,46,0.85) 100%);
}
.theme-southend .se-hero-inner { position: relative; z-index: 1; max-width: var(--se-container); margin: 0 auto; }
.theme-southend .se-hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--se-sage);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}
.theme-southend .se-hero h1 {
  font-family: var(--se-font-heading);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: #fff;
}
.theme-southend .se-hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.5;
  margin: 0 0 1.75rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}
.theme-southend .se-hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 1.5rem; }
.theme-southend .se-hero-btns .se-btn-primary {
  display: inline-block;
  padding: 0.9rem 1.75rem;
  font-weight: 600;
  font-size: 1rem;
  background: var(--se-copper);
  color: #fff !important;
  border-radius: var(--se-radius);
  text-decoration: none;
  border: 2px solid var(--se-copper);
  transition: background 0.2s, border-color 0.2s;
}
.theme-southend .se-hero-btns .se-btn-primary:hover { background: var(--se-copper-dark); border-color: var(--se-copper-dark); color: #fff !important; text-decoration: none; }
.theme-southend .se-hero-btns .se-btn-secondary {
  display: inline-block;
  padding: 0.9rem 1.75rem;
  font-weight: 600;
  font-size: 1rem;
  background: transparent;
  color: #fff !important;
  border-radius: var(--se-radius);
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.7);
  transition: background 0.2s, border-color 0.2s;
}
.theme-southend .se-hero-btns .se-btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff !important; text-decoration: none; }
.theme-southend .se-hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.95;
}
.theme-southend .se-hero-venu-badge {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--se-sage);
  margin-top: 1rem;
}

/* ----- Footer ----- */
.theme-southend .se-footer {
  background: var(--se-forest);
  color: rgba(255,255,255,0.9);
  border-top: 3px solid var(--se-copper);
  padding: var(--se-section-padding) 1rem 2rem;
}
.theme-southend .se-footer-inner {
  max-width: var(--se-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .theme-southend .se-footer-inner { grid-template-columns: 1fr 1fr 1fr; text-align: left; }
}
.theme-southend .se-footer h4 {
  font-family: var(--se-font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  margin: 0 0 0.75rem;
}
.theme-southend .se-footer p { margin: 0 0 0.35rem; font-size: 0.95rem; }
.theme-southend .se-footer a { color: rgba(255,255,255,0.9); }
.theme-southend .se-footer a:hover { color: var(--se-copper); text-decoration: none; }
.theme-southend .se-footer-disclaimer {
  grid-column: 1 / -1;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  text-align: center;
}
.theme-southend .se-footer-disclaimer a { color: var(--se-sage); }

/* ----- Container utility ----- */
.theme-southend .se-container { max-width: var(--se-container); margin: 0 auto; padding: 0 1rem; }

/* ----- Section spacing ----- */
.theme-southend .se-section {
  padding: var(--se-section-padding) 0;
}
.theme-southend .se-section-alt { background: var(--se-cream-dark); }

/* ----- Section titles ----- */
.theme-southend .se-section-title {
  font-family: var(--se-font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 400;
  color: var(--se-forest);
  margin: 0 0 0.5rem;
  text-align: center;
}
.theme-southend .se-section-lead {
  max-width: 560px;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 1.05rem;
  color: var(--se-charcoal);
  opacity: 0.9;
}

/* ----- Why SouthEnd (3-column) ----- */
.theme-southend .se-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .theme-southend .se-why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.theme-southend .se-why-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: #fff;
  border-radius: var(--se-radius-lg);
  box-shadow: var(--se-shadow);
  border-top: 4px solid var(--se-copper);
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.theme-southend .se-why-card:hover { transform: translateY(-4px); box-shadow: var(--se-shadow-lg); }
.theme-southend .se-why-icon {
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  padding: 0;
  color: var(--se-forest);
  flex-shrink: 0;
}
.theme-southend .se-why-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.theme-southend .se-why-card h3 {
  font-family: var(--se-font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--se-forest);
  margin: 0 0 0.5rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.theme-southend .se-why-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--se-charcoal);
  line-height: 1.55;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.theme-southend .se-why-venu { text-align: center; font-size: 0.8rem; color: var(--se-sage); margin-top: 1rem; }

/* ----- Services preview (3 cards) ----- */
.theme-southend .se-svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .theme-southend .se-svc-grid { grid-template-columns: repeat(3, 1fr); }
}
.theme-southend .se-svc-card {
  display: block;
  background: #fff;
  border-radius: var(--se-radius-lg);
  overflow: hidden;
  box-shadow: var(--se-shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
}
.theme-southend .se-svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--se-shadow-lg);
  border-color: var(--se-copper);
  color: inherit;
  text-decoration: none;
}
.theme-southend .se-svc-card-img {
  height: 160px;
  background: var(--se-cream-dark) center/cover no-repeat;
}
.theme-southend .se-svc-card-body { padding: 1.5rem; }
.theme-southend .se-svc-card h3 {
  font-family: var(--se-font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--se-forest);
  margin: 0 0 0.5rem;
}
.theme-southend .se-svc-card p { margin: 0 0 0.75rem; font-size: 0.95rem; color: var(--se-charcoal); line-height: 1.5; }
.theme-southend .se-svc-card .se-svc-link { font-weight: 600; color: var(--se-copper); font-size: 0.95rem; }
.theme-southend .se-svc-card:hover .se-svc-link { color: var(--se-copper-dark); text-decoration: underline; }

/* ----- How online booking works (stepper) ----- */
.theme-southend .se-stepper-wrap {
  margin-top: 2.5rem;
  padding: 2rem 0;
}
.theme-southend .se-stepper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin-bottom: 2rem;
  position: relative;
}
.theme-southend .se-stepper-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: #fff;
  border-radius: var(--se-radius);
  box-shadow: var(--se-shadow);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--se-forest);
  flex: 1 1 auto;
  min-width: 120px;
  max-width: 200px;
}
.theme-southend .se-stepper-step .se-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--se-copper);
  color: #fff;
  border-radius: 50%;
  font-size: 0.85rem;
}
.theme-southend .se-stepper-arrow { color: var(--se-sage); font-size: 1rem; flex-shrink: 0; }
.theme-southend .se-stepper-desc {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--se-charcoal);
}
.theme-southend .se-stepper-desc strong { color: var(--se-forest); }
.theme-southend .se-stepper-venu { text-align: center; font-size: 0.8rem; color: var(--se-sage); }

/* ----- Testimonials ----- */
.theme-southend .se-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .theme-southend .se-testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.theme-southend .se-testimonial {
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--se-radius-lg);
  box-shadow: var(--se-shadow);
  border-left: 4px solid var(--se-copper);
}
.theme-southend .se-testimonial p { margin: 0 0 0.5rem; font-style: italic; color: var(--se-charcoal); line-height: 1.5; }
.theme-southend .se-testimonial cite { font-size: 0.9rem; color: var(--se-forest); font-style: normal; }
.theme-southend .se-testimonial-stars { color: var(--se-copper); font-size: 0.9rem; margin-bottom: 0.5rem; letter-spacing: 0.1em; }
.theme-southend .se-reviews-note { text-align: center; font-size: 0.85rem; color: var(--se-charcoal); opacity: 0.85; margin-top: 1rem; }

/* ----- Service area ----- */
.theme-southend .se-area { text-align: center; }
.theme-southend .se-area ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
}
.theme-southend .se-area li { font-size: 1rem; color: var(--se-charcoal); }
.theme-southend .se-area li::before { content: "· "; color: var(--se-copper); font-weight: 700; }
.theme-southend .se-area li:first-child::before { content: ""; }

/* ----- Final CTA ----- */
.theme-southend .se-cta-final {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--se-forest);
  color: #fff;
  border-radius: var(--se-radius-lg);
  margin-top: 2rem;
}
.theme-southend .se-cta-final h2 {
  font-family: var(--se-font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: #fff;
  margin: 0 0 0.5rem;
}
.theme-southend .se-cta-final p { margin: 0 0 1.5rem; opacity: 0.95; font-size: 1.05rem; }
.theme-southend .se-cta-final .se-btn-primary {
  display: inline-block;
  padding: 0.9rem 1.75rem;
  font-weight: 600;
  font-size: 1rem;
  background: var(--se-copper);
  color: #fff !important;
  border-radius: var(--se-radius);
  text-decoration: none;
  border: 2px solid var(--se-copper);
  transition: background 0.2s, border-color 0.2s;
}
.theme-southend .se-cta-final .se-btn-primary:hover { background: var(--se-copper-dark); border-color: var(--se-copper-dark); color: #fff !important; text-decoration: none; }

/* ----- Scroll animation utility ----- */
.theme-southend .se-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.theme-southend .se-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----- Services list page ----- */
.theme-southend .se-svc-list { display: grid; gap: 1.5rem; }
.theme-southend .se-svc-list-card {
  background: #fff;
  border-radius: var(--se-radius);
  padding: 1.75rem;
  box-shadow: var(--se-shadow);
  border: 1px solid var(--se-border);
  display: grid;
  gap: 0.75rem;
  transition: box-shadow 0.2s, opacity 0.4s ease-out, transform 0.4s ease-out;
}
.theme-southend .se-svc-list-card:hover { box-shadow: var(--se-shadow-lg); }
.theme-southend .se-svc-list-card h3 { margin: 0; font-size: 1.25rem; color: var(--se-forest); }
.theme-southend .se-svc-list-card .se-svc-meta { font-size: 0.9rem; color: var(--se-copper); font-weight: 600; }
.theme-southend .se-svc-list-card p { margin: 0; font-size: 0.95rem; color: var(--se-charcoal); line-height: 1.55; }
.theme-southend .se-svc-list-card .se-svc-list-cta { margin-top: 0.5rem; }
.theme-southend .se-svc-list-card .se-svc-list-cta a {
  font-weight: 600;
  color: var(--se-copper);
}
.theme-southend .se-svc-list-card .se-svc-list-cta a:hover { color: var(--se-copper-dark); text-decoration: underline; }
.theme-southend .se-svc-list-note {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: var(--se-cream-dark);
  border-radius: var(--se-radius);
  font-size: 0.95rem;
  color: var(--se-charcoal);
}

/* ----- About page ----- */
.theme-southend .se-page-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  text-align: center;
  background: linear-gradient(180deg, var(--se-cream-dark) 0%, var(--se-cream) 100%);
}
.theme-southend .se-page-hero + .se-section:has(.se-contact-wrap) {
  padding-top: 2rem;
}
.theme-southend .se-page-hero h1 { margin: 0 0 0.5rem; color: var(--se-forest); }
.theme-southend .se-about-story { max-width: 42rem; margin: 0 auto 3rem; text-align: center; }
.theme-southend .se-about-story p { margin: 0 0 1rem; font-size: 1.05rem; line-height: 1.65; color: var(--se-charcoal); }
.theme-southend .se-team-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); justify-content: center; }
.theme-southend .se-team-card { text-align: center; }
.theme-southend .se-team-card .se-team-photo {
  width: 140px;
  height: 140px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: var(--se-cream-dark);
  border: 3px solid var(--se-sage);
  object-fit: cover;
}
.theme-southend .se-team-card h4 { margin: 0 0 0.25rem; font-size: 1.1rem; color: var(--se-forest); }
.theme-southend .se-team-card p { margin: 0; font-size: 0.9rem; color: var(--se-charcoal); }
.theme-southend .se-cert-list {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin: 2rem 0;
  list-style: none; padding: 0; margin: 2rem 0;
}
.theme-southend .se-cert-list li {
  background: var(--se-forest);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--se-radius);
  font-size: 0.9rem;
  font-weight: 500;
}
.theme-southend .se-tech-block {
  background: var(--se-forest);
  color: #fff;
  padding: 2rem;
  border-radius: var(--se-radius);
  margin-top: 2rem;
}
.theme-southend .se-tech-block h3 { margin: 0 0 1rem; color: #fff; font-size: 1.2rem; }
.theme-southend .se-tech-block p { margin: 0; font-size: 0.95rem; opacity: 0.95; line-height: 1.6; }

/* ----- Contact page ----- */
.theme-southend .se-contact-wrap {
  display: grid;
  gap: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .theme-southend .se-contact-wrap { grid-template-columns: 1fr 1fr; align-items: start; }
}
.theme-southend .se-contact-info {
  text-align: center;
}
.theme-southend .se-contact-info h3 { margin: 0 0 1rem; color: var(--se-forest); font-size: 1.25rem; }
.theme-southend .se-contact-info p { margin: 0 0 0.5rem; font-size: 0.95rem; color: var(--se-charcoal); }
.theme-southend .se-contact-info a { color: var(--se-copper); font-weight: 500; }
.theme-southend .se-contact-info a:hover { color: var(--se-copper-dark); text-decoration: underline; }
.theme-southend .se-form .se-form-group { margin-bottom: 1.25rem; }
.theme-southend .se-form label { display: block; margin-bottom: 0.35rem; font-weight: 500; color: var(--se-charcoal); font-size: 0.95rem; }
.theme-southend .se-form input[type="text"],
.theme-southend .se-form input[type="email"],
.theme-southend .se-form input[type="tel"],
.theme-southend .se-form select,
.theme-southend .se-form textarea {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  color: var(--se-charcoal);
  font-family: inherit;
  transition: border-color 0.2s;
}
.theme-southend .se-form input:focus,
.theme-southend .se-form select:focus,
.theme-southend .se-form textarea:focus {
  border-color: #1a4d4d;
  outline: none;
  box-shadow: 0 0 0 2px rgba(26, 77, 77, 0.15);
}
.theme-southend .se-form textarea { min-height: 120px; resize: vertical; }
.theme-southend .se-form .se-btn-submit {
  width: 100%;
  display: block;
  text-align: center;
  padding: 0.75rem 1.5rem;
  background: var(--se-forest);
  color: #fff !important;
  border: none;
  border-radius: var(--se-radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.theme-southend .se-form .se-btn-submit:hover { background: var(--se-forest-dark); }
.theme-southend .se-contact-cta {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--se-cream-dark);
  border-radius: var(--se-radius);
  text-align: center;
}
.theme-southend .se-contact-cta p { margin: 0 0 1rem; font-size: 1rem; color: var(--se-charcoal); }
.theme-southend .se-contact-cta .se-btn-primary {
  display: inline-block;
  margin: 0 auto;
}

/* ----- Primary/secondary buttons (global for booking and other pages) ----- */
.theme-southend .se-btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--se-forest);
  color: #fff !important;
  border: 2px solid var(--se-forest);
  border-radius: var(--se-radius);
  font-family: var(--se-font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.theme-southend .se-btn-primary:hover { background: var(--se-forest-dark); border-color: var(--se-forest-dark); color: #fff !important; text-decoration: none; }
.theme-southend .se-btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }
.theme-southend .se-btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--se-forest) !important;
  border: 2px solid var(--se-forest);
  border-radius: var(--se-radius);
  font-family: var(--se-font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.theme-southend .se-btn-secondary:hover { background: var(--se-cream-dark); border-color: var(--se-forest-dark); color: var(--se-forest-dark) !important; text-decoration: none; }

/* ----- Booking page (Venu+) ----- */
.theme-southend .se-book-wrap { max-width: 56rem; margin: 0 auto; padding: 0 1rem 6rem; }
.theme-southend .se-book-venu-badge {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--se-forest);
  background: var(--se-copper);
  border-radius: 4px;
  margin-bottom: 1rem;
}
.theme-southend .se-book-whats-wrap { margin-bottom: 1.5rem; }
.theme-southend .se-book-whats-toggle {
  display: flex; align-items: center; justify-content: center; gap: 0.35rem;
  width: 100%; padding: 0.6rem 1rem;
  font-size: 0.875rem; font-weight: 500; color: var(--se-charcoal);
  background: transparent; border: 1px solid var(--se-sage);
  border-radius: var(--se-radius); cursor: pointer; transition: border-color 0.2s, color 0.2s;
}
.theme-southend .se-book-whats-toggle:hover { border-color: var(--se-copper); color: var(--se-forest); }
.theme-southend .se-book-whats-chevron {
  display: inline-block; width: 8px; height: 8px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); transition: transform 0.2s;
}
.theme-southend .se-book-whats-wrap.is-open .se-book-whats-chevron { transform: rotate(-135deg); }
.theme-southend .se-book-whats-content {
  margin-top: 0.75rem; padding: 1rem 1.25rem;
  background: var(--se-cream-dark); border: 1px solid var(--se-border); border-radius: var(--se-radius);
}
.theme-southend .se-book-whats-content ul { margin: 0; padding-left: 1.25rem; font-size: 0.9rem; color: var(--se-charcoal); line-height: 1.6; }

.theme-southend .se-book-headline { font-family: var(--se-font-heading); font-size: clamp(1.75rem, 4vw, 2.25rem); color: var(--se-forest); margin: 0 0 1.5rem; text-align: center; }

/* Progress */
.theme-southend .se-book-progress {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin-bottom: 1.5rem; flex-wrap: wrap;
}
.theme-southend .se-book-progress-step {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.8rem; font-weight: 500; color: var(--se-sage);
}
.theme-southend .se-book-progress-step.is-complete .se-book-progress-dot { background: var(--se-copper); border-color: var(--se-copper); }
.theme-southend .se-book-progress-step.is-complete .se-book-progress-label { color: var(--se-copper); }
.theme-southend .se-book-progress-step.is-current .se-book-progress-dot { background: var(--se-forest); border-color: var(--se-forest); }
.theme-southend .se-book-progress-step.is-current .se-book-progress-label { color: var(--se-forest); }
.theme-southend .se-book-progress-dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: 2px solid var(--se-sage); background: transparent; flex-shrink: 0;
}
.theme-southend .se-book-progress-line { width: 20px; height: 1px; background: var(--se-sage); flex-shrink: 0; }

/* Service menu */
.theme-southend .se-book-service-menu { border: 1px solid var(--se-border); border-radius: var(--se-radius); overflow: hidden; background: #fff; margin-bottom: 1.5rem; }
.theme-southend .se-book-menu-divider {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; color: var(--se-copper);
  text-align: center; padding: 0.6rem 1rem; background: var(--se-cream-dark); border-top: 1px solid var(--se-border);
}
.theme-southend .se-book-menu-divider:first-child { border-top: none; }
.theme-southend .se-book-service-row {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 0.85rem 1.25rem; min-height: 44px; text-align: left;
  background: transparent; border: none; border-left: 4px solid transparent;
  color: var(--se-charcoal); cursor: pointer; font-size: 0.95rem;
  border-bottom: 1px solid var(--se-border); transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.theme-southend .se-book-service-row:hover { border-left-color: var(--se-sage); }
.theme-southend .se-book-service-row.is-selected { border-left-color: var(--se-forest); background: var(--se-forest); color: #fff; }
.theme-southend .se-book-service-info { display: flex; flex-direction: column; gap: 0.1rem; }
.theme-southend .se-book-service-name { font-weight: 600; }
.theme-southend .se-book-service-meta { font-size: 0.8rem; opacity: 0.9; }
.theme-southend .se-book-service-row.is-selected .se-book-service-meta { opacity: 0.85; }
.theme-southend .se-book-service-price { font-weight: 600; flex-shrink: 0; margin-left: 1rem; }

/* Deposit / policy */
.theme-southend .se-book-deposit-wrap { margin-bottom: 1.5rem; }
.theme-southend .se-book-deposit-callout {
  padding: 1.25rem 1.5rem; background: var(--se-cream-dark);
  border: 1px solid var(--se-border); border-left: 4px solid var(--se-copper); border-radius: 0 var(--se-radius) var(--se-radius) 0;
}
.theme-southend .se-book-venu-feature { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; color: var(--se-copper); margin-bottom: 0.5rem; }
.theme-southend .se-book-deposit-title { font-family: var(--se-font-heading); font-size: 1.1rem; color: var(--se-forest); margin: 0 0 0.5rem; }
.theme-southend .se-book-deposit-callout p { margin: 0 0 0.4rem; font-size: 0.9rem; color: var(--se-charcoal); line-height: 1.5; }
.theme-southend .se-book-deposit-callout ul { margin: 0.5rem 0 0.75rem; padding-left: 1.25rem; }
.theme-southend .se-book-deposit-dynamic { margin-top: 1rem; padding-top: 0.75rem; border-top: 1px solid var(--se-border); font-size: 0.95rem; }
.theme-southend .se-book-deposit-dynamic strong { color: var(--se-copper); }

/* Add-ons */
.theme-southend .se-book-addons-wrap { border: 1px solid var(--se-border); border-radius: var(--se-radius); overflow: hidden; background: #fff; margin-bottom: 1.5rem; }
.theme-southend .se-book-addons-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1.25rem; font-size: 0.95rem; font-weight: 500; color: var(--se-charcoal);
  background: transparent; border: none; cursor: pointer; text-align: left;
}
.theme-southend .se-book-addons-toggle:hover { background: var(--se-cream-dark); }
.theme-southend .se-book-addons-chevron { width: 10px; height: 10px; border-right: 2px solid var(--se-copper); border-bottom: 2px solid var(--se-copper); transform: rotate(45deg); transition: transform 0.2s; }
.theme-southend .se-book-addons-wrap.is-open .se-book-addons-chevron { transform: rotate(-135deg); }
.theme-southend .se-book-addons-content { padding: 1rem 1.25rem; border-top: 1px solid var(--se-border); }
.theme-southend .se-book-addon-row { display: flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0; font-size: 0.9rem; cursor: pointer; }

/* Summary bar (step 2) */
.theme-southend .se-book-summary-bar { padding: 0.75rem 1rem; background: var(--se-forest); color: rgba(255,255,255,0.9); font-size: 0.9rem; border-radius: var(--se-radius); margin-bottom: 1rem; }

/* Calendar */
.theme-southend .se-book-calendar-wrap {
  background: #fff; border: 1px solid var(--se-border); border-radius: var(--se-radius); padding: 1rem; margin-bottom: 1rem;
}
.theme-southend .se-book-calendar-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.theme-southend .se-book-calendar-header button {
  padding: 0.5rem 0.75rem; font-size: 1.25rem; background: transparent; border: none; color: var(--se-forest); cursor: pointer;
}
.theme-southend .se-book-calendar-month { font-family: var(--se-font-heading); font-size: 1.1rem; margin: 0; color: var(--se-forest); }
.theme-southend .se-book-calendar-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; text-align: center; font-size: 0.7rem; font-weight: 600; color: var(--se-charcoal); margin-bottom: 0.5rem; }
.theme-southend .se-book-calendar-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.theme-southend .se-book-calendar-day {
  aspect-ratio: 1; min-height: 36px; display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; border: none; border-radius: 6px; cursor: pointer; background: transparent; color: var(--se-charcoal);
}
.theme-southend .se-book-calendar-day.is-empty { visibility: hidden; pointer-events: none; }
.theme-southend .se-book-calendar-day:not(.is-empty):not(.is-closed):hover { background: var(--se-cream-dark); }
.theme-southend .se-book-calendar-day.is-selected { background: var(--se-forest); color: #fff; }
.theme-southend .se-book-calendar-day.is-today { font-weight: 700; text-decoration: underline; }
.theme-southend .se-book-calendar-day.is-closed { color: var(--se-sage); cursor: not-allowed; font-size: 0.7rem; }

/* Time slots */
.theme-southend .se-book-times-wrap { margin-bottom: 1rem; }
.theme-southend .se-book-times-headline { font-size: 1rem; margin: 0 0 0.75rem; color: var(--se-forest); }
.theme-southend .se-book-time-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.theme-southend .se-book-time-row {
  display: block; width: 100%; padding: 0.7rem 1rem; text-align: left;
  background: #fff; border: 1px solid var(--se-border); border-radius: var(--se-radius);
  font-size: 0.95rem; cursor: pointer; transition: border-color 0.2s, background 0.2s;
}
.theme-southend .se-book-time-row:hover:not(:disabled) { border-color: var(--se-copper); background: var(--se-cream-dark); }
.theme-southend .se-book-time-row.is-selected { border-color: var(--se-forest); background: var(--se-forest); color: #fff; }
.theme-southend .se-book-time-row:disabled { opacity: 0.5; cursor: not-allowed; }
.theme-southend .se-book-time-status { font-size: 0.8rem; opacity: 0.85; margin-left: 0.5rem; }

/* Cancel deadline card */
.theme-southend .se-book-cancel-card { padding: 1rem; background: var(--se-cream-dark); border-radius: var(--se-radius); margin-bottom: 1rem; border-left: 4px solid var(--se-copper); }
.theme-southend .se-book-cancel-card p { margin: 0 0 0.35rem; font-size: 0.9rem; }

/* Payment section */
.theme-southend .se-book-confirm-card {
  padding: 1.5rem; background: #fff; border: 1px solid var(--se-border); border-radius: var(--se-radius); margin-bottom: 1.5rem;
}
.theme-southend .se-book-confirm-card .se-book-confirm-row { display: flex; justify-content: space-between; padding: 0.4rem 0; font-size: 0.95rem; }
.theme-southend .se-book-confirm-divider { height: 1px; background: var(--se-border); margin: 0.75rem 0; }
.theme-southend .se-book-payment-form .se-form-group { margin-bottom: 1rem; }
.theme-southend .se-book-payment-form label { display: block; margin-bottom: 0.25rem; font-size: 0.9rem; font-weight: 500; }
.theme-southend .se-book-payment-form input { padding: 0.6rem 0.85rem; width: 100%; border: 1px solid var(--se-border); border-radius: var(--se-radius); font-size: 1rem; }
.theme-southend .se-book-pay-btn {
  display: inline-block; padding: 0.85rem 1.5rem; background: var(--se-forest); color: #fff !important;
  border: none; border-radius: var(--se-radius); font-weight: 600; font-size: 1rem; cursor: pointer; margin-top: 0.5rem;
}
.theme-southend .se-book-pay-btn:hover { background: var(--se-forest-dark); }
.theme-southend .se-book-trust-row { font-size: 0.8rem; color: var(--se-charcoal); margin-top: 1rem; }
.theme-southend .se-book-what-happens-wrap { margin-top: 1.5rem; border: 1px solid var(--se-border); border-radius: var(--se-radius); overflow: hidden; }
.theme-southend .se-book-what-happens-toggle { width: 100%; padding: 0.75rem 1rem; text-align: left; font-weight: 500; background: var(--se-cream-dark); border: none; cursor: pointer; }
.theme-southend .se-book-what-happens-content { padding: 1rem; border-top: 1px solid var(--se-border); }
.theme-southend .se-book-what-happens-content ol { margin: 0; padding-left: 1.25rem; font-size: 0.9rem; line-height: 1.6; }

/* Success */
.theme-southend .se-book-success { text-align: center; padding: 2rem 0; }
.theme-southend .se-book-success-check { width: 64px; height: 64px; margin: 0 auto 1rem; color: var(--se-copper); }
.theme-southend .se-book-success h2 { font-family: var(--se-font-heading); color: var(--se-forest); margin: 0 0 0.5rem; }
.theme-southend .se-book-success-recap { margin: 1.5rem 0; text-align: left; max-width: 24rem; margin-left: auto; margin-right: auto; font-size: 0.95rem; }
.theme-southend .se-book-success-recap p { margin: 0 0 0.5rem; }
.theme-southend .se-book-success-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1.5rem; }

/* Sticky bar */
.theme-southend .se-book-sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: var(--se-forest); color: #fff; padding: 0.75rem 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.theme-southend .se-book-sticky-bar-inner { max-width: 56rem; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.theme-southend .se-book-sticky-bar-text { font-size: 0.9rem; margin: 0; }
.theme-southend .se-book-sticky-bar-btn {
  padding: 0.6rem 1.25rem; background: var(--se-copper); color: #fff !important;
  border: none; border-radius: var(--se-radius); font-weight: 600; font-size: 0.95rem; cursor: pointer;
}
.theme-southend .se-book-sticky-bar-btn:hover:not(:disabled) { background: var(--se-copper-dark); }
.theme-southend .se-book-sticky-bar-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ----- Customer Portal ----- */
.theme-southend .se-portal-wrap { max-width: 56rem; margin: 0 auto; padding: 0 1rem 4rem; }
.theme-southend .se-portal-header {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
  padding: 1.5rem 0 0.75rem;
}
.theme-southend .se-portal-title { font-family: var(--se-font-heading); font-size: clamp(1.75rem, 4vw, 2.25rem); color: var(--se-forest); margin: 0; }
.theme-southend .se-portal-user { display: flex; align-items: center; gap: 0.5rem; }
.theme-southend .se-portal-avatar {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: var(--se-copper); color: #fff;
  font-size: 0.75rem; font-weight: 700; display: inline-flex; align-items: center; justify-content: center;
}
.theme-southend .se-portal-name { font-size: 0.95rem; font-weight: 600; color: var(--se-charcoal); }
.theme-southend .se-portal-rule { height: 1px; background: var(--se-sage); opacity: 0.7; margin-bottom: 1rem; }

.theme-southend .se-portal-tabs {
  display: flex; flex-wrap: wrap; gap: 0 1.25rem; margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--se-border);
}
.theme-southend .se-portal-tab {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--se-charcoal); opacity: 0.7; background: none; border: none;
  border-bottom: 2px solid transparent; padding: 0.6rem 0; margin-bottom: -1px; cursor: pointer; transition: color 0.2s, border-color 0.2s, opacity 0.2s;
}
.theme-southend .se-portal-tab:hover { opacity: 1; color: var(--se-forest); }
.theme-southend .se-portal-tab.is-active { opacity: 1; color: var(--se-forest); border-bottom-color: var(--se-copper); }

.theme-southend .se-portal-panel { padding: 0 0 2rem; }
.theme-southend .se-portal-panel[hidden] { display: none !important; }

.theme-southend .se-portal-upcoming-card {
  background: #fff; border: 1px solid var(--se-border); border-left: 4px solid var(--se-copper);
  border-radius: 0 var(--se-radius) var(--se-radius) 0; padding: 1.5rem; box-shadow: var(--se-shadow);
}
.theme-southend .se-portal-upcoming-badge { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--se-copper); margin: 0 0 0.5rem; }
.theme-southend .se-portal-upcoming-service { font-family: var(--se-font-heading); font-size: 1.25rem; color: var(--se-forest); margin: 0 0 0.25rem; }
.theme-southend .se-portal-upcoming-datetime,
.theme-southend .se-portal-upcoming-location { font-size: 0.9rem; color: var(--se-charcoal); margin: 0 0 0.2rem; }
.theme-southend .se-portal-upcoming-divider { height: 1px; background: var(--se-border); margin: 0.75rem 0; }
.theme-southend .se-portal-upcoming-deposit,
.theme-southend .se-portal-upcoming-balance { font-size: 0.9rem; color: var(--se-charcoal); margin: 0 0 0.2rem; }
.theme-southend .se-portal-upcoming-deadline-label { font-size: 0.8rem; color: var(--se-charcoal); opacity: 0.8; margin: 0.5rem 0 0.15rem; }
.theme-southend .se-portal-upcoming-deadline { font-size: 0.9rem; font-weight: 600; color: var(--se-forest); margin: 0 0 0.15rem; }
.theme-southend .se-portal-upcoming-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.theme-southend .se-portal-upcoming-btn {
  padding: 0.6rem 1.25rem; font-size: 0.9rem; font-weight: 600; border-radius: var(--se-radius);
  cursor: pointer; transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.theme-southend .se-portal-upcoming-btn-outline { color: var(--se-forest); background: transparent; border: 1px solid var(--se-forest); text-decoration: none; }
.theme-southend .se-portal-upcoming-btn-outline:hover { background: var(--se-cream-dark); text-decoration: none; }
.theme-southend a.se-portal-upcoming-btn { text-decoration: none; }

.theme-southend .se-portal-panel-head { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--se-copper); margin: 0 0 1rem; }
.theme-southend .se-portal-history-list { list-style: none; padding: 0; margin: 0 0 1rem; border: 1px solid var(--se-border); border-radius: var(--se-radius); overflow: hidden; background: #fff; }
.theme-southend .se-portal-history-item { padding: 1rem 1.25rem; border-bottom: 1px solid var(--se-border); }
.theme-southend .se-portal-history-item:last-child { border-bottom: none; }
.theme-southend .se-portal-history-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.25rem; margin-bottom: 0.25rem; }
.theme-southend .se-portal-history-date { font-size: 0.85rem; color: var(--se-charcoal); opacity: 0.85; }
.theme-southend .se-portal-history-price { font-size: 0.85rem; font-weight: 600; color: var(--se-forest); }
.theme-southend .se-portal-history-service { font-size: 0.95rem; color: var(--se-charcoal); margin: 0 0 0.35rem; }
.theme-southend .se-portal-history-rebook { font-size: 0.85rem; color: var(--se-copper); font-weight: 600; }
.theme-southend .se-portal-history-rebook:hover { text-decoration: underline; }
.theme-southend .se-portal-history-total { font-size: 0.95rem; font-weight: 600; color: var(--se-forest); margin: 0 0 0.35rem; }
.theme-southend .se-portal-history-thanks { font-size: 0.9rem; color: var(--se-charcoal); margin: 0; font-style: italic; }

.theme-southend .se-portal-balance-card {
  background: var(--se-cream-dark); border: 1px solid var(--se-border); border-radius: var(--se-radius);
  padding: 1.5rem; margin-bottom: 1.5rem; border-left: 4px solid var(--se-copper);
}
.theme-southend .se-portal-balance-venu { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; color: var(--se-copper); margin-bottom: 0.5rem; }
.theme-southend .se-portal-balance-label { font-size: 0.9rem; color: var(--se-charcoal); margin: 0 0 0.25rem; }
.theme-southend .se-portal-balance-amount { font-size: 1.5rem; font-weight: 700; color: var(--se-forest); margin: 0 0 0.25rem; }
.theme-southend .se-portal-balance-due { font-size: 0.9rem; color: var(--se-charcoal); margin: 0 0 1rem; }
.theme-southend .se-portal-balance-pay-btn { padding: 0.65rem 1.25rem; background: var(--se-forest); color: #fff !important; border: none; border-radius: var(--se-radius); font-weight: 600; font-size: 0.95rem; cursor: pointer; }
.theme-southend .se-portal-balance-pay-btn:hover { background: var(--se-forest-dark); }
.theme-southend .se-portal-balance-note { font-size: 0.85rem; color: var(--se-charcoal); margin: 0.75rem 0 0; line-height: 1.5; }
.theme-southend .se-portal-payment-head { font-size: 0.95rem; font-weight: 600; color: var(--se-charcoal); margin: 0 0 0.75rem; }
.theme-southend .se-portal-payment-rows { list-style: none; padding: 0; margin: 0 0 0.75rem; border: 1px solid var(--se-border); border-radius: var(--se-radius); overflow: hidden; background: #fff; }
.theme-southend .se-portal-payment-row {
  display: grid; grid-template-columns: 1fr 1fr auto auto; gap: 0.5rem 1rem; align-items: center;
  padding: 0.75rem 1rem; font-size: 0.875rem; border-bottom: 1px solid var(--se-border);
}
.theme-southend .se-portal-payment-row:last-child { border-bottom: none; }
.theme-southend .se-portal-payment-date { color: var(--se-charcoal); opacity: 0.85; }
.theme-southend .se-portal-payment-desc { color: var(--se-charcoal); }
.theme-southend .se-portal-payment-amt { font-weight: 600; color: var(--se-forest); text-align: right; }
.theme-southend .se-portal-payment-status { color: var(--se-copper); font-size: 0.8rem; }
.theme-southend .se-portal-payment-total { font-size: 0.95rem; font-weight: 600; color: var(--se-forest); margin: 0 0 0.25rem; }
.theme-southend .se-portal-payment-stripe { font-size: 0.8rem; color: var(--se-charcoal); opacity: 0.8; margin: 0; }
@media (max-width: 420px) {
  .theme-southend .se-portal-payment-row { grid-template-columns: 1fr auto; font-size: 0.8rem; }
  .theme-southend .se-portal-payment-date { grid-column: 1; }
  .theme-southend .se-portal-payment-desc { grid-column: 1; }
  .theme-southend .se-portal-payment-amt { grid-column: 2; text-align: right; }
  .theme-southend .se-portal-payment-status { grid-column: 2; text-align: right; }
}

.theme-southend .se-portal-rebook-badge { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; color: var(--se-copper); margin: 0 0 0.5rem; }
.theme-southend .se-portal-panel-sub { font-size: 0.9rem; color: var(--se-charcoal); margin: -0.5rem 0 1rem; }
.theme-southend .se-portal-rebook-cards { display: flex; flex-direction: column; gap: 1rem; }
.theme-southend .se-portal-rebook-card {
  background: #fff; border: 1px solid var(--se-border); border-radius: var(--se-radius); padding: 1.25rem; box-shadow: var(--se-shadow);
}
.theme-southend .se-portal-rebook-card-featured { border-color: var(--se-copper); border-width: 2px; }
.theme-southend .se-portal-rebook-card-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--se-copper); margin: 0 0 0.35rem; }
.theme-southend .se-portal-rebook-card-service { font-family: var(--se-font-heading); font-size: 1.15rem; color: var(--se-forest); margin: 0 0 0.25rem; }
.theme-southend .se-portal-rebook-card-note { font-size: 0.875rem; color: var(--se-charcoal); margin: 0 0 0.5rem; }
.theme-southend .se-portal-rebook-card-slots { font-size: 0.85rem; color: var(--se-charcoal); margin: 0 0 0.35rem; }
.theme-southend .se-portal-rebook-slots-list { list-style: none; padding: 0; margin: 0 0 0.75rem; font-size: 0.875rem; color: var(--se-charcoal); line-height: 1.6; }
.theme-southend .se-portal-rebook-btn { padding: 0.6rem 1.25rem; background: var(--se-forest); color: #fff !important; border: none; border-radius: var(--se-radius); font-weight: 600; font-size: 0.9rem; cursor: pointer; text-decoration: none; display: inline-block; }
.theme-southend .se-portal-rebook-btn:hover { background: var(--se-forest-dark); color: #fff; text-decoration: none; }
.theme-southend .se-portal-rebook-btn-outline { background: transparent; color: var(--se-forest) !important; border: 1px solid var(--se-forest); }
.theme-southend .se-portal-rebook-btn-outline:hover { background: var(--se-cream-dark); color: var(--se-forest) !important; }

.theme-southend .se-portal-sms-wrap { border: 1px solid var(--se-border); border-radius: var(--se-radius); overflow: hidden; margin-top: 1.5rem; }
.theme-southend .se-portal-sms-toggle { width: 100%; padding: 0.85rem 1rem; text-align: left; font-weight: 600; font-size: 0.95rem; background: var(--se-cream-dark); border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; }
.theme-southend .se-portal-sms-toggle:hover { background: var(--se-cream); }
.theme-southend .se-portal-sms-chevron { width: 10px; height: 10px; border-right: 2px solid var(--se-forest); border-bottom: 2px solid var(--se-forest); transform: rotate(45deg); transition: transform 0.2s; }
.theme-southend .se-portal-sms-wrap.is-open .se-portal-sms-chevron { transform: rotate(-135deg); }
.theme-southend .se-portal-sms-content { padding: 1rem 1.25rem; border-top: 1px solid var(--se-border); }
.theme-southend .se-portal-sms-event { display: flex; gap: 0.75rem; margin-bottom: 1rem; }
.theme-southend .se-portal-sms-event:last-child { margin-bottom: 0; }
.theme-southend .se-portal-sms-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--se-sage); flex-shrink: 0; margin-top: 0.35rem; }
.theme-southend .se-portal-sms-event-sent .se-portal-sms-dot { background: var(--se-copper); }
.theme-southend .se-portal-sms-event-title { font-size: 0.85rem; font-weight: 600; color: var(--se-forest); margin: 0 0 0.35rem; }
.theme-southend .se-portal-sms-event-badge { font-size: 0.75rem; font-weight: 500; color: var(--se-copper); margin-left: 0.35rem; }
.theme-southend .se-portal-sms-bubble { padding: 0.75rem; background: var(--se-cream-dark); border-radius: var(--se-radius); font-size: 0.85rem; color: var(--se-charcoal); line-height: 1.5; }
.theme-southend .se-portal-sms-venu { margin-top: 1rem; padding: 1rem; background: var(--se-forest); color: #fff; border-radius: var(--se-radius); font-size: 0.9rem; line-height: 1.5; }
.theme-southend .se-portal-sms-venu p { margin: 0 0 0.35rem; }
.theme-southend .se-portal-sms-venu p:first-child { font-weight: 600; }

/* Cancel modal */
.theme-southend .se-portal-modal-overlay {
  position: fixed; inset: 0; z-index: 200; background: rgba(26, 26, 46, 0.5);
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
}
.theme-southend .se-portal-modal-overlay[hidden] { display: none !important; }
.theme-southend .se-portal-modal {
  background: #fff; border: 1px solid var(--se-border); border-radius: var(--se-radius);
  padding: 1.75rem 2rem; max-width: 24rem; width: 100%; box-shadow: var(--se-shadow-lg);
}
.theme-southend .se-portal-modal-title { font-family: var(--se-font-heading); font-size: 1.25rem; color: var(--se-forest); margin: 0 0 1rem; }
.theme-southend .se-portal-modal-deadline { font-size: 0.9rem; color: var(--se-charcoal); margin: 0 0 1rem; line-height: 1.5; }
.theme-southend .se-portal-modal-policy { font-size: 0.875rem; color: var(--se-charcoal); margin: 0 0 1rem; padding: 1rem; background: var(--se-cream-dark); border-radius: var(--se-radius); border-left: 3px solid var(--se-copper); }
.theme-southend .se-portal-modal-policy p { margin: 0 0 0.5rem; }
.theme-southend .se-portal-modal-question { font-size: 0.95rem; font-weight: 600; margin: 0 0 1rem; }
.theme-southend .se-portal-modal-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-southend .se-portal-modal-btn { padding: 0.6rem 1.25rem; border-radius: var(--se-radius); font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: background 0.2s, border-color 0.2s; }
.theme-southend .se-portal-modal-btn-keep { background: var(--se-forest); color: #fff !important; border: 2px solid var(--se-forest); }
.theme-southend .se-portal-modal-btn-keep:hover { background: var(--se-forest-dark); border-color: var(--se-forest-dark); }
.theme-southend .se-portal-modal-btn-cancel { background: transparent; color: var(--se-charcoal); border: 1px solid var(--se-border); }
.theme-southend .se-portal-modal-btn-cancel:hover { background: var(--se-cream-dark); }
.theme-southend .se-portal-modal-venu { font-size: 0.75rem; color: var(--se-copper); margin-bottom: 0.5rem; }
