:root {
  --bg: #070707;
  --surface: #151515;
  --surface-soft: #1f1f1f;
  --line: #3a2f15;
  --line-strong: #5a4617;
  --gold: #d2b149;
  --gold-bright: #f2c93a;
  --muted: #9d927b;
  --text: #f7f7f7;
  --disabled: #555;
  --green: #2bd66f;
  --error: #ef5b5b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 20%, rgba(134, 93, 20, 0.16), transparent 34rem),
    var(--bg);
  font-family: Arial, Helvetica, sans-serif;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.screen {
  min-height: 100vh;
  padding: 2rem 1rem;
}

.center-screen {
  display: grid;
  place-items: center;
  text-align: center;
}

.brand-mark {
  display: block;
  width: 122px;
  height: 122px;
  margin: 0 auto 2rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 42px rgba(210, 177, 73, 0.12);
  object-fit: cover;
}

.brand-mark.small {
  width: 44px;
  height: 44px;
  margin: 0;
  border-width: 1px;
}

.brand-title {
  margin: 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  font-weight: 400;
  letter-spacing: 0.16em;
}

.brand-subtitle,
.divider-title,
.section-title {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.32em;
}

.brand-subtitle {
  margin: 0.35rem 0 4.2rem;
  font-size: 1rem;
}

.divider-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
  width: min(400px, 90vw);
  margin: 0 auto 3.3rem;
  font-size: 0.9rem;
}

.divider-title::before,
.divider-title::after {
  height: 1px;
  content: "";
  background: var(--line-strong);
}

.action-stack {
  display: grid;
  gap: 1.25rem;
  width: min(400px, 90vw);
  margin: 0 auto;
}

.primary-button,
.outline-button,
.time-button,
.service-card,
.input-field,
.summary-card,
.details-card {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
}

.primary-button,
.outline-button {
  min-height: 66px;
  color: #050505;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  border-color: var(--gold);
}

.primary-button {
  background: var(--gold);
}

.outline-button {
  color: var(--gold);
  background: transparent;
}

.text-link {
  margin-top: 1.4rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  text-decoration: underline;
  font-size: 0.88rem;
}

.footer-note {
  margin-top: 3.2rem;
  color: #4c4c4c;
}

.location-section {
  padding: 3.4rem 1rem 4rem;
  border-top: 1px solid #211b0d;
  background: #050505;
}

.location-inner {
  width: min(700px, 100%);
  margin: 0 auto;
  text-align: center;
}

.location-inner h2 {
  margin: 0.35rem 0 1.1rem;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  font-weight: 400;
}

.location-address {
  margin: 0 0 1.6rem;
  color: var(--muted);
  line-height: 1.6;
}

.map-frame {
  overflow: hidden;
  width: 100%;
  height: 320px;
  margin-bottom: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.25) contrast(1.05);
}

.map-directions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 58px;
  padding: 0 2rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  height: 80px;
  padding: 0 2.4rem;
  border-bottom: 1px solid #211b0d;
  background: rgba(7, 7, 7, 0.96);
}

.back {
  width: 30px;
  height: 30px;
  border: 0;
  color: var(--gold-bright);
  background: transparent;
  font-size: 2rem;
  line-height: 1;
}

.topbar-name {
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.flow {
  width: min(600px, calc(100vw - 2rem));
  margin: 2.6rem auto 4rem;
}

.step {
  margin-bottom: 3.3rem;
}

.reveal {
  animation: reveal-step 220ms ease-out;
}

@keyframes reveal-step {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.45rem;
}

.step-number {
  color: var(--gold-bright);
  font-family: "Courier New", monospace;
  font-size: 0.95rem;
}

.section-header::before,
.section-header::after {
  height: 1px;
  content: "";
  background: var(--line);
}

.section-title {
  font-size: 0.9rem;
  white-space: nowrap;
}

.hint {
  margin: -0.8rem 0 1.3rem;
  color: var(--muted);
}

.calendar {
  padding: 2.2rem 2.4rem;
}

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

.calendar-top h2 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
}

.calendar-nav {
  border: 0;
  color: var(--gold);
  background: transparent;
  font-size: 2rem;
}

.week,
.days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1.05rem;
  text-align: center;
}

.week {
  margin-bottom: 1.4rem;
  color: var(--muted);
}

.day {
  display: grid;
  place-items: center;
  height: 58px;
  border: 0;
  border-radius: 7px;
  color: var(--text);
  background: transparent;
  font-weight: 700;
}

.day.muted {
  color: #3f3f3f;
}

.day.selected,
.time-button.selected,
.service-card.selected {
  color: #030303;
  background: var(--gold);
  border-color: var(--gold);
}

.day.off {
  color: #fff;
  background: var(--error);
  font-weight: 800;
}

.day.fixed-off {
  color: #8a8a8a;
  background: #241414;
  border: 1px dashed #5a3030;
  cursor: not-allowed;
}

.off-calendar-note {
  margin: -0.6rem 0 1.2rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.off-calendar {
  padding: 1.2rem 0 0;
}

.off-panel .blocked-panel-head {
  margin-bottom: 1rem;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.time-button {
  min-height: 58px;
  color: var(--text);
  font-weight: 700;
}

.time-button.booked,
.time-button:disabled {
  color: #6a6a6a;
  background: #202020;
  border-color: #2d2d2d;
  cursor: not-allowed;
}

.services {
  display: grid;
  gap: 0.9rem;
}

.service-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 90px;
  padding: 1.35rem 1.55rem;
  color: var(--text);
  text-align: left;
}

.service-card strong,
.service-price {
  display: block;
  font-size: 1.05rem;
}

.service-card span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
}

.service-price {
  color: var(--gold-bright);
  font-weight: 700;
}

.service-side {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.service-check {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-bright);
  font-weight: 800;
}

.service-card.selected .service-check {
  color: #050505;
  border-color: #050505;
}

.service-card.selected .service-price,
.service-card.selected span {
  color: #050505;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
  background: var(--surface);
}

.cart-summary strong {
  color: var(--gold-bright);
}


.form-grid {
  display: grid;
  gap: 1rem;
}

.input-field {
  width: 100%;
  height: 57px;
  padding: 0 1.2rem;
  color: var(--text);
  outline: none;
}

.input-field::placeholder {
  color: #8f8f8f;
}

.form-error {
  margin: -0.3rem 0 0;
  color: var(--error);
  font-size: 0.9rem;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  min-height: 66px;
  margin-top: 0.35rem;
  border: 0;
  border-radius: 7px;
  color: #060606;
  background: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 800;
}

.submit-button:disabled {
  color: #777;
  background: #242424;
  cursor: not-allowed;
}

.summary-card {
  padding: 1.45rem 1.55rem;
}

.summary-card h3,
.details-card h3 {
  margin: 0 0 1rem;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.55rem 0;
  color: var(--muted);
}

.summary-row.stacked {
  align-items: flex-start;
}

.summary-row.stacked strong {
  max-width: 65%;
  text-align: right;
}


.summary-row strong {
  color: var(--text);
}

.confirmed {
  width: min(400px, 90vw);
  margin: auto;
  padding-top: 1.5rem;
}

.check-ring {
  display: grid;
  place-items: center;
  width: 102px;
  height: 102px;
  margin: 0 auto 1.7rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 3.8rem;
}

.confirmed h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
}

.confirmed > p {
  margin: 0.6rem 0 2.6rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.details-card {
  padding: 1.6rem;
  text-align: left;
}

.detail-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.75rem;
  margin: 1.05rem 0;
}

.detail-icon {
  color: var(--gold-bright);
}

.detail-label {
  color: var(--muted);
}

.detail-value {
  margin-top: 0.25rem;
  font-weight: 700;
}

.whatsapp {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.9rem;
  width: 100%;
  min-height: 92px;
  margin: 2.4rem 0 1rem;
  padding: 0 2rem;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 0 24px rgba(43, 214, 111, 0.22);
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.secondary-link {
  width: 100%;
  min-height: 57px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
  background: transparent;
  font-size: 1rem;
}

.reminder-card {
  padding: 1.5rem 1.4rem;
  margin-bottom: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  text-align: left;
}

.reminder-card h3 {
  margin: 0 0 0.4rem;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
}

.reminder-card > p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.reminder-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}

.reminder-chip {
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--text);
  background: transparent;
  font-weight: 700;
  font-size: 0.85rem;
}

.reminder-chip.selected {
  color: #050505;
  background: var(--gold);
  border-color: var(--gold);
}

.reminder-card .outline-button {
  min-height: 58px;
}

