/* ===== Royalty Mega Mall — Static Site Styles ===== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  --background: 0 0% 100%;
  --foreground: 0 0% 5%;
  --card: 0 0% 100%;
  --card-foreground: 0 0% 5%;
  --primary: 0 84% 44%;
  --primary-foreground: 0 0% 100%;
  --primary-dark: 0 84% 35%;
  --primary-light: 0 84% 55%;
  --primary-glow: 0 100% 60%;
  --secondary: 0 0% 96%;
  --secondary-foreground: 0 0% 9%;
  --muted: 0 0% 96%;
  --muted-foreground: 0 0% 45%;
  --accent: 0 0% 96%;
  --accent-foreground: 0 0% 9%;
  --border: 0 0% 90%;
  --input: 0 0% 90%;
  --ring: 0 84% 44%;
  --radius: 0.5rem;
  --hero-overlay: 0 0% 0%;
  --section-dark: 0 0% 4%;
  --section-dark-foreground: 0 0% 96%;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* --- Utilities --- */
.container { width: 100%; max-width: 1280px; margin: 0 auto; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.font-display { font-family: 'Playfair Display', serif; }
.text-primary { color: hsl(var(--primary)); }
.text-foreground { color: hsl(var(--foreground)); }
.text-muted { color: hsl(var(--muted-foreground)); }
.text-primary-fg { color: hsl(var(--primary-foreground)); }
.bg-background { background: hsl(var(--background)); }
.bg-secondary { background: hsl(var(--secondary)); }
.bg-primary { background: hsl(var(--primary)); }
.border-color { border-color: hsl(var(--border)); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* --- Navbar --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: hsl(var(--background));
  transition: all 0.5s ease;
}
.navbar.scrolled {
  background: hsla(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  border-bottom: 1px solid hsl(var(--border));
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
}
.navbar-brand {
  font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em;
}
.navbar-brand .brand-name { font-family: 'Playfair Display', serif; font-style: italic; color: hsl(var(--primary)); }
.navbar-brand .brand-suffix { font-weight: 300; letter-spacing: 0.15em; font-size: 1.1rem; text-transform: uppercase; color: hsl(var(--foreground)); }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-link {
  font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase;
  color: hsl(var(--muted-foreground)); transition: color 0.3s;
}
.nav-link:hover, .nav-link.active { color: hsl(var(--primary)); }
.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 0.5rem;
  color: hsl(var(--foreground));
}
.mobile-toggle svg { width: 24px; height: 24px; }
.mobile-menu {
  display: none; flex-direction: column; padding: 1rem 1.5rem 1.5rem; gap: 1rem;
  background: hsla(var(--background) / 0.98); backdrop-filter: blur(16px);
  border-bottom: 1px solid hsl(var(--border));
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase;
  color: hsl(var(--foreground)); transition: color 0.3s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: hsl(var(--primary)); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
}
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}
@media (min-width: 1024px) {
  .px-6 { padding-left: 3rem; padding-right: 3rem; }
}

/* --- Page Hero --- */
.page-hero {
  min-height: 60vh; display: flex; align-items: flex-end;
  background: hsl(var(--background)); padding-top: 5rem; padding-bottom: 4rem;
}
.page-hero-label {
  font-size: 0.6875rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.3em; color: hsl(var(--primary)); margin-bottom: 1rem;
}
.page-hero-title {
  font-size: clamp(3rem, 8vw, 7rem); font-weight: 700;
  line-height: 0.95; letter-spacing: -0.02em; color: hsl(var(--foreground));
}
.page-hero-title .accent { color: hsl(var(--primary)); }

