:root {
  --deep-blue: #214a72;
  --teal: #00a8aa;
  --accent: #2ab9a5;
  --text-dark: #333333;
  --text-muted: #555555;
  --hero-panel: #c7dadd;
  --bg-light: #f5f7fa;
  --border-soft: #e1e5ec;
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
}

/* Global layout */

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-gradient-bar {
  height: 8px;
  background: linear-gradient(90deg, var(--deep-blue), var(--teal));
}

/* Header */

.site-header {
  background-color: #ffffff;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 20px 12px;
  display: flex;
  justify-content: center;
}

.header-logo img {
  max-height: 140px;
  width: auto;
}

/* Full-width banner bar (nav or page title) */

.main-nav {
  position: relative;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: linear-gradient(90deg, var(--deep-blue), var(--teal));
  color: #ffffff;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 0;
}

.main-nav-inner {
  max-width: var(--max-width);
  padding: 0 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  color: #ffffff;
  padding: 0 12px;
}

.main-nav a + a {
  border-left: 1px solid rgba(255,255,255,0.55);
}

.main-nav-title {
  color: #ffffff;
  text-align: center;
  width: 100%;
}

/* Hero */

.hero {
  border-top: 4px solid var(--teal);
  background-color: #ffffff;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.hero-text-box {
  background-color: var(--hero-panel);
  padding: 40px 46px;
  display: flex;
  align-items: center;
}

.hero-text-box p {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.3rem;
  line-height: 1.8;
  color: #253640;
}

.hero-slider-box {
  overflow: hidden;
  height: 100%;
}


.hero-slider-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 260px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

/* Content layout below hero */

.main-wrapper {
  max-width: var(--max-width);
  margin: 0 auto 16px;
  padding: 24px 20px 24px;
  display: grid;
  grid-template-columns: minmax(0, 2.5fr) minmax(240px, 0.95fr);
  gap: 44px;
}

.main-column {
  min-width: 0;
}

.right-rail {
  padding-left: 24px;
  padding-top: 40px;
}

.right-rail--services .rail-links {
  border-top: 1px solid #d1d5db;
}

.right-rail--services .rail-links a {
  border-bottom: 1px solid #d1d5db;
}

.right-rail h3 {
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--deep-blue);
  margin-top: 0;
  margin-bottom: 10px;
}

.rail-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rail-links a {
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--deep-blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 0;
}

.rail-links a + a {
  border-top: none;
}

.rail-links a:hover {
  color: var(--teal);
}

/* Top-level section headings */

.section-top-heading {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.45rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--deep-blue);
  margin: 0 0 18px;
}

/* Subsection headings */

.content-block h2 {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 24px 0 8px;
}

/* Text */

.section-lede {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.content-block {
  margin-bottom: 26px;
}

.content-block p {
  margin: 0 0 8px;
}

/* Bullets */

.bullet-list {
  margin: 6px 0 8px 0;
  padding-left: 18px;
  list-style: disc;
  color: var(--text-dark);
}

.bullet-list li {
  margin-bottom: 4px;
}

.bullet-list li::marker {
  color: var(--deep-blue);
}

/* Sections for jump links */

.section-anchor {
  scroll-margin-top: 180px;
}

/* Callouts & buttons */

.callout {
  background-color: var(--bg-light);
  border-radius: 0;
  padding: 18px 18px 16px;
  border-left: 4px solid var(--deep-blue);
  margin-top: 10px;
}

.callout-title {
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--deep-blue);
  margin: 0 0 6px;
}

.callout p {
  margin: 0 0 4px;
  font-size: 0.96rem;
}

.button-row {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  font-size: 0.85rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(90deg, var(--deep-blue), var(--teal));
  color: #ffffff;
}

.btn-outline {
  border: 1px solid var(--deep-blue);
  color: var(--deep-blue);
  background-color: #ffffff;
}

.btn-outline:hover {
  background-color: var(--deep-blue);
  color: #ffffff;
}

/* Supplements store */

.store-layout {
  display: grid;
  grid-template-columns: minmax(200px, 0.9fr) minmax(0, 2.2fr);
  gap: 32px;
}

.store-sidebar {
  padding-right: 24px;
}

.store-sidebar h2 {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--deep-blue);
  margin-top: 0;
  margin-bottom: 12px;
}

.category-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.category-list li {
  margin-bottom: 6px;
}

.category-list button {
  width: 100%;
  padding: 6px 10px;
  font-size: 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background-color: transparent;
  text-align: left;
  cursor: pointer;
  color: var(--text-dark);
}

.category-list button:hover {
  background-color: var(--bg-light);
}

.category-list button.active {
  border-color: var(--teal);
  color: var(--teal);
}

.category-select-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.category-select {
  width: 100%;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  font-size: 0.9rem;
  color: var(--text-dark);
  background-color: #ffffff;
}

.category-select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 2px rgba(0, 168, 170, 0.15);
}

.store-search {
  position: relative;
  margin-top: 10px;
}

.store-search input {
  width: 100%;
  padding: 7px 26px 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  font-size: 0.9rem;
}

