:root {
  --brown: #9e8772;
  --sand: #e6decc;
  --paper: #ffffff;
  --ink: #4d433b;
  --muted: #8a7b6f;
  --line: #ece7df;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-bottom: calc(76px + env(safe-area-inset-bottom));
  min-height: 100vh;
  color: var(--ink);
  font-family: "Be Vietnam Pro", Arial, sans-serif;
  overflow-x: hidden;
  background-color: #f4eee8;
  background-image:
    radial-gradient(circle at 18px 18px, rgba(158, 135, 114, 0.11) 0 1px, transparent 1.5px),
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.82), transparent 34%),
    linear-gradient(135deg, #fbf8f4 0%, #efe4dc 48%, #f7f1eb 100%);
  background-size: 42px 42px, cover, cover;
  background-attachment: fixed;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

button {
  font: inherit;
}

.page-shell {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
}

.phone-page {
  width: min(100%, 436px);
  min-height: 100vh;
  background: var(--paper);
  overflow: hidden;
}

.top-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.86;
  overflow: hidden;
}

.top-banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 43%;
}

.shop-info {
  display: grid;
  grid-template-columns: 126px 1fr;
  align-items: center;
  gap: 12px;
  padding: 22px 28px 18px;
}

.logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.samelie-logo {
  width: 126px;
  height: auto;
  max-height: 82px;
}

.info-meta h1 {
  margin: 0 0 8px;
  color: var(--brown);
  font-size: 21.45px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.info-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 10.73px;
  line-height: 1.45;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 28px 20px;
  background: #fff;
}

.service-strip span {
  min-height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(143, 118, 98, 0.22);
  border-radius: 999px;
  color: var(--brown-dark);
  background: #fffaf7;
  font-size: 10.73px;
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
}

.contact-panel {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 22px 18px 24px;
}

.contact-action {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: #1f1d1b;
  font-size: 12.38px;
  font-weight: 800;
}

.contact-icon {
  position: relative;
  width: 58px;
  height: 58px;
  display: block;
  border-radius: 50%;
}

.contact-action.call .contact-icon {
  background: #168d3c;
}

.contact-action.directions .contact-icon {
  background: #1f68c5;
}

.contact-action.book .contact-icon {
  background: #bf8845;
}

.contact-action.chat .contact-icon {
  background: #27d366;
}

.icon-call::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 17px;
  width: 17px;
  height: 25px;
  border: 4px solid #fff;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 4px 0 0 12px;
  transform: rotate(-35deg);
}

.icon-directions::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 15px;
  width: 24px;
  height: 24px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  transform: rotate(-45deg) skew(-8deg, -8deg);
}

.icon-directions::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 24px;
  width: 15px;
  height: 4px;
  background: #fff;
  transform: rotate(-45deg);
}

.icon-book::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 19px;
  width: 24px;
  height: 24px;
  border: 4px solid #fff;
  border-radius: 4px;
}

.icon-book::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 14px;
  width: 14px;
  height: 10px;
  border-left: 4px solid #fff;
  border-right: 4px solid #fff;
}

.icon-chat::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 18px;
  width: 25px;
  height: 21px;
  border-radius: 50%;
  background: #fff;
}

.icon-chat::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 35px;
  border-top: 8px solid #fff;
  border-right: 8px solid transparent;
}

.contact-row {
  min-height: 70px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  border-top: 1px solid var(--line);
  color: #1f1d1b;
  font-size: 13.20px;
  line-height: 1.35;
}

.contact-row strong {
  font-weight: 800;
}

.contact-row small {
  display: block;
  margin-top: 6px;
  color: #979088;
  font-size: 12.38px;
}

.open-now {
  color: #188a3e;
}

.row-icon {
  position: relative;
  width: 28px;
  height: 28px;
  display: block;
  color: #979088;
}

.pin-icon::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 18px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.pin-icon::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.clock-icon::before {
  content: "";
  position: absolute;
  inset: 2px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.clock-icon::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 8px;
  width: 8px;
  height: 10px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
}

.phone-row-icon::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 14px;
  height: 22px;
  border: 3px solid currentColor;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 4px 0 0 11px;
  transform: rotate(-35deg);
}

.chevron {
  width: 13px;
  height: 13px;
  border-top: 3px solid #979088;
  border-right: 3px solid #979088;
  transform: rotate(45deg);
}

.quick-links {
  display: grid;
  gap: 12px;
  padding: 0 24px 24px;
}

.primary-booking {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 10px;
  padding: 18px 24px 14px;
}

.primary-cta,
.secondary-cta {
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 800;
}

.primary-cta {
  background: var(--brown);
  color: #fff;
  box-shadow: 0 12px 26px rgba(95, 75, 58, 0.22);
}

.secondary-cta {
  border: 1px solid rgba(158, 135, 114, 0.32);
  color: var(--brown);
  background: #fff;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 24px 22px;
}

.trust-strip span {
  padding: 7px 10px;
  border: 1px solid rgba(158, 135, 114, 0.18);
  border-radius: 999px;
  color: var(--muted);
  background: #fbfaf8;
  font-size: 9.90px;
  font-weight: 700;
}

.quick-links a {
  min-height: 58px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(158, 135, 114, 0.18);
  background: #fbfaf8;
  color: var(--brown);
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(86, 69, 55, 0.08);
}

.quick-links a:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(86, 69, 55, 0.12);
}

.quick-links img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.booking-zone {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  background: #fffdfb;
}

.booking-heading {
  padding-bottom: 12px;
}

.booking-form {
  display: grid;
  gap: 12px;
  padding: 0 24px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--brown);
  font-size: 10.73px;
  font-weight: 800;
  min-width: 0;
}

.booking-form input,
.booking-form select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 1px solid rgba(158, 135, 114, 0.24);
  border-radius: 10px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 13.20px;
  outline: none;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--brown);
  box-shadow: 0 0 0 3px rgba(158, 135, 114, 0.14);
}

.booking-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  min-width: 0;
}

.booking-form button {
  min-height: 50px;
  margin-top: 4px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--brown);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(95, 75, 58, 0.2);
}

.booking-form button:hover {
  background: #846f5d;
}

.booking-note {
  margin: 0;
  color: var(--muted);
  font-size: 9.90px;
  line-height: 1.4;
  text-align: center;
}

.section-heading {
  padding: 0 24px 14px;
}

.section-heading span {
  color: var(--brown);
  font-size: 9.90px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: 18.15px;
  line-height: 1.16;
}

.service-section {
  padding-bottom: 24px;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 0 24px 14px;
}

.album-grid a {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: var(--sand);
}

.album-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 180ms ease;
}

.album-grid a:hover img {
  transform: scale(1.03);
}

.map-photo img {
  filter: brightness(0.52);
}

.map-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 8px;
  color: #fff;
  text-align: center;
  background: rgba(22, 18, 15, 0.22);
}

.map-overlay strong {
  font-size: 19.80px;
  line-height: 1;
  font-weight: 500;
}

.map-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.map-overlay small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9.08px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.reviews-section {
  padding: 24px 0 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 24px 12px;
}

.reviews-header h2 {
  margin: 0;
  color: #1f1d1b;
  font-size: 19.80px;
  line-height: 1.1;
}

.reviews-header a,
.review-body a {
  color: #155fc2;
  font-weight: 700;
}

.reviews-header a {
  flex: 0 0 auto;
  font-size: 11.55px;
}

.google-note {
  margin: 0;
  padding: 0 24px 18px;
  color: #958f88;
  font-size: 12.38px;
}

.google-note span {
  margin-right: 8px;
  color: #4285f4;
  font-weight: 800;
}

.review-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 18px 24px;
  border-top: 1px solid var(--line);
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--brown);
}

.review-initial {
  display: grid;
  place-items: center;
  color: #fff;
  background: #7e57c2;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  text-transform: lowercase;
}

.review-body h3 {
  margin: 0 0 4px;
  color: #1f1d1b;
  font-size: 14.85px;
  line-height: 1.2;
}

.review-meta {
  margin: 0 0 10px;
  color: #f6a800;
  font-size: 12.38px;
  letter-spacing: 0.02em;
}

.review-meta span {
  color: #958f88;
}

.review-body p:not(.review-meta) {
  margin: 0 0 10px;
  color: #5f5952;
  font-size: 13.20px;
  line-height: 1.48;
}

.location-section {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.location-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 0 24px 18px;
}

.location-title h2 {
  margin: 0 0 8px;
  color: #1f1d1b;
  font-size: 24.75px;
  line-height: 1.1;
}