/* --- Hero (Homepage) --- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: hsl(var(--background)); padding-top: 5rem;
  position: relative; overflow: hidden;
}
.hero-image-wrap {
  position: absolute; top: 0; right: 0; width: 100%; height: 100%;
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, hsl(var(--background)), hsla(var(--background) / 0.4), transparent);
}
.hero-content { position: relative; z-index: 10; padding-top: 3rem; padding-bottom: 3rem; }
.hero-subtitle {
  font-size: 0.6875rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.3em; color: hsl(var(--primary)); margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 7rem); font-weight: 700;
  line-height: 0.95; letter-spacing: -0.02em; color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
}
.hero-title .accent { color: hsl(var(--primary)); }
.hero-desc {
  font-size: 1rem; color: #0d0d0d; 
  max-width: 24rem; line-height: 1.7; margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 2rem; font-size: 0.875rem; font-weight: 600;
  border-radius: 9999px; border: none; cursor: pointer; transition: all 0.3s;
  text-decoration: none; line-height: 1.5;
}
.btn-primary {
  background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
}
.btn-primary:hover { background: hsl(var(--primary-dark)); }
.btn-outline {
  background: transparent; border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
}
.btn-outline:hover { background: hsl(var(--accent)); color: hsl(var(--accent-foreground)); }
.btn-primary-block {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
  padding: 1.25rem; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em;
  border: none; cursor: pointer; transition: all 0.3s; text-decoration: none;
}
.btn-primary-block:hover { background: hsl(var(--primary-dark)); }

/* --- Section Common --- */
.section { padding: 6rem 0; }
.section-label {
  font-size: 0.6875rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.3em; color: hsl(var(--primary)); margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2.5rem, 6vw, 5.5rem); font-weight: 700;
  line-height: 0.95; letter-spacing: -0.02em; color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
}
.section-title .accent { color: hsl(var(--primary)); }
.section-desc {
  font-size: 1.125rem; color: hsl(var(--muted-foreground));
  line-height: 1.7; max-width: 28rem;
}

@media (min-width: 768px) {
  .section { padding: 8rem 0; }
}

/* --- Grid Layouts --- */
.grid-12 { display: grid; gap: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }

@media (min-width: 768px) {
  .grid-2 { gap: 1.5rem; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-12 { grid-template-columns: repeat(12, 1fr); gap: 2rem; }
}
@media (min-width: 1024px) {
  .grid-12 { gap: 1rem; }
}

/* --- Campaign Section --- */
.campaign-section { position: relative; overflow: hidden; }
.campaign-watermark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: 20vw; font-weight: 700; text-transform: uppercase;
  letter-spacing: -0.05em; color: hsla(var(--foreground) / 0.03);
  white-space: nowrap; pointer-events: none; user-select: none;
}
.prize-card {
  border: 1px solid hsl(var(--border)); background: hsl(var(--background));
  padding: 2rem; transition: border-color 0.5s;
}
.prize-card:hover { border-color: hsla(var(--primary) / 0.4); }
.prize-icon {
  width: 3rem; height: 3rem; border-radius: 9999px;
  background: hsla(var(--primary) / 0.1); display: flex;
  align-items: center; justify-content: center; margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.prize-card:hover .prize-icon { background: hsla(var(--primary) / 0.2); }
.prize-icon svg { width: 22px; height: 22px; color: hsl(var(--primary)); }
.prize-count {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  color: hsl(var(--foreground)); letter-spacing: -0.02em; margin-bottom: 0.25rem;
}
.prize-label {
  font-size: 0.75rem; color: hsl(var(--muted-foreground));
  text-transform: uppercase; letter-spacing: 0.15em;
}

/* Visit Us box in campaign */
.visit-box {
  margin-top: 2.5rem; border: 1px solid hsl(var(--border));
  background: hsl(var(--background)); padding: 1.5rem;
}
.visit-box-label {
  font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: hsl(var(--primary)); font-weight: 600; margin-bottom: 0.5rem;
}
.visit-box-address { font-weight: 500; color: hsl(var(--foreground)); margin-bottom: 0.25rem; }
.visit-box-hours { font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin-bottom: 0.75rem; }

/* --- Categories Section --- */
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.cat-item {
  position: relative; overflow: hidden; cursor: pointer;
}
.cat-item:first-child { grid-row: span 1; }
.cat-item .cat-img-wrap { aspect-ratio: 3/4; overflow: hidden; }
.cat-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%); transition: all 0.7s;
}
.cat-item:hover img { filter: grayscale(0); transform: scale(1.1); }
.cat-overlay {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 1.5rem;
  background: linear-gradient(to top, hsla(var(--foreground) / 0.7), hsla(var(--foreground) / 0.1), transparent);
}
.cat-name {
  font-size: 1.25rem; font-weight: 700; color: hsl(var(--background));
  transition: color 0.3s;
}
.cat-item:hover .cat-name { color: hsl(var(--primary-foreground)); }
.cat-line {
  width: 0; height: 2px; background: hsl(var(--primary));
  transition: width 0.5s; margin-top: 0.5rem;
}
.cat-item:hover .cat-line { width: 3rem; }

@media (min-width: 768px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .cat-item:first-child { grid-column: span 2; grid-row: span 2; }
  .cat-name { font-size: 1.5rem; }
}
@media (min-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
}