.gallery-wrap {
  width: min(1100px, calc(100vw - 2rem));
  margin: 2.4rem auto 4rem;
}

.gallery-title {
  margin: 0.3rem 0 0.6rem;
  color: var(--gold);
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.06em;
}

.gallery-subtitle {
  max-width: 520px;
  margin: 0 auto 2.6rem;
  color: var(--muted);
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.gallery-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 0 0 rgba(242, 201, 58, 0);
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(55%) brightness(0.82);
  transition: transform 550ms ease, filter 550ms ease;
}

.gallery-tag {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-bright);
  background: rgba(7, 7, 7, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.gallery-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 1.6rem 1.15rem 1.25rem;
  background: linear-gradient(to top, rgba(4, 4, 4, 0.96) 18%, rgba(4, 4, 4, 0.55) 62%, transparent);
  text-align: left;
  transform: translateY(38%);
  transition: transform 380ms ease;
}

.gallery-overlay h3 {
  margin: 0 0 0.3rem;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 400;
}

.gallery-overlay p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 320ms ease 80ms, max-height 320ms ease;
}

.gallery-cta {
  display: inline-block;
  margin-top: 0.7rem;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 320ms ease 120ms, transform 320ms ease 120ms;
}

.gallery-card:hover,
.gallery-card:focus-visible {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45), 0 0 26px rgba(242, 201, 58, 0.28);
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.12);
  filter: grayscale(0%) brightness(1);
}

.gallery-card:hover .gallery-tag,
.gallery-card:focus-visible .gallery-tag {
  opacity: 1;
  transform: translateY(0);
}

.gallery-card:hover .gallery-overlay,
.gallery-card:focus-visible .gallery-overlay {
  transform: translateY(0);
}

.gallery-card:hover .gallery-overlay p,
.gallery-card:focus-visible .gallery-overlay p {
  opacity: 1;
  max-height: 80px;
}

.gallery-card:hover .gallery-cta,
.gallery-card:focus-visible .gallery-cta {
  opacity: 1;
  transform: translateX(0);
}

.gallery-footer {
  display: flex;
  justify-content: center;
  margin-top: 2.6rem;
}

.gallery-footer .primary-button {
  width: min(360px, 100%);
}

.gallery-category {
  margin-bottom: 2.6rem;
}

.gallery-category-title {
  margin: 0 0 1.2rem;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 1.05rem;
}

.service-category-list {
  display: grid;
  gap: 0.8rem;
}

.service-list-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 76px;
  padding: 1.05rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--text);
  background: var(--surface);
  text-align: left;
  transition: border-color 150ms ease, background 150ms ease;
}

.service-list-card:hover,
.service-list-card:focus-visible {
  border-color: var(--gold);
  background: var(--surface-soft);
}

.service-list-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.service-list-info span {
  color: var(--muted);
  font-size: 0.85rem;
}

.service-list-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
}

.service-list-price {
  color: var(--gold-bright);
  font-weight: 700;
}

.service-list-cta {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-list-card:hover .service-list-cta,
.service-list-card:focus-visible .service-list-cta {
  color: var(--gold-bright);
}

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

@media (max-width: 680px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .service-list-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-list-side {
    align-items: flex-start;
    flex-direction: row;
    gap: 0.8rem;
  }

  .gallery-overlay {
    transform: translateY(0);
  }

  .gallery-overlay p {
    opacity: 1;
    max-height: 80px;
  }

  .gallery-cta {
    opacity: 1;
    transform: translateX(0);
  }

  .gallery-tag {
    opacity: 1;
    transform: translateY(0);
  }
}
  width: min(900px, calc(100vw - 2rem));
  margin: 2.6rem auto 5rem;
}

.dashboard-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
}

.dashboard-head h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
}

.dashboard-head p:last-child {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.outline-small,
.date-chip,
.icon-button {
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--gold);
  background: transparent;
}

.outline-small {
  min-width: 92px;
  min-height: 42px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.dashboard-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  margin: -0.6rem 0 1.4rem;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.stat-card {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
}

.stat-card span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--muted);
}

.stat-card strong {
  color: var(--text);
  font-size: 1.35rem;
}

.schedule-toolbar {
  display: flex;
  gap: 0.7rem;
  margin: 1.6rem 0 1rem;
}

.date-chip {
  min-width: 88px;
  min-height: 42px;
  color: var(--muted);
  font-weight: 700;
}

.date-chip.selected {
  color: #050505;
  background: var(--gold);
  border-color: var(--gold);
}

.appointment-list {
  display: grid;
  gap: 0.85rem;
}

.blocked-panel {
  margin: 1.4rem 0 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
}

.blocked-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.blocked-panel h2 {
  margin: 0;
  font-size: 1rem;
}

.blocked-panel p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.block-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.55rem;
}

.block-button {
  display: grid;
  gap: 0.25rem;
  min-height: 64px;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--text);
  background: #111;
}

.block-button span {
  color: var(--muted);
  font-size: 0.78rem;
}

.block-button.blocked {
  color: #050505;
  background: var(--gold);
  border-color: var(--gold);
}

.block-button.blocked span {
  color: #2a2108;
}

.block-button.booked,
.block-button:disabled {
  color: #6a6a6a;
  background: #202020;
  border-color: #2d2d2d;
  cursor: not-allowed;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 160px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
  background: var(--surface);
}

.appointment-card {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
}

.appointment-time {
  display: grid;
  place-items: center;
  min-height: 82px;
  border-right: 1px solid var(--line);
}

.appointment-time strong {
  font-size: 1.45rem;
}

.appointment-time span,
.appointment-meta {
  color: var(--muted);
}

.appointment-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.appointment-title h2 {
  margin: 0;
  font-size: 1.12rem;
}

.status {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: #07140c;
  background: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}

.status.waiting {
  color: #090909;
  background: var(--gold);
}

.status.no-show {
  color: #fff;
  background: var(--error);
}

.status.pending-payment {
  color: #050505;
  background: #ff9f43;
}

.payment-notice {
  padding: 1.1rem 1.3rem;
  margin-bottom: 0.2rem;
  border: 1px solid #ff9f43;
  border-radius: 7px;
  background: rgba(255, 159, 67, 0.1);
  text-align: left;
}

.payment-notice strong {
  display: block;
  margin-bottom: 0.4rem;
  color: #ff9f43;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.payment-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.appointment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
}

.appointment-meta strong {
  color: var(--gold-bright);
}

.appointment-actions {
  display: flex;
  gap: 0.5rem;
}

.icon-button {
  width: 42px;
  height: 42px;
  font-size: 1.15rem;
}

.gallery-entry {
  position: relative;
  overflow: hidden;
}

.gallery-entry::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(100deg, transparent 30%, rgba(242, 201, 58, 0.35) 50%, transparent 70%);
  transform: translateX(-140%);
}

.gallery-entry:hover::after {
  animation: sheen 1.1s ease;
}

@keyframes sheen {
  to {
    transform: translateX(140%);
  }
}

.help-button {
  position: fixed;
  right: 1rem;
  bottom: 0.9rem;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #111;
  background: #f4f4f4;
  font-size: 1.6rem;
}

.sync-indicator {
  position: fixed;
  left: 50%;
  top: 1rem;
  z-index: 20;
  transform: translateX(-50%);
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-bright);
  background: rgba(7, 7, 7, 0.92);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  animation: sync-fade-in 180ms ease-out;
}

@keyframes sync-fade-in {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@media (max-width: 680px) {
  .topbar {
    height: 70px;
    padding: 0 1rem;
  }

  .topbar-name {
    font-size: 0.85rem;
  }

  .calendar {
    padding: 1.4rem 1rem;
  }

  .week,
  .days {
    gap: 0.35rem;
  }

  .day {
    height: 44px;
  }

  .time-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header {
    gap: 0.65rem;
  }

  .section-title {
    font-size: 0.76rem;
    letter-spacing: 0.22em;
  }

  .brand-title {
    letter-spacing: 0.08em;
  }

.cart-summary,
  .summary-row,
  .summary-row.stacked {
    align-items: flex-start;
    flex-direction: column;
  }

  .summary-row.stacked strong {
    max-width: 100%;
    text-align: left;
  }


  .dashboard-head,
  .appointment-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .block-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .schedule-toolbar {
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .appointment-card {
    grid-template-columns: 1fr;
  }

  .appointment-time {
    place-items: start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: auto;
    padding-bottom: 0.9rem;
  }

  .appointment-actions {
    width: 100%;
  }

  .icon-button {
    flex: 1;
  }
}