/*
Theme Name: Cleaning Service Theme
Theme URI: https://example.com
Author: Elite Eco Cleaning
Author URI: https://example.com
Description: Кастомная WordPress-тема для клининговой компании. Полностью управляется через Настройки (Customizer) и админку WordPress. Требует активный плагин WooCommerce для вывода услуг как товаров.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
Tested up to: 6.6
Requires Plugins: woocommerce
Text Domain: cleaning-service-theme
License: GNU General Public License v2 or later
License URI: LICENSE
*/

/* =====================================================================
   1. RESET / BASE
   ===================================================================== */
:root {
  --olive: #b3ac49;
  --olive-dark: #8f8938;
  --olive-light: #e8e4c9;
  --cream: #fcfbf8;
  --cream-2: #f3f1e4;
  --sage-light: #e6e9e1;
  --ink: #1e1e1a;
  --ink-soft: #55554a;
  --white: #ffffff;
  --star: #f5a623;
  --eyebrow: #c2be5d;
  --radius-pill: 999px;
  --radius-card: 10px;
  --max-width: 1240px;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;
  --font-display: 'Montserrat', 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 500;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 70px 0;
}

.single-post-thumbnail {text-align:center;}
.single-post-thumbnail img {margin:0 auto;}

.single-post-meta {display:none;}

.comment-respond {display:none;}

@media (max-width: 767px) {
  .section {
    padding: 48px 0;
  }
}

.section-title {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1.15;
  font-weight: 500;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}

@media (max-width: 767px) {
  .section-title {
    font-size: 28px;
  }
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* =====================================================================
   2. BUTTONS / CARDS / PILLS
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 15px;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  color: inherit;
}

.btn-primary {
  background: var(--olive);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--olive-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border-color: var(--olive);
  color: var(--olive-dark);
}

.btn-outline:hover {
  background: var(--olive-light);
  color: var(--olive-dark);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 14px;
}

.btn-block {
  width: 100%;
}

.card {
  background: var(--white);
  border-radius: var(--radius-card);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--olive-light);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--white);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill.pill-outline {
  background: transparent;
  border-color: var(--olive);
  color: var(--olive);
}

.stars {
  color: var(--star);
  font-size: 14px;
  letter-spacing: 2px;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-circle img {
  width: 60px;
  height: 60px;
}

.breadcrumbs {
font-size: 14px;
    color: #000000;
    margin-bottom: 24px;
}

.breadcrumbs span{
font-weight:500;
}
.breadcrumbs a:hover {
  color: var(--olive-dark);
}

.grid-auto {
  display: grid;
  gap: 16px;
}

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

@media (min-width: 900px) {
  .cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .cols-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (min-width: 640px) and (max-width: 899px) {
  .cols-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom:10px;
}

.field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
}

.field input,
.field textarea,
.field select {
  font-family: inherit;
  font-size: 15px;
  padding: 13px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--olive-light);
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease;
}

.field textarea {
  border-radius: 16px;
  resize: vertical;
  min-height: 90px;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--olive);
}

/* =====================================================================
   3. HEADER
   ===================================================================== */
.site-header {
  position: static;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--olive-light);
  padding-top: 15px;
  padding-bottom: 15px;
}

.header-main {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand-logo,
.brand-logo-link img,
.custom-logo-link img,
.custom-logo {
  height: auto;
  width: auto;
  max-height: 190px;
  max-width: 190px;
  object-fit: contain;
}

.header-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex: 1;
  min-width: 0;
}

.header-row-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

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

.header-minimum {
  display: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--olive-dark);
  white-space: nowrap;
}

.header-info-item {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}

.header-info-item svg {
  color: var(--olive-dark);
  flex-shrink: 0;
}

.nav-desktop {
  display: none;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
  align-items: center;
}


.nav-desktop li {
      display: inline-block;
}


.nav-desktop a:hover {
  color: var(--olive-dark);
}