/* --- Benefits / Values Cards --- */
.card-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }

.value-card {
  border: 1px solid hsl(var(--border)); padding: 2rem 2.5rem;
  transition: border-color 0.5s;
}
.value-card:hover { border-color: hsla(var(--primary) / 0.3); }
.value-card-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 2rem; }
.value-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 9999px;
  background: hsla(var(--primary) / 0.1); display: flex;
  align-items: center; justify-content: center; transition: background 0.3s;
}
.value-card:hover .value-icon { background: hsla(var(--primary) / 0.2); }
.value-icon svg { width: 24px; height: 24px; color: hsl(var(--primary)); }
.value-num {
  font-size: 3rem; font-weight: 700; letter-spacing: -0.02em;
  color: hsla(var(--foreground) / 0.06);
}
.value-title {
  font-size: 1.25rem; font-weight: 700; color: hsl(var(--foreground));
  letter-spacing: -0.02em; margin-bottom: 0.75rem;
}
@media (min-width: 768px) { .value-title { font-size: 1.5rem; } }
.value-desc { color: hsl(var(--muted-foreground)); line-height: 1.7; }

/* --- Gallery --- */
.gallery-grid { column-count: 2; column-gap: 1rem; }
@media (min-width: 768px) { .gallery-grid { column-count: 3; } }
.gallery-item {
  position: relative; overflow: hidden; cursor: pointer;
  break-inside: avoid; margin-bottom: 1rem;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%); transition: all 0.7s;
}
.gallery-item:hover img { filter: grayscale(0); transform: scale(1.1); }
.gallery-item-overlay {
  position: absolute; inset: 0; background: hsla(var(--primary) / 0);
  transition: background 0.5s;
}
.gallery-item:hover .gallery-item-overlay { background: hsla(var(--primary) / 0.1); }
.gallery-tall { aspect-ratio: 3/4; }
.gallery-square { aspect-ratio: 1; }

/* --- Video Section --- */
.video-section { position: relative; overflow: hidden; }
.video-frame {
  position: relative; width: 100%; aspect-ratio: 16/9;
  overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.video-thumbnail { width: 100%; height: 100%; object-fit: cover; }
.video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    hsla(var(--hero-overlay) / 0.5),
    hsla(var(--hero-overlay) / 0.15),
    hsla(var(--hero-overlay) / 0.3));
}
.play-btn {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  z-index: 10; background: none; border: none; cursor: pointer;
}
.play-btn-circle {
  width: 5rem; height: 5rem; border-radius: 9999px;
  border: 2px solid hsla(var(--section-dark-foreground) / 0.4);
  background: hsla(var(--section-dark) / 0.3); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.play-btn-circle:hover { border-color: hsl(var(--primary)); background: hsla(var(--primary) / 0.2); }
.play-btn-circle svg { width: 30px; height: 30px; color: hsl(var(--section-dark-foreground)); margin-left: 3px; }
.play-btn-circle:hover svg { color: hsl(var(--primary)); }
@media (min-width: 768px) { .play-btn-circle { width: 7rem; height: 7rem; } }
.video-iframe { width: 100%; height: 100%; border: 0; }
.video-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 20;
  width: 3rem; height: 3rem; border-radius: 9999px;
  background: hsla(var(--section-dark) / 0.8); backdrop-filter: blur(4px);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: hsl(var(--section-dark-foreground)); transition: background 0.3s;
}
.video-close:hover { background: hsl(var(--primary)); }
.video-close svg { width: 20px; height: 20px; }