.location-title p {
  margin: 0 0 4px;
  color: #5f5952;
  font-size: 14.85px;
  line-height: 1.25;
}

.rating-stars {
  color: #f6a800;
  letter-spacing: 0.02em;
}

.location-title small {
  color: #5f5952;
  font-size: 14.85px;
}

.verified-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
  color: #1a73e8;
  font-size: 13.20px;
  font-weight: 600;
}

.verified-icon {
  width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 18px;
  fill: currentColor;
}

.map-card {
  position: relative;
  margin: 0 24px;
  height: 360px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--sand);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.open-maps {
  padding: 11px 14px;
  border-radius: 8px;
  color: #1d63c5;
  background: #fff;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(30, 25, 20, 0.08);
}

.text-link {
  display: block;
  margin: 0 24px;
  padding: 13px 16px;
  border-radius: 8px;
  background: var(--sand);
  color: var(--brown);
  text-align: center;
  font-weight: 800;
}

.branch-heading {
  padding-top: 4px;
}

.branch-tiles {
  display: grid;
  gap: 15px;
  padding: 0 24px 24px;
}

.branch-card {
  position: relative;
  display: block;
  min-height: 168px;
  border-radius: 0;
  overflow: hidden;
  background: var(--sand);
}

.branch-card img {
  width: 100%;
  height: 100%;
  min-height: 168px;
  display: block;
  object-fit: cover;
}

.branch-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 22px;
  color: #fff;
  background: linear-gradient(90deg, rgba(64, 46, 35, 0.52), rgba(64, 46, 35, 0.05));
}

.phone-icon {
  width: 37px;
  height: 37px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}

.phone-icon::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 7px;
  transform: rotate(-28deg);
  left: 11px;
  top: 8px;
}

.branch-overlay strong,
.branch-overlay small {
  display: block;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.32);
}

.branch-overlay strong {
  font-size: 23.10px;
  line-height: 1.1;
  font-weight: 800;
}

.branch-overlay small {
  margin-top: 3px;
  font-size: 10.73px;
  font-weight: 700;
}

.branch-list {
  display: grid;
  gap: 12px;
  padding: 0 24px 22px;
}

.branch-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fff;
}

.branch-row h2,
.branch-row p {
  margin: 0;
}

.branch-row h2 {
  color: var(--brown);
  font-size: 12.38px;
  line-height: 1.25;
  font-weight: 800;
}

.branch-row p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 10.73px;
}

.branch-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.branch-actions a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f7f3ee;
}

.branch-actions img {
  width: 18px;
  height: 22px;
}

.line-mark {
  color: var(--brown);
  font-size: 8.25px;
  font-weight: 800;
}

.why-section {
  padding: 4px 0 24px;
}

.why-section ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 24px;
  list-style: none;
}

.why-section li {
  position: relative;
  padding: 12px 14px 12px 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fffdfb;
  font-size: 11.55px;
  line-height: 1.45;
}

.why-section li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brown);
}

.gallery-heading {
  padding-top: 4px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 24px 20px;
}

.gallery a {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--sand);
}

.gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.read-more {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 24px 20px;
}

.popup-trigger,
.modal-close {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--brown);
  color: white;
  font-weight: 700;
  cursor: pointer;
}

.popup-trigger:hover,
.modal-close:hover {
  background: #846f5d;
}

.hashtag {
  margin: 0;
  padding: 2px 24px 38px;
  color: var(--brown);
  text-align: center;
  font-size: 14.85px;
  font-weight: 800;
}

.site-footer-info {
  margin: 0;
  padding: 28px 24px 44px;
  border-top: 1px solid var(--line);
  color: #958f88;
  background: #fff;
  text-align: center;
}

.site-footer-info p {
  margin: 0 0 14px;
  font-size: 13.20px;
  line-height: 1.45;
}

.site-footer-info a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #155fc2;
  font-size: 13.20px;
  font-weight: 800;
}

.site-footer-info span {
  color: #4285f4;
  font-weight: 800;
}

.connect-section {
  display: grid;
  gap: 10px;
  padding: 18px 24px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.connect-title {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brown-dark);
}

.connect-title strong {
  font-size: 12.38px;
  font-weight: 600;
}

.connect-heart,
.connect-links a {
  border: 1px solid rgba(143, 118, 98, 0.22);
  background: #fffaf7;
}