.nav-desktop .current-menu-item > a,
.nav-active {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--olive);
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.header-social {
  display: none;
  align-items: center;
  gap: 10px;
}

.header-social img {
  width: 26px;
  height: 26px;
  opacity:0.7;
}

.lang-switch {
  display: flex;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  display:none;
}

.lang-switch button,
.lang-switch a {
  background: var(--white);
  border: 1.5px solid var(--olive);
  border-radius: 6px;
  padding: 6px 10px;
  color: var(--olive-dark);
  display: inline-block;
}

.lang-switch .lang-active {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--white);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

@media (min-width: 1024px) {
  .header-minimum,
  .header-info-item,
  .nav-desktop,
  .header-social {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
}

.mobile-menu {
  background: var(--cream);
  border-top: 1px solid var(--olive-light);
  display: none;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu-inner {
  padding: 20px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
}

.mobile-lang-switch {
  gap: 8px;
}

.mobile-lang-switch button,
.mobile-lang-switch a {
  flex: 1;
  text-align: center;
  padding: 10px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 20px;
  font-weight: 500;
}

.mobile-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 500;
}

.mobile-info-item img {
  width: 18px;
  height: 18px;
}

.mobile-minimum {
  display: block;
  font-size: 17px;
  font-weight: 500;
}

.mobile-menu-social {
  display: flex;
  gap: 12px;
}

.mobile-menu-social img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

/* =====================================================================
   4. FOOTER
   ===================================================================== */
.site-footer {
  background: var(--cream);
  color: var(--ink);
  margin-top: 40px;
  border-top: 1px solid var(--olive-light);
}

.site-footer .header-main {
  flex-wrap: wrap;
  row-gap: 16px;
  padding-top: 40px;
  padding-bottom: 24px;
}

.site-footer .header-row-top,
.site-footer .header-row-bottom {
  flex-wrap: wrap;
  justify-content: center;
}

.footer-info-visible,
.footer-nav-visible {
  display: none;
}

.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  font-size: 13px;
  color: var(--ink-soft);
}

.footer-policy-links a:hover {
  color: var(--olive-dark);
}

@media (min-width: 768px) {
  .footer-info-visible {
    display: flex;
  }

  .footer-nav-visible {
    display: flex;
    flex-wrap: wrap;
  }

  .site-footer .header-row-top,
  .site-footer .header-row-bottom {
    justify-content: flex-end;
  }

  .site-footer .header-row-bottom {
    justify-content: space-between;
  }
}

.footer-bottom {
  border-top: 1px solid var(--olive-light);
  padding: 16px 0 24px;
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
}

/* =====================================================================
   5. HERO (front page + hero widget)
   ===================================================================== */
.hero {
  padding: 48px 0 72px;
  background: #fcfbf8;
}

.hero-inner {
  display: grid;
  gap: 40px;
      align-items: start;
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1.1;
  margin: 8px 0 20px;
}

@media (max-width: 767px) {
  .hero-copy h1 {
    font-size: 32px;
  }
}

.hero-copy p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 0 28px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin: 0 0 30px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-value {
    font-size: 26px;
    font-weight: 500;
    color: #C2BE5D;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--ink-soft);
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.hero-rating-value {
  font-size: 32px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}

.hero-rating-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.hero-rating .stars {
  font-size: 18px;
  letter-spacing: 1px;
}

.hero-rating-count {
  font-size: 12px;
  color: var(--ink-soft);
  white-space: nowrap;
}

.hero-widget {
  padding: 32px;
}

.hero-widget h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 500;
}

.hero-widget-sub {
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--ink-soft);
}