/* Rotating circle text */
.rotating-text-wrap {
  position: absolute; top: -1.5rem; right: -1.5rem; z-index: 20;
  width: 10rem; height: 10rem;
}
@media (min-width: 768px) { .rotating-text-wrap { top: 1rem; right: 1rem; width: 13rem; height: 13rem; } }
@media (min-width: 1024px) { .rotating-text-wrap { top: 2rem; right: 2rem; width: 15rem; height: 15rem; } }
.rotating-text-wrap svg { width: 100%; height: 100%; animation: spin 25s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
.rotating-center {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.rotating-center-dot { width: 0.75rem; height: 0.75rem; border-radius: 9999px; background: hsl(var(--primary)); }

/* --- Testimonials --- */
.testimonial-card {
  border: 1px solid hsl(var(--border)); padding: 2rem 2.5rem;
  transition: border-color 0.5s; display: flex; flex-direction: column; justify-content: space-between;
}
.testimonial-card:hover { border-color: hsla(var(--primary) / 0.3); }
.testimonial-quote-icon {
  width: 32px; height: 32px; color: hsla(var(--primary) / 0.2);
  margin-bottom: 1.5rem; transition: color 0.3s;
}
.testimonial-card:hover .testimonial-quote-icon { color: hsla(var(--primary) / 0.4); }
.testimonial-text {
  font-size: 1.125rem; font-weight: 500; color: hsl(var(--foreground));
  line-height: 1.7; margin-bottom: 2rem;
}
@media (min-width: 768px) { .testimonial-text { font-size: 1.25rem; } }
.testimonial-author {
  border-top: 1px solid hsl(var(--border)); padding-top: 1.5rem;
}
.testimonial-name { font-weight: 700; color: hsl(var(--foreground)); letter-spacing: -0.02em; }
.testimonial-role {
  font-size: 0.6875rem; color: hsl(var(--muted-foreground));
  text-transform: uppercase; letter-spacing: 0.2em; margin-top: 0.25rem;
}

/* --- Location Section --- */
.location-grid { display: grid; gap: 2rem; }
@media (min-width: 1024px) {
  .location-grid { grid-template-columns: 7fr 5fr; gap: 1rem; }
}
.map-wrap {
  position: relative; aspect-ratio: 4/3; overflow: hidden; background: hsl(var(--muted));
}
.map-wrap iframe {
  width: 100%; height: 100%; border: 0;
  filter: grayscale(100%); transition: filter 0.7s;
}
.map-wrap:hover iframe { filter: grayscale(0); }
.map-badge {
  position: absolute; bottom: 1.5rem; right: -0.5rem;
  background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
  padding: 1rem 1.5rem; box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
@media (min-width: 1024px) { .map-badge { right: 1.5rem; } }
.map-badge-label {
  font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.2em; opacity: 0.7;
}
.map-badge-value { font-size: 1.125rem; font-weight: 700; }
.info-cards { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 1024px) { .info-cards { padding-left: 2rem; margin-top: 0; } }
.info-card {
  border: 1px solid hsl(var(--border)); padding: 2rem;
  transition: border-color 0.3s; display: flex; align-items: flex-start; gap: 1.25rem;
}
.info-card:hover { border-color: hsla(var(--primary) / 0.3); }
.info-card-icon {
  width: 3rem; height: 3rem; border-radius: 9999px; flex-shrink: 0;
  background: hsla(var(--primary) / 0.1); display: flex;
  align-items: center; justify-content: center; transition: background 0.3s;
}
.info-card:hover .info-card-icon { background: hsla(var(--primary) / 0.2); }
.info-card-icon svg { width: 20px; height: 20px; color: hsl(var(--primary)); }
.info-card-label {
  font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: hsl(var(--muted-foreground)); margin-bottom: 0.5rem;
}
.info-card-value { font-weight: 500; font-size: 1.125rem; color: hsl(var(--foreground)); }
.info-card-sub { color: hsl(var(--muted-foreground)); }
.info-card-value a { transition: color 0.3s; }
.info-card-value a:hover { color: hsl(var(--primary)); }

/* --- Footer --- */
.footer {
  background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
  position: relative; overflow: hidden;
}
.footer-watermark {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  pointer-events: none; user-select: none; overflow: hidden;
}
.footer-watermark span {
  font-size: 18vw; font-weight: 700; text-transform: uppercase;
  letter-spacing: -0.05em; opacity: 0.07; white-space: nowrap;
}
.footer-inner { position: relative; z-index: 10; }
.footer-cta {
  padding: 6rem 0 4rem; border-bottom: 1px solid hsla(var(--primary-foreground) / 0.15);
}
.footer-cta h2 {
  font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700;
  line-height: 0.95; letter-spacing: -0.02em;
}
.footer-cta .faded { opacity: 0.6; }
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem; padding: 4rem 0;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-col-label {
  font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.25em;
  opacity: 0.5; margin-bottom: 1.5rem;
}
.footer-link {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 1.125rem; font-weight: 500; opacity: 0.8; transition: opacity 0.3s;
  padding: 0.25rem 0;
}
.footer-link:hover { opacity: 1; }
.footer-link svg { opacity: 0; transition: opacity 0.3s; width: 16px; height: 16px; }
.footer-link:hover svg { opacity: 1; }
.footer-contact p, .footer-contact a {
  font-size: 1.125rem; font-weight: 500; opacity: 0.8;
  display: block; margin-bottom: 0.75rem;
}
.footer-contact a:hover { opacity: 1; }
.footer-website {
  font-size: 1.125rem; font-weight: 500; opacity: 0.8; transition: opacity 0.3s;
}
.footer-website:hover { opacity: 1; }
.social-links { display: flex; gap: 1rem; margin-top: 2rem; }
.social-link {
  width: 2.5rem; height: 2.5rem; border-radius: 9999px;
  border: 1px solid hsla(var(--primary-foreground) / 0.2);
  display: flex; align-items: center; justify-content: center;
  opacity: 0.7; transition: all 0.3s;
}
.social-link:hover { opacity: 1; background: hsla(var(--primary-foreground) / 0.1); }
.social-link svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid hsla(var(--primary-foreground) / 0.15);
  padding: 2rem 0; display: flex; flex-direction: column; align-items: center;
  justify-content: space-between; gap: 1rem;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-copy { font-size: 0.875rem; opacity: 0.5; }
.footer-logo { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }
.footer-logo .faded { opacity: 0.6; }

/* --- Contact Page --- */
.contact-list { border-top: 1px solid hsl(var(--border)); }
.contact-item {
  border-bottom: 1px solid hsl(var(--border)); padding: 1.25rem 0;
  display: flex; align-items: center; justify-content: space-between;
  transition: padding-left 0.3s;
}
.contact-item:hover { padding-left: 0.5rem; }
.contact-item-inner { display: flex; align-items: center; gap: 1rem; }
.contact-item-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 9999px;
  background: hsla(var(--primary) / 0.1); display: flex;
  align-items: center; justify-content: center; transition: background 0.3s;
}
.contact-item:hover .contact-item-icon { background: hsla(var(--primary) / 0.2); }
.contact-item-icon svg { width: 18px; height: 18px; color: hsl(var(--primary)); }
.contact-item-label {
  font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: hsl(var(--muted-foreground)); margin-bottom: 0.125rem;
}
.contact-item-value {
  font-size: 0.875rem; font-weight: 500; color: hsl(var(--foreground));
  transition: color 0.3s;
}
.contact-item:hover .contact-item-value { color: hsl(var(--primary)); }
.contact-arrow {
  color: hsl(var(--muted-foreground)); opacity: 0; transition: all 0.3s;
}
.contact-item:hover .contact-arrow { opacity: 1; color: hsl(var(--primary)); }
.contact-arrow svg { width: 16px; height: 16px; }
.contact-map {
  min-height: 500px; overflow: hidden; border: 1px solid hsl(var(--border));
  filter: grayscale(100%); transition: filter 0.7s;
}
.contact-map:hover { filter: grayscale(0); }
.contact-map iframe { width: 100%; height: 100%; min-height: 500px; border: 0; }
@media (min-width: 1024px) { .contact-map { min-height: 600px; } .contact-map iframe { min-height: 600px; } }

/* --- Shops Grid --- */
.shop-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .shop-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .shop-grid { grid-template-columns: repeat(4, 1fr); } }
.shop-card {
  position: relative; overflow: hidden; cursor: pointer;
}
.shop-img-wrap { aspect-ratio: 3/4; overflow: hidden; }
.shop-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%); transition: all 0.7s;
}
.shop-card:hover img { filter: grayscale(0); transform: scale(1.1); }
.shop-overlay {
  position: absolute; inset: 0; display: flex; align-items: flex-end;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, hsla(var(--foreground) / 0.7), hsla(var(--foreground) / 0.2), transparent);
}
.shop-name {
  font-size: 1.125rem; font-weight: 700; color: hsl(var(--background));
  transition: color 0.3s; letter-spacing: -0.02em;
}
@media (min-width: 768px) { .shop-name { font-size: 1.25rem; } }
.shop-card:hover .shop-name { color: hsl(var(--primary)); }
.shop-category {
  font-size: 0.6875rem; color: hsla(var(--background) / 0.6);
  text-transform: uppercase; letter-spacing: 0.2em; margin-top: 0.25rem;
}
.shop-line {
  width: 0; height: 2px; background: hsl(var(--primary));
  transition: width 0.5s; margin-top: 0.75rem;
}
.shop-card:hover .shop-line { width: 3rem; }

/* --- Scroll animations --- */
.scroll-fade {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-fade.visible {
  opacity: 1; transform: translateY(0);
}
.scroll-fade-left {
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-fade-left.visible { opacity: 1; transform: translateX(0); }
.scroll-fade-right {
  opacity: 0; transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-fade-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }
