/* ============================================================
   Luxury Looks By Ella Marie — pink & gold luxury theme
   ============================================================ */

:root {
  --pink-50:  #fff5f9;
  --pink-100: #ffe0ec;
  --pink-200: #ffc9dc;
  --pink-300: #ff9ec0;
  --pink-400: #ff6fa3;
  --pink-500: #e8468a;   /* brand pink */
  --pink-600: #c8236b;
  --pink-700: #9e1a55;

  --gold-300: #f3d98a;
  --gold-400: #e6c156;
  --gold-500: #d4af37;   /* brand gold */
  --gold-600: #b0902a;
  --gold-700: #8a6f21;

  --ink:       #0d0708;        /* near-black for text */
  --ink-soft:  #4a3741;
  --noir:      #0a0607;        /* deep black for backgrounds */
  --noir-2:    #141014;        /* slightly softer black for depth */
  --cream:     #fdfbf7;
  --paper:     #ffffff;

  --shadow-sm: 0 2px 8px rgba(184, 20, 80, 0.08);
  --shadow-md: 0 8px 24px rgba(184, 20, 80, 0.12);
  --shadow-lg: 0 18px 48px rgba(184, 20, 80, 0.18);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, "SF Pro Text", "Inter", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(232, 70, 138, 0.35), transparent 55%),
    radial-gradient(ellipse at 85% 35%, rgba(200, 35, 107, 0.28), transparent 55%),
    radial-gradient(ellipse at 10% 75%, rgba(232, 70, 138, 0.22), transparent 55%),
    radial-gradient(ellipse at 90% 95%, rgba(212, 175, 55, 0.15), transparent 55%),
    var(--noir);
  background-attachment: fixed;
  color: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--pink-600); text-decoration: none; }
a:hover { color: var(--pink-700); }

/* ---------- HERO (with designed logo image) ---------- */

.brand {
  text-align: center;
  padding: 2.5rem 1rem 3rem;
}

.brand-logo {
  display: block;
  margin: 0 auto;
  max-width: min(640px, 92vw);
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55),
              0 0 0 1px rgba(212, 175, 55, 0.15);
}

.tagline {
  margin-top: 1.5rem;
  color: var(--gold-300);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---------- NAV ---------- */

.nav {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  padding: 1rem;
  background: rgba(10, 6, 7, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--gold-500);
  border-bottom: 1px solid var(--gold-500);
  position: sticky;
  top: 0;
  z-index: 10;
  flex-wrap: wrap;
}

.nav a {
  color: var(--gold-300);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color .15s ease;
}

.nav a:hover { color: var(--pink-300); }

/* ---------- SECTIONS ---------- */

section {
  padding: 4rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 5vw, 2.75rem);
  margin: 0 0 0.4rem;
  text-align: center;
  color: var(--gold-400);
  font-style: italic;
  letter-spacing: 0.01em;
}

.section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin: 0.85rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold-400), var(--gold-500), var(--gold-400), transparent);
  border-radius: 2px;
}

.section-intro {
  text-align: center;
  color: rgba(253, 251, 247, 0.75);
  max-width: 640px;
  margin: 1rem auto 2.5rem;
}

/* ---------- SERVICES ---------- */

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

.service-card {
  background: linear-gradient(180deg, rgba(20, 16, 20, 0.85), rgba(10, 6, 7, 0.85));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(232, 70, 138, 0.3);
  border-color: var(--gold-400);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-400), var(--pink-400), var(--gold-400), transparent);
}

.service-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  margin: 0 0 0.6rem;
  color: var(--gold-300);
}

.service-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--pink-300);
  margin: 0.4rem 0;
  font-family: "Playfair Display", Georgia, serif;
}

.service-note {
  font-size: 0.875rem;
  color: rgba(253, 251, 247, 0.65);
  font-style: italic;
  min-height: 2.5em;
}

.service-perk {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.3rem 0.8rem;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
}

/* ---------- PORTFOLIO ---------- */

.portfolio {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}

.portfolio-item {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, rgba(232, 70, 138, 0.25), rgba(10, 6, 7, 0.85));
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  overflow: hidden;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-orientation: from-image;
}

/* ---------- SHOP (shampoo) ---------- */

.shop {
  background: linear-gradient(180deg, rgba(232, 70, 138, 0.08), rgba(10, 6, 7, 0.4));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  padding: 3rem 1.5rem;
}

.product-card {
  max-width: 460px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(180deg, var(--noir-2), var(--noir));
  border: 1px solid var(--gold-600);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
}

.product-image {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, rgba(232, 70, 138, 0.3), rgba(212, 175, 55, 0.2));
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 1.7rem;
  margin: 0 0 0.4rem;
  color: var(--gold-300);
}

.product-card .price {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--pink-300);
}

.product-badge {
  display: inline-block;
  margin: 0.4rem 0 0.8rem;
  padding: 0.3rem 0.9rem;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--noir);
}

.product-card p {
  color: rgba(253, 251, 247, 0.72);
  font-size: 0.95rem;
  margin: 0.5rem 0;
}

/* ---------- ABOUT / SHOP PHOTOS ---------- */

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 720px) {
  .about { grid-template-columns: 1fr; }
}

.about-text h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 1.7rem;
  margin: 0 0 0.6rem;
  color: var(--gold-300);
}

.about-text p { color: rgba(253, 251, 247, 0.78); }

.about-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.about-photos .portfolio-item { aspect-ratio: 3 / 4; }

@media (max-width: 720px) {
  .about-photos { grid-template-columns: 1fr 1fr; }
}

/* ---------- BOOKING SECTION ---------- */

.booking {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(20, 16, 20, 0.9), rgba(10, 6, 7, 0.9));
  border: 1px solid var(--gold-600);
  border-radius: var(--radius-lg);
  padding: 3rem 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55),
              inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.booking-placeholder {
  text-align: center;
  color: rgba(253, 251, 247, 0.7);
  padding: 2rem;
  border: 2px dashed var(--gold-600);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
}

/* ---------- BOOKING FORM ---------- */

.form-step { margin-bottom: 2rem; }

.form-label {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-400);
  margin-bottom: 0.8rem;
  letter-spacing: 0.03em;
}

/* Service radio options */
.service-select {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}

.service-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-option-inner {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: all .15s ease;
  text-align: center;
}

.service-option-inner:hover {
  border-color: var(--gold-400);
  background: rgba(232, 70, 138, 0.08);
}

.service-option input[type="radio"]:checked + .service-option-inner {
  border-color: var(--pink-400);
  background: linear-gradient(135deg, rgba(232, 70, 138, 0.18), rgba(212, 175, 55, 0.1));
  box-shadow: 0 0 0 2px rgba(232, 70, 138, 0.35);
}

.service-option-name {
  color: var(--cream);
  font-weight: 600;
  font-size: 0.95rem;
}

.service-option-price {
  color: var(--gold-300);
  font-size: 0.85rem;
  margin-top: 0.25rem;
  font-style: italic;
}

/* Calendar */
.calendar {
  border: 1px solid var(--gold-600);
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.35);
  padding: 1rem;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.cal-nav {
  background: transparent;
  border: 1px solid var(--gold-600);
  color: var(--gold-300);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: all .15s ease;
}

.cal-nav:hover {
  background: var(--gold-500);
  color: var(--noir);
  border-color: var(--gold-500);
}

.calendar-title {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold-300);
  letter-spacing: 0.05em;
}

.calendar-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
  text-align: center;
}

.calendar-dow span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-500);
  padding: 0.3rem 0;
}

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

.cal-day {
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all .15s ease;
  overflow: hidden;
}

.cal-day.empty {
  background: transparent;
  border: none;
  cursor: default;
  pointer-events: none;
}

.cal-day.past {
  color: rgba(253, 251, 247, 0.2);
  cursor: not-allowed;
  pointer-events: none;
  background: transparent;
}

/* logo hover overlay — the logo image fills the day on hover */
.cal-day:not(.past):not(.empty):hover {
  border-color: var(--gold-400);
  box-shadow: 0 0 0 2px rgba(232, 70, 138, 0.25);
  color: transparent;
  background-image: var(--hover-logo);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  z-index: 2;
}

.cal-day.selected {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  border-color: var(--gold-400);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0 0 2px var(--gold-400);
}

.cal-day.today {
  border-color: var(--pink-400);
  font-weight: 700;
  color: var(--pink-300);
}

.cal-day-num {
  position: absolute;
  top: 6px;
  left: 8px;
  font-size: 0.9rem;
}

/* Owner-calendar day states (by aggregate booking status) */
.owner-calendar .cal-day.has-pending {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(10, 6, 7, 0.6));
  border-color: var(--gold-500);
}

.owner-calendar .cal-day.has-confirmed {
  background: linear-gradient(135deg, rgba(232, 70, 138, 0.22), rgba(10, 6, 7, 0.7));
  border-color: var(--pink-400);
  box-shadow: 0 0 0 1px rgba(232, 70, 138, 0.35);
}

.owner-calendar .cal-day.has-paid {
  background: linear-gradient(135deg, #1f7a3a, #0e4a22);
  border-color: #4ec87a;
  color: #ffffff;
  box-shadow: 0 0 0 1px #4ec87a, 0 8px 22px rgba(78, 200, 122, 0.25);
}

.owner-calendar .cal-day.has-paid .cal-day-num { color: #ffffff; font-weight: 700; }

.cal-day-count.locked {
  background: #4ec87a !important;
  color: #0a0607 !important;
  font-size: 0.85rem;
  padding: 3px 6px;
  min-width: 22px;
}

/* When hovering a paid day, don't overlay the logo — keep the green state readable */
.owner-calendar .cal-day.has-paid:hover {
  background-image: none;
  transform: scale(1.03);
  box-shadow: 0 0 0 2px #4ec87a, 0 12px 28px rgba(78, 200, 122, 0.35);
}

/* Time select */
#time-select {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--gold-600);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-size: 1rem;
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold-400) 50%),
                    linear-gradient(135deg, var(--gold-400) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

#time-select:focus { outline: none; border-color: var(--pink-400); }

/* Shampoo toggle */
.shampoo-toggle {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: all .15s ease;
}

.shampoo-toggle:hover {
  border-color: var(--gold-400);
  background: rgba(232, 70, 138, 0.06);
}

.shampoo-toggle input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--pink-500);
  flex-shrink: 0;
}

.shampoo-toggle span {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: var(--cream);
}

.shampoo-toggle span strong { color: var(--gold-300); font-weight: 600; }
.shampoo-toggle span em { font-size: 0.8rem; color: rgba(253, 251, 247, 0.65); font-style: italic; }
.shampoo-toggle .shampoo-price { color: var(--pink-300); font-weight: 700; font-size: 1.1rem; flex: 0; }

.shampoo-toggle:has(input:checked) {
  border-color: var(--pink-400);
  background: rgba(232, 70, 138, 0.12);
}

/* Form inputs */
.form-grid { display: grid; gap: 0.75rem; }

.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--gold-600);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder { color: rgba(253, 251, 247, 0.4); }

.form-grid input:focus,
.form-grid textarea:focus { outline: none; border-color: var(--pink-400); }

/* Summary */
.form-summary {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  text-align: center;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  color: var(--cream);
  padding: 0.75rem 0;
}

.summary-line strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  color: var(--pink-300);
}

.summary-fine {
  font-size: 0.8rem;
  color: rgba(253, 251, 247, 0.55);
  font-style: italic;
  margin: 0.5rem 0 1.25rem;
}

.btn-wide { width: 100%; max-width: 360px; }

/* Result message */
#booking-result {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid var(--gold-500);
  background: rgba(212, 175, 55, 0.08);
  color: var(--cream);
  white-space: pre-wrap;
  line-height: 1.6;
}

#booking-result.error {
  border-color: #d14;
  background: rgba(221, 17, 68, 0.1);
}

/* ---------- BUTTONS ---------- */

.btn, button.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(200, 35, 107, 0.3);
  transition: transform .15s ease, box-shadow .15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(200, 35, 107, 0.4);
  color: #fff;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(176, 144, 42, 0.3);
}

.btn-gold:hover {
  box-shadow: 0 12px 28px rgba(176, 144, 42, 0.4);
  color: var(--ink);
}

/* ---------- FOOTER ---------- */

.footer {
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  background: var(--noir);
  border-top: 1px solid var(--gold-600);
  color: rgba(253, 251, 247, 0.65);
  font-size: 0.9rem;
}

.footer .brand-mini {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  color: var(--pink-300);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.footer a { color: var(--gold-400); }
.footer a:hover { color: var(--pink-300); }

/* ---------- MESSAGE PAGE ---------- */

.message-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 1rem;
  background: radial-gradient(ellipse at top, var(--pink-50), var(--cream));
}

.message-card {
  max-width: 480px;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--pink-100);
}

.message-card h1 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--pink-600);
  margin-top: 0;
}

.message-card .btn { margin-top: 1rem; }

/* Owner action page (confirm/deny) */
.owner-action-card {
  max-width: 560px;
}

.mini-logo {
  display: block;
  width: 180px;
  max-width: 60%;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

.owner-action-sub {
  color: rgba(253, 251, 247, 0.78);
  font-size: 0.95rem;
}

.owner-action-sub strong { color: var(--gold-300); }
.owner-action-sub em { color: var(--pink-300); font-style: italic; }

.deny-form textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--gold-600);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-family: inherit;
  font-size: 1rem;
  resize: vertical;
  margin: 1rem 0;
}

.deny-form textarea::placeholder { color: rgba(253, 251, 247, 0.35); }
.deny-form textarea:focus { outline: none; border-color: var(--pink-400); }

.subtle-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--gold-400);
  font-style: italic;
}

.subtle-link:hover { color: var(--pink-300); }

/* Payment fallback page */
.pay-instructions {
  margin: 2rem 0;
  padding: 1.75rem 1.25rem;
  background: linear-gradient(180deg, var(--noir-2), var(--noir));
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-md);
  text-align: center;
}

.pay-step {
  color: rgba(253, 251, 247, 0.8);
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.pay-amount {
  color: var(--pink-300);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
}

.cashtag {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd875 0%, #f3d98a 30%, #d4af37 55%, #f3d98a 80%, #ffd875 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin: 0.75rem 0;
  letter-spacing: 0.02em;
  filter: drop-shadow(0 2px 6px rgba(212, 175, 55, 0.35));
}

.pay-note {
  font-size: 0.85rem;
  color: rgba(253, 251, 247, 0.7);
  margin: 1rem 0 0;
}

.pay-note code {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.4rem 0.8rem;
  background: rgba(232, 70, 138, 0.12);
  border: 1px solid var(--pink-400);
  border-radius: 999px;
  color: var(--pink-300);
  font-family: "SF Mono", Menlo, monospace;
  font-size: 0.8rem;
}

.pay-timer {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background: rgba(232, 70, 138, 0.12);
  border: 1px solid var(--pink-400);
  border-radius: 999px;
  color: var(--pink-300);
  font-size: 0.9rem;
  text-align: center;
}

/* Cash App Pay button (Square Web SDK) */
.cashapp-pay-wrap {
  margin: 2rem 0 1rem;
  text-align: center;
}

#cash-app-pay {
  margin: 0 auto;
  min-height: 60px;
}

.cashapp-status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  text-align: center;
}

.cashapp-status.ok {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-500);
  color: var(--gold-300);
}

.cashapp-status.err {
  background: rgba(232, 70, 138, 0.12);
  border: 1px solid var(--pink-400);
  color: var(--pink-300);
}

.pay-fallback {
  margin-top: 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.25);
}

.pay-fallback summary {
  cursor: pointer;
  color: var(--gold-400);
  font-size: 0.85rem;
  font-style: italic;
  padding: 0.4rem 0;
}

.pay-fallback summary:hover { color: var(--pink-300); }

.pay-fallback .pay-instructions {
  background: none;
  border: none;
  padding: 0.5rem 0 0.5rem;
  margin: 0;
}

.paid-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--noir);
  font-size: 2.4rem;
  font-weight: 900;
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.45);
}

/* Waiting-for-Ella spinner */
.status-spinner {
  width: 58px;
  height: 58px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  border: 3px solid rgba(212, 175, 55, 0.2);
  border-top-color: var(--pink-400);
  border-right-color: var(--gold-400);
  animation: spin 1.1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Returning-customer banner above the booking form */
.my-booking-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  margin: 0 auto 2rem;
  max-width: 720px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, var(--noir-2), var(--noir));
  border: 1px solid var(--gold-500);
  color: var(--cream);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.my-booking-banner.pending  { border-color: var(--gold-500); }
.my-booking-banner.confirmed { border-color: var(--pink-400); box-shadow: 0 0 0 1px rgba(232, 70, 138, 0.3), 0 12px 32px rgba(0,0,0,0.5); }
.my-booking-banner.paid { border-color: #4ec87a; background: linear-gradient(180deg, #1f7a3a, #0e4a22); color: #fff; }
.my-booking-banner.denied,
.my-booking-banner.expired { border-color: var(--pink-400); opacity: 0.85; }

.my-booking-banner .mb-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-300);
  font-size: 1.3rem;
  font-weight: 700;
}
.my-booking-banner .mb-icon-ok {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--noir);
}

.my-booking-banner .mb-body { display: flex; flex-direction: column; gap: 2px; }
.my-booking-banner .mb-body strong {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  color: var(--gold-300);
  font-size: 1.05rem;
}
.my-booking-banner.paid .mb-body strong { color: #fff; }
.my-booking-banner .mb-body span {
  font-size: 0.85rem;
  color: rgba(253, 251, 247, 0.75);
}
.my-booking-banner.paid .mb-body span { color: rgba(255, 255, 255, 0.9); }

.my-booking-banner .mb-cta {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(200, 35, 107, 0.35);
}
.my-booking-banner .mb-cta:hover { transform: translateY(-1px); color: #fff; }

.my-booking-banner .mb-dismiss {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-300);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}
.my-booking-banner .mb-dismiss:hover { background: rgba(232, 70, 138, 0.15); color: var(--pink-300); }

/* Customer's own pending/confirmed/paid date marker on the public calendar */
.cal-day.my-pending {
  outline: 2px solid var(--gold-400);
  outline-offset: -2px;
}
.cal-day.my-confirmed {
  outline: 2px solid var(--pink-400);
  outline-offset: -2px;
  box-shadow: 0 0 0 3px rgba(232, 70, 138, 0.2);
}
.cal-day.my-paid {
  background: #1f7a3a !important;
  border-color: #4ec87a !important;
  color: #fff !important;
  box-shadow: 0 0 0 2px #4ec87a;
}

/* Request Sent confirmation card (shown inline after booking submit) */
.request-sent-card {
  max-width: 520px;
  margin: 2rem auto 0;
  padding: 2.5rem 2rem;
  background: linear-gradient(180deg, var(--noir-2), var(--noir));
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  text-align: center;
  color: var(--cream);
}

.request-sent-card .rs-check {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--noir);
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.45);
}

.request-sent-card .rs-title {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  color: var(--gold-300);
  font-size: 2rem;
  margin: 0 0 0.75rem;
}

.request-sent-card .rs-sub {
  color: rgba(253, 251, 247, 0.8);
  font-size: 0.95rem;
  margin: 0 0 1.75rem;
  line-height: 1.55;
}

.request-sent-card .rs-details {
  display: grid;
  gap: 0.75rem;
  margin: 0 auto 2rem;
  max-width: 360px;
  text-align: left;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.25);
}

.request-sent-card .rs-details > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.request-sent-card .rs-details span {
  color: rgba(253, 251, 247, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.request-sent-card .rs-details strong {
  color: var(--gold-300);
  font-weight: 600;
}

/* Owner login + calendar */
.owner-shell {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.owner-login-card {
  max-width: 420px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  background: linear-gradient(180deg, var(--noir-2), var(--noir));
  border: 1px solid var(--gold-600);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  text-align: center;
}

.owner-login-card .mini-logo { margin-bottom: 1.5rem; }
.owner-login-card input {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--gold-600);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-size: 1rem;
  margin: 1rem 0;
}

.owner-login-card input:focus { outline: none; border-color: var(--pink-400); }

.owner-login-card .error {
  color: #ff6b8a;
  font-size: 0.85rem;
  margin: 0.5rem 0 0;
}

.owner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1rem;
  border-bottom: 1px solid var(--gold-600);
  margin-bottom: 2rem;
}

.owner-header .mini-logo {
  width: 100px;
  margin: 0;
}

.owner-header a {
  color: var(--gold-400);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Owner calendar */
.owner-calendar {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--gold-600);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.owner-calendar .calendar-grid .cal-day { aspect-ratio: 1 / 1.15; }

.cal-day-count {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--pink-500);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 999px;
  min-width: 18px;
  text-align: center;
}

.day-detail {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(180deg, var(--noir-2), var(--noir));
  border: 1px solid var(--gold-600);
  border-radius: var(--radius-md);
}

.day-detail h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  color: var(--gold-300);
  margin: 0 0 1rem;
}

.booking-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  align-items: center;
}

.booking-row:first-of-type { border-top: none; }

.booking-row .time {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  color: var(--pink-300);
}

.booking-row .details strong { color: var(--gold-300); }
.booking-row .details small { display: block; color: rgba(253, 251, 247, 0.6); font-size: 0.8rem; margin-top: 2px; }

.booking-row .status {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.status.paid { background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); color: var(--noir); }
.status.confirmed { background: rgba(232, 70, 138, 0.2); color: var(--pink-300); border: 1px solid var(--pink-400); }

.empty-state {
  text-align: center;
  color: rgba(253, 251, 247, 0.5);
  padding: 3rem 1rem;
  font-style: italic;
}