.hero-widget-cta {
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* =====================================================================
   6. SERVICES GRID (WooCommerce products)
   ===================================================================== */
.services-grid {
  margin-top: 35px;
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.service-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(4px);
  color: var(--olive-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 9px;
  border-radius: 6px;
  line-height: 1;
}

.service-card-included {
    border: 1px solid #C2BE5D;
    border-radius: 6px;
    padding: 15px 25px;
    font-size: 14px;
    color: var(--ink-soft);
    margin-top: 15px;
    box-shadow: inset 0 0 0 8px #F9FAFA;
}

.service-card-included em {
    min-height: 60px;
    display: inline-block;
}


.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -20px rgba(30, 30, 26, 0.3);
}

.service-card-image {
aspect-ratio: 4 / 3;
    overflow: hidden;
    padding: 10px;
    border-radius: 10px;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-body {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  padding-bottom: 2px;
}

.service-card-body a {
    padding:0 25px;
}

.service-card-body p {
    padding:0 25px;
}


.service-card-body a.btn {
        padding: 15px 15px;gap: 2px;margin-bottom: 0px;
}



.service-card-category {
  font-size: 12px;
  font-weight: 500;
  color: var(--olive-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-card-body h3 {
  margin: 0;
  font-size: 18px;
}

.service-card-body p {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
  flex: 1;
  line-height: 1.2;
}

.service-card-price {
    font-weight: 600;
    display: block;
    font-size: 22px;
    color: #000;
    margin: 15px 0;
}

.service-card-price-note {
  font-weight: 400;
  font-size: 13px;
  color: var(--ink);
}

.service-card-btn {
  margin-top: 2px;
}

.services-more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.services-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
}

.services-heading {
  margin: 0;
}

.category-select {
  min-width: 200px;
}

.category-select select {
  width: 100%;
}

/* =====================================================================
   7. WHY CHOOSE US
   ===================================================================== */
.why-choose-us-section .section-title {
  text-align: left;
}

.why-item {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
  border: none;
  border-radius: 4px;
}

.why-item .icon-circle {
  width: 100px;
  height: 100px;
}

.why-item .icon-circle img {
  width: 100px;
  height: 100px;
}

.why-item h3 {
  margin: 0;
  font-size: 19px;
}

.why-item p {
  margin: 0;
  font-size: 14px;
  color: #000;
  line-height: 1.3;
  font-weight:400;
}

/* =====================================================================
   8. REVIEWS
   ===================================================================== */
.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

@media (min-width: 900px) {
  .reviews-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  }
}

.reviews-carousel {
  min-width: 0;
  overflow: hidden;
}

.review-video-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-video-label {
  color: var(--olive-dark);
  font-size: 13px;
  font-weight: 500;
}

.review-video-placeholder {
  background: var(--cream-2);
  border-radius: 14px;
  aspect-ratio: 16/10;
}

.review-video-name {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 500;
}

.review-video-desc {
  margin: 0;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.reviews-carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews-carousel-track::-webkit-scrollbar {
  display: none;
}

.reviews-carousel-item {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.reviews-carousel-item > .review-card {
  height: 100%;
}

@media (min-width: 640px) {
  .reviews-carousel-item {
    flex: 0 0 calc(50% - 10px);
  }
}

.review-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #8e4ec6;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.review-card-name {
  font-weight: 500;
  font-size: 14px;
}
.review-avatar img {
  border-radius: 50%;
  object-fit: cover;
  width:40px;
}
.review-card-date {
  font-size: 12px;
  color: var(--ink-soft);
}

.review-card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.review-verified {
  color: #3897f0;
}

.review-card-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  flex: 1;
}

.review-card-text.is-collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-read-more {
  font-size: 13px;
  color: var(--ink-soft);
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  text-decoration: underline;
}

.review-source {
  font-size: 13px;
  font-weight: 500;
  color: var(--olive-dark);
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--olive-light);
  border: none;
  padding: 0;
}

.reviews-dot-active {
  background: var(--olive);
}

/* =====================================================================
   9. PLATFORMS
   ===================================================================== */
.platforms-section .section-title {
  text-align: left;
}

.platforms-grid {
  margin-top: 8px;
}

.platform-card {
  padding: 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  background: var(--white);
}

.platform-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.platform-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.platform-rating {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.platform-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

/* =====================================================================
   10. BEFORE / AFTER
   ===================================================================== */
.before-after-carousel {
  padding: 0 8px;
  position: relative;
}

.before-after-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.before-after-track::-webkit-scrollbar {
  display: none;
}

.before-after-item {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

@media (min-width: 640px) {
  .before-after-item {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (min-width: 1024px) {
  .before-after-item {
    flex: 0 0 calc(33.333% - 14px);
  }
}

.before-after-card {
  overflow: hidden;
  position: relative;
}

.before-after-card .ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  user-select: none;
}

.before-after-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.ba-slider .ba-after {
  clip-path: inset(0 0 0 50%);
}

.ba-slider .ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--white);
  cursor: ew-resize;
  transform: translateX(-50%);
}

.ba-slider .ba-handle::after {
  content: '\21c6';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--ink);
}

.before-after-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  z-index: 2;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.carousel-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--olive-light);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-nav button:hover {
  background: var(--olive-light);
}

/* =====================================================================
   11. GEOGRAPHY
   ===================================================================== */
.geography-inner {
  display: grid;
  gap: 32px;
}

@media (min-width: 900px) {
  .geography-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.office-card {
  padding: 0;
  overflow: hidden;
  display: flex;
}

.map-embed,
.map-placeholder {
  background: var(--cream-2);
  width: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 14px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.office-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  margin-top: 24px;
}

.office-info li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.office-info img {
  width: 18px;
  height: 18px;
}

.geography-strip {
  background: var(--cream);
}

/* =====================================================================
   12. BOOKING FORM
   ===================================================================== */
.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

@media (min-width: 900px) {
  .booking-layout {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  }
}

.booking-form-col {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.booking-form-col form {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.booking-grid {
  margin-bottom: 20px;
}

.booking-submit {
  margin-top: auto;
}

.booking-grid .field input,
.booking-grid .field select {
  height: 90px;
  border-radius: 4px;
  padding: 0 18px;
}

.booking-success {
  text-align: center;
  padding: 32px;
  display: none;
}

.booking-success.is-visible {
  display: block;
}

.booking-form-col form.is-hidden {
  display: none;
}

.booking-error {
  color: #b3261e;
  font-size: 13px;
  margin: 0 0 12px;
  display: none;
}

.booking-error.is-visible {
  display: block;
}

/* =====================================================================
   13. DATE & TIME PICKER
   ===================================================================== */
.date-time-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.date-time-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.date-time-month-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.date-time-month-nav button {
  background: none;
  border: 1.5px solid var(--olive-light);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.date-time-month-label {
  font-size: 14px;
  font-weight: 500;
}

.date-time-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.date-time-head {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  padding-bottom: 6px;
}

.date-time-cell {
  aspect-ratio: 1;
  display: flex;
      height: 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--olive-light);
  border-radius: 6px;
  font-size: 14px;
  color: var(--ink);
  background: none;
}

.date-time-cell:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.date-time-cell-active {
  background: var(--olive);
  color: var(--white);
  border-color: var(--olive);
  font-weight: 500;
}

.date-time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-height: 220px;
  overflow-y: auto;
}

.date-time-slot {
  padding: 4px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--olive-light);
  border-radius: 6px;
  font-size: 13px;
  color: var(--ink);
  background: none;
}

.date-time-slot-active {
  background: var(--olive);
  color: var(--white);
  border-color: var(--olive);
  font-weight: 500;
}

/* =====================================================================
   14. FAQ
   ===================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--olive-light);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}

.faq-icon {
  color: var(--olive-dark);
  font-size: 20px;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-answer {
  padding: 0 22px 20px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* =====================================================================
   15. BLOG SLIDER + ARCHIVE/SINGLE
   ===================================================================== */
.blog-slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.blog-slider-track::-webkit-scrollbar {
  display: none;
}

.blog-slider-item {
  flex: 0 0 260px;
  scroll-snap-align: start;
}

.blog-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

.blog-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-2);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-card-date {
  font-size: 12px;
  color: var(--ink-soft);
}