.store-search-icon {
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Products */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.product-card {
  border-radius: 0;
  border: 1px solid var(--border-soft);
  padding: 16px;
  display: flex;
  gap: 16px;
  background-color: #ffffff;
}

.product-media {
  flex: 0 0 120px;
  height: 170px;
  border-radius: 4px;
  overflow: hidden;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
}

.product-info {
  flex: 1;
}

.product-name {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1rem;
  margin: 0 0 4px;
}

.product-category {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--deep-blue);
  margin-bottom: 6px;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.product-actions {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* Price-style pages */

.price-main {
  background-color: var(--bg-light);
  color: var(--text-dark);
  padding: 32px 20px 16px;
}


.price-inner {
  max-width: 880px;
  margin: 0 auto;
}

.price-card {
  text-align: center;
}

.price-heading {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 2.0rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 4px;

  color: var(--deep-blue);}

.price-subheading {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 20px;

  color: var(--deep-blue);}

.price-intro {
  margin-bottom: 18px;
}


.price-services-title {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.3rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 10px 0 18px;
}

.price-section-title {
  font-size: 1.02rem;
  text-align: left;
  margin: 16px 0 6px;
  text-decoration: underline;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  text-align: left;
}

.price-list li {
  margin-bottom: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.price-actions {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Footer */

.site-footer {
  margin-top: auto;
  border-top: 4px solid var(--teal);
  background: linear-gradient(90deg, var(--deep-blue), var(--teal));
  color: #ffffff;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 20px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 24px;
  align-items: center;
}

.footer-logo img {
  max-height: 110px;
  width: auto;
  display: block;
}

.footer-contact {
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-contact strong {
  display: block;
  font-weight: 600;
}

.footer-contact a {
  color: #ffffff;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-cta {
  font-style: italic;
  margin-top: 4px;
}

.footer-credit-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
}

.footer-credit-link {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px 20px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-credit-link:hover,
.footer-credit-link:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

.footer-credit-text {
  font-weight: 600;
}

.footer-credit-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

/* Utility */

.text-small {
  font-size: 0.9rem;
}

/* Responsive */

@media (max-width: 880px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-text-box {
    padding: 28px 22px;
  }
  .main-wrapper {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
  .right-rail {
    padding-left: 0;
    padding-top: 16px;
  }
  .footer-inner {
    grid-template-columns: minmax(0,1fr);
    text-align: left;
  }
  .footer-credit-link {
    display: flex;
    padding-top: 12px;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding-top: 20px;
  }
  .main-nav {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
  }
}

/* Booking modal */

.booking-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.booking-modal.active {
  display: flex;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.booking-modal-dialog {
  position: relative;
  z-index: 1;
  background: #ffffff;
  padding: 24px 24px 20px;
  border-radius: 10px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

.booking-modal-title {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 8px;
  color: var(--deep-blue);
}

.booking-modal-intro {
  margin: 0 0 12px;
  font-size: 0.95rem;
  text-align: center;
  color: var(--text-muted);
}

.booking-modal-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.booking-modal-label select {
  margin-top: 4px;
  width: 100%;
  padding: 8px 10px;
  border-radius: 4px;
  border: 1px solid var(--border-soft);
  font-size: 0.95rem;
}

.booking-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 14px;
}


.page-shell.tight-footer .main-wrapper {
  margin-bottom: 0;
  padding-bottom: 12px;
}


.om-brand-logo {
  margin-bottom: 16px;
}
.om-brand-logo img {
  max-width: 200px;
  height: auto;
  display: block;
}


.product-brand-inline {
  margin: 4px 0 10px;
}

.product-brand-inline img {
  max-height: 20px;
  width: auto;
  display: block;
}

booking-modal-logo {
  text-align: center;
  margin-bottom: 10px;
}


.booking-modal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.booking-modal-field {
  flex: 1 1 140px;
}

.booking-modal-label input {
  width: 100%;
  padding: 6px 8px;
  border-radius: 4px;
  border: 1px solid #c4cdd5;
  font-size: 0.95rem;
  font-family: inherit;
  box-sizing: border-box;
}

/* Supplement order modal */

.supplement-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.supplement-modal.active {
  display: flex;
}

.supplement-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 36, 52, 0.55);
}

.supplement-modal-dialog {
  position: relative;
  background: #ffffff;
  border-radius: 10px;
  max-width: 420px;
  width: 92%;
  padding: 20px 22px 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  z-index: 1;
  font-family: inherit;
}





.supplement-modal-title {
  font-size: 1.3rem;
  margin: 4px 0 6px;
  text-align: center;
  color: #065f6b;
}

.supplement-modal-intro {
  font-size: 0.95rem;
  margin: 0 0 8px;
  text-align: center;
  color: #4a4f55;
}

.supplement-modal-product {
  font-weight: 600;
  margin: 4px 0 10px;
  text-align: center;
}

.supplement-modal-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 4px;
}

.supplement-modal-label input {
  width: 100%;
  margin-top: 4px;
  padding: 6px 8px;
  border-radius: 4px;
  border: 1px solid #c4cdd5;
  font-size: 0.95rem;
  box-sizing: border-box;
}

.supplement-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}

.booking-modal-logo {
  text-align: center;
  margin-bottom: 10px;
}
.booking-modal-logo img {
  max-height: 52px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.supplement-modal-logo {
  text-align: center;
  margin-bottom: 10px;
}
.supplement-modal-logo img {
  max-height: 46px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.booking-modal-label textarea {
  width: 100%;
  padding: 6px;
  border: 1px solid #c1d4d8;
  border-radius: 3px;
  font-family: inherit;
  font-size: 0.95rem;
}


.hero-reasons {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
  font-size: 0.97rem;
}
.hero-reasons li {
  margin: 0.2rem 0;
}


.what-to-expect h2 {
  margin-top: 0.2rem;
}


.price-benefits {
  margin: 0.9rem auto 1.2rem;
  max-width: 36rem;
  padding-left: 1.25rem;
  list-style-position: outside;
  text-align: left;
}






.price-benefits li {
  margin: 0.15rem 0;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}





.product-tagline {
  margin: 0.35rem 0 0.75rem;
  font-size: 0.97rem;
  font-weight: 500;
}


.error-page .content-block h1 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}
.error-page .content-block p {
  max-width: 40rem;
}
.error-page .bullet-list {
  margin-top: 0.75rem;
}


.price-benefits-primary {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}


/* Extra spacing before booking buttons in price lists */
.price-list .list-actions {
  margin-top: 0.75rem;
}


/* Admin (all pages): thin red outlines on all field boxes */
.cor-admin input[type="text"],
.cor-admin input[type="email"],
.cor-admin input[type="password"],
.cor-admin input[type="tel"],
.cor-admin input[type="url"],
.cor-admin input[type="number"],
.cor-admin select,
.cor-admin textarea{
  border: 1px solid #b00000 !important;
  border-radius: 10px;
}


/* Admin login hint: always below password field */
.cor-admin .enter-hint{
  display:block;
  margin-top:6px;
  font-size:0.92rem;
  opacity:0.9;
}

/* ===== UNIFIED ADMIN PASSWORD EYE (LOCKED GLOBAL) ===== */
.cor-admin .pw-wrap{position:relative;display:flex;align-items:center;}
.cor-admin .pw-wrap input{
  padding-right:50px;
  box-sizing:border-box;
  font-size:16px;
}
.cor-admin .pw-eye{
  position:absolute;
  right:8px;
  width:40px;
  height:40px;
  border-radius:10px;
  border:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(180deg, #c40000 0%, #8f0000 100%);
}
.cor-admin .pw-eye svg{
  width:22px;
  height:22px;
}
.cor-admin .pw-eye svg *{
  stroke:#ffffff !important;
  fill:none !important;
}
/* ================================================ */

/* ==========================================================
   PRODUCT DETAIL PAGE (product.php)
   ----------------------------------------------------------
   GOALS
   - Fix column widths (no stacked/centered layout)
   - Match vendor-style placement (image left, info right)
   - Keep Core of Recovery typography/colors used elsewhere
   ========================================================== */

.product-wrapper {
  margin-top: 20px;
}

.product-hero {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 42px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

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

.product-hero-left {
  display: flex;
  justify-content: center;
}

.product-image {
  width: 100%;
  display: flex;
  justify-content: center;
}

.product-main-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
}

.product-hero-right {
  max-width: 640px;
}

.product-title {
  margin: 0 0 8px 0;
  font-family: "Cinzel", serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1f3557;
  font-size: 34px;
  line-height: 1.1;
}

.product-summary {
  margin: 10px 0 18px 0;
  color: #2a2a2a;
  line-height: 1.55;
}

.product-meta {
  margin-top: 14px;
}

.product-meta-label {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: #2f8f98;
  margin-bottom: 6px;
}

.product-meta-value {
  color: #2a2a2a;
  line-height: 1.5;
}

.bullet-list {
  margin: 0;
  padding-left: 18px;
}

.bullet-list li {
  margin: 6px 0;
  line-height: 1.45;
}

.product-variants {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.variant-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #cfd8e3;
  border-radius: 999px;
  background: #fff;
  color: #1f3557;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.variant-price {
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: #2a2a2a;
}

.product-body {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 52px;
  align-items: start;
  max-width: 1100px;
  margin-top: 36px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 980px) {
  .product-body {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.product-content .detail-block {
  margin-bottom: 26px;
}

.product-content .detail-block h2 {
  margin: 0 0 8px 0;
  font-family: "Cinzel", serif;
  letter-spacing: 2px;
  color: #1f3557;
  font-size: 18px;
}
/* ==========================================================
   ADMIN HEADER GAP FIX
   ----------------------------------------------------------
   PURPOSE
   Remove the white space above the red ADMIN header bar.

   CAUSE
   Browsers sometimes apply margin to the first element
   inside <body>. When that happens the header is pushed
   down creating a visible white strip above it.

   This rule forces the first page element to sit flush
   with the top of the browser window.

   SAFE
   This does NOT affect any other layout or spacing.
   ========================================================== */

body > :first-child {
  margin-top: 0 !important;
}