.connect-heart {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--brown-dark);
}

.connect-heart svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.connect-links a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 999px;
  color: var(--brown-dark);
  font-size: 9.90px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.connect-icon {
  width: 13px;
  height: 13px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 13px;
  color: var(--brown-dark);
}

.connect-icon svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.connect-text-icon {
  font-size: 12px;
  font-weight: 700;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 18px 24px;
  background: rgba(37, 31, 27, 0.45);
  z-index: 20;
}

.sticky-actions {
  position: fixed;
  left: 50%;
  bottom: 12px;
  z-index: 15;
  width: min(calc(100% - 24px), 412px);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(158, 135, 114, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 48px rgba(61, 43, 32, 0.22);
  transform: translateX(-50%);
  backdrop-filter: blur(12px);
}

.sticky-actions a {
  min-height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--brown);
  background: #f7f3ee;
  font-weight: 800;
}

.sticky-actions a:first-child {
  color: #fff;
  background: var(--brown);
}

.modal.is-open {
  display: flex;
}

.modal-card {
  width: min(100%, 640px);
  max-height: calc(100vh - 110px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.modal-card h2 {
  margin: 0;
  padding: 24px 26px 12px;
  color: var(--brown);
  font-family: "Be Vietnam Pro", Arial, sans-serif;
  font-size: 19.80px;
  line-height: 1.25;
}

.modal-content {
  overflow: auto;
  padding: 0 26px 18px;
  color: #5f554e;
  font-size: 12.38px;
  line-height: 1.65;
}

.modal-content h3 {
  margin: 22px 0 8px;
  color: var(--brown);
  font-size: 14.03px;
}

.modal-close {
  justify-self: center;
  min-width: 120px;
  margin: 0 0 22px;
}

@media (max-width: 480px) {
  body {
    background-attachment: scroll;
  }

  .phone-page {
    width: 100%;
  }

  .shop-info {
    grid-template-columns: 112px 1fr;
    padding-inline: 22px;
  }

  .logo {
    width: 82px;
    height: 82px;
  }

  .samelie-logo {
    width: 112px;
    height: auto;
    max-height: 74px;
  }

  .info-meta h1 {
    font-size: 18.98px;
  }

  .quick-links,
  .primary-booking,
  .booking-form,
  .branch-tiles,
  .branch-list,
  .gallery,
  .read-more,
  .trust-strip,
  .section-heading,
  .album-grid,
  .why-section ul {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-actions {
    padding-left: 14px;
    padding-right: 14px;
  }

  .contact-icon {
    width: 54px;
    height: 54px;
  }

  .contact-action {
    font-size: 11.55px;
  }

  .contact-row {
    grid-template-columns: 36px 1fr auto;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 12.38px;
  }

  .reviews-header,
  .google-note,
  .review-item {
    padding-left: 18px;
    padding-right: 18px;
  }

  .reviews-header h2 {
    font-size: 18.15px;
  }

  .map-card {
    margin-left: 18px;
    margin-right: 18px;
    height: 330px;
  }

  .location-title {
    padding-left: 18px;
    padding-right: 18px;
  }

  .location-title h2 {
    font-size: 20.62px;
  }

  .location-title p,
  .location-title small {
    font-size: 13.20px;
  }

  .verified-badge {
    font-size: 11.55px;
  }

  .text-link {
    margin-left: 18px;
    margin-right: 18px;
  }

  .album-grid {
    gap: 9px;
  }
}

/* Final UI/UX Pro Max cascade */
:root {
  --brown: #8f7662;
  --brown-dark: #4b4038;
  --sand: #eadfce;
  --paper: #ffffff;
  --ink: #2d2925;
  --muted: #7f746a;
  --line: #e7ded4;
  --blue: #1f66c2;
  --green: #168d3c;
  --surface: #fffaf7;
  --shadow: 0 18px 42px rgba(65, 48, 36, 0.12);
}

body {
  color: var(--ink);
  font-family: "Be Vietnam Pro", Arial, sans-serif;
  background-color: #f4eee8;
  background-image:
    radial-gradient(circle at 18px 18px, rgba(158, 135, 114, 0.11) 0 1px, transparent 1.5px),
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.82), transparent 34%),
    linear-gradient(135deg, #fbf8f4 0%, #efe4dc 48%, #f7f1eb 100%);
  background-size: 42px 42px, cover, cover;
  background-attachment: fixed;
}

a,
button,
input,
select {
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(31, 102, 194, 0.28);
  outline-offset: 3px;
}

.phone-page {
  width: min(100%, 480px);
  box-shadow: var(--shadow);
}

.top-banner {
  aspect-ratio: 16 / 9;
}

.shop-info {
  grid-template-columns: 118px 1fr;
  gap: 16px;
  padding: 24px 28px 22px;
}

.samelie-logo {
  width: 118px;
  max-height: 78px;
}

.info-meta h1,
.section-heading h2,
.reviews-header h2,
.location-title h2 {
  color: var(--brown-dark);
  font-family: "Be Vietnam Pro", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.info-meta h1 {
  margin-bottom: 10px;
  font-size: 23.10px;
  line-height: 1.04;
}

.info-meta p {
  color: var(--muted);
  font-size: 11.55px;
  line-height: 1.5;
}

.contact-panel {
  background: linear-gradient(180deg, #fff 0%, var(--surface) 100%);
}

.contact-action,
.contact-row {
  color: var(--ink);
}

.contact-action.call .contact-icon {
  background: var(--green);
}

.contact-action.directions .contact-icon {
  background: var(--blue);
}

.section-heading h2 {
  font-size: 23.10px;
  line-height: 1.12;
}

.booking-zone {
  margin: 18px 18px 0;
  padding: 22px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, var(--surface) 100%);
  box-shadow: 0 14px 34px rgba(65, 48, 36, 0.08);
}

.booking-form {
  padding: 0 20px;
}

.booking-form label {
  color: var(--brown-dark);
}

.booking-form input,
.booking-form select {
  border-color: rgba(143, 118, 98, 0.26);
  border-radius: 8px;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--brown);
  box-shadow: 0 0 0 4px rgba(143, 118, 98, 0.14);
}

.booking-form button,
.sticky-actions a:first-child {
  background: var(--brown);
}

.booking-status {
  min-height: 18px;
  margin: -2px 0 0;
  color: var(--green);
  font-size: 9.90px;
  font-weight: 700;
  text-align: center;
}

.service-section,
.reviews-section,
.location-section {
  padding-top: 28px;
}

.reviews-section,
.location-section,
.site-footer-info {
  background: #fff;
}

.reviews-header h2,
.location-title h2 {
  font-size: 23.10px;
}

.reviews-header a,
.site-footer-info a,
.open-maps {
  color: var(--blue);
}

.review-item {
  grid-template-columns: 46px 1fr;
}

.review-avatar {
  width: 46px;
  height: 46px;
}

.review-body h3 {
  color: var(--ink);
}

.map-card,
.album-grid a {
  border-radius: 8px;
}

.site-footer-info {
  padding: 30px 24px 46px;
}

@media (max-width: 480px) {
  .phone-page {
    width: 100%;
  }

  .shop-info {
    grid-template-columns: 104px 1fr;
  }

  .samelie-logo {
    width: 104px;
    max-height: 74px;
  }

  .info-meta h1 {
    font-size: 19.80px;
  }

  .section-heading h2,
  .reviews-header h2,
  .location-title h2 {
    font-size: 20.62px;
  }
}

/* Icon refinement */
.contact-icon::before,
.contact-icon::after,
.row-icon::before,
.row-icon::after {
  content: none;
}

.contact-icon,
.row-icon {
  background-color: currentColor;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 52%;
}

.contact-icon {
  color: #fff;
}

.icon-call {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.93.33 1.84.63 2.7a2 2 0 0 1-.45 2.11L8.03 9.79a16 16 0 0 0 6.18 6.18l1.26-1.26a2 2 0 0 1 2.11-.45c.86.3 1.77.51 2.7.63A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.contact-action.call .contact-icon.icon-call {
  background-color: #168d3c;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 48%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.93.33 1.84.63 2.7a2 2 0 0 1-.45 2.11L8.03 9.79a16 16 0 0 0 6.18 6.18l1.26-1.26a2 2 0 0 1 2.11-.45c.86.3 1.77.51 2.7.63A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.icon-directions {
  background-size: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 11 21 3l-8 18-2-8-8-2z'/%3E%3C/svg%3E");
}

.contact-action.directions .contact-icon.icon-directions {
  background-color: #1f68c5;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 11 21 3l-8 18-2-8-8-2z'/%3E%3C/svg%3E");
}

.icon-book {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4M16 2v4M3.5 9h17M5.5 4h13a2 2 0 0 1 2 2v13a2 2 0 0 1-2 2h-13a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2z'/%3E%3C/svg%3E");
}

.contact-action.book .contact-icon.icon-book {
  background-color: #bf8845;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 48%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4M16 2v4M3.5 9h17M5.5 4h13a2 2 0 0 1 2 2v13a2 2 0 0 1-2 2h-13a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2z'/%3E%3C/svg%3E");
}

.icon-chat {
  background-size: 54%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 3C6.48 3 2 6.94 2 11.8c0 2.78 1.48 5.25 3.78 6.86L5 22l3.76-1.84c1.02.28 2.11.44 3.24.44 5.52 0 10-3.94 10-8.8S17.52 3 12 3z'/%3E%3C/svg%3E");
}

.contact-action.chat .contact-icon.icon-chat {
  background-color: #27d366;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 54%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 3C6.48 3 2 6.94 2 11.8c0 2.78 1.48 5.25 3.78 6.86L5 22l3.76-1.84c1.02.28 2.11.44 3.24.44 5.52 0 10-3.94 10-8.8S17.52 3 12 3z'/%3E%3C/svg%3E");
}

.pin-icon,
.clock-icon,
.phone-row-icon {
  color: #9b948d;
  background-color: transparent;
  background-size: 90%;
}

.pin-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 24 24' fill='none' stroke='%239b948d' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5.5-8 12-8 12S4 15.5 4 10a8 8 0 1 1 16 0z'/%3E%3Ccircle cx='12' cy='10' r='2.6'/%3E%3C/svg%3E");
}

.clock-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 24 24' fill='none' stroke='%239b948d' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3.5 2'/%3E%3C/svg%3E");
}

.phone-row-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 24 24' fill='none' stroke='%239b948d' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.93.33 1.84.63 2.7a2 2 0 0 1-.45 2.11L8.03 9.79a16 16 0 0 0 6.18 6.18l1.26-1.26a2 2 0 0 1 2.11-.45c.86.3 1.77.51 2.7.63A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

body,
button,
input,
select,
h1,
h2,
h3,
h4,
p,
a,
small,
.modal-card h2 {
  font-family: "Be Vietnam Pro", Arial, sans-serif;
}

/* Verified badge polish */
.verified-badge {
  gap: 5px;
  color: #1a73e8;
  font-weight: 600;
}

.verified-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: #1a73e8;
  fill: currentColor;
}

/* Mobile production pass */
.location-title > div,
.info-meta,
.review-body {
  min-width: 0;
}

.contact-action,
.sticky-actions a,
.booking-form button {
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 480px) {
  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
    background-attachment: scroll;
  }

  .phone-page {
    width: 100%;
    box-shadow: none;
  }

  .top-banner {
    aspect-ratio: 16 / 10;
  }

  .shop-info {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 18px 18px;
  }

  .samelie-logo {
    width: 96px;
    max-height: 68px;
  }

  .info-meta h1 {
    font-size: 18.98px;
    line-height: 1.08;
  }

  .info-meta p {
    font-size: 10.73px;
  }

  .service-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 0 18px 18px;
  }

  .service-strip span {
    min-height: 28px;
    font-size: 9.90px;
  }

  .contact-actions {
    gap: 6px;
    padding: 20px 12px 22px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
  }

  .contact-action {
    gap: 8px;
    font-size: 10.73px;
    line-height: 1.1;
  }

  .contact-row {
    min-height: 68px;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 9px;
    padding: 16px 18px;
    font-size: 12.38px;
  }

  .contact-row small {
    font-size: 10.73px;
  }

  .booking-zone {
    margin: 14px 12px 0;
    padding: 20px 0;
  }

  .booking-split {
    grid-template-columns: 1fr;
  }

  .booking-form {
    gap: 11px;
    padding: 0 16px;
  }

  .booking-form input,
  .booking-form select {
    min-height: 50px;
    font-size: 13.20px;
  }

  .booking-form label,
  .booking-form input,
  .booking-form select {
    min-width: 0;
    max-width: 100%;
  }

  .section-heading,
  .album-grid,
  .reviews-header,
  .google-note,
  .review-item,
  .location-title {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-heading h2,
  .reviews-header h2,
  .location-title h2 {
    font-size: 19.80px;
    line-height: 1.15;
  }

  .album-grid {
    gap: 8px;
  }

  .reviews-header {
    align-items: flex-start;
  }

  .reviews-header a {
    max-width: 118px;
    font-size: 10.73px;
    line-height: 1.25;
    text-align: right;
  }

  .review-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 11px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .review-avatar {
    width: 42px;
    height: 42px;
  }

  .review-body h3 {
    font-size: 14.03px;
  }

  .review-body p:not(.review-meta) {
    font-size: 12.38px;
  }

  .location-title {
    gap: 10px;
  }

  .location-title h2 {
    margin-bottom: 6px;
  }

  .location-title p,
  .location-title small {
    font-size: 12.38px;
  }

  .verified-badge {
    gap: 4px;
    font-size: 11.55px;
    white-space: nowrap;
  }

  .verified-icon {
    width: 17px;
    height: 17px;
    flex-basis: 17px;
  }

  .map-card {
    height: 290px;
    margin-left: 18px;
    margin-right: 18px;
  }

  .site-footer-info {
    padding-bottom: 38px;
  }

  .site-footer-info p,
  .site-footer-info a {
    font-size: 11.55px;
  }

  .connect-section {
    padding: 16px 18px;
  }

  .connect-links {
    grid-template-columns: repeat(4, minmax(70px, 1fr));
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .connect-links a {
    min-height: 30px;
    font-size: 9.35px;
  }

  .sticky-actions {
    bottom: max(10px, env(safe-area-inset-bottom));
    width: min(calc(100% - 18px), 420px);
    gap: 6px;
    padding: 7px;
  }

  .sticky-actions a {
    min-height: 40px;
    font-size: 11.55px;
  }
}

@media (max-width: 380px) {
  .shop-info {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
  }

  .samelie-logo {
    width: 86px;
  }

  .info-meta h1 {
    font-size: 17.33px;
  }

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

  .contact-icon {
    width: 46px;
    height: 46px;
  }

  .contact-action {
    font-size: 9.90px;
  }

  .contact-row {
    font-size: 11.55px;
  }

  .section-heading h2,
  .reviews-header h2,
  .location-title h2 {
    font-size: 18.15px;
  }

  .location-title {
    align-items: flex-start;
  }

  .verified-badge {
    margin-top: 3px;
    font-size: 10.73px;
  }

  .map-card {
    height: 250px;
  }
}

/* Booking form text weight */
.booking-form label {
  font-weight: 500;
}

.booking-form input,
.booking-form select {
  font-weight: 400;
}

.booking-form input::placeholder {
  color: #817a73;
  font-weight: 400;
  opacity: 1;
}

/* Native date/time controls can ignore grid width on mobile browsers. */
.booking-zone,
.booking-form,
.booking-split,
.booking-form label {
  max-width: 100%;
  overflow-x: hidden;
}

.booking-form input[type="date"],
.booking-form input[type="time"] {
  display: block;
  box-sizing: border-box;
  width: 100%;
  inline-size: 100%;
  max-width: 100%;
  max-inline-size: 100%;
  min-width: 0;
  min-inline-size: 0;
  -webkit-appearance: none;
  appearance: none;
}

.booking-form input[type="date"]::-webkit-date-and-time-value,
.booking-form input[type="time"]::-webkit-date-and-time-value {
  min-width: 0;
  text-align: left;
}

.booking-form input[type="date"]::-webkit-calendar-picker-indicator,
.booking-form input[type="time"]::-webkit-calendar-picker-indicator {
  margin-left: 0;
}

/* Updated wide logo asset */
.samelie-logo {
  width: 154px;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.shop-info {
  grid-template-columns: 160px minmax(0, 1fr);
}

@media (max-width: 480px) {
  .shop-info {
    grid-template-columns: 122px minmax(0, 1fr);
  }

  .samelie-logo {
    width: 118px;
    height: auto;
  }
}

@media (max-width: 380px) {
  .shop-info {
    grid-template-columns: 106px minmax(0, 1fr);
  }

  .samelie-logo {
    width: 102px;
    height: auto;
  }
}