.blog-card h3 {
  margin: 0;
  font-size: 17px;
}

.blog-card p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
  flex: 1;
}

.blog-read-more {
  font-size: 13px;
  font-weight: 500;
  color: var(--olive-dark);
}

.blog-archive-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr);
  margin-bottom: 40px;
}

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

@media (min-width: 960px) {
  .blog-archive-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pagination-row {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pagination-row .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--olive-light);
  font-size: 14px;
  padding: 0 8px;
}

.pagination-row .page-numbers.current {
  background: var(--olive);
  color: var(--white);
  border-color: var(--olive);
}

.single-post-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
}

.single-post-meta {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 12px;
}

.single-post-title {
  font-family: var(--font-display);
  font-size: 36px;
  margin: 0 0 16px;
}

.single-post-thumbnail {
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 40px;
}

.single-post-content {
  max-width: 100%;
  margin: 0 auto 48px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.single-post-content h2,
.single-post-content h3 {
  color: var(--ink);
  font-family: var(--font-display);
}

.single-post-content img {
  border-radius: var(--radius-card);
}

/* =====================================================================
   16. SERVICE DETAIL (single-product)
   ===================================================================== */
.page-hero {
  padding: 40px 0 20px;
  background: #fcfbf8;
}

.page-title {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1.15;
  margin: 8px 0 16px;
}

@media (max-width: 767px) {
  .page-title {
    font-size: 28px;
  }
}

.page-hero-badges {
  margin-bottom: 24px;
}

.page-hero-centered {
  text-align: center;
}

.page-hero-centered .breadcrumbs {
  text-align: left;
}

.page-hero-centered .page-title {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero-subtitle {
  max-width: 620px;
  margin: 0 auto 28px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
}

.page-hero-centered .hero-stats {
  justify-content: center;
}

.page-hero-centered .hero-stat {
  align-items: center;
}

.page-hero-centered .hero-actions {
  justify-content: center;
  margin-bottom: 20px;
}

.service-hero-actions {
  margin-bottom: 0;
}

.service-info-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 0;
  font-size: 14px;
  color: var(--ink);
  margin-top: 20px;
      font-weight: 500;
}

.service-info-strip span {
  display: inline-flex;
  align-items: center;
}

.service-info-strip span::before {
  content: '\00b7';
  margin: 0 10px;
  color: var(--olive);
}

.service-info-strip span:first-child::before {
  display: none;
}

.page-hero-footnote {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
}

.page-hero-footnote span:not(:last-child)::after {
  content: '\00b7';
  margin-left: 10px;
  color: var(--olive);
}

.page-hero-eyebrow {
  display: block;
  text-align: center;
  color: var(--eyebrow);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.section-eyebrow {
  display: block;
  color: var(--eyebrow);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.pill-muted {
  color: var(--ink-soft);
  background: var(--cream-2);
}

.included-section .section-title,
.addons-section .section-title {
  margin-bottom: 32px;
}

.included-grid {
  align-items: start;
  row-gap: 0;
}

.included-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--eyebrow);
}

.included-item h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 6px;
}

.included-item p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
}

.not-included-row {
  margin-top: 32px;
}

.not-included-label {
  display: block;
  font-weight: 500;
  margin-bottom: 12px;
}

.addons-grid {
  margin-top: 8px;
}

.addon-card-v2 {
  padding: 24px 22px;
}

.addon-icon {
  width: 80px;
  height: 80px;
  background: none;
  color: var(--eyebrow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.addon-icon img,
.addon-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.addon-card-v2 h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 6px;
}

.addon-card-v2 p {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
}

.related-grid,
.related-carousel {
  margin-top: 8px;
}

.related-carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.related-carousel-track::-webkit-scrollbar {
  display: none;
}

.related-carousel-item {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

@media (min-width: 640px) {
  .related-carousel-item {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (min-width: 960px) {
  .related-carousel-item {
    flex: 0 0 calc(33.3333% - 14px);
  }
}

/* =====================================================================
   17. CTA SECTION
   ===================================================================== */
.cta-section {
  background: var(--ink);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: 32px;
  margin: 0 0 12px;
}

.cta-inner p {
  color: #cfceb9;
  margin: 0 0 28px;
}

.cta-inner .hero-actions {
  justify-content: center;
}

.cta-section-light {
  background: transparent;
  color: var(--ink);
  padding: 0 0 64px;
}

.cta-section-light .cta-inner {
  background: var(--sage-light);
  border-radius: var(--radius-card);
  padding: 48px 24px;
}

.cta-section-light .cta-inner h2 {
  color: var(--ink);
}

.cta-section-light .cta-inner p {
  color: var(--ink-soft);
}

/* =====================================================================
   18. 404 / MISC
   ===================================================================== */
.not-found {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.not-found-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
}

.not-found-inner .btn {
  margin-top: 16px;
}

/* =====================================================================
   19. ADMIN META BOX REPEATERS (Included Items / Add-Ons on product edit)
   ===================================================================== */
.cst-repeater-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dcdcde;
}

.cst-repeater-row input,
.cst-repeater-row textarea {
  flex: 1;
}

.cst-repeater-remove {
  flex-shrink: 0;
}

/* =====================================================================
   20. WOOCOMMERCE OVERRIDES (hide default shop chrome we replace)
   ===================================================================== */
.woocommerce-breadcrumb,
.woocommerce-products-header__title,
.woocommerce-notices-wrapper {
  display: none;
}




/* =====================================================================
   GALLERY SLIDER
   ===================================================================== */
.gallery-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-slider-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.gallery-slider-track {
  display: flex;
  gap: 12px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.gallery-slide {
  flex-shrink: 0;
}

.gallery-slide-inner {
  display: block;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--cream-2);
}

.gallery-slide-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-slide-inner:hover img {
  transform: scale(1.04);
}

.gallery-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--cream-3, #d8d5c5);
  background: var(--white);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  padding: 0;
  position:absolute;
}
.gallery-arrow-prev {
left: 5px;
    z-index: 99;
}
.gallery-arrow-next {
right: 5px;
    z-index: 99;
}

.gallery-arrow:hover {
  background: var(--ink);
  color: var(--white);
}

.gallery-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}


.footer-bottom {display:none;}



@media (max-width: 640px) {
  .gallery-slider-track {
    gap: 8px;
  }
  .gallery-arrow {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
  
.booking-grid .field input, .booking-grid .field select {
    height: 40px;
    border-radius: 4px;
    padding: 0 18px;
}

.grid-auto {
    display: flex;
    gap: 16px;
    grid-auto-flow: row;
    flex-direction: row;
    flex-wrap: wrap;
}
.platform-card {
    padding: 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    background: var(--white);
    width: 30%;
}

.brand-logo, .brand-logo-link img, .custom-logo-link img, .custom-logo {
    height: auto;
    width: auto;
    max-height: 124px;
    max-width: 110px;
    object-fit: contain;
}

.header-right {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    min-width: 0;
    align-content: center;
    align-items: flex-end;
    justify-content: center;
}


.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}
.mobile-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 20px;
    font-weight: 500;
}
.mobile-nav li {
    background: #f8f8f8;
    padding: 10px;

}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 30px;
    line-height: 1;
    color: var(--ink);
}


.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.mobile-menu {
    background: var(--cream);
    border-top: 1px solid var(--olive-light);
    display: none;
    position: absolute;
    width: 100%;
    top: 150px;
}





  
}
