/* Coffee Shop App — HI.icons / Bootstrap Icons (2px, 24px grid) */
:root {
  --app-bg: #faf6f1;
  --app-bg-warm: #f3ebe3;
  --app-surface: #ffffff;
  --app-primary: #c67c4e;
  --app-primary-light: #e8a574;
  --app-primary-dark: #9a5c32;
  --app-primary-soft: #f8ede4;
  --app-brown: #3d2314;
  --app-brown-soft: #5c3820;
  --app-text: #2c2420;
  --app-text-muted: #9a8f87;
  --app-border: #efe8e0;
  --app-success: #2d6a4f;
  --app-gold: #f5a623;
  --app-radius: 16px;
  --app-radius-lg: 20px;
  --app-radius-xl: 28px;
  --app-shadow: 0 12px 40px rgba(61, 35, 20, 0.1);
  --app-shadow-sm: 0 4px 18px rgba(61, 35, 20, 0.07);
  --app-shadow-glow: 0 8px 28px rgba(198, 124, 78, 0.28);
  --app-max: 430px;
}

body.public {
  background: var(--app-bg-warm);
  color: var(--app-text);
}

/* HI.icons sizing — 24px grid */
.hi-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  vertical-align: middle;
  font-size: 1.25rem;
}

.hi-xs { font-size: 0.75rem; }
.hi-sm { font-size: 1rem; }
.hi-lg { font-size: 1.5rem; }
.hi-xl { font-size: 2rem; }

/* Decorative background */
.app-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
}

.blob-1 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, #e8c4a8 0%, transparent 70%);
  top: -80px;
  right: -60px;
  animation: blobFloat 12s ease-in-out infinite;
}

.blob-2 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, #d4a574 0%, transparent 70%);
  bottom: 20%;
  left: -80px;
  animation: blobFloat 15s ease-in-out infinite reverse;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -15px) scale(1.08); }
}

.app-shell {
  position: relative;
  z-index: 1;
  max-width: var(--app-max);
  margin: 0 auto;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--app-bg) 0%, #fff9f5 40%, var(--app-bg) 100%);
  padding-bottom: calc(5.75rem + env(safe-area-inset-bottom));
}

body.has-cart .app-shell {
  padding-bottom: calc(9rem + env(safe-area-inset-bottom));
}

/* Header */
.app-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1.1rem 1.25rem 0.85rem;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}

.app-header.scrolled {
  background: rgba(250, 246, 241, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(61, 35, 20, 0.06);
}

.app-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.app-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--app-text-muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.app-location .hi-icon { color: var(--app-primary); }

.app-location strong {
  color: var(--app-brown);
  font-weight: 700;
}

.app-header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.app-icon-btn {
  position: relative;
  width: 2.85rem;
  height: 2.85rem;
  border: none;
  border-radius: 50%;
  background: var(--app-surface);
  color: var(--app-brown);
  box-shadow: var(--app-shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.app-icon-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--app-shadow);
}

.app-icon-btn:active { transform: scale(0.94); }

.app-icon-btn--cart {
  background: linear-gradient(135deg, var(--app-primary), var(--app-primary-dark));
  color: #fff;
}

.app-icon-btn--cart .hi-icon { color: #fff; }

.app-icon-btn .cart-badge {
  top: -3px;
  left: -3px;
  background: #fff;
  color: var(--app-primary-dark);
  border: 2px solid var(--app-primary);
}

.app-greeting {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.greeting-hello {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--app-text-muted);
  line-height: 1.4;
}

.greeting-cafe {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--app-brown);
  line-height: 1.45;
}

.greeting-cafe strong {
  color: var(--app-primary);
  font-weight: 800;
}

.app-greeting h1 {
  display: none;
}

.hours-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  color: var(--app-text-muted);
  padding: 0.4rem 0.75rem;
  background: var(--app-surface);
  border-radius: 999px;
  box-shadow: var(--app-shadow-sm);
  border: 1px solid var(--app-border);
}

.hours-chip .hi-icon {
  color: var(--app-primary);
  flex-shrink: 0;
}

/* Legacy */
.greeting-wave { display: none; }

/* Search */
.search-field {
  position: relative;
}

.search-field .hi-icon {
  position: absolute;
  left: 1rem;
  right: auto;
  top: 50%;
  transform: translateY(-50%);
  color: var(--app-text-muted);
  pointer-events: none;
}

.search-field input {
  width: 100%;
  padding: 1rem 1rem 1rem 2.85rem;
  text-align: right;
  direction: rtl;
  border: 1.5px solid transparent;
  border-radius: var(--app-radius-lg);
  background: var(--app-surface);
  box-shadow: var(--app-shadow-sm);
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--app-text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-field input::placeholder { color: var(--app-text-muted); }

.search-field input:focus {
  border-color: rgba(198, 124, 78, 0.35);
  box-shadow: 0 0 0 4px var(--app-primary-soft), var(--app-shadow-sm);
}

/* Search mode */
body.search-active .hide-on-search {
  display: none !important;
}

body.search-active .app-greeting {
  display: none;
}

body.search-active .app-header {
  padding-bottom: 0.65rem;
}

.search-results-bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 1.25rem 0.75rem;
}

.search-results-bar.visible {
  display: flex;
}

.search-results-bar h2 {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--app-brown);
}

body.search-active .menu-block {
  padding-top: 0;
}

body.search-active .menu-section {
  scroll-margin-top: calc(var(--header-search-height, 7.5rem) + 0.5rem);
}

body.search-active .menu-cat-title {
  font-size: 0.92rem;
}

/* Features strip */
.features-strip {
  display: flex;
  gap: 0.5rem;
  padding: 0 1.25rem;
  margin-bottom: 1.25rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.features-strip::-webkit-scrollbar { display: none; }

.feature-pill {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem 0.45rem 0.55rem;
  background: var(--app-surface);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--app-brown);
  box-shadow: var(--app-shadow-sm);
}

.feature-pill-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--app-primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--app-primary);
}

.feature-pill-icon .hi-icon { font-size: 0.85rem; }

/* Categories */
.category-scroll {
  display: flex;
  gap: 0.7rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0.25rem 1.25rem 0.5rem;
  margin-bottom: 1.35rem;
}

.category-scroll::-webkit-scrollbar { display: none; }

.cat-chip {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 4.75rem;
  padding: 0.7rem 0.55rem;
  border: 1.5px solid transparent;
  border-radius: var(--app-radius-lg);
  background: var(--app-surface);
  color: var(--app-text-muted);
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--app-shadow-sm);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.cat-chip-icon {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  background: var(--app-primary-soft);
  color: var(--app-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.cat-chip.active {
  background: linear-gradient(145deg, var(--app-primary), var(--app-primary-dark));
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--app-shadow-glow);
}

.cat-chip.active .cat-chip-icon {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* Promo */
.promo-banner {
  position: relative;
  display: flex;
  align-items: stretch;
  margin: 0 1.25rem 1.65rem;
  border-radius: var(--app-radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--app-brown) 0%, var(--app-brown-soft) 55%, #7a4f2e 100%);
  box-shadow: var(--app-shadow);
  min-height: 155px;
}

.promo-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 60%
  );
  animation: promoShine 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes promoShine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.promo-content {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 1.35rem 1rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.promo-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.55rem;
  width: fit-content;
}

.promo-content h2 {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 0.4rem;
}

.promo-content p {
  font-size: 0.78rem;
  opacity: 0.88;
  margin-bottom: 0.85rem;
  line-height: 1.55;
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.55rem 1rem;
  border: none;
  border-radius: 999px;
  background: #fff;
  color: var(--app-brown);
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.15s;
}

.promo-btn:active { transform: scale(0.96); }

.promo-image {
  width: 44%;
  min-width: 125px;
  position: relative;
}

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

.promo-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.35);
}

/* Sections */
.section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  margin-bottom: 0.9rem;
}

.section-row h2 {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--app-brown);
}

.section-icon { color: var(--app-primary); }

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--app-primary);
  text-decoration: none;
  border: none;
  background: none;
  font-family: var(--font);
  cursor: pointer;
}

.section-link.muted { color: var(--app-text-muted); cursor: default; }

/* Horizontal products */
.horizontal-scroll {
  display: flex;
  gap: 0.9rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0.25rem 1.25rem 0.75rem;
  margin-bottom: 1.65rem;
  scroll-snap-type: x mandatory;
}

.horizontal-scroll::-webkit-scrollbar { display: none; }

.product-card-h {
  flex: 0 0 158px;
  scroll-snap-align: start;
  background: var(--app-surface);
  border-radius: var(--app-radius-lg);
  overflow: hidden;
  box-shadow: var(--app-shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.product-card-h:active {
  transform: scale(0.98);
}

.product-card-h .product-img {
  aspect-ratio: 1 / 1;
  height: auto;
  background: linear-gradient(145deg, var(--app-primary-soft), #fff);
  position: relative;
  overflow: hidden;
}

.product-card-h .product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s;
}

.product-card-h:hover .product-img img { transform: scale(1.06); }

.product-card-h .product-img .placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--app-primary);
  opacity: 0.45;
}

.product-fav {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--app-text-muted);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.product-card-h .product-body { padding: 0.8rem; }

.product-card-h h3 {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--app-brown);
  margin-bottom: 0.3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card-h .rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  color: var(--app-text-muted);
  margin-bottom: 0.4rem;
}

.product-card-h .rating .hi-icon { color: var(--app-gold); }

.product-card-h .price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card-h .price {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--app-primary-dark);
}

.product-card-h .price small {
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--app-text-muted);
}

.btn-add-round {
  width: 2.1rem;
  height: 2.1rem;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--app-primary), var(--app-primary-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--app-shadow-glow);
  transition: transform 0.15s;
}

.btn-add-round .hi-icon { color: #fff; }
.btn-add-round:active { transform: scale(0.9); }

.discount-tag,
.discount-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.35);
}

/* Menu grid */
.menu-block { padding: 0 1.25rem 1rem; }

.menu-section {
  margin-bottom: 2rem;
  scroll-margin-top: 5.5rem;
}

.menu-cat-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--app-brown);
  margin-bottom: 0.9rem;
}

.menu-cat-title .hi-icon { color: var(--app-primary); }

.items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.item-card {
  background: var(--app-surface);
  border-radius: var(--app-radius-lg);
  overflow: hidden;
  box-shadow: var(--app-shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.item-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--app-shadow);
}

.item-card.unavailable { opacity: 0.55; }

.item-image {
  aspect-ratio: 1 / 1;
  height: auto;
  background: linear-gradient(145deg, var(--app-primary-soft), #fff);
  position: relative;
  overflow: hidden;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.35s;
}

.item-card:hover .item-image img { transform: scale(1.03); }

.item-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--app-primary);
  opacity: 0.4;
}

.sold-out {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: rgba(44, 36, 32, 0.6);
  backdrop-filter: blur(2px);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
}

.item-body { padding: 0.8rem; }

.item-body h4 {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--app-brown);
  margin-bottom: 0.25rem;
  line-height: 1.35;
}

.item-desc {
  font-size: 0.68rem;
  color: var(--app-text-muted);
  margin-bottom: 0.55rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}

.item-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
}

.item-price { flex: 1; min-width: 0; }

.price-new {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--app-primary-dark);
}

.price-new small {
  font-size: 0.62rem;
  color: var(--app-text-muted);
}

.price-old {
  display: block;
  font-size: 0.68rem;
  color: var(--app-text-muted);
  text-decoration: line-through;
}

.btn-add-cart {
  width: 2.2rem;
  height: 2.2rem;
  min-width: 2.2rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--app-primary), var(--app-primary-dark));
  color: #fff;
  box-shadow: var(--app-shadow-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s;
}

.btn-add-cart .hi-icon { color: #fff; font-size: 0.9rem; }
.btn-add-cart:active { transform: scale(0.9); }

.promo-btn.btn-add-cart {
  width: auto;
  height: auto;
  min-width: 0;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.item-card.hidden,
.menu-section.hidden { display: none; }

/* Bottom nav */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--app-max);
  z-index: 90;
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--app-border);
  padding: 0.45rem 1rem calc(0.55rem + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 32px rgba(61, 35, 20, 0.08);
}

.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.35rem;
  border: none;
  background: none;
  color: var(--app-text-muted);
  font-family: var(--font);
  font-size: 0.64rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
}

.nav-icon-wrap {
  width: 2.5rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: background 0.25s, transform 0.25s;
}

.bottom-nav-item .hi-icon {
  font-size: 1.15rem;
  color: var(--app-text-muted);
  transition: color 0.2s;
}

.bottom-nav-item.active .nav-icon-wrap {
  background: var(--app-primary-soft);
  transform: translateY(-2px);
}

.bottom-nav-item.active { color: var(--app-primary-dark); }
.bottom-nav-item.active .hi-icon { color: var(--app-primary); }

.bottom-nav-item .nav-badge {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: 0.55rem;
  min-width: 1rem;
  height: 1rem;
  padding: 0 0.2rem;
  border-radius: 999px;
  background: var(--app-primary);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1rem;
  text-align: center;
  display: none;
}

.bottom-nav-item .nav-badge.visible { display: block; }

.bottom-nav-item-wrap {
  position: relative;
  flex: 1;
  display: flex;
}

/* Animations */
.animate-in {
  animation: slideUp 0.5s ease both;
  animation-delay: calc(var(--i, 0) * 0.06s);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.promo-banner.animate-in { animation-delay: 0.1s; }

/* ── Splash screen ── */
body.splash-active {
  overflow: hidden;
}

body.splash-active .app-shell,
body.splash-active .bottom-nav,
body.splash-active .cart-bar,
body.splash-active .app-bg {
  visibility: hidden;
}

.app-splash {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  min-height: -webkit-fill-available;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  box-sizing: border-box;
  background: linear-gradient(180deg, #faf6f1 0%, #f0e6da 100%);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.65s;
}

.app-splash.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem;
}

.splash-logo-ring {
  position: relative;
  width: 8.5rem;
  height: 8.5rem;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.splash-ring-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.splash-ring-track,
.splash-ring-fill {
  fill: none;
  stroke-width: 3.5;
}

.splash-ring-track {
  stroke: rgba(198, 124, 78, 0.22);
}

.splash-ring-fill {
  stroke: #c67c4e;
  stroke-linecap: round;
  stroke-dasharray: 289;
  stroke-dashoffset: 289;
  animation: splashRingFill 2.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes splashRingFill {
  to { stroke-dashoffset: 0; }
}

.splash-logo-wrap {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(61, 35, 20, 0.12);
}

.splash-logo {
  display: block;
  width: 4.75rem;
  height: 4.75rem;
  object-fit: contain;
}

.splash-title {
  margin: 0;
  font-size: 1.85rem;
  font-weight: 800;
  color: #3d2314;
  letter-spacing: -0.02em;
}

/* Hide legacy */
.site-nav, .premium-hero, .marquee-strip, .stats-section,
.about-section, .popular-section, .services-bar, .site-footer,
.scroll-progress, .cursor-glow {
  display: none !important;
}

@media (min-width: 768px) {
  body.public { background: #e8dfd6; }

  .app-shell {
    box-shadow: 0 0 80px rgba(61, 35, 20, 0.14);
    border-left: 1px solid var(--app-border);
    border-right: 1px solid var(--app-border);
  }
}
