/* ==========================================================================
   MODA DE FAVELA — LINK-IN-BIO PREMIUM
   Design System & Styling
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,500;0,600;0,700;1,700&family=Rubik:ital,wght@0,400;0,500;0,600;0,700;1,500&family=Syne:wght@700;800&display=swap');

/* --- Root Tokens & Variables --- */
:root {
  --bg-canvas: #060709;
  --bg-surface: #0d1015;
  --bg-surface-glass: rgba(14, 18, 24, 0.72);
  --bg-surface-elevated: #141820;
  --bg-card: rgba(20, 24, 32, 0.65);
  
  --brand-red: #E40044;
  --brand-red-hover: #ff0b54;
  --brand-red-glow: rgba(228, 0, 68, 0.4);
  --brand-red-dim: rgba(228, 0, 68, 0.12);
  --brand-red-border: rgba(228, 0, 68, 0.35);

  --brand-green: #25D366;
  --brand-green-glow: rgba(37, 211, 102, 0.3);
  --brand-green-dim: rgba(37, 211, 102, 0.12);

  --text-primary: #FFFFFF;
  --text-secondary: #9BA3AF;
  --text-tertiary: #606875;
  --text-muted: #4B5563;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-active: rgba(255, 255, 255, 0.24);

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  --font-display: 'Chakra Petch', 'Syne', sans-serif;
  --font-body: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --shadow-card: 0 16px 36px -10px rgba(0, 0, 0, 0.65);
  --shadow-glow: 0 8px 30px var(--brand-red-glow);

  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base Reset & Overflow Control --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  min-height: 100%;
  background-color: var(--bg-canvas);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden !important;
}

/* Focus styles for accessibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 3px;
}

/* --- Atmospheric Background Layer --- */
.bg-canvas-container {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-video-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: contrast(1.15) brightness(0.85);
  transition: opacity 1s ease;
}

.bg-grain-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 50% 15%, rgba(228, 0, 68, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(13, 16, 21, 0.95) 0%, transparent 70%),
    linear-gradient(180deg, rgba(6, 7, 9, 0.6) 0%, rgba(6, 7, 9, 0.9) 45%, #060709 100%);
  mix-blend-mode: multiply;
}

#three-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.45;
}

/* --- Main Layout Container --- */
.page-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 16px 64px;
}

.content-container {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* --- Hero Section & Brand Header --- */
.brand-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px;
}

.brand-avatar-box {
  position: relative;
  width: 114px;
  height: 114px;
  margin-bottom: 22px;
}

.avatar-ring-glow {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, var(--brand-red), transparent 60%, var(--brand-red));
  opacity: 0.85;
  filter: blur(8px);
  animation: rotateGlow 14s linear infinite;
}

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

.avatar-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #000;
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.8);
  padding: 8px;
}

.brand-logo-img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.9));
}

.status-badge-floating {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  background: #08090b;
  border: 1px solid rgba(37, 211, 102, 0.45);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.9);
  white-space: nowrap;
  z-index: 3;
}

.status-pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--brand-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--brand-green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.status-badge-text {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--brand-green);
  text-transform: uppercase;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 6px;
  line-height: 1.15;
}

.brand-tagline {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.45;
  max-width: 380px;
  margin: 0 auto 14px;
}

/* Trust Pill Badges */
.brand-metrics-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.trust-metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: #E2E8F0;
  backdrop-filter: blur(10px);
  transition: border-color 0.25s var(--ease-spring), background 0.25s var(--ease-spring);
}

.trust-metric-pill:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

.trust-metric-pill svg {
  color: var(--brand-red);
  flex-shrink: 0;
}

.trust-metric-pill strong {
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 700;
}

/* --- Proven Offer & Verified Condition Bar --- */
.offer-verified-banner {
  width: 100%;
  background: linear-gradient(135deg, rgba(228, 0, 68, 0.16) 0%, rgba(14, 18, 24, 0.85) 100%);
  border: 1px solid var(--brand-red-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 8px 24px -6px rgba(228, 0, 68, 0.2);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.offer-verified-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--brand-red);
  box-shadow: 0 0 10px var(--brand-red);
}

.offer-info-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.offer-tag-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.offer-tag-label svg {
  width: 13px;
  height: 13px;
}

.offer-highlight-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.01em;
}

.offer-sub-detail {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.offer-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-red);
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
  min-height: 44px;
  box-shadow: 0 4px 14px var(--brand-red-glow);
  transition: transform 0.2s var(--ease-spring), background 0.2s var(--ease-spring), box-shadow 0.2s var(--ease-spring);
}

.offer-cta-link:hover {
  background: var(--brand-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--brand-red-glow);
}

/* --- Primary Direct Action CTAs (Above the fold priorities) --- */
.actions-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* Base Action Card Link */
.action-card {
  position: relative;
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  text-decoration: none;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.25s var(--ease-spring), border-color 0.25s var(--ease-spring), background-color 0.25s var(--ease-spring), box-shadow 0.25s var(--ease-spring);
}

.action-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-active);
  background: rgba(26, 32, 42, 0.8);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8);
}

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

/* Left content layout */
.action-card-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.action-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-spring), background 0.25s var(--ease-spring);
}

.action-icon-circle svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
  transition: transform 0.25s var(--ease-spring);
}

.action-card:hover .action-icon-circle svg {
  transform: scale(1.1);
}

.action-text-box {
  display: flex;
  flex-direction: column;
}

.action-title {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.action-subtitle {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.35;
  margin-top: 2px;
}

.action-arrow-icon {
  width: 20px;
  height: 20px;
  color: var(--text-tertiary);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-spring), color 0.25s var(--ease-spring);
}

.action-card:hover .action-arrow-icon {
  color: #FFFFFF;
  transform: translateX(4px);
}

/* --- Card Highlight 1: WHATSAPP PRINCIPAL (PRIORIDADE SUPREMA) --- */
.action-card-whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.12) 0%, rgba(14, 20, 16, 0.85) 100%);
  border: 1px solid rgba(37, 211, 102, 0.35);
  box-shadow: 0 10px 30px -8px var(--brand-green-glow);
}

.action-card-whatsapp .action-icon-circle {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.4);
  color: var(--brand-green);
}

.action-card-whatsapp .action-title {
  color: #FFFFFF;
}

.action-card-whatsapp .action-subtitle {
  color: #8CE8AB;
}

.action-card-whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.6);
  box-shadow: 0 14px 38px -6px var(--brand-green-glow);
}

.action-card-whatsapp:hover .action-arrow-icon {
  color: var(--brand-green);
}

/* --- Card Highlight 2: SITE OFICIAL 24H (LOJA COMPLETA) --- */
.action-card-store {
  background: linear-gradient(135deg, rgba(228, 0, 68, 0.15) 0%, rgba(20, 24, 32, 0.88) 100%);
  border: 1px solid var(--brand-red-border);
  box-shadow: 0 10px 30px -8px var(--brand-red-glow);
}

.action-card-store .action-icon-circle {
  background: rgba(228, 0, 68, 0.15);
  border-color: rgba(228, 0, 68, 0.4);
  color: var(--brand-red);
}

.action-card-store .action-title {
  color: #FFFFFF;
}

.action-card-store .action-subtitle {
  color: #F87171;
}

.action-card-store:hover {
  border-color: rgba(228, 0, 68, 0.65);
  box-shadow: 0 14px 38px -6px var(--brand-red-glow);
}

.action-card-store:hover .action-arrow-icon {
  color: var(--brand-red);
}

/* --- Card Highlight 3: GRUPO VIP EXCLUSIVO --- */
.action-card-vip {
  border-color: rgba(255, 183, 3, 0.25);
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.08) 0%, rgba(18, 22, 28, 0.75) 100%);
}

.action-card-vip .action-icon-circle {
  background: rgba(255, 183, 3, 0.12);
  border-color: rgba(255, 183, 3, 0.35);
  color: var(--brand-gold);
}

.action-card-vip:hover {
  border-color: rgba(255, 183, 3, 0.5);
  box-shadow: 0 10px 30px rgba(255, 183, 3, 0.2);
}

/* --- Card Highlight 4: INSTAGRAM OFICIAL --- */
.action-card-instagram .action-icon-circle {
  background: rgba(225, 48, 108, 0.12);
  border-color: rgba(225, 48, 108, 0.3);
  color: #E1306C;
}

.action-card-instagram:hover {
  border-color: rgba(225, 48, 108, 0.45);
}

/* --- Card Highlight 5: LOCALIZAÇÃO & ENDEREÇO --- */
.action-card-maps .action-icon-circle {
  background: rgba(66, 133, 244, 0.12);
  border-color: rgba(66, 133, 244, 0.3);
  color: #4285F4;
}

