:root {
      /* Always Braided brand kit */
      --color-primary: #5C2A3A;
      --color-secondary: #8C5A6B;
      --color-neutral: #9B938E;
      --color-bg: #F5EFE9;
      --color-bg-alt: #E8D5C4;
      --color-highlight: #EBC7CB;
      --color-text: #2E2A28;
      /* Map legacy leaf/cream tokens used across the static port */
      --leaf-1: var(--color-secondary);
      --leaf-2: var(--color-primary);
      --leaf-3: var(--color-highlight);
      --cream-1: var(--color-bg);
      --cream-2: var(--color-bg-alt);
      --ink: var(--color-text);
      --muted: var(--color-neutral);
      --section-pad: 3rem;
      --side-pad: 1.25rem;
      --cream: var(--cream-1);
      --text: var(--ink);
      --primary-light: var(--color-highlight);
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: "DM Sans", system-ui, sans-serif;
      color: var(--ink);
      background: var(--cream-1);
      line-height: 1.6;
    }
    h1, h2, h3, .logo-text { font-family: "Cormorant Garamond", Georgia, serif; }
    a { color: var(--leaf-2); text-decoration: none; }
    a:hover { text-decoration: underline; }

    .nav-wrap {
      position: sticky;
      top: 0; left: 0; right: 0;
      z-index: 101;
      background: rgba(245, 240, 232, 0.92);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--cream-2);
    }
    .broadcast-bar {
      width: 100%;
      background: #1a1a1a;
      color: #fff;
      text-align: center;
      padding: 9px 16px;
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 500;
      min-height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    #broadcastText {
      transition: opacity 0.5s ease;
      display: inline-block;
      max-width: 100%;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
    }
    nav {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0.85rem 1.25rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 0.65rem;
    }
    .logo-text {
      font-size: 1.35rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: var(--leaf-2);
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      list-style: none;
      margin-left: auto;
    }
    .nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--ink); }
    .nav-links a:hover { color: var(--leaf-1); text-decoration: none; }
    .nav-book-now {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-left: 1rem;
      background: var(--color-primary, #2d5a27);
      color: #fff !important;
      padding: 10px 20px;
      border-radius: 4px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-decoration: none !important;
      font-size: 0.85rem;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .nav-book-now:hover {
      background: #244a20;
      text-decoration: none !important;
    }
    .nav-cta {
      background: var(--leaf-2);
      color: var(--cream-1) !important;
      padding: 0.5rem 1rem;
      border-radius: 999px;
      font-weight: 600;
      text-decoration: none !important;
    }
    .nav-cta:hover { background: var(--leaf-1); }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
    }
    .hamburger span {
      width: 24px;
      height: 2px;
      background: var(--leaf-2);
    }
    @media (max-width: 900px) {
      .hamburger { display: flex; order: 3; }
      .nav-book-now {
        order: 2;
        margin-left: auto;
        margin-right: 0.5rem;
        padding: 8px 14px;
        font-size: 0.78rem;
      }
      .nav-links {
        order: 4;
        margin-left: 0;
        position: fixed;
        top: 96px;
        right: 1rem;
        left: 1rem;
        background: var(--cream-1);
        border: 1px solid var(--cream-2);
        border-radius: 12px;
        padding: 1rem;
        flex-direction: column;
        align-items: stretch;
        display: none;
        box-shadow: 0 12px 40px rgba(0,0,0,0.12);
      }
      .nav-links.open { display: flex; }
    }

    .hero-carousel {
      position: relative;
      width: 100%;
      height: calc(100svh - 96px);
      max-height: 620px;
      overflow: hidden;
      margin-top: 0;
      z-index: 0;
    }
    .hero-slides,
    .hero-slide {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }
    .hero-slide {
      background-size: cover;
      background-position: top center;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }
    .hero-slide.active { opacity: 1; }
    @media (min-width: 768px) {
      .hero-carousel.hero-grid-mode {
        height: 100vh;
        max-height: none;
      }
      .hero-carousel.hero-grid-mode .hero-content {
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
      }
      .hero-carousel.hero-grid-mode .hero-slides {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        position: absolute;
        inset: 0;
      }
      .hero-carousel.hero-grid-mode .hero-slide {
        position: relative;
        inset: auto;
        width: 100%;
        height: 100%;
        min-height: 0;
        opacity: 0.45;
        background-size: cover;
        background-position: center 20%;
        background-repeat: no-repeat;
        transition: opacity 0.8s ease;
      }
      .hero-carousel.hero-grid-mode .hero-slide::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.22);
        transition: opacity 0.8s ease;
        pointer-events: none;
      }
      .hero-carousel.hero-grid-mode .hero-slide.active {
        opacity: 1;
      }
      .hero-carousel.hero-grid-mode .hero-slide.active::after {
        opacity: 0;
      }
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
      z-index: 1;
    }
    .hero-content {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      text-align: center;
      z-index: 2;
      color: #fff;
      padding: 0 24px 80px;
      box-sizing: border-box;
    }
    .hero-brand {
      margin: 0 0 0.35rem;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(1.65rem, 4.2vw, 2.75rem);
      font-weight: 700;
      letter-spacing: 0.06em;
      line-height: 1.1;
      text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
    }
    .hero-headline {
      margin: 0 0 0.65rem;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(1.15rem, 2.6vw, 1.65rem);
      font-weight: 500;
      letter-spacing: 0.01em;
      line-height: 1.25;
      text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
    }
    .hero-tagline {
      margin: 0 auto 1.25rem;
      max-width: 34rem;
      font-size: clamp(0.95rem, 1.6vw, 1.1rem);
      line-height: 1.45;
      color: rgba(255, 255, 255, 0.92);
      text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
    }
    .hero-cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      justify-content: center;
      margin-bottom: 1.25rem;
    }
    .hero-cta {
      min-width: 10.5rem;
      text-decoration: none;
    }
    .hero-cta--ghost {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.55);
      color: #fff;
    }
    .hero-cta--ghost:hover {
      background: rgba(255, 255, 255, 0.22);
      color: #fff;
    }
    .hero-bottom-row {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      min-height: 56px;
    }
    .hero-bottom-row .hero-location-pill {
      grid-column: 2;
      justify-self: center;
      margin: 0;
    }
    .hero-chat-mount {
      grid-column: 3;
      justify-self: end;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      width: 56px;
      height: 56px;
    }
    .hero-chat-mount .bai-launcher {
      position: static !important;
      bottom: auto !important;
      right: auto !important;
      left: auto !important;
      width: 56px !important;
      height: 56px !important;
      min-width: 56px !important;
      min-height: 56px !important;
      margin: 0 !important;
      padding: 0 !important;
      border: none !important;
      border-radius: 50% !important;
      background: var(--leaf-2, #2d5a3d) !important;
      color: #fff !important;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      cursor: pointer;
      font-size: 24px;
    }
    .hero-chat-mount .bai-launcher svg {
      width: 28px;
      height: 28px;
      fill: currentColor;
    }
    .hero-location-pill {
      display: flex;
      align-items: center;
      gap: 6px;
      width: fit-content;
      margin: 12px auto 0;
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.3);
      color: #fff;
      padding: 7px 18px;
      border-radius: 999px;
      font-size: 0.8rem;
      font-weight: 500;
      text-decoration: none;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }
    .hero-location-pill:hover {
      text-decoration: none;
      background: rgba(255,255,255,0.22);
    }
    .hero-location-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #fff;
    }

    @media (max-width: 480px) {
      .hero-content { padding-bottom: 56px; }
      .hero-brand { letter-spacing: 0.04em; }
      .hero-cta-row { gap: 0.5rem; }
      .hero-cta { min-width: 0; flex: 1 1 auto; }
      .hero-bottom-row .hero-location-pill {
        font-size: 0.72rem;
        padding: 6px 12px;
      }
      .hero-chat-mount {
        width: 52px;
        height: 52px;
      }
      .hero-chat-mount .bai-launcher {
        width: 52px !important;
        height: 52px !important;
        min-width: 52px !important;
        min-height: 52px !important;
      }
      .hero-chat-mount .bai-launcher svg {
        width: 26px;
        height: 26px;
      }
    }
    .services-marquee-wrap {
      overflow: hidden;
      background: var(--color-primary, #2d5a27);
      padding: 10px 0;
      white-space: nowrap;
    }
    .services-marquee {
      display: inline-flex;
      gap: 20px;
      animation: marqueeScroll 22s linear infinite;
    }
    .services-marquee span {
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #fff;
      font-weight: 600;
    }
    .services-marquee .dot {
      opacity: 0.5;
    }
    @keyframes marqueeScroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .btn {
      display: inline-block;
      padding: 0.75rem 1.35rem;
      border-radius: 999px;
      font-weight: 600;
      cursor: pointer;
      border: none;
      font-family: inherit;
      font-size: 0.95rem;
    }
    .btn-primary { background: var(--leaf-2); color: var(--cream-1); }
    .btn-primary:hover { background: var(--leaf-1); }
    .btn-primary:disabled {
      opacity: 0.45;
      cursor: not-allowed;
      pointer-events: none;
    }
    .inline-success {
      background: rgba(74, 124, 89, 0.12);
      border: 1px solid rgba(74, 124, 89, 0.35);
      border-radius: 8px;
      padding: 0.65rem 0.85rem;
      font-size: 0.9rem;
      color: var(--leaf-1);
      line-height: 1.45;
    }
    .inline-error {
      background: rgba(180, 60, 60, 0.08);
      border: 1px solid rgba(180, 60, 60, 0.25);
      border-radius: 8px;
      padding: 0.75rem 1rem;
      color: #8a2a2a;
      font-size: 0.88rem;
      margin-top: 0.75rem;
    }
    .slots-loading {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--muted);
      font-size: 0.88rem;
      padding: 0.5rem 0;
    }
    .loading-spinner {
      width: 14px;
      height: 14px;
      border: 2px solid var(--cream-2);
      border-top-color: var(--leaf-2);
      border-radius: 50%;
      animation: spin 0.7s linear infinite;
      display: inline-block;
      flex-shrink: 0;
    }
    @keyframes spin {
      to { transform: rotate(360deg); }
    }
    .btn-outline {
      background: transparent;
      color: var(--leaf-2);
      border: 2px solid var(--leaf-2);
    }
    .about-studio-photos {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.85rem;
      margin-top: 2rem;
      margin-bottom: 0;
    }
    @media (min-width: 720px) {
      .about-studio-photos {
        grid-template-columns: 1fr 1fr;
      }
    }
    .about-studio-photo {
      width: 100%;
      max-height: 320px;
      object-fit: cover;
      object-position: center;
      border-radius: 12px;
      margin-bottom: 0;
      display: block;
    }

    section { padding: 4rem 1.25rem; }
    .section-inner { max-width: 1100px; margin: 0 auto; }
    .section-title {
      font-size: clamp(2rem, 4vw, 2.75rem);
      color: var(--leaf-2);
      margin-bottom: 1.5rem;
      text-align: center;
    }
    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    #about {
      background: var(--cream-1);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      text-align: center;
      max-width: 720px;
      margin: 0 auto;
    }
    .about-style-tags-line {
      margin: 0;
      font-size: 0.95rem;
      color: var(--leaf-2);
      font-weight: 500;
      letter-spacing: 0.02em;
    }
    .style-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      justify-content: center;
      margin-top: 1rem;
    }
    .style-tags span {
      background: var(--cream-2);
      padding: 0.35rem 0.85rem;
      border-radius: 999px;
      font-size: 0.85rem;
      color: var(--leaf-2);
    }

    #services { background: var(--cream-2); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      align-items: start;
    }
    @media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }
    @media (min-width: 901px) and (max-width: 1100px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
    .service-card {
      background: var(--cream-1);
      border-radius: 16px;
      padding: 1.5rem;
      border: 1px solid transparent;
      transition: border-color 0.25s, transform 0.25s;
      cursor: pointer;
      height: auto;
    }
    .service-card--featured {
      grid-column: 1 / -1;
    }
    @media (min-width: 901px) {
      .service-card--featured {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-rows: auto auto auto auto;
        column-gap: 2rem;
        align-items: start;
      }
      .service-card--featured .num,
      .service-card--featured h3,
      .service-card--featured .service-card-desc,
      .service-card--featured .service-card-from-price {
        grid-column: 1;
      }
      .service-card--featured .service-book-btn {
        grid-column: 2;
        grid-row: 1 / -1;
        align-self: center;
        width: auto;
        min-width: 9.5rem;
        margin-top: 0;
      }
    }
    @media (max-width: 900px) {
      .service-card--featured {
        grid-column: auto;
      }
    }
    .service-card:hover {
      border-top: 4px solid var(--leaf-1);
      transform: translateY(-4px);
    }
    .service-card .num { font-size: 0.75rem; letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase; }
    .service-card h3 { margin: 0.35rem 0; font-size: 1.35rem; color: var(--leaf-2); }
    .service-card-desc {
      margin: 0.25rem 0 0;
      font-size: 0.82rem;
      line-height: 1.45;
      color: var(--muted);
      white-space: pre-line;
    }
    .service-card-from-price {
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--leaf-2);
      margin: 0.5rem 0 0.25rem;
    }
    .service-card-price-varies {
      color: var(--muted);
      font-weight: 500;
    }
    .service-book-btn { margin-top: 0.85rem; width: 100%; cursor: pointer; }

    .consultation-section {
      padding: var(--section-pad) var(--side-pad);
      background-color: #fff;
      background-image:
        linear-gradient(180deg, rgba(245, 240, 232, 0.92) 0%, rgba(255, 255, 255, 1) 42%),
        radial-gradient(ellipse 80% 50% at 15% 10%, rgba(74, 124, 89, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 70% 45% at 90% 85%, rgba(45, 90, 61, 0.06) 0%, transparent 50%);
    }

    .consultation-card {
      display: flex;
      gap: 1.5rem;
      align-items: flex-start;
      background: var(--cream);
      border-radius: 16px;
      padding: 2rem;
      margin-bottom: 2rem;
      border: 1px solid var(--cream-2);
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .consultation-icon {
      font-size: 2.5rem;
      flex-shrink: 0;
    }

    .consultation-info h3 {
      font-family: Georgia, serif;
      color: var(--leaf-1);
      font-size: 1.1rem;
      font-weight: normal;
      margin: 0 0 0.5rem;
    }

    .consultation-info p {
      font-size: 0.875rem;
      color: var(--muted);
      margin: 0 0 1rem;
      line-height: 1.6;
    }

    .consultation-includes {
      list-style: none;
      padding: 0;
      margin: 0 0 1rem;
    }

    .consultation-includes li {
      font-size: 0.85rem;
      color: var(--leaf-2);
      margin-bottom: 0.3rem;
    }

    .consultation-price {
      font-family: Georgia, serif;
      font-size: 1.75rem;
      color: var(--leaf-1);
    }

    .consultation-form-wrap {
      max-width: 500px;
      margin: 0 auto;
      background: var(--cream);
      border-radius: 16px;
      padding: 2rem;
      border: 1px solid var(--cream-2);
    }

    .consultation-form-wrap h3 {
      font-family: Georgia, serif;
      color: var(--leaf-1);
      font-weight: normal;
      font-size: 1.1rem;
      margin: 0 0 1.25rem;
    }

    .consultation-form-wrap input,
    .consultation-form-wrap textarea {
      width: 100%;
      padding: 0.75rem 1rem;
      border: 1px solid var(--cream-2);
      border-radius: 8px;
      font-size: 0.9rem;
      font-family: inherit;
      margin-bottom: 0.75rem;
      box-sizing: border-box;
      background: white;
    }

    .consultation-schedule-field {
      margin-bottom: 0.75rem;
    }
    .consultation-field-label {
      display: block;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 0.35rem;
    }
    .consultation-slots-wrap {
      margin-top: 0.65rem;
    }
    .consultation-slots-label {
      font-size: 0.85rem;
      color: var(--muted);
      margin: 0 0 0.5rem;
    }
    .consultation-slots-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
    }
    @media (min-width: 520px) {
      .consultation-slots-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    }
    .cons-slot-btn {
      padding: 0.55rem 0.35rem;
      border: 2px solid #15803d;
      border-radius: 8px;
      background: #fff;
      color: #14532d;
      font-size: 0.78rem;
      font-weight: 600;
      cursor: pointer;
      font-family: inherit;
    }
    .cons-slot-btn:disabled {
      border-color: #d1d5db;
      background: #e5e7eb;
      color: #9ca3af;
      cursor: not-allowed;
    }
    .cons-slot-btn.cons-slot-selected {
      background: #15803d;
      color: #fff;
      border-color: #15803d;
    }
    .consultation-form-wrap input:focus,
    .consultation-form-wrap textarea:focus {
      outline: none;
      border-color: var(--leaf-2);
    }

    #gallery {
      background: var(--leaf-2);
      color: var(--cream-1);
    }
    #gallery .section-title { color: var(--cream-1); }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.75rem;
      margin-bottom: 2.5rem;
    }
    .gallery-item {
      aspect-ratio: 3 / 4;
      overflow: hidden;
      border-radius: 10px;
      position: relative;
      background: rgba(255,255,255,0.08);
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
      border-radius: 10px;
      transition: transform 0.4s ease;
    }
    .gallery-item:hover img {
      transform: scale(1.04);
    }
    .booking-rewards-skeleton {
      border-radius: 16px;
      min-height: 200px;
      background: linear-gradient(90deg, rgba(74,124,89,0.15) 25%, rgba(74,124,89,0.28) 50%, rgba(74,124,89,0.15) 75%);
      background-size: 200% 100%;
      animation: booking-rewards-shimmer 1.2s ease-in-out infinite;
      margin: 1.25rem 0;
      display: none;
    }
    @keyframes booking-rewards-shimmer {
      0% { background-position: 100% 0; }
      100% { background-position: -100% 0; }
    }
    .booking-rewards-card {
      margin: 1.25rem 0;
      padding: 1.35rem 1.5rem;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--leaf-2) 0%, var(--leaf-1) 100%);
      color: #fff;
      box-shadow: 0 8px 28px rgba(45, 90, 61, 0.2);
      display: none;
    }
    .booking-rewards-card .rewards-brand {
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      opacity: 0.9;
      margin-bottom: 0.75rem;
    }
    .booking-rewards-card .rewards-points-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.1rem;
      font-weight: 600;
      line-height: 1.1;
    }
    .booking-rewards-card .rewards-sub {
      font-size: 0.88rem;
      opacity: 0.9;
      margin-top: 0.35rem;
    }
    .booking-rewards-card .rewards-muted {
      opacity: 0.82;
    }
    .booking-rewards-card .rewards-section-title {
      font-size: 0.82rem;
      margin: 1.15rem 0 0.4rem;
      opacity: 0.95;
    }
    .booking-rewards-card .rewards-code-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.5rem;
      margin-top: 0.25rem;
    }
    .booking-rewards-card .rewards-code-value {
      font-family: ui-monospace, monospace;
      font-size: 1.25rem;
      letter-spacing: 0.06em;
      font-weight: 600;
    }
    .booking-rewards-card .btn-rewards {
      background: rgba(255,255,255,0.2);
      border: 1px solid rgba(255,255,255,0.45);
      color: #fff;
      border-radius: 8px;
      padding: 0.35rem 0.75rem;
      font-size: 0.82rem;
      cursor: pointer;
    }
    .booking-rewards-card .btn-rewards:hover {
      background: rgba(255,255,255,0.3);
    }
    .booking-rewards-card .btn-rewards-primary {
      background: #fff;
      color: var(--leaf-2);
      border-color: #fff;
      font-weight: 600;
      margin-top: 0.5rem;
    }
    .booking-rewards-card .btn-rewards-primary:hover {
      opacity: 0.95;
    }
    .booking-rewards-card .rewards-tx-list {
      list-style: none;
      margin: 0.5rem 0 0;
      padding: 0;
      font-size: 0.82rem;
      line-height: 1.45;
      opacity: 0.95;
    }
    .booking-rewards-card .rewards-tx-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      padding: 0.35rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.18);
    }
    .booking-rewards-card .rewards-tx-list li:last-child {
      border-bottom: none;
    }
    .booking-rewards-card .rewards-promo-box {
      margin-top: 0.65rem;
      padding: 0.75rem;
      background: rgba(0,0,0,0.12);
      border-radius: 10px;
      font-size: 0.84rem;
    }
    @media (max-width: 900px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 480px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
      }
    }
    #ig-feed-container {
      min-height: 1px;
    }
    .ig-section {
      text-align: center;
      padding: 5rem 2rem;
      background: var(--cream-1);
      color: var(--ink);
    }
    .ig-section h2 {
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: clamp(2rem, 4vw, 2.75rem);
      color: var(--leaf-2);
      margin: 0 0 0.5rem;
      font-weight: 600;
    }
    .ig-follow-strip {
      background: #1a1a1a;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      padding: 18px 16px;
      text-align: center;
      flex-wrap: wrap;
    }
    .ig-follow-label {
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      opacity: 0.6;
      margin: 0;
    }
    .ig-follow-strip .ig-follow-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      border: 1.5px solid rgba(255,255,255,0.5);
      color: #fff;
      padding: 8px 20px;
      border-radius: 999px;
      font-size: 0.85rem;
      font-weight: 500;
      text-decoration: none;
      letter-spacing: 0.04em;
      transition: border-color 0.2s, background 0.2s;
      margin-top: 0;
    }
    .ig-follow-strip .ig-follow-btn:hover {
      border-color: #fff;
      background: rgba(255,255,255,0.08);
      text-decoration: none;
    }
    .ig-follow-btn {
      margin-top: 1.5rem;
      display: inline-block;
    }
    .ann-modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.55);
      z-index: 999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px;
      animation: annFadeIn 0.3s ease;
    }
    @keyframes annFadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    .ann-modal {
      background: #fff;
      border-radius: 12px;
      max-width: 680px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      box-shadow: 0 20px 60px rgba(0,0,0,0.25);
      animation: annSlideUp 0.35s ease;
    }
    @keyframes annSlideUp {
      from { transform: translateY(24px); opacity: 0; }
      to   { transform: translateY(0);    opacity: 1; }
    }
    .ann-modal-close {
      position: absolute;
      top: 12px;
      right: 14px;
      background: rgba(0,0,0,0.08);
      border: none;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      font-size: 14px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
      color: #333;
      transition: background 0.15s;
    }
    .ann-modal-close:hover { background: rgba(0,0,0,0.15); }
    .ann-modal-inner {
      display: flex;
      flex-direction: row;
      min-height: 300px;
    }
    .ann-modal-media {
      flex: 0 0 48%;
      max-width: 48%;
      min-height: 300px;
      border-radius: 12px 0 0 12px;
      overflow: hidden;
      background: #1a2e22;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .ann-modal-media img,
    .ann-modal-media video {
      width: 100%;
      height: 100%;
      max-height: 420px;
      object-fit: contain;
      object-position: center;
      display: block;
    }
    .ann-modal-text {
      flex: 1;
      padding: 36px 28px 28px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 12px;
    }
    .ann-modal-inner.text-only .ann-modal-text {
      padding: 40px 32px 32px;
      text-align: center;
      align-items: center;
    }
    .ann-modal-type {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 3px 8px;
      border-radius: 4px;
      display: inline-block;
      width: fit-content;
    }
    .ann-modal-type.INFO { background: #e8f0fe; color: #1a56db; }
    .ann-modal-type.WARNING { background: #fef3c7; color: #92400e; }
    .ann-modal-type.SUCCESS { background: #d1fae5; color: #065f46; }
    .ann-modal-message {
      font-size: 1rem;
      line-height: 1.6;
      color: #1a1a1a;
      margin: 0;
    }
    @media (max-width: 540px) {
      .ann-modal-inner {
        flex-direction: column;
      }
      .ann-modal-media {
        flex: 0 0 260px;
        max-width: 100%;
        min-height: 260px;
        border-radius: 12px 12px 0 0;
      }
      .ann-modal-media img,
      .ann-modal-media video {
        max-height: 260px;
      }
    }
    .ig-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.5rem;
      max-width: 800px;
      margin: 2rem auto;
    }
    .ig-item {
      aspect-ratio: 1 / 1;
      overflow: hidden;
      border-radius: 8px;
      display: block;
      background: var(--cream-2);
      position: relative;
    }
    .ig-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 0.3s ease;
    }
    .ig-item:hover img {
      transform: scale(1.05);
    }
    .ig-item-zoomout img {
      object-position: center 30%;
      transform: none;
    }
    .ig-item-zoomout:hover img {
      transform: scale(1.05);
    }
    .ig-section .ig-item .ig-video-play {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      background: rgba(0,0,0,0.55);
      color: var(--cream-1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.95rem;
      padding-left: 0.15rem;
      pointer-events: none;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    .ig-handle {
      margin-top: 1.5rem;
      color: var(--muted);
      font-size: 0.9rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }
    .social-pill-link {
      display: inline-block;
      padding: 0.45rem 0.95rem;
      border-radius: 999px;
      border: 1px solid var(--cream-2);
      background: var(--cream-1);
      color: var(--leaf-2);
      font-size: 0.88rem;
      font-weight: 600;
      text-decoration: none;
    }
    .social-pill-link:hover {
      border-color: var(--leaf-2);
      color: var(--leaf-1);
    }
    .social-tagline {
      width: 100%;
      text-align: center;
      margin-top: 0.25rem;
      font-size: 0.85rem;
      color: var(--muted);
    }
    .footer-social-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }
    .footer-social-row .social-pill-link {
      background: transparent;
      border-color: #666;
      color: #ddd;
      font-size: 0.85rem;
    }
    .footer-social-row .social-pill-link:hover {
      border-color: #aaa;
      color: #fff;
    }

    #policies { background: #fff; }
    .policies-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      max-width: 960px;
      margin: 0 auto;
      align-items: start;
    }
    @media (max-width: 768px) {
      .policies-grid {
        grid-template-columns: 1fr;
      }
    }
    .policy-card,
    .policy-item {
      background: var(--cream-1);
      border: 1px solid var(--cream-2);
      border-radius: 12px;
      padding: 1.25rem;
    }
    .policy-card h4 { color: var(--leaf-2); margin-bottom: 0.5rem; font-family: "Cormorant Garamond", serif; font-size: 1.25rem; }
    .policy-item .policy-title {
      color: var(--leaf-2);
      margin-bottom: 0.5rem;
      font-family: "Cormorant Garamond", serif;
      font-size: 1.25rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .policy-body {
      margin: 0;
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.5;
    }

    .section-label {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--muted);
      margin-bottom: 0.35rem;
    }

    .section-subtitle {
      max-width: 36rem;
      margin: 0 auto 1.75rem;
      color: var(--muted);
      text-align: center;
      font-size: 1rem;
      line-height: 1.65;
    }

    .reviews-section {
      padding: var(--section-pad) var(--side-pad);
      background: var(--cream);
    }

    .reviews-carousel-wrap {
      position: relative;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .reviews-carousel {
      flex: 1;
      overflow: hidden;
    }

    /* Reviews carousel grid — CSS only (no inline styles from JS) */
    #reviews-carousel {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      min-height: auto;
    }

    @media (max-width: 900px) {
      #reviews-carousel {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      #reviews-carousel {
        grid-template-columns: 1fr !important;
      }

      .reviews-carousel {
        min-height: auto !important;
      }

      .review-card {
        min-height: auto !important;
        padding: 16px;
      }

      .review-card-inner {
        flex-direction: column !important;
        gap: 0 !important;
      }

      .review-card-main {
        width: 100%;
      }

      .review-card-image-zone {
        width: 100% !important;
        margin-top: 12px;
      }

      .review-image-zone-stack {
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 8px;
        width: 100%;
      }

      .review-image-zone-thumb {
        width: calc(33.333% - 6px) !important;
        height: 90px !important;
        aspect-ratio: 1;
      }

      .review-image-zone-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
      }

      .review-image-zone-more {
        font-size: 12px;
        background: rgba(0, 0, 0, 0.6);
        color: #fff;
        border-radius: 4px;
        padding: 2px 6px;
        right: 6px;
        bottom: 6px;
      }
    }

    .reviews-nav {
      background: white;
      border: 1.5px solid var(--cream-2);
      border-radius: 50%;
      width: 36px;
      height: 36px;
      font-size: 1.25rem;
      cursor: pointer;
      color: var(--leaf-2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.15s;
      line-height: 1;
      padding: 0;
    }

    .reviews-nav:hover {
      background: var(--leaf-2);
      color: white;
    }

    .reviews-nav:disabled {
      opacity: 0.3;
      cursor: default;
    }

    .reviews-dots {
      display: flex;
      justify-content: center;
      gap: 0.4rem;
      margin-top: 0.75rem;
    }

    .reviews-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--cream-2);
      cursor: pointer;
      transition: background 0.2s;
      border: none;
      padding: 0;
    }

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

    .review-card {
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      border: 1px solid var(--cream-2);
      border-left: 3px solid #2d5a3d20;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      transition: opacity 0.3s;
    }

    /* Review card layout — desktop default */
    .review-card-inner {
      display: flex;
      flex-direction: row;
      gap: 16px;
      align-items: flex-start;
    }

    .review-card-main {
      flex: 1;
      min-width: 0;
    }

    /* Review images — stacked thumbs + lightbox */
    .review-card-image-zone {
      flex-shrink: 0;
      width: 96px;
    }

    .review-image-zone-stack {
      display: flex;
      flex-direction: column;
      gap: 6px;
      align-items: stretch;
    }

    .review-image-zone-thumb {
      position: relative;
      display: block;
      width: 96px;
      height: 96px;
      padding: 0;
      margin: 0;
      border: none;
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      background: var(--cream-2);
      flex-shrink: 0;
    }

    .review-image-zone-thumb:focus-visible {
      outline: 2px solid var(--leaf-2);
      outline-offset: 2px;
    }

    .review-image-zone-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .review-image-zone-more {
      position: absolute;
      right: 6px;
      bottom: 6px;
      padding: 2px 8px;
      border-radius: 6px;
      font-size: 0.75rem;
      font-weight: 700;
      color: #fff;
      background: rgba(0, 0, 0, 0.72);
      pointer-events: none;
      line-height: 1.2;
    }

    .review-lightbox {
      position: fixed;
      inset: 0;
      z-index: 10050;
      opacity: 0;
      visibility: hidden;
      transition:
        opacity 0.28s ease,
        visibility 0.28s ease;
      pointer-events: none;
    }

    .review-lightbox.review-lightbox--open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .review-lightbox-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.85);
      cursor: pointer;
    }

    .review-lightbox-panel {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 3rem 4rem;
      pointer-events: none;
    }

    .review-lightbox-img {
      max-width: 90vw;
      max-height: 90vh;
      width: auto;
      height: auto;
      object-fit: contain;
      border-radius: 12px;
      pointer-events: auto;
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
    }

    .review-lightbox-close {
      position: fixed;
      top: 1rem;
      right: 1rem;
      z-index: 10052;
      width: 32px;
      height: 32px;
      padding: 0;
      border: none;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
      font-size: 1.5rem;
      line-height: 1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: auto;
      transition: background 0.15s;
    }

    .review-lightbox-close:hover {
      background: rgba(255, 255, 255, 0.22);
    }

    .review-lightbox-prev,
    .review-lightbox-next {
      position: fixed;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10052;
      width: 44px;
      height: 44px;
      padding: 0;
      border: none;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
      font-size: 1.75rem;
      line-height: 1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: auto;
      transition: background 0.15s;
    }

    .review-lightbox-prev {
      left: 0.75rem;
    }

    .review-lightbox-next {
      right: 0.75rem;
    }

    .review-lightbox-prev:hover,
    .review-lightbox-next:hover {
      background: rgba(255, 255, 255, 0.22);
    }

    @media (max-width: 600px) {
      .review-lightbox-panel {
        padding: 2.5rem 1rem;
      }

      .review-lightbox-prev {
        left: 0.35rem;
      }

      .review-lightbox-next {
        right: 0.35rem;
      }
    }

    .review-stars {
      color: #f4a82a;
      font-size: 1rem;
      margin-bottom: 0.5rem;
      letter-spacing: 1px;
    }

    .review-content {
      font-size: 0.875rem;
      color: var(--text);
      line-height: 1.6;
      margin-bottom: 0.75rem;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      cursor: pointer;
    }

    .review-content.expanded {
      display: block;
      -webkit-line-clamp: unset;
      overflow: visible;
      cursor: default;
    }

    .review-author {
      font-size: 0.8rem;
      color: var(--muted);
      font-weight: 600;
    }

    .review-service-tag {
      font-size: 0.72rem;
      color: var(--leaf-2);
      background: rgba(74, 124, 89, 0.08);
      padding: 0.15rem 0.5rem;
      border-radius: 10px;
      margin-top: 0.25rem;
      display: inline-block;
    }

    .reviews-summary {
      text-align: center;
      margin-bottom: 2rem;
    }

    .reviews-avg {
      font-family: Georgia, serif;
      font-size: 3rem;
      color: var(--leaf-1);
      line-height: 1;
    }

    .reviews-avg-stars {
      color: #f4a82a;
      font-size: 1.25rem;
      margin: 0.25rem 0;
    }

    .reviews-count {
      font-size: 0.85rem;
      color: var(--muted);
    }

    #contact-modal {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 200;
      align-items: center;
      justify-content: center;
      flex-direction: row;
    }

    #booking { background: var(--cream-2); }
    .booking-steps {
      max-width: 720px;
      margin: 0 auto;
      background: var(--cream-1);
      border-radius: 20px;
      padding: 2rem;
      border: 1px solid var(--cream-2);
    }
    .booking-next-available-hint {
      margin: 0 auto 0.85rem;
      text-align: center;
      line-height: 1.45;
      max-width: 100%;
      padding: 0 0.25rem;
    }
    .booking-next-fomo {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.45rem 0.95rem 0.45rem 0.65rem;
      border-radius: 999px;
      background: linear-gradient(135deg, #fff4e0 0%, #e8f5e9 100%);
      border: 1px solid rgba(45, 90, 61, 0.22);
      font-size: 0.88rem;
      font-weight: 600;
      color: #2a3d2f;
      text-align: left;
      max-width: 100%;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    }
    .booking-next-fomo-dot {
      width: 0.45rem;
      height: 0.45rem;
      border-radius: 50%;
      background: var(--leaf-2);
      flex-shrink: 0;
      animation: bookingFomoPulse 1.6s ease-in-out infinite;
    }
    @keyframes bookingFomoPulse {
      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }
      50% {
        opacity: 0.4;
        transform: scale(0.82);
      }
    }
    .booking-step-progress-wrap {
      margin-bottom: 1.5rem;
    }
    .booking-step-track {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.45rem;
      margin-bottom: 0.65rem;
    }
    .booking-step-seg {
      height: 6px;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.08);
      transition: background 0.35s ease, box-shadow 0.35s ease;
    }
    .booking-step-seg.completed {
      background: rgba(74, 124, 89, 0.35);
    }
    .booking-step-seg.active {
      background: var(--leaf-2);
      box-shadow: 0 0 0 1px rgba(74, 124, 89, 0.25);
    }
    .booking-step-seg.upcoming {
      background: rgba(0, 0, 0, 0.08);
    }
    .step-indicator {
      margin: 0;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--leaf-2);
      letter-spacing: 0.02em;
      text-align: center;
    }
    .step-panel { display: none; }
    .step-panel.active { display: block; }
    .service-pick-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
    }
    @media (max-width: 600px) { .service-pick-grid { grid-template-columns: 1fr; } }
    .pick-card {
      border: 2px solid var(--cream-2);
      border-radius: 12px;
      padding: 1rem;
      cursor: pointer;
      text-align: left;
      background: #fff;
      font-family: inherit;
    }
    .pick-card.selected { border-color: var(--leaf-1); background: rgba(74, 124, 89, 0.08); }

    .cat-booking-block { margin-bottom: 1.75rem; }
    .cat-acc-item { margin-bottom: 0.5rem; border-radius: 12px; border: 1px solid var(--cream-2); overflow: hidden; background: #fff; }
    .cat-acc-head {
      width: 100%;
      text-align: left;
      font-family: "Cormorant Garamond", Georgia, serif;
      font-weight: 700;
      font-size: 1.15rem;
      color: var(--leaf-2);
      padding: 0.85rem 1rem;
      background: var(--cream-1);
      border: none;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .cat-acc-head .chev { font-size: 0.75rem; opacity: 0.6; }
    .cat-acc-body { padding: 0.75rem; background: #fff; }
    .cat-acc-body[hidden] { display: none !important; }
    .step1-selected-wrap {
      background: #fff;
      border: 2px solid var(--leaf-1);
      border-radius: 12px;
      padding: 1.25rem;
      text-align: left;
      max-width: 520px;
      margin: 0 auto;
    }
    .step1-selected-wrap > div:nth-child(2) {
      flex-direction: column !important;
      align-items: stretch !important;
      min-height: auto !important;
      max-width: 100%;
    }
    .step1-selected-wrap > div:nth-child(2) .appt-img {
      width: 100% !important;
      min-width: 100% !important;
    }
    .step1-selected-wrap .sel-cat { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.35rem; }
    .step1-selected-wrap .sel-title { font-weight: 700; color: var(--leaf-2); font-size: 1.1rem; margin-bottom: 0.5rem; }
    .step1-selected-wrap .sel-meta { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.75rem; }
    .step1-selected-wrap .sel-desc { font-size: 0.9rem; line-height: 1.55; color: var(--ink); margin-bottom: 1rem; white-space: pre-line; }
    .change-appt-link {
      display: inline-block;
      margin-bottom: 0.75rem;
      font-size: 0.9rem;
      color: var(--leaf-1);
      cursor: pointer;
      text-decoration: underline;
      font-weight: 600;
    }
    .cat-booking-header {
      font-family: "Cormorant Garamond", Georgia, serif;
      font-weight: 700;
      font-size: 1.2rem;
      color: var(--leaf-2);
      margin-bottom: 0.75rem;
      padding-bottom: 0.35rem;
      border-bottom: 2px solid var(--cream-2);
    }
    .appt-list {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      max-width: 520px;
      margin: 0 auto;
      width: 100%;
    }
    .appt-card {
      display: flex;
      flex-direction: column;
      border: 1.5px solid var(--cream-2);
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      transition: border-color 0.2s, box-shadow 0.2s;
      background: #fff;
      min-height: 0;
      align-items: stretch;
      position: relative;
    }
    .appt-card:hover {
      border-color: var(--leaf-2);
      box-shadow: 0 4px 16px rgba(45, 90, 61, 0.1);
    }
    .appt-card.selected {
      border-color: var(--leaf-2);
      border-width: 2px;
      box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.15);
    }
    .appt-img {
      width: 100%;
      min-width: 100%;
      flex-shrink: 0;
      align-self: stretch;
      overflow: visible;
    }
    .appt-img img {
      width: 100%;
      height: auto;
      object-fit: unset;
      display: block;
      transform: none;
    }
    .appt-card:hover .appt-img img {
      transform: none;
    }
    .appt-info {
      flex: 1;
      width: 100%;
      padding: 1rem 1.25rem;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      gap: 0.2rem;
      min-width: 0;
      box-sizing: border-box;
    }
    .appt-name {
      font-family: Georgia, serif;
      font-size: 0.95rem;
      color: var(--leaf-1);
      font-weight: normal;
      line-height: 1.3;
    }
    .appt-meta {
      font-size: 0.78rem;
      color: var(--muted);
    }
    .appt-price {
      font-size: 0.9rem;
      color: var(--leaf-2);
      font-weight: 600;
    }
    .appt-desc {
      font-size: 0.78rem;
      color: var(--muted);
      line-height: 1.4;
      flex: 1;
      white-space: pre-line;
      margin-top: 0.25rem;
    }
    .appt-select-btn {
      margin-top: 0.5rem;
      padding: 0.5rem;
      background: var(--leaf-2);
      color: #fff;
      border: none;
      border-radius: 6px;
      font-size: 0.8rem;
      cursor: pointer;
      font-family: inherit;
      transition: background 0.2s;
      width: 100%;
    }
    .appt-select-btn:hover {
      background: var(--leaf-1);
    }
    .appt-card.selected .appt-select-btn {
      background: var(--leaf-1);
    }
    .byob-badge {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      background: var(--cream-2);
      color: var(--leaf-2);
      padding: 0.15rem 0.45rem;
      border-radius: 4px;
      margin-left: 0.35rem;
    }
    .addon-panel {
      margin-top: 1.25rem;
      padding: 1.25rem;
      background: var(--cream-2);
      border-radius: 12px;
      border: 1px solid rgba(74, 124, 89, 0.25);
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      overflow-x: hidden;
    }
    .addon-panel[hidden] { display: none !important; }
    .color-inquiry-mini-cal {
      margin-top: 0.35rem;
 }
    .color-inquiry-mini-cal .ci-cal-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0.5rem;
      gap: 0.5rem;
    }
    .color-inquiry-mini-cal .ci-cal-nav strong {
      font-size: 0.9rem;
    }
    .color-inquiry-mini-cal .ci-cal-weekdays,
    .color-inquiry-mini-cal .ci-cal-days {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 4px;
      text-align: center;
      font-size: 0.78rem;
    }
    .color-inquiry-mini-cal .ci-cal-weekdays div {
      font-weight: 600;
      opacity: 0.65;
      padding: 2px 0;
    }
    .color-inquiry-mini-cal .ci-cal-day {
      border: 1px solid rgba(26, 46, 34, 0.15);
      border-radius: 6px;
      padding: 6px 2px;
      background: #fff;
      cursor: pointer;
      font-size: 0.82rem;
    }
    .color-inquiry-mini-cal .ci-cal-day:disabled {
      cursor: not-allowed;
      opacity: 0.45;
      background: #e5e7eb;
      color: #6b7280;
    }
    .color-inquiry-mini-cal .ci-cal-day.ci-cal-avail:not(:disabled) {
      background: #ecfdf5;
      border-color: #15803d;
      color: #14532d;
      font-weight: 600;
    }
    .color-inquiry-mini-cal .ci-cal-day.ci-cal-selected {
      box-shadow: 0 0 0 2px #15803d;
    }
    .color-inquiry-mini-cal .ci-cal-day.ci-cal-today {
      text-decoration: underline;
    }
    .addon-heading {
      font-family: "Cormorant Garamond", Georgia, serif;
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--leaf-2);
      margin-bottom: 0.75rem;
    }
    .addon-row {
      display: flex;
      align-items: flex-start;
      gap: 0.65rem;
      padding: 0.45rem 0;
      border-bottom: 1px solid rgba(74, 124, 89, 0.12);
      font-size: 0.9rem;
    }
    .addon-row:last-of-type { border-bottom: none; }
    .addon-row input[type="checkbox"] {
      accent-color: var(--leaf-1);
      width: 1.1rem;
      height: 1.1rem;
      margin-top: 0.15rem;
      flex-shrink: 0;
      cursor: pointer;
    }
    .addon-row .addon-label { flex: 1; min-width: 0; color: var(--ink); line-height: 1.35; }
    .addon-price { flex-shrink: 0; font-weight: 600; font-size: 0.88rem; white-space: nowrap; }
    .addon-price.free { color: var(--leaf-1); }
    .addon-price.paid { color: var(--muted); }
    .addon-total-line {
      margin-top: 1rem;
      padding-top: 0.85rem;
      border-top: 2px solid rgba(255,255,255,0.6);
      color: var(--leaf-2);
      line-height: 1.4;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }
    .addon-total-heading {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.55rem;
    }
    .addon-total-breakdown {
      display: flex;
      flex-direction: column;
      gap: 0;
      width: 100%;
    }
    .addon-total-row,
    .addon-total-sum {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto auto;
      column-gap: 0.65rem;
      align-items: start;
      width: 100%;
    }
    .addon-total-row {
      padding: 0.55rem 0;
      border-bottom: 1px solid rgba(74, 124, 89, 0.12);
    }
    .addon-total-row:first-child {
      padding-top: 0.15rem;
    }
    .addon-total-desc {
      min-width: 0;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--ink);
      overflow-wrap: break-word;
      word-break: normal;
      hyphens: none;
      line-height: 1.35;
    }
    .addon-total-price {
      white-space: nowrap;
      font-variant-numeric: tabular-nums;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--leaf-2);
      text-align: right;
    }
    .addon-total-time {
      white-space: nowrap;
      font-size: 0.84rem;
      font-weight: 500;
      color: var(--muted);
      text-align: right;
      min-height: 1.2em;
    }
    .addon-total-time:not(:empty) {
      padding-left: 0.65rem;
      border-left: 1px solid rgba(74, 124, 89, 0.35);
    }
    .addon-total-sum {
      margin-top: 0.15rem;
      padding: 0.75rem 0 0.15rem;
      border-top: 1px solid rgba(74, 124, 89, 0.22);
      border-bottom: none;
    }
    .addon-total-sum > .addon-total-desc {
      font-weight: 700;
      color: var(--leaf-2);
    }
    .addon-total-sum > .addon-total-price {
      font-size: 1.05rem;
      font-weight: 700;
    }
    .addon-total-sum > .addon-total-time {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--leaf-2);
    }
    .addon-total-sum > .addon-total-time:not(:empty) {
      border-left-color: rgba(45, 90, 61, 0.28);
    }
    .addon-section {
      margin-bottom: 1.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid var(--cream-2);
    }
    .addon-section:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }
    .addon-section-free {
      background: rgba(74,124,89,0.05);
      border-radius: 8px;
      padding: 1rem;
      border: 1px solid rgba(74,124,89,0.2);
    }
    .addon-section-title {
      font-family: Georgia, serif;
      font-size: 0.95rem;
      color: var(--leaf-1);
      font-weight: 600;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .addon-required-badge {
      font-size: 0.7rem;
      background: #2d5a3d;
      color: white;
      padding: 0.15rem 0.5rem;
      border-radius: 10px;
      font-family: 'DM Sans', sans-serif;
      font-weight: normal;
    }
    .addon-optional-badge {
      font-size: 0.7rem;
      background: #e8e0d0;
      color: #6b6b60;
      padding: 0.15rem 0.5rem;
      border-radius: 10px;
      font-family: 'DM Sans', sans-serif;
      font-weight: normal;
    }
    .addon-section-note {
      font-size: 0.8rem;
      color: #6b6b60;
      margin: 0 0 0.75rem;
      line-height: 1.5;
    }
    .addon-warning {
      display: block;
      color: #8a5a00;
      background: rgba(180,120,0,0.08);
      border: 1px solid rgba(180,120,0,0.2);
      border-radius: 6px;
      padding: 0.4rem 0.6rem;
      margin-top: 0.4rem;
      font-size: 0.78rem;
    }
    .addon-options {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }
    .addon-radio-label,
    .addon-check-label {
      display: flex;
      align-items: flex-start;
      gap: 0.65rem;
      padding: 0.7rem 0.8rem;
      border: 1px solid var(--cream-2);
      border-radius: 10px;
      cursor: pointer;
      font-size: 0.875rem;
      transition: border-color 0.15s, background 0.15s;
      width: 100%;
      box-sizing: border-box;
    }
    .addon-radio-label:hover,
    .addon-check-label:hover {
      border-color: var(--leaf-2);
      background: rgba(74,124,89,0.04);
    }
    .addon-radio-label input,
    .addon-check-label input {
      flex-shrink: 0;
      width: 16px;
      height: 16px;
      margin-top: 0.15rem;
      accent-color: var(--leaf-2);
    }
    .addon-radio-name,
    .addon-check-name {
      flex: 1 1 auto;
      min-width: 0;
      color: var(--ink);
      line-height: 1.4;
      overflow-wrap: break-word;
      word-break: normal;
      hyphens: none;
    }
    .addon-inline-note {
      margin: -0.1rem 0 0.35rem;
      padding: 0.45rem 0.75rem 0.45rem calc(16px + 0.65rem + 0.8rem);
      font-size: 0.78rem;
      line-height: 1.45;
      color: #6b6b60;
    }
    .addon-default {
      background: rgba(74,124,89,0.06);
      border-color: rgba(74,124,89,0.3);
    }
    .addon-needs-confirm {
      border-style: dashed;
      border-color: #e8c87a;
    }
    .addon-section .addon-price {
      font-size: 0.8rem;
      color: var(--leaf-2);
      font-weight: 600;
      flex-shrink: 0;
    }
    .addon-section .addon-price.free {
      color: #4a7c59;
      background: rgba(74,124,89,0.1);
      padding: 0.1rem 0.4rem;
      border-radius: 4px;
    }
    .addon-recommended-note {
      font-size: 0.78rem;
      color: #2d5a3d;
      background: rgba(74,124,89,0.08);
      border: 1px solid rgba(74,124,89,0.2);
      border-radius: 6px;
      padding: 0.5rem 0.75rem;
      margin-bottom: 0.5rem;
    }
    .addon-text-option { margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid rgba(74, 124, 89, 0.15); }
    .addon-checkbox-label {
      display: flex;
      align-items: flex-start;
      gap: 0.65rem;
      cursor: pointer;
      font-size: 0.9rem;
      width: 100%;
      box-sizing: border-box;
    }
    .addon-checkbox-label input { margin-top: 0.15rem; flex-shrink: 0; }
    .addon-checkbox-label > span:not(.addon-price) {
      flex: 1 1 auto;
      min-width: 0;
      line-height: 1.4;
      overflow-wrap: break-word;
      word-break: normal;
    }
    .addon-checkbox-label > .addon-price { flex-shrink: 0; margin-left: auto; }
    .addon-radio-label.addon-fullness-option {
      align-items: flex-start;
    }
    .addon-fullness-stack {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }
    .addon-fullness-line1 {
      color: var(--ink);
      line-height: 1.35;
    }
    .addon-most-popular {
      font-size: 0.78rem;
      color: var(--leaf-2);
      font-weight: 600;
      margin-left: 0.35rem;
      white-space: nowrap;
    }
    .addon-fullness-price-line {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--leaf-2);
    }
    .pay-choice-row {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      margin-bottom: 0.35rem;
    }
    .pay-choice-btn {
      flex: 1;
      min-width: 140px;
      padding: 0.65rem 0.75rem;
      border: 1px solid var(--cream-2);
      border-radius: 8px;
      background: #fff;
      font-family: inherit;
      font-size: 0.875rem;
      line-height: 1.35;
      cursor: pointer;
      text-align: center;
      color: var(--ink);
      transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
    }
    .pay-choice-btn:hover {
      border-color: var(--leaf-2);
      background: rgba(74, 124, 89, 0.04);
    }
    .pay-choice-btn.active {
      border-color: var(--leaf-2);
      background: rgba(74, 124, 89, 0.1);
      box-shadow: 0 0 0 1px rgba(74, 124, 89, 0.25);
      color: var(--leaf-1);
      font-weight: 600;
    }
    .terms-box {
      background: #fff;
      border: 1px solid var(--cream-2);
      border-radius: 12px;
      padding: 1rem 1.1rem;
      margin: 0.85rem 0 1rem;
    }
    .terms-check {
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
      cursor: pointer;
      user-select: none;
    }
    .terms-check input[type="checkbox"] {
      width: 20px;
      height: 20px;
      margin-top: 2px;
      accent-color: var(--leaf-2);
      flex: 0 0 auto;
    }
    .terms-copy { font-size: 0.88rem; color: var(--ink); line-height: 1.55; }
    .terms-copy .terms-quote { display:block; color: var(--muted); font-size: 0.85rem; margin: 0.4rem 0; }
    .terms-error { display:none; margin-top: 0.6rem; color:#8a2a2a; font-size:0.85rem; }
    #text-phone-number { width: 100%; max-width: 280px; }
    #contact-success { margin-top: 0.75rem; }
    .form-row { margin-bottom: 1rem; }
    .form-row label { display: block; font-size: 0.85rem; margin-bottom: 0.35rem; font-weight: 500; }
    .form-row input, .form-row select, .form-row textarea {
      width: 100%;
      padding: 0.65rem 0.75rem;
      border: 1px solid var(--cream-2);
      border-radius: 8px;
      font-family: inherit;
    }
    .calendar-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
    .calendar-grid {
      display: grid;
      grid-template-columns: repeat(7, minmax(0, 1fr));
      gap: 4px;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      text-align: center;
      font-size: 0.85rem;
    }
    #calWeekdays > div,
    #rs-cal-weekdays > div {
      display: flex;
      align-items: center;
      justify-content: center;
      aspect-ratio: 1;
      min-width: 0;
      font-weight: 600;
      opacity: 0.6;
      font-size: 0.75rem;
    }
    .calendar-grid > div:empty {
      min-width: 0;
      aspect-ratio: 1;
    }
    .calendar-grid button {
      width: 100%;
      max-width: 100%;
      min-width: 0;
      aspect-ratio: 1;
      height: auto;
      padding: 0;
      border: none;
      background: #fff;
      border-radius: 10px;
      cursor: pointer;
      font-family: inherit;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
      font-size: clamp(0.72rem, 2.8vw, 0.85rem);
    }
    .calendar-grid button:disabled { opacity: 0.35; cursor: not-allowed; }
    .calendar-grid button.cal-day {
      cursor: pointer;
      border: 1px solid transparent;
      background: #fff;
    }
    .calendar-grid button.cal-day.bookable-available:not(.selected) {
      background: #eaf6ee;
      border-color: #b9d8c1;
      color: var(--leaf-2);
      font-weight: 700;
      box-shadow: inset 0 -3px 0 rgba(45, 90, 61, 0.16);
    }
    .calendar-grid button.cal-day:hover:not(:disabled) {
      border-color: var(--leaf-2);
    }
    .calendar-grid button.cal-day.selected {
      background: var(--leaf-2);
      color: var(--cream-1);
    }
    .calendar-grid button.cal-day.today:not(.selected) {
      color: var(--leaf-2);
      font-weight: 600;
    }
    .calendar-grid button.cal-day.fully-booked {
      background: #f2eee7;
      color: #a4a097;
      cursor: pointer;
      text-decoration: line-through;
      border-color: #e4ddd2;
    }
    .calendar-grid button.cal-day.fully-booked.waitlist-available {
      background: #fff4d8;
      border-color: #e2bd63;
      color: #8a6500;
      text-decoration-color: rgba(138, 101, 0, 0.45);
      box-shadow: inset 0 -3px 0 rgba(226, 189, 99, 0.28);
    }
    .calendar-grid button.cal-day.fully-booked.waitlist-available.selected {
      background: #8a6500;
      color: #fffaf0;
      text-decoration-color: rgba(255, 255, 255, 0.75);
    }
    .calendar-grid button.cal-day.fully-booked:disabled {
      background: #ece8df;
      color: #b7b2a8;
      cursor: not-allowed;
      border-color: transparent;
      box-shadow: none;
    }
    .cal-month-status {
      font-size: 0.82rem;
      color: var(--muted);
      margin: 0.35rem 0 0.5rem;
      min-height: 1.2em;
    }
    @keyframes cal-shimmer {
      0% { background-position: 100% 0; }
      100% { background-position: -100% 0; }
    }
    .cal-day-skeleton {
      width: 100%;
      max-width: 100%;
      min-width: 0;
      aspect-ratio: 1;
      height: auto;
      border-radius: 6px;
      background: linear-gradient(90deg, #e8e0d0 0%, #f5f0e8 50%, #e8e0d0 100%);
      background-size: 200% 100%;
      animation: cal-shimmer 1.1s ease-in-out infinite;
    }
    .cal-legend {
      display: flex;
      gap: 1rem;
      margin-top: 0.75rem;
      font-size: 0.78rem;
      color: var(--muted);
      flex-wrap: wrap;
    }
    .cal-legend .legend-item { display: inline-flex; align-items: center; }
    .legend-dot {
      display: inline-block;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      margin-right: 4px;
    }
    .legend-dot.available { background: #2d5a3d; }
    .legend-dot.booked { background: #8a6500; }
    .legend-dot.closed { background: #c9c3b8; }
    .slots { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
    .slots button {
      padding: 0.45rem 0.75rem;
      border: 1px solid var(--leaf-2);
      background: #fff;
      border-radius: 6px;
      cursor: pointer;
      font-size: 0.85rem;
    }
    .slots button.unavailable {
      text-decoration: line-through;
      opacity: 0.5;
      color: var(--muted);
      background: #f0ebe3;
      border-color: var(--cream-2);
      cursor: not-allowed;
      pointer-events: none;
    }
    .slot-availability-note {
      font-size: 0.85rem;
      color: var(--muted);
      margin-top: 0.75rem;
      line-height: 1.45;
    }
    .slots button.time-pick.selected { background: var(--leaf-2); color: var(--cream-1); }
    .step2-waitlist-section {
      flex-basis: 100%;
      width: 100%;
      margin-top: 1.25rem;
      padding: 1.15rem 1.25rem;
      background: var(--cream-2);
      border: 1px solid rgba(74, 124, 89, 0.2);
      border-radius: 12px;
      box-sizing: border-box;
    }
    .step2-waitlist-section h3 {
      margin: 0 0 0.35rem;
      font-family: Georgia, serif;
      font-size: 1.1rem;
      color: var(--leaf-2);
      font-weight: 600;
    }
    .step2-waitlist-section .step2-waitlist-sub {
      margin: 0 0 1rem;
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.5;
    }
    .step2-waitlist-slots {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }
    button.waitlist-slot-pick {
      padding: 0.5rem 0.9rem;
      border: 2px solid var(--leaf-2);
      background: transparent;
      color: var(--leaf-2);
      border-radius: 8px;
      cursor: pointer;
      font-size: 0.85rem;
      font-family: inherit;
      font-weight: 600;
      transition: background 0.15s, color 0.15s;
    }
    button.waitlist-slot-pick:hover {
      background: rgba(74, 124, 89, 0.08);
    }
    button.waitlist-slot-pick.selected {
      background: var(--leaf-2);
      color: #fff;
    }
    .step2-waitlist-form .form-row { margin-bottom: 0.65rem; }
    .step2-waitlist-form label { display: block; font-size: 0.82rem; margin-bottom: 0.25rem; color: var(--ink); }
    .step2-waitlist-form input,
    .step2-waitlist-form textarea {
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      padding: 0.45rem 0.55rem;
      border: 1px solid var(--cream-2);
      border-radius: 6px;
      font-family: inherit;
      font-size: 0.9rem;
    }
    .step2-waitlist-form textarea { min-height: 4rem; resize: vertical; }
    .step2-waitlist-actions { margin-top: 0.75rem; }
    .step2-waitlist-change-date {
      display: inline-block;
      margin-top: 1rem;
      font-size: 0.88rem;
      color: var(--leaf-2);
      cursor: pointer;
      text-decoration: underline;
      background: none;
      border: none;
      padding: 0;
      font-family: inherit;
    }
    .step2-waitlist-change-date:hover {
      color: var(--leaf-1);
    }
    .step2-waitlist-msg { margin-top: 0.75rem; font-size: 0.88rem; line-height: 1.55; }
    .booking-actions { display: flex; gap: 0.75rem; margin-top: 1.5rem; flex-wrap: wrap; }
    .msg-success { background: rgba(74, 124, 89, 0.15); color: var(--leaf-2); padding: 1rem; border-radius: 10px; margin-top: 1rem; }
    .msg-error { background: rgba(180, 60, 60, 0.12); color: #8a2a2a; padding: 1rem; border-radius: 10px; margin-top: 1rem; }

    .payment-options {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
      margin: 1rem 0;
    }
    @media (max-width: 540px) {
      .payment-options { grid-template-columns: 1fr; }
    }
    .payment-option {
      border: 2px solid var(--cream-2);
      border-radius: 10px;
      padding: 1rem;
      cursor: pointer;
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
      background: white;
      transition: all 0.2s;
    }
    .payment-option.selected {
      border-color: var(--leaf-2);
      background: rgba(74, 124, 89, 0.06);
    }
    .payment-option-radio {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      border: 2px solid var(--cream-2);
      flex-shrink: 0;
      margin-top: 2px;
      transition: all 0.2s;
    }
    .payment-option.selected .payment-option-radio {
      border-color: var(--leaf-2);
      background: var(--leaf-2);
      box-shadow: inset 0 0 0 3px white;
    }
    .payment-option strong {
      display: block;
      font-size: 0.95rem;
      color: var(--ink);
      margin-bottom: 0.2rem;
    }
    .payment-option span {
      font-size: 0.8rem;
      color: var(--muted);
    }

    .confirmed-header { text-align: center; padding: 2rem 0 1.5rem; }
    .confirmed-icon { font-size: 3rem; margin-bottom: 0.5rem; }
    .confirmed-header h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      color: var(--leaf-2);
    }
    .confirmed-summary {
      background: white;
      border: 1px solid var(--cream-2);
      border-radius: 12px;
      padding: 1.5rem;
      margin: 1.5rem 0;
    }
    .confirmed-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.6rem 0;
      border-bottom: 1px solid var(--cream-2);
      font-size: 0.9rem;
    }
    .confirmed-row:last-child { border-bottom: none; }
    .confirmed-row span { color: var(--muted); }
    .confirmed-row.highlight { background: rgba(74, 124, 89, 0.06); margin: 0 -0.5rem; padding-left: 0.5rem; padding-right: 0.5rem; border-radius: 6px; }
    .confirmed-divider {
      height: 1px;
      background: var(--cream-2);
      margin: 0.5rem 0;
    }
    .confirmed-info {
      background: var(--cream-2);
      border-radius: 10px;
      padding: 1rem 1.25rem;
      margin: 1rem 0;
      font-size: 0.88rem;
      line-height: 2;
      color: var(--muted);
    }
    .confirmed-prep {
      border: 1px solid var(--cream-2);
      border-radius: 10px;
      padding: 1rem 1.25rem;
      margin: 1rem 0;
    }
    .confirmed-prep h4 {
      color: var(--leaf-2);
      margin-bottom: 0.75rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
    }
    .confirmed-prep ul {
      list-style: none;
      padding: 0;
      font-size: 0.88rem;
      line-height: 2;
      color: var(--muted);
    }
    .confirmed-prep ul li::before { content: "✓ "; color: var(--leaf-2); }
    .conf-balance-note {
      font-size: 0.85rem;
      color: var(--muted);
      margin-bottom: 0.75rem;
    }
    #conf-deposit-pending-wrap .btn { width: 100%; margin-top: 0.5rem; }
    #booking-confirmed-page { max-width: 720px; margin: 0 auto; }
    .balance-success-banner {
      background: rgba(74, 124, 89, 0.12);
      border: 1px solid var(--cream-2);
      border-radius: 10px;
      padding: 1rem 1.25rem;
      margin-bottom: 1rem;
      font-size: 0.95rem;
      color: var(--leaf-2);
      text-align: center;
    }

    #reschedule-modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(13, 26, 18, 0.52);
      z-index: 1000;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }
    #reschedule-modal-overlay.is-open {
      display: flex;
    }
    .reschedule-modal-inner {
      background: #fff;
      border-radius: 18px;
      width: min(100%, 520px);
      max-height: min(92vh, 820px);
      display: flex;
      flex-direction: column;
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
      overflow: hidden;
    }
    .reschedule-modal-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.35rem 1.35rem 1rem;
      border-bottom: 1px solid #ebe6dc;
      flex-shrink: 0;
    }
    .reschedule-modal-header h3 {
      margin: 0;
      font-family: Georgia, serif;
      font-size: 1.35rem;
      color: var(--leaf-2);
      line-height: 1.2;
    }
    .reschedule-modal-sub {
      margin: 0.35rem 0 0;
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.45;
    }
    .reschedule-modal-close {
      flex-shrink: 0;
      width: 2rem;
      height: 2rem;
      border: none;
      background: #f5f0e8;
      border-radius: 999px;
      color: var(--ink);
      font-size: 1.25rem;
      line-height: 1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .reschedule-modal-close:hover {
      background: #ebe4d8;
    }
    .reschedule-modal-body {
      padding: 1rem 1.35rem 1.25rem;
      overflow-y: auto;
      flex: 1;
      -webkit-overflow-scrolling: touch;
    }
    .reschedule-current-card {
      background: linear-gradient(135deg, #f5f9f6 0%, #eef5f0 100%);
      border: 1px solid #c8dbc9;
      border-radius: 12px;
      padding: 0.85rem 1rem;
      margin-bottom: 1rem;
    }
    .reschedule-current-label {
      display: block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #5c7a62;
      margin-bottom: 0.35rem;
    }
    .reschedule-current-datetime {
      font-size: 1rem;
      font-weight: 600;
      color: var(--leaf-2);
      line-height: 1.45;
    }
    .reschedule-policy-notice {
      margin-bottom: 1rem;
      padding: 1rem 1.05rem;
      border-radius: 12px;
      font-size: 0.88rem;
      line-height: 1.55;
      color: var(--ink);
    }
    .reschedule-policy-notice--fee {
      background: #fff9f0;
      border: 1px solid #e8c468;
    }
    .reschedule-policy-notice--free {
      background: #f0f7f2;
      border: 1px solid #b9d4be;
    }
    .reschedule-policy-notice--blocked {
      background: #fff5f5;
      border: 1px solid #e8b4b4;
    }
    .reschedule-policy-badge {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.25rem 0.55rem;
      border-radius: 999px;
      margin-bottom: 0.55rem;
    }
    .reschedule-policy-notice--fee .reschedule-policy-badge {
      background: #8a6500;
      color: #fffaf0;
    }
    .reschedule-policy-notice--free .reschedule-policy-badge {
      background: #2d5a3d;
      color: #f5f0e8;
    }
    .reschedule-policy-notice--blocked .reschedule-policy-badge {
      background: #8a2a2a;
      color: #fff;
    }
    .reschedule-policy-lead {
      margin: 0 0 0.75rem;
      font-weight: 600;
      color: var(--ink);
    }
    .reschedule-fee-summary {
      display: grid;
      gap: 0.45rem;
      margin: 0 0 0.75rem;
      padding: 0.75rem;
      background: rgba(255, 255, 255, 0.65);
      border-radius: 8px;
      border: 1px solid rgba(0, 0, 0, 0.06);
    }
    .reschedule-fee-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 0.75rem;
      font-size: 0.86rem;
    }
    .reschedule-fee-row dt {
      margin: 0;
      color: var(--muted);
      font-weight: 500;
    }
    .reschedule-fee-row dd {
      margin: 0;
      font-weight: 700;
      color: var(--ink);
      white-space: nowrap;
    }
    .reschedule-fee-row--total dd {
      color: #8a6500;
      font-size: 0.95rem;
    }
    .reschedule-policy-note {
      margin: 0;
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.5;
    }
    .reschedule-fee-ack {
      display: none;
      align-items: flex-start;
      gap: 0.65rem;
      margin: 0 0 1.15rem;
      padding: 0.85rem 0.95rem;
      background: #faf8f4;
      border: 1px solid #e0d8c8;
      border-radius: 10px;
      font-size: 0.86rem;
      line-height: 1.5;
      cursor: pointer;
    }
    .reschedule-fee-ack input {
      margin-top: 0.15rem;
      width: 1rem;
      height: 1rem;
      flex-shrink: 0;
      accent-color: var(--leaf-2);
    }
    .reschedule-picker {
      margin-top: 0.25rem;
    }
    .reschedule-picker-title {
      margin: 0 0 0.65rem;
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--leaf-2);
    }
    .reschedule-calendar-card {
      background: #faf9f6;
      border: 1px solid #ebe6dc;
      border-radius: 12px;
      padding: 0.85rem 0.75rem 0.75rem;
    }
    .reschedule-calendar-card .calendar-nav {
      margin-bottom: 0.65rem;
    }
    .reschedule-calendar-card .cal-legend {
      margin-top: 0.65rem;
      gap: 0.65rem 1rem;
      justify-content: center;
    }
    .reschedule-calendar-card .legend-dot.available {
      background: #eaf6ee;
      border: 1px solid #b9d8c1;
    }
    .reschedule-calendar-card .legend-dot.booked {
      background: #fff4d8;
      border: 1px solid #e2bd63;
    }
    .reschedule-picker-hint {
      margin: 0.85rem 0 0;
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.45;
    }
    #rs-slot-wrap.slots {
      margin-top: 0.85rem;
    }
    #reschedule-modal-error {
      display: none;
      margin-top: 0.85rem;
      padding: 0.65rem 0.85rem;
      background: #fdf3f3;
      border: 1px solid #e8b4b4;
      border-radius: 8px;
      color: #8a2a2a;
      font-size: 0.86rem;
      line-height: 1.45;
    }
    .reschedule-modal-footer {
      display: flex;
      gap: 0.65rem;
      padding: 1rem 1.35rem 1.25rem;
      border-top: 1px solid #ebe6dc;
      background: #faf9f6;
      flex-shrink: 0;
    }
    .reschedule-modal-footer .btn {
      flex: 1;
      min-height: 2.75rem;
    }
    .reschedule-modal-footer .btn-primary {
      font-weight: 600;
    }
    @media (max-width: 480px) {
      .reschedule-modal-header,
      .reschedule-modal-body,
      .reschedule-modal-footer {
        padding-left: 1rem;
        padding-right: 1rem;
      }
      .reschedule-modal-footer {
        flex-direction: column-reverse;
      }
    }
    .submit-color-inquiry-btn {
      border: 2px solid #f59e0b;
      color: #92400e;
      background: transparent;
    }
    .submit-color-inquiry-btn:hover:not(:disabled) {
      background: #fff3cd;
    }
    .booking-step1-inquiry-actions #toStep2,
    .booking-step1-inquiry-actions #submitInquiryBtn {
      flex: 1 1 220px;
      min-width: 0;
    }
    @media (max-width: 560px) {
      .booking-step1-inquiry-actions {
        flex-direction: column;
      }
      .booking-step1-inquiry-actions > button {
        width: 100%;
        flex: 1 1 auto !important;
      }
    }
    footer {
      background: #0d0d0d;
      color: #bbb;
      padding: 2.5rem 1.25rem;
      text-align: center;
    }
    footer .logo-text { color: var(--cream-2); }
    footer nav { justify-content: center; margin-top: 1rem; flex-wrap: wrap; gap: 1rem; }
    footer a { color: #ccc; }
    .footer-legal-links {
      margin-top: 1rem;
      font-size: 0.75rem;
      color: #888;
      line-height: 1.5;
    }
    .footer-legal-links a {
      color: #888;
      text-decoration: none;
    }
    .footer-legal-links a:hover {
      color: #bbb;
      text-decoration: underline;
    }
    .footer-legal-sep { margin: 0 0.35rem; color: #666; }

    .studio-credit {
      margin-top: 1.5rem;
      padding: 1.25rem 0 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      width: 100%;
    }
    .studio-credit--fixed {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 40;
      margin-top: 0;
      padding: 0.7rem 1.25rem calc(0.7rem + env(safe-area-inset-bottom));
      background: var(--leaf-2, #2d5a3d);
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      text-align: center;
      box-shadow: 0 -4px 20px rgba(45, 90, 61, 0.35);
    }
    body.has-studio-credit-bar {
      padding-bottom: calc(4.75rem + env(safe-area-inset-bottom));
    }
    .studio-credit-line {
      margin: 0;
      font-size: 0.85rem;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.85);
    }
    .studio-credit-icon {
      margin-right: 0.35rem;
    }
    .studio-credit-hook {
      display: inline-block;
      color: rgba(255, 255, 255, 0.72);
      opacity: 1;
      transition: opacity 0.45s ease;
    }
    .studio-credit-hook.is-fading {
      opacity: 0;
    }
    .studio-credit-link {
      display: inline-block;
      margin-top: 0.15rem;
      margin-left: 0.35rem;
      color: #c9a84c;
      text-decoration: none;
      font-weight: 600;
      letter-spacing: 0.01em;
      border-bottom: 1px solid rgba(201, 168, 76, 0.35);
      transition: color 0.2s, border-color 0.2s;
    }
    .studio-credit-link:hover {
      color: #e0c068;
      border-bottom-color: rgba(224, 192, 104, 0.65);
    }
    .studio-credit--drive-promo,
    .studio-credit--apply-promo {
      background: linear-gradient(90deg, #2d5a3d 0%, #3a6b4a 100%);
    }
    .studio-credit--drive-promo .studio-credit-hook,
    .studio-credit--apply-promo .studio-credit-hook {
      color: rgba(255, 255, 255, 0.9);
    }
    .studio-credit--drive-promo .studio-credit-link,
    .studio-credit--apply-promo .studio-credit-link {
      color: #f0e6c8;
      border-bottom-color: rgba(240, 230, 200, 0.45);
    }
    @media (max-width: 767px) {
      .studio-credit--fixed {
        padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
      }
    }
    @media (max-width: 480px) {
      .studio-credit--fixed {
        padding: 0.65rem 0.85rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
      }
      .studio-credit-line {
        font-size: 0.78rem;
        line-height: 1.5;
      }
      .studio-credit-link {
        display: block;
        margin: 0.3rem auto 0;
        width: fit-content;
        max-width: 100%;
        white-space: normal;
        overflow-wrap: anywhere;
      }
    }

    /* Feed-In Sub-Wizard */
    .feed-in-wizard { margin: 1rem 0; }
    .fi-step { padding: 0.5rem 0; }
    .fi-step-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.6; margin-bottom: 0.75rem; }
    .fi-type-grid { display: flex; flex-direction: column; gap: 0.75rem; max-width: 520px; }
    .fi-type-btn {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      text-align: left;
      padding: 0;
      border: 1.5px solid var(--cream-2);
      border-radius: 12px;
      overflow: hidden;
      background: #fff;
      cursor: pointer;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .fi-type-btn:hover, .fi-type-btn.selected {
      border-color: var(--leaf-2);
      background: #fff;
      box-shadow: 0 4px 16px rgba(45, 90, 61, 0.1);
    }
    .fi-type-btn .fi-type-image-slot {
      width: 100%;
      min-width: 100%;
    }
    .fi-type-btn .fi-type-image-slot[hidden] { display: none !important; }
    .fi-type-btn .fi-type-image-slot img {
      width: 100%;
      height: auto;
      object-fit: unset;
      display: block;
      border-radius: 0;
      margin: 0;
      max-height: none;
    }
    .fi-type-btn .appt-info { padding: 1rem 1.25rem; }
    .fi-type-name { display: block; font-weight: 600; margin-bottom: 0.2rem; }
    .fi-type-desc { display: block; font-size: 0.8rem; opacity: 0.85; line-height: 1.4; white-space: pre-line; }

    .fi-style-preview {
      margin: 0 0 1rem;
      max-width: 520px;
    }
    .fi-style-preview.appt-card { cursor: default; }
    .fi-style-preview .appt-img,
    .fi-style-preview .appt-img img {
      width: 100%;
      max-height: none;
    }
    .fi-style-preview .appt-img img {
      height: auto;
      object-fit: unset;
      display: block;
    }
    .fi-style-preview .appt-desc {
      display: block;
      white-space: pre-line;
    }

    /* Feed-In wizard: force titles to brand color (avoid mobile link-blue) */
    .fi-service-card,
    .fi-service-card .fi-service-name,
    .fi-type-btn,
    .fi-type-btn .fi-type-name,
    .fi-type-btn .appt-name,
    .fi-size-btn,
    .fi-size-btn * {
      color: var(--color-primary, var(--leaf-2));
    }
    .fi-service-card.selected,
    .fi-service-card.selected .fi-service-name,
    .fi-type-btn.selected,
    .fi-type-btn.selected .fi-type-name,
    .fi-type-btn.selected .appt-name,
    .fi-size-btn.selected,
    .fi-size-btn.selected * {
      color: var(--color-primary, var(--leaf-2));
    }
    .fi-type-btn .fi-type-desc,
    .fi-type-btn .appt-desc,
    .fi-style-preview .appt-desc {
      color: var(--muted);
    }

    .fi-size-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
    .fi-size-btn {
      padding: 0.6rem 1.1rem; border: 1.5px solid var(--border-color, #ddd);
      border-radius: 6px; background: transparent; cursor: pointer; font-weight: 500;
      transition: border-color 0.15s, background 0.15s;
    }
    .fi-size-btn:hover, .fi-size-btn.selected { border-color: var(--color-primary, var(--leaf-2)); background: var(--primary-light, #f9f2ee); }

    .fi-back-btn { background: none; border: none; color: var(--color-primary, var(--leaf-2)); cursor: pointer; font-size: 0.85rem; padding: 0.4rem 0; margin-top: 0.5rem; }
    .fi-included-length { margin-bottom: 1rem; font-size: 0.9rem; }
    .fi-label { font-weight: 600; margin-right: 0.3rem; }
    .fi-no-charge { font-size: 0.8rem; opacity: 0.6; margin-left: 0.3rem; }
    .fi-sublabel { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
    .fi-radios, .fi-checks { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }

    /* Step 3 length upgrade: radio "pills" */
    #feedInLengthRadios.fi-radios {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 0.25rem;
    }
    #feedInLengthRadios.fi-radios label {
      position: relative;
      display: inline-flex;
      align-items: center;
      cursor: pointer;
    }
    #feedInLengthRadios.fi-radios input[type="radio"] {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }
    #feedInLengthRadios .fi-radio-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 9px 12px;
      border-radius: 999px;
      border: 1.5px solid #e0ddd5;
      background: #fff;
      color: var(--color-primary, var(--leaf-2));
      font-size: 0.9rem;
      font-weight: 600;
      line-height: 1.1;
      white-space: nowrap;
      transition: border-color 0.15s, background 0.15s, color 0.15s;
    }
    #feedInLengthRadios.fi-radios label:hover .fi-radio-pill {
      border-color: var(--color-primary, var(--leaf-2));
      background: #f7f5f0;
    }
    #feedInLengthRadios.fi-radios input[type="radio"]:checked + .fi-radio-pill {
      border-color: var(--color-primary, var(--leaf-2));
      background: var(--color-primary, var(--leaf-2));
      color: #fff;
    }

    .fi-radios label, .fi-checks label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; cursor: pointer; }

    /* Step 3 add-ons: modern cards */
    .fi-addon-card {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 14px 16px;
      border: 1.5px solid #e0ddd5;
      border-radius: 12px;
      background: #fff;
      cursor: pointer;
      transition: border-color 0.15s, background 0.15s;
      margin-bottom: 8px;
      width: 100%;
      box-sizing: border-box;
    }
    .fi-addon-card:hover {
      border-color: var(--color-primary, var(--leaf-2));
      background: #f7f5f0;
    }
    .fi-addon-card.selected {
      border-color: var(--color-primary, var(--leaf-2));
      background: #f0f4f1;
    }
    .fi-addon-card input[type="checkbox"] {
      margin-top: 2px;
      width: 18px;
      height: 18px;
      accent-color: var(--color-primary, var(--leaf-2));
      flex-shrink: 0;
      cursor: pointer;
    }
    .fi-addon-card-body {
      flex: 1;
      min-width: 0;
    }
    .fi-addon-card-title {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      color: var(--color-primary, var(--leaf-2));
      font-size: 0.95rem;
      gap: 10px;
    }
    .fi-addon-card-title > span:first-child {
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .fi-addon-card-price {
      font-weight: 600;
      color: var(--color-primary, var(--leaf-2));
      white-space: nowrap;
      margin-left: 8px;
      flex-shrink: 0;
    }
    .fi-addon-card-desc {
      font-size: 0.82rem;
      color: #6b6b6b;
      margin-top: 3px;
      line-height: 1.45;
    }

    .fi-photo-section { background: var(--surface-alt, #faf8f6); border: 1.5px dashed var(--border-color, #ddd); border-radius: 8px; padding: 1rem; margin: 1rem 0; }
    .fi-photo-notice { font-size: 0.9rem; margin-bottom: 0.75rem; }
    .fi-photo-input { display: block; margin-bottom: 0.5rem; }
    .fi-photo-preview { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 10px; }
    .fi-photo-preview img { width: 64px; height: 64px; object-fit: cover; border-radius: 4px; }
    .fi-photo-required { color: #c0392b; font-size: 0.85rem; margin-top: 8px; }

    .fi-photo-upload-section {
      border: 2px dashed var(--color-primary, var(--leaf-2));
      border-radius: 12px;
      background: #f7f9f7;
      padding: 16px 18px;
      margin: 14px 0;
    }
    .fi-photo-upload-title {
      font-weight: 700;
      color: var(--color-primary, var(--leaf-2));
      font-size: 0.95rem;
      margin-bottom: 6px;
    }
    .fi-photo-upload-sub {
      font-size: 0.82rem;
      color: #6b6b6b;
      margin-bottom: 10px;
      line-height: 1.45;
    }
    .fi-photo-upload-section input[type="file"] {
      display: block;
      width: 100%;
      padding: 10px;
      border: 1.5px solid var(--color-primary, var(--leaf-2));
      border-radius: 8px;
      background: #fff;
      color: var(--color-primary, var(--leaf-2));
      font-size: 0.9rem;
      cursor: pointer;
      box-sizing: border-box;
    }

    .fi-step-image {
      width: 100%;
      height: auto;
      object-fit: unset;
      border-radius: 12px;
      margin: 0 0 12px;
      display: block;
    }
    .fi-type-btn .fi-type-card-image {
      max-height: none;
      margin: 0;
    }

    .fi-service-desc {
      font-size: 0.9rem;
      color: var(--text, #222);
      line-height: 1.5;
      margin: 0.75rem 0;
      padding: 0.75rem 0.85rem;
      background: rgba(250, 248, 246, 0.9);
      border: 1px solid var(--border-color, #ddd);
      border-radius: 8px;
    }

    .fi-price-preview { font-size: 1rem; font-weight: 600; margin: 0.75rem 0; }
    .fi-step-c-actions { display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; margin-top: 0.5rem; flex-wrap: wrap; }
    .fi-actions-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 20px;
      gap: 12px;
    }
    .fi-actions-row .fi-back-btn {
      background: none;
      border: none;
      color: var(--color-primary, var(--leaf-2));
      font-size: 0.9rem;
      cursor: pointer;
      padding: 0;
      text-decoration: underline;
      flex-shrink: 0;
      margin-top: 0;
    }
    .fi-select-btn {
      background-color: var(--color-primary, var(--leaf-2));
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 12px 24px;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: opacity 0.15s;
      white-space: nowrap;
      font-family: inherit;
    }
    .fi-select-btn:hover { opacity: 0.88; }
    .fi-select-btn:disabled {
      background-color: #aab8af;
      cursor: not-allowed;
    }
    .fi-confirm-btn {
      background-color: var(--color-primary, var(--leaf-2));
      color: #ffffff;
      border: none;
      padding: 14px 28px;
      border-radius: 50px;
      cursor: pointer;
      font-weight: 600;
      font-size: 1rem;
      font-family: inherit;
      transition: opacity 0.15s;
      flex: 1 1 auto;
      min-width: 0;
    }
    .fi-confirm-btn:hover { opacity: 0.88; }
    .fi-confirm-btn:disabled {
      background-color: #aab8af;
      cursor: not-allowed;
      opacity: 1;
    }

    .fi-price-disclaimer {
      font-size: 0.8rem;
      color: var(--text-muted, #888);
      line-height: 1.5;
      margin-top: 0.75rem;
      padding: 0.6rem 0.75rem;
      background: var(--surface-alt, #faf8f6);
      border-radius: 6px;
      border-left: 3px solid var(--color-primary, var(--leaf-2));
    }
    .fi-price-disclaimer--small {
      font-size: 0.75rem;
      margin-top: 0.4rem;
      padding: 0.4rem 0.6rem;
    }

    /* Feed-In: size/count select styling (native select was invisible on light bg) */
    .fi-size-select,
    select.fi-size-select,
    .feed-in-wizard select.fi-size-select {
      background-color: var(--color-primary, var(--leaf-2));
      color: #fff;
      border: 1.5px solid var(--color-primary, var(--leaf-2));
      border-radius: 8px;
      padding: 8px 12px;
      font-size: 1rem;
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23fff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      padding-right: 36px;
      cursor: pointer;
    }
    .fi-size-select option {
      background-color: #fff;
      color: #1a1a1a;
    }