:root {
  --bg: #f7f1eb;
  --panel: #ffffff;
  --panel-alt: #f8f0e8;
  --text: #2f1f14;
  --muted: #7a5f4f;
  --primary: #a95f2a;
  --primary-dark: #7f4218;
  --primary-soft: #d9985f;
  --accent: #c8783a;
  --accent-soft: rgba(169, 95, 42, 0.12);
  --success: #3d8b5a;
  --danger: #b44b3b;
  --warning: #b07a2d;
  --border: rgba(122, 95, 79, 0.24);
  --shadow: 0 18px 45px rgba(60, 36, 22, 0.14);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(169, 95, 42, 0.16), transparent 30%),
    linear-gradient(180deg, #fdf7f1 0%, var(--bg) 18%, #ffffff 100%);
  color: var(--text);
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-shell {
  width: min(1440px, calc(100% - 36px));
  margin: 18px auto;
}

.header {
  position: sticky;
  top: 12px;
  z-index: 50;
}

.top-header,
.sale-strip,
.hero-slider,
.highlights,
.category-grid,
.horizontal-slider,
.price-panel,
.products-column,
.footer {
  backdrop-filter: blur(18px);
}

.top-header {
  display: grid;
  grid-template-columns: auto 1.2fr 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-image {
  width: 80px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid rgba(28, 35, 64, 0.08);
  background: #f8f3ef;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-text strong {
  font-size: 1.12rem;
}

.logo-text small,
.toolbar p,
.price-panel p,
.footer p {
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.25s ease;
}

.main-nav a:hover,
.chip:hover,
.text-link:hover {
  background: var(--accent-soft);
  color: var(--primary);
}

.search-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--panel-alt);
  border: 1px solid var(--border);
}

.search-icon {
  color: var(--muted);
  font-size: 1.1rem;
}

.search-bar input {
  border: 0;
  background: transparent;
  outline: none;
  min-width: 120px;
}

.search-bar button,
.primary-btn,
.footer-form button {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  color: white;
  padding: 10px 18px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(169, 95, 42, 0.3);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-menu {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  min-width: 210px;
  display: none;
  flex-direction: column;
  background: white;
  border-radius: 20px;
  padding: 10px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.dropdown-panel a,
.dropdown-link-button {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
}

.dropdown-panel a:hover,
.dropdown-link-button:hover {
  background: var(--accent-soft);
  color: var(--primary);
}

.dropdown-link-button {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.dropdown-panel.is-open {
  display: flex;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: white;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--text);
}

.icon-button strong {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--primary);
  font-size: 0.88rem;
}

.cart-button {
  background: linear-gradient(135deg, #111827, #374151);
  color: white;
}

main {
  padding-top: 24px;
}

.hero-slider,
.highlights,
.category-grid,
.horizontal-slider,
.price-panel,
.products-column,
.footer {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.hero-slider {
  border-radius: 34px;
  overflow: hidden;
  padding: 18px;
}

.hero-track {
  display: flex;
  transition: transform 0.45s ease;
}

.hero-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(169, 95, 42, 0.09), rgba(217, 152, 95, 0.16));
}

.hero-copy h1,
.hero-copy h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
  margin: 0 0 14px;
}

.hero-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.02rem;
}

.eyebrow {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: white;
  font-weight: 700;
}

.hero-art {
  min-height: 370px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  inset: auto auto 16% 10%;
  width: 180px;
  height: 180px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(-16deg);
}

.hero-art::after {
  inset: 12% 10% auto auto;
  transform: rotate(18deg);
  width: 220px;
  height: 220px;
}

.hero-art-1 {
  background: linear-gradient(135deg, #7f4218, #a95f2a, #d9985f);
}

.hero-art-2 {
  background: linear-gradient(135deg, #8f4f22, #c8783a, #ebbc8f);
}

.hero-art-3 {
  background: linear-gradient(135deg, #6f3a14, #a95f2a, #e7c8a6);
}

.hero-art-4 {
  background: linear-gradient(135deg, #5c3013, #8f4f22, #d9985f);
}

.hero-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.hero-nav,
.slider-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: white;
  color: var(--primary);
  font-size: 1.45rem;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: rgba(169, 95, 42, 0.3);
}

.hero-dots button.active {
  width: 34px;
  border-radius: 999px;
  background: var(--primary);
}

.highlights {
  margin: 20px 0 34px;
  border-radius: var(--radius-lg);
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.highlights article {
  padding: 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(169, 95, 42, 0.09), rgba(217, 152, 95, 0.16));
}

.highlights strong,
.section-head h2,
.category-tile h3,
.product-card h3,
.price-panel h3,
.footer h4 {
  display: block;
  margin-bottom: 8px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  margin: 0;
}

.compact {
  margin-bottom: 12px;
  align-items: flex-start;
}

.text-link {
  color: var(--primary);
  font-weight: 700;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 34px;
}

.category-tile {
  min-height: 210px;
  border-radius: 26px;
  padding: 24px;
  color: white;
  position: relative;
  overflow: hidden;
}

.category-tile span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  font-weight: 700;
}

.category-tile h3 {
  max-width: 220px;
  font-size: 1.5rem;
  margin-top: 18px;
}

.category-tile::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -20px;
  width: 150px;
  height: 150px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(30deg);
}

.men { background: linear-gradient(135deg, #7f4218, #a95f2a); }
.women { background: linear-gradient(135deg, #8f4f22, #c8783a); }
.kids { background: linear-gradient(135deg, #a95f2a, #d9985f); }
.home { background: linear-gradient(135deg, #7a4a2f, #c09474); }
.ornaments { background: linear-gradient(135deg, #8a4d20, #d08b52); }
.music { background: linear-gradient(135deg, #5c3013, #8f5f3e); }

.horizontal-slider {
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 10px;
  margin-bottom: 30px;
  background-clip: padding-box;
}

.horizontal-slider.small {
  margin-bottom: 0;
}

.slider-track {
  display: flex;
  gap: 6px;
  width: 100%;
  transition: transform 0.35s ease;
  will-change: transform;
  transform: translateZ(0);
  align-items: stretch;
  min-width: 0;
}

/* Make product cards size so exactly 3 fit inside the visible slider area */
.slider-track .product-card {
  flex: 0 0 calc((100% - 12px) / 3);
  max-width: calc((100% - 12px) / 3);
  min-width: 0;
  padding: 10px;
}


.double-slider-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 34px;
  align-items: start;
}

.double-slider-wrap > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Ensure both slider columns match height so tracks align */
.double-slider-wrap {
  align-items: stretch;
}

.double-slider-wrap > div .section-head {
  /* reserve consistent header space so sliders start aligned */
  flex: 0 0 auto;
  min-height: 72px;
}

.double-slider-wrap > div .horizontal-slider {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 12px;
}

.double-slider-wrap > div .horizontal-slider .slider-track {
  flex: 1 1 auto;
}

.product-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 12px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card.compact {
  min-width: 0;
}

.product-image {
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  background: #edf2ff;
  overflow: hidden;
  display: block;
  width: 100%;
}

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

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
}

.product-tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.offer-badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 159, 111, 0.12);
  color: var(--success);
  font-size: 0.82rem;
  font-weight: 800;
}

.product-card h3 {
  margin: 14px 0 8px;
  font-size: 1.06rem;
}

.product-card p {
  color: var(--muted);
  margin: 0 0 14px;
  min-height: 42px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.price-row strong {
  font-size: 1.3rem;
}

.price-row del {
  color: var(--muted);
}

.product-actions {
  display: flex;
  gap: 10px;
}

.product-actions button {
  flex: 1;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 10px 12px;
  background: white;
  font-weight: 700;
}

.product-actions .buy-btn {
  background: linear-gradient(135deg, #111827, #374151);
  color: white;
}

.popular-section {
  margin-top: 10px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
  align-items: start;
}

.products-column,
.price-panel {
  border-radius: var(--radius-lg);
  padding: 22px;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.toolbar-controls {
  display: flex;
  gap: 10px;
}

.chip {
  border: 1px solid var(--border);
  background: white;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-panel {
  position: sticky;
  top: 162px;
}

.price-panel label {
  display: block;
  font-weight: 700;
  margin: 20px 0 10px;
}

.price-panel select,
.price-panel input[type="range"] {
  width: 100%;
}

.price-panel select {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  background: white;
}

.price-summary {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.price-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--panel-alt);
  font-weight: 700;
}

.footer {
  margin: 34px 0 24px;
  border-radius: 32px;
  padding: 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 18px;
}

.footer-grid h4 {
  margin-top: 0;
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
}

.footer-logo .logo-image {
  width: 72px;
  height: 72px;
}

.footer-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.footer-form input {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
}

.bottom-bar {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.bottom-bar div {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(47, 31, 20, 0.42);
  display: grid;
  place-items: center;
  padding: 16px;
}

.auth-modal-card {
  width: min(420px, 100%);
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 22px;
  position: relative;
}

.auth-modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  color: var(--muted);
  cursor: pointer;
}

.auth-modal-eyebrow {
  margin: 0 0 8px;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
}

.auth-modal-card h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}

.auth-modal-note {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.provider-btn {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 11px 14px;
  margin-bottom: 10px;
  background: white;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text);
}

.provider-btn span:first-child {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 800;
}

.provider-btn.gmail span:first-child {
  background: color-mix(in srgb, var(--danger) 18%, white);
  color: var(--danger);
}

.provider-btn.facebook span:first-child {
  background: color-mix(in srgb, var(--primary) 18%, white);
  color: var(--primary-dark);
}

.provider-btn:hover {
  background: var(--panel-alt);
  border-color: var(--primary);
}

#authStatusButton {
  background: white;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}

#authStatusButton.is-signed-in {
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  color: white;
  border: 0;
  box-shadow: 0 10px 24px rgba(169, 95, 42, 0.25);
}

#authStatusButton #authStatusText {
  white-space: nowrap;
}

.auth-provider-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-dark);
}

#authStatusButton.is-provider-only {
  padding-left: 12px;
  padding-right: 12px;
  min-width: 46px;
  justify-content: center;
}

#authStatusButton.is-provider-only #authStatusText {
  display: none;
}

.is-hidden {
  display: none !important;
}

@media (max-width: 1240px) {
  .top-header {
    grid-template-columns: 1fr;
  }

  .main-nav,
  .header-actions {
    justify-content: flex-start;
  }

  .hero-slide {
    grid-template-columns: 1fr;
  }

  .catalog-layout,
  .footer-grid,
  .double-slider-wrap {
    grid-template-columns: 1fr;
  }

  .price-panel {
    position: static;
  }

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

@media (max-width: 900px) {
  .site-shell {
    width: min(100% - 20px, 1440px);
  }

  .category-grid,
  .highlights,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .toolbar,
  .bottom-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .search-bar,
  .footer-form {
    grid-template-columns: 1fr;
  }

  .header-actions {
    flex-wrap: wrap;
  }

  .product-actions {
    flex-direction: column;
  }

  .hero-slider,
  .horizontal-slider,
  .products-column,
  .price-panel,
  .footer,
  .category-grid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-anchor-wrap {
    position: relative;
  }

  .footer-anchor-wrap section {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    border: 0;
  }
}

/* ===== Product Zoom Modal ===== */
.product-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1300;
  padding: 16px;
}
.product-modal.show { display: flex; }

.pm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(47, 31, 20, 0.5);
  backdrop-filter: blur(2px);
}

.pm-panel {
  position: relative;
  z-index: 2;
  width: min(880px, 100%);
  max-height: 92vh;
  overflow: auto;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.pm-close {
  position: absolute;
  right: 12px;
  top: 10px;
  z-index: 3;
  border: 0;
  background: rgba(255, 255, 255, 0.9);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.pm-main {
  background: #edf2ff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.pm-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.pm-thumb {
  flex: 1 1 calc(20% - 8px);
  min-width: 64px;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pm-thumb img {
  width: 100%;
  height: 64px;
  object-fit: cover;
  display: block;
}

.pm-thumb span {
  font-size: 0.7rem;
  padding: 4px 0;
  color: var(--muted);
}

.pm-thumb.is-active {
  border-color: var(--primary);
}

.pm-info h3 { margin: 0 0 8px; font-size: 1.3rem; color: var(--text); }
.pm-price strong { font-size: 1.4rem; color: var(--primary); }
.pm-price del { color: var(--muted); margin-left: 8px; }
.pm-info p { color: var(--muted); margin: 10px 0 16px; }

.pm-actions { display: flex; gap: 10px; }
.pm-actions .buy-btn,
.pm-actions .wishlist-add {
  flex: 1;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 12px;
  font-weight: 700;
  cursor: pointer;
}
.pm-actions .buy-btn {
  background: linear-gradient(135deg, #111827, #374151);
  color: #fff;
  border: 0;
}

.zoom-hint {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.72rem;
  padding: 4px 8px;
  border-radius: 999px;
  pointer-events: none;
}

.product-image { position: relative; cursor: pointer; }

/* ===== Mobile / Tap compatibility ===== */
@media (max-width: 640px) {
  .pm-panel {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .pm-thumbs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
  }

  .pm-thumb {
    flex: 0 0 30%;
    scroll-snap-align: start;
    min-width: 0;
  }

  /* Bigger tap targets */
  .icon-button,
  .product-actions button,
  .buy-btn,
  .wishlist-add,
  .pm-actions button,
  .cart-button {
    min-height: 44px;
  }

  .main-nav a { padding: 12px 10px; }
  .hero-cta .primary-btn, .hero-cta .ghost-btn { flex: 1 1 100%; }

  /* Avoid hover-only affordances; show hint always on touch */
  .zoom-hint { display: inline-block; }
}