.action-card-maps:hover {
  border-color: rgba(66, 133, 244, 0.45);
}

/* --- Shiny Sweep Glow Effect (Discrete, diagonal, premium) --- */
.shiny-sweep {
  position: relative;
  overflow: hidden;
}

.shiny-sweep::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 100%
  );
  transform: rotate(25deg);
  pointer-events: none;
  animation: shinySweep 7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes shinySweep {
  0% { left: -60%; }
  20% { left: 160%; }
  100% { left: 160%; }
}

/* --- Showcase Editorial: Banner Real da Loja Oficial --- */
.showcase-banner-card {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: #000;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-spring), border-color 0.3s var(--ease-spring);
}

.showcase-banner-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-red-border);
}

.showcase-banner-link {
  display: block;
  text-decoration: none;
  position: relative;
}

.showcase-img-container {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.showcase-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease-spring), filter 0.6s var(--ease-spring);
}

.showcase-banner-card:hover .showcase-banner-img {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.showcase-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(6, 7, 9, 0.88) 85%, #060709 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.showcase-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-red);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  width: fit-content;
  margin-bottom: 8px;
}

.showcase-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 6px;
}

.showcase-description {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.showcase-description .cta-inline {
  color: #FFFFFF;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.showcase-description svg {
  color: var(--brand-red);
}

/* --- Section Heading --- */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 10px;
  margin-bottom: -4px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--brand-red);
  border-radius: 2px;
}

.section-link-all {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-red);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.section-link-all:hover {
  color: var(--brand-red-hover);
}

/* --- Featured Real Products Grid (2x2) --- */
.products-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
}

.product-mini-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s var(--ease-spring), border-color 0.25s var(--ease-spring);
}

.product-mini-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
}

.product-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 13;
  background: #0a0c10;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-spring);
}

.product-mini-card:hover .product-img {
  transform: scale(1.05);
}

.product-pill-discount {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--brand-red);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  letter-spacing: 0.04em;
  box-shadow: 0 4px 10px rgba(228, 0, 68, 0.4);
}

.product-info-box {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(14, 18, 24, 0.95);
  flex-grow: 1;
}

.product-name {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-sub-detail {
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 4px;
}

.product-price-current {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
}

.product-price-old {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  text-decoration: line-through;
}

.product-payment-note {
  font-size: 0.68rem;
  color: #4bb98c;
  font-weight: 500;
}

/* --- Category Quick Chips --- */
.category-chips-scroll {
  display: flex;
  gap: 8px;
  width: 100%;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

.category-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  padding: 9px 16px;
  border-radius: var(--radius-full);
  text-decoration: none;
  color: #D1D5DB;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s var(--ease-spring);
}

.category-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* --- Store Location & Hours Section --- */
.location-card {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.location-icon-box {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red);
  flex-shrink: 0;
}

.location-item-content {
  display: flex;
  flex-direction: column;
}

.location-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
}

.location-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-top: 2px;
}

.location-desc a {
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.location-desc a:hover {
  color: var(--brand-red);
}

/* --- Store Footer --- */
.page-footer {
  width: 100%;
  max-width: 520px;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.footer-nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.footer-nav-link {
  font-size: 0.78rem;
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav-link:hover {
  color: #FFFFFF;
}

.footer-legal {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-legal strong {
  color: var(--text-secondary);
  font-weight: 500;
}

/* --- Responsive Adaptations --- */
@media (max-width: 480px) {
  .page-wrapper {
    padding: 20px 12px 48px;
  }
  
  .brand-name {
    font-size: 1.65rem;
  }
  
  .brand-avatar-box {
    width: 96px;
    height: 96px;
  }

  .action-card {
    padding: 12px 16px;
    min-height: 60px;
  }

  .action-icon-circle {
    width: 40px;
    height: 40px;
  }

  .action-title {
    font-size: 0.96rem;
  }

  .offer-verified-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .offer-cta-link {
    width: 100%;
    justify-content: center;
  }

  .showcase-img-container {
    height: 220px;
  }
}

@media (min-width: 768px) {
  .page-wrapper {
    padding: 48px 24px 80px;
  }

  .content-container {
    max-width: 540px;
  }
}

/* --- Reduced Motion Accessibility --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .shiny-sweep::after {
    display: none !important;
  }
  
  .avatar-ring-glow {
    animation: none !important;
  }
  
  #three-canvas {
    display: none !important;
  }
}
