/* ==========================================================================
   MADHURI HANDICRAFTS — LUXURY CATALOG HUB DESIGN SYSTEM
   Inspired by bronzerrcatalog.netlify.app with enhanced interactive features
   ========================================================================== */

:root {
  --black: #0c0b09;
  --black-deep: #070605;
  --surface-dark: #14100c;
  --surface-card: #18130e;
  --surface-elevated: #201913;
  --ivory: #f7f3eb;
  --ivory-dim: #cfc6b6;
  --ivory-muted: #9e9587;
  --bronze: #b3814f;
  --bronze-deep: #8f6032;
  --gold: #d9ad6d;
  --gold-light: #f5dfb8;
  --gold-glow: rgba(217, 173, 109, 0.45);
  --line: rgba(217, 173, 109, 0.20);
  --line-strong: rgba(217, 173, 109, 0.40);
  --line-subtle: rgba(217, 173, 109, 0.10);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-serif: 'Fraunces', serif;
  --font-display: 'Cinzel', serif;
  --font-sans: 'Manrope', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

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

body {
  background: #080706;
  background-image: 
    radial-gradient(ellipse 85% 50% at 50% -10%, rgba(217, 173, 109, 0.22), transparent 60%),
    radial-gradient(circle 500px at 15% 45%, rgba(140, 88, 40, 0.12), transparent 70%),
    radial-gradient(circle 600px at 85% 75%, rgba(45, 95, 170, 0.10), transparent 70%);
  color: var(--ivory);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
  position: relative;
  overflow-x: hidden;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

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

button {
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

/* Film Grain Ambient Texture */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.032;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Ambient Liquid Glass Mesh Light Orbs */
.liquid-ambient-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 0.95;
}

.liquid-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(95px);
  will-change: transform, opacity;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.orb-gold-top {
  top: -15%;
  left: 15%;
  width: clamp(420px, 52vw, 750px);
  height: clamp(420px, 52vw, 750px);
  background: radial-gradient(circle, rgba(223, 183, 108, 0.28) 0%, rgba(184, 134, 11, 0.14) 45%, transparent 72%);
  animation: floatLiquid1 16s infinite alternate;
}

.orb-amber-right {
  top: 30%;
  right: -12%;
  width: clamp(380px, 46vw, 680px);
  height: clamp(380px, 46vw, 680px);
  background: radial-gradient(circle, rgba(210, 115, 40, 0.22) 0%, rgba(150, 70, 20, 0.10) 50%, transparent 72%);
  animation: floatLiquid2 20s infinite alternate;
}

.orb-sapphire-left {
  top: 55%;
  left: -14%;
  width: clamp(420px, 50vw, 720px);
  height: clamp(420px, 50vw, 720px);
  background: radial-gradient(circle, rgba(45, 105, 195, 0.22) 0%, rgba(18, 55, 130, 0.09) 50%, transparent 72%);
  animation: floatLiquid3 24s infinite alternate;
}

.orb-bronze-center {
  bottom: -15%;
  right: 20%;
  width: clamp(440px, 55vw, 800px);
  height: clamp(440px, 55vw, 800px);
  background: radial-gradient(circle, rgba(217, 173, 109, 0.22) 0%, rgba(170, 95, 30, 0.08) 50%, transparent 72%);
  animation: floatLiquid1 22s infinite alternate-reverse;
}

@keyframes floatLiquid1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(65px, 45px) scale(1.12); }
  100% { transform: translate(-45px, 75px) scale(0.94); }
}

@keyframes floatLiquid2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-75px, -55px) scale(1.15); }
  100% { transform: translate(55px, 35px) scale(0.92); }
}

@keyframes floatLiquid3 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(55px, -45px) scale(1.1); }
  100% { transform: translate(-35px, 65px) scale(0.95); }
}

/* Page Wrapper */
.hub {
  min-height: 100dvh;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: max(24px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(36px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  position: relative;
  z-index: 2;
}

/* Top Quick Action Bar */
.hub-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-subtle);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  opacity: 0;
  animation: rise 0.8s var(--ease) 0.05s forwards;
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(217, 173, 109, 0.08);
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--gold);
  font-weight: 600;
}

.topbar-badge svg {
  width: 12px;
  height: 12px;
}

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

.topbar-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: rgba(24, 19, 14, 0.6);
  color: var(--ivory-dim);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  transition: all 0.3s var(--ease);
}

.topbar-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(217, 173, 109, 0.12);
  transform: translateY(-1px);
}

.topbar-btn svg {
  width: 13px;
  height: 13px;
}

/* Hub Header — Logo Left, Text Right Horizontal Layout (Flush Edge-Aligned with Cards) */
.hub-header {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: clamp(16px, 3.5vw, 24px);
  padding: clamp(18px, 3.2vh, 32px) 0 clamp(24px, 4vh, 38px);
  opacity: 0;
  animation: rise 0.8s var(--ease) 0.15s forwards;
  position: relative;
  width: 100%;
}

.hub-brand-crest-wrap {
  width: clamp(74px, 14vw, 105px);
  height: clamp(74px, 14vw, 105px);
  flex: 0 0 auto;
  border-radius: 18px;
  background: radial-gradient(circle at center, #241c14 0%, #120e0a 100%);
  border: 1px solid rgba(217, 173, 109, 0.45);
  box-shadow: 0 0 28px rgba(217, 173, 109, 0.28), 0 8px 20px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.hub-brand-crest-wrap:hover {
  transform: scale(1.03);
  box-shadow: 0 0 36px rgba(217, 173, 109, 0.45), 0 12px 26px rgba(0, 0, 0, 0.8);
}

.hub-brand-crest {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

.hub-header-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hub-header .wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 4.8vw, 38px);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #fff2dc 35%, #ffd488 75%, #dfb76c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.12;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}

.hub-header .tagline {
  margin-top: 5px;
  font-size: clamp(11px, 1.8vw, 13.5px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #dfb76c;
  font-weight: 700;
  display: block;
  opacity: 1;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.tagline-est {
  white-space: nowrap;
}

/* ==========================================================================
   FEATURE TILES SECTION (Bronzerr Style Showcase Cards)
   ========================================================================== */

.tiles-section-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: rise 0.8s var(--ease) 0.22s forwards;
}

.tiles-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}

.tiles {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 20px);
}

.tile {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(190px, 26vh, 260px);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ivory);
  border: 1px solid rgba(255, 235, 200, 0.16);
  background: linear-gradient(135deg, rgba(30, 24, 18, 0.65) 0%, rgba(18, 14, 10, 0.78) 50%, rgba(10, 8, 7, 0.90) 100%);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow: 
    0 20px 45px -12px rgba(0, 0, 0, 0.8),
    inset 0 1px 1.5px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 1px 0 rgba(0, 0, 0, 0.6),
    0 0 18px rgba(217, 173, 109, 0.05);
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.7s var(--ease) forwards;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
  cursor: pointer;
}

.tile:nth-child(1) { animation-delay: 0.24s; }
.tile:nth-child(2) { animation-delay: 0.32s; }
.tile:nth-child(3) { animation-delay: 0.40s; }
.tile:nth-child(4) { animation-delay: 0.48s; }
.tile:nth-child(5) { animation-delay: 0.54s; }

.tile:hover,
.tile:focus-visible {
  border-color: rgba(223, 183, 108, 0.65);
  transform: translateY(-5px) scale(1.008);
  box-shadow: 
    0 28px 60px -15px rgba(0, 0, 0, 0.9),
    0 0 32px -4px rgba(217, 173, 109, 0.35),
    inset 0 1.5px 2px 0 rgba(255, 255, 255, 0.42),
    inset 0 0 25px rgba(217, 173, 109, 0.12);
}

.tile::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), rgba(217, 173, 109, 0.14), transparent);
  transform: skewX(-24deg);
  transition: left 0.95s var(--ease);
  pointer-events: none;
  z-index: 4;
}

.tile:hover::after {
  left: 200%;
}

.tile:active {
  transform: translateY(-1px) scale(0.996);
}

.tile-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: blur(8px);
  transform: scale(1.08);
  transition: filter 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: filter, transform;
}

.tile-img.loaded {
  filter: blur(0);
  transform: scale(1);
}

.tile:hover .tile-img {
  transform: scale(1.04);
}

.tile-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(8, 7, 5, 0.88) 0%, rgba(8, 7, 5, 0.62) 38%, rgba(8, 7, 5, 0.24) 70%, rgba(8, 7, 5, 0.08) 100%);
  transition: opacity 0.4s var(--ease), background 0.4s var(--ease);
}

.tile:hover .tile-scrim {
  background: linear-gradient(105deg, rgba(8, 7, 5, 0.82) 0%, rgba(8, 7, 5, 0.50) 38%, rgba(8, 7, 5, 0.14) 70%, rgba(8, 7, 5, 0.04) 100%);
}

/* ==========================================================================
   LIVE SLIDING MASTERPIECE SHOWCASE TILES (Non-clickable, Auto-sliding)
   ========================================================================== */
.tile.tile-slideshow {
  cursor: default !important;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  min-height: clamp(260px, 34vh, 320px);
}

.tile.tile-slideshow .tile-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 7, 5, 0.94) 0%, rgba(8, 7, 5, 0.60) 35%, rgba(8, 7, 5, 0.10) 65%, transparent 100%) !important;
  pointer-events: none;
  z-index: 2;
}

.tile.tile-slideshow:hover,
.tile.tile-slideshow:focus-visible {
  transform: none !important;
  border-color: rgba(217, 173, 109, 0.5) !important;
  box-shadow: 
    0 20px 45px -12px rgba(0, 0, 0, 0.8),
    inset 0 1px 1.5px 0 rgba(255, 255, 255, 0.25),
    0 0 24px rgba(217, 173, 109, 0.16) !important;
}

.tile.tile-slideshow:active {
  transform: none !important;
}

.tile-slider-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  z-index: 1;
}

.tile-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.tile-slide-item {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center 28%;
  background-repeat: no-repeat;
  filter: brightness(1) contrast(1.03);
}

.tile-slideshow[data-category="deities"] .tile-slide-item {
  background-position: center 25%;
}

.tile-slideshow[data-category="nature"] .tile-slide-item {
  background-position: center 24%;
}

.tile-slideshow[data-category="collectibles"] .tile-slide-item {
  background-position: center 28%;
}

.tile-slide-badge {
  position: absolute;
  z-index: 5;
  top: clamp(12px, 2vw, 18px);
  right: clamp(12px, 2vw, 18px);
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(14, 11, 8, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(217, 173, 109, 0.38);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.55), inset 0 1px 1.5px rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  pointer-events: none;
}

.badge-pulse {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #dfb76c;
  box-shadow: 0 0 8px rgba(223, 183, 108, 0.9);
  animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

.tile-content {
  position: relative;
  z-index: 2;
  padding: clamp(18px, 3.2vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 7px;
  max-width: 580px;
}

.tile-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tile-kicker {
  font-size: clamp(9px, 1.4vw, 11px);
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.tile-chip {
  display: inline-block;
  font-size: 8.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 7px;
  background: rgba(217, 173, 109, 0.20);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ivory);
  font-weight: 600;
}

.tile-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: normal;
  font-size: clamp(22px, 3.8vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ivory);
}

.tile-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  font-family: var(--font-serif);
}

.tile-meta {
  font-size: clamp(10.5px, 1.5vw, 12.5px);
  letter-spacing: 0.08em;
  color: var(--ivory-dim);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.tile-action-hint {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
  font-weight: 600;
  opacity: 0.9;
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}

.tile:hover .tile-action-hint {
  transform: translateX(4px);
  color: var(--gold-light);
}

.tile-arrow {
  position: absolute;
  z-index: 5;
  top: clamp(14px, 2.2vw, 22px);
  right: clamp(14px, 2.2vw, 22px);
  width: clamp(34px, 4vw, 44px);
  height: clamp(34px, 4vw, 44px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 17, 13, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45), inset 0 1px 1.5px rgba(255, 255, 255, 0.4);
  transition: all 0.35s var(--ease);
}

.tile:hover .tile-arrow {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.08) rotate(-8deg);
  box-shadow: 0 0 16px var(--gold-glow);
}

.tile:hover .tile-arrow svg {
  stroke: var(--black);
}

.tile-arrow svg {
  width: 44%;
  height: 44%;
  stroke: var(--ivory);
  transition: stroke 0.3s, transform 0.3s;
}

/* Instagram Showcase Tile */
.tile.instagram {
  background: radial-gradient(circle at 15% 120%, #ffd77a 0%, #f9973a 20%, #e0542f 40%, #c22f7f 60%, #7c34ab 80%, #4a4bc9 100%);
  border-color: rgba(224, 84, 47, 0.4);
}

.tile.instagram .tile-scrim {
  background: linear-gradient(105deg, rgba(12, 10, 8, 0.75) 0%, rgba(12, 10, 8, 0.35) 50%, rgba(12, 10, 8, 0.08) 100%);
}

.tile.instagram .tile-kicker {
  color: #ffe9c7;
}

.tile.instagram:hover {
  border-color: #ff9f43;
  box-shadow: 0 24px 50px -16px rgba(194, 47, 127, 0.45);
}

.social-tile-icon {
  width: clamp(26px, 3.2vw, 34px);
  height: clamp(26px, 3.2vw, 34px);
  margin-bottom: 4px;
}

/* YouTube Showcase Tile */
.tile.youtube {
  background: radial-gradient(circle at 15% 120%, #ff4b4b 0%, #cc0000 35%, #800000 70%, #200404 100%);
  border-color: rgba(255, 0, 0, 0.35);
}

.tile.youtube .tile-scrim {
  background: linear-gradient(105deg, rgba(12, 10, 8, 0.82) 0%, rgba(12, 10, 8, 0.40) 50%, rgba(12, 10, 8, 0.1) 100%);
}

.tile.youtube .tile-kicker {
  color: #ffcccc;
}

.tile.youtube:hover {
  border-color: #ff5252;
  box-shadow: 0 24px 50px -16px rgba(204, 0, 0, 0.5);
}

/* Facebook Showcase Tile */
.tile.facebook {
  background: radial-gradient(circle at 15% 120%, #2e71e6 0%, #1552bd 40%, #0d3780 75%, #081a3d 100%);
  border-color: rgba(46, 113, 230, 0.35);
}

.tile.facebook .tile-scrim {
  background: linear-gradient(105deg, rgba(8, 14, 25, 0.85) 0%, rgba(8, 14, 25, 0.45) 50%, rgba(8, 14, 25, 0.1) 100%);
}

.tile.facebook .tile-kicker {
  color: #cce0ff;
}

.tile.facebook:hover {
  border-color: #4c8bf5;
  box-shadow: 0 24px 50px -16px rgba(24, 80, 181, 0.55);
}

/* Threads Showcase Tile */
.tile.threads {
  background: radial-gradient(circle at 15% 120%, #3a3a3a 0%, #1c1c1c 40%, #101010 75%, #050505 100%);
  border-color: rgba(255, 255, 255, 0.22);
}

.tile.threads .tile-scrim {
  background: linear-gradient(105deg, rgba(8, 8, 8, 0.85) 0%, rgba(8, 8, 8, 0.45) 50%, rgba(8, 8, 8, 0.1) 100%);
}

.tile.threads .tile-kicker {
  color: #e2e8f0;
}

.tile.threads:hover {
  border-color: #ffffff;
  box-shadow: 0 24px 50px -16px rgba(255, 255, 255, 0.3);
}

/* Google Profile Showcase Tile */
.tile.google-profile {
  background: radial-gradient(circle at 20% 120%, #e6a338 0%, #a66a1e 35%, #1f5080 70%, #0c233d 100%);
  border-color: rgba(230, 163, 56, 0.35);
}

.tile.google-profile .tile-scrim {
  background: linear-gradient(105deg, rgba(12, 16, 22, 0.82) 0%, rgba(12, 16, 22, 0.40) 50%, rgba(12, 16, 22, 0.1) 100%);
}

.tile.google-profile .tile-kicker {
  color: #ffe6bd;
}

.tile.google-profile:hover {
  border-color: #f5b942;
  box-shadow: 0 24px 50px -16px rgba(230, 163, 56, 0.45);
}

/* Hub Unified Cards Grid */
.hub-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  width: 100%;
}

.full-width-span,
.tile.full-width-span {
  grid-column: 1 / -1;
}

/* Social Media Bento Matrix - Always a balanced 2x2 luxury grid */
.hub-social-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  width: 100%;
}

.hub-social-matrix .tile {
  min-height: clamp(140px, 18vh, 180px);
}

.hub-social-matrix .tile.full-width-span {
  grid-column: 1 / -1;
}

@media (max-width: 540px) {
  .hub {
    padding: max(12px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) max(28px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left)) !important;
  }

  .hub-topbar {
    padding-bottom: 8px !important;
  }

  .hub-header {
    padding: 8px 0 14px !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 14px !important;
  }

  .hub-brand-crest-wrap {
    width: clamp(82px, 22vw, 94px) !important;
    height: clamp(82px, 22vw, 94px) !important;
    min-width: clamp(82px, 22vw, 94px) !important;
    border-radius: 18px !important;
    padding: 3px !important;
    flex-shrink: 0 !important;
    box-shadow: 0 0 24px rgba(217, 173, 109, 0.35), 0 8px 18px rgba(0, 0, 0, 0.85) !important;
    border: 1.2px solid rgba(217, 173, 109, 0.55) !important;
  }

  .hub-brand-crest {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    filter: drop-shadow(0 4px 10px rgba(217, 173, 109, 0.45)) drop-shadow(0 2px 6px rgba(0,0,0,0.85)) !important;
  }

  .hub-header-text {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-width: 0 !important;
  }

  .hub-header .wordmark {
    font-size: clamp(20px, 5.5vw, 24px) !important;
    letter-spacing: 0.12em !important;
    line-height: 1.1 !important;
  }

  .hub-header .tagline {
    font-size: clamp(8px, 2.1vw, 9.8px) !important;
    letter-spacing: 0.08em !important;
    margin-top: 4px !important;
    opacity: 1 !important;
    line-height: 1.35 !important;
    color: #e2be7e !important;
  }

  .hub-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px !important;
  }

  .hub-social-matrix {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .hub-social-matrix .tile {
    min-height: 126px !important;
    border-radius: 14px !important;
  }

  .hub-social-matrix .tile.full-width-span {
    grid-column: 1 / -1 !important;
  }

  .hub-social-matrix .tile-content {
    padding: 12px !important;
    gap: 3px !important;
  }

  .hub-social-matrix .tile-title {
    font-size: 17px !important;
    line-height: 1.15;
  }

  .hub-social-matrix .tile-kicker {
    font-size: 7.5px !important;
    letter-spacing: 0.16em !important;
  }

  .hub-social-matrix .tile-meta {
    font-size: 9.5px !important;
    line-height: 1.2 !important;
    margin-top: 1px;
  }

  .hub-social-matrix .tile-arrow {
    top: 10px !important;
    right: 10px !important;
    width: 28px !important;
    height: 28px !important;
  }

  .hub-social-matrix .social-tile-icon {
    width: 24px !important;
    height: 24px !important;
    margin-bottom: 2px;
  }
}

/* ==========================================================================
   PRIMARY CONVERSION CTA & CONNECT SECTION
   ========================================================================== */

.cta-section {
  margin-top: clamp(34px, 5.5vh, 52px);
  padding-top: clamp(28px, 4.5vh, 42px);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  opacity: 0;
  animation: rise 0.8s var(--ease) 0.55s forwards;
}

.cta-buttons-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

/* Full-Width Luxury Etsy Flagship Card */
.tile.etsy-flagship-card {
  width: 100%;
  min-height: clamp(210px, 28vh, 290px);
  border: 1px solid rgba(217, 173, 109, 0.45);
  background: radial-gradient(ellipse 90% 70% at 85% 50%, rgba(217, 173, 109, 0.22), transparent 75%), var(--surface-card);
  box-shadow: 0 20px 48px -14px rgba(0, 0, 0, 0.8), 0 0 30px -6px rgba(217, 173, 109, 0.22);
}

.tile.etsy-flagship-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 28px 60px -16px rgba(0, 0, 0, 0.92), 0 0 42px -4px rgba(217, 173, 109, 0.45);
}

.tile.etsy-flagship-card .tile-scrim {
  background: linear-gradient(105deg, rgba(8, 7, 5, 0.96) 0%, rgba(8, 7, 5, 0.80) 45%, rgba(8, 7, 5, 0.35) 85%, rgba(8, 7, 5, 0.15) 100%);
}

.tile.etsy-flagship-card .tile-content {
  max-width: 680px;
  gap: 10px;
}

.etsy-gold-chip {
  background: rgba(217, 173, 109, 0.25) !important;
  color: var(--gold-light) !important;
  border: 1px solid var(--gold) !important;
  font-weight: 700 !important;
  letter-spacing: 0.10em !important;
}

.etsy-card-action-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.etsy-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(14px, 1.8vw, 17px);
  letter-spacing: 0.02em;
  color: var(--black);
  background: linear-gradient(135deg, #fcedc9 0%, var(--gold) 45%, var(--bronze) 100%);
  padding: 13px 28px;
  border-radius: 100px;
  box-shadow: 0 10px 26px -8px rgba(217, 173, 109, 0.75), 0 0 16px rgba(217, 173, 109, 0.35);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.tile.etsy-flagship-card:hover .etsy-card-btn {
  transform: translateX(4px);
  box-shadow: 0 14px 34px -8px rgba(217, 173, 109, 0.95), 0 0 24px rgba(217, 173, 109, 0.5);
}

.etsy-card-btn svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.etsy-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--ivory-dim);
  font-weight: 500;
}

.etsy-trust-badge svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.secondary-btn-row {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 600px;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 12px 20px;
  border-radius: 100px;
  background: rgba(24, 19, 14, 0.65);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 235, 200, 0.20);
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.6), inset 0 1px 1.5px rgba(255, 255, 255, 0.2);
  color: var(--ivory);
  transition: all 0.3s var(--ease);
}

.secondary-btn:hover {
  border-color: var(--gold);
  background: rgba(217, 173, 109, 0.15);
  color: var(--gold);
  transform: translateY(-2px);
}

.secondary-btn svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.secondary-btn.review-btn-main {
  background: linear-gradient(135deg, rgba(217, 173, 109, 0.16) 0%, rgba(24, 19, 14, 0.9) 100%);
  border-color: rgba(217, 173, 109, 0.45);
  color: var(--gold-light);
}

.secondary-btn.review-btn-main svg {
  color: #dfb76c;
}

.secondary-btn.review-btn-main:hover {
  background: linear-gradient(135deg, rgba(217, 173, 109, 0.3) 0%, rgba(24, 19, 14, 0.95) 100%);
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 8px 24px rgba(217, 173, 109, 0.25);
}

/* ==========================================================================
   LUXURY CONNECT CARD (Business Identity Card)
   ========================================================================== */

/* ==========================================================================
   EXECUTIVE LUXURY VISITING CARD (Ankush Rai - Madhuri Furniture)
   ========================================================================== */

.visiting-card-section {
  width: 100%;
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

.visiting-card {
  width: 100%;
  max-width: 680px;
  background: radial-gradient(130% 120% at 50% -10%, rgba(28, 22, 17, 0.86) 0%, rgba(14, 11, 9, 0.94) 50%, rgba(7, 6, 5, 0.98) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1.5px solid rgba(217, 173, 109, 0.55);
  border-radius: 22px;
  box-shadow: 
    0 32px 80px -20px rgba(0, 0, 0, 0.95),
    inset 0 0 0 4px rgba(10, 9, 7, 0.85),
    inset 0 0 0 5.5px rgba(217, 173, 109, 0.35),
    inset 0 1px 2px rgba(255, 255, 255, 0.25),
    0 0 50px rgba(217, 173, 109, 0.14);
  position: relative;
  overflow: hidden;
  color: var(--ivory);
}

/* Card Front Header (Shield Crest & Brand Title) */
.vcard-brand-header {
  padding: clamp(28px, 5.5vw, 38px) clamp(20px, 4vw, 32px) clamp(22px, 4vw, 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(217, 173, 109, 0.14) 0%, rgba(217, 173, 109, 0.02) 100%);
  position: relative;
}

.vcard-crest-wrapper {
  margin-bottom: 8px;
}

.vcard-crest-img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(217, 173, 109, 0.42));
  transition: transform 0.3s var(--ease);
}

.visiting-card:hover .vcard-crest-img {
  transform: scale(1.04);
}

.vcard-brand-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.15;
}

.vcard-brand-main {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 5.5vw, 30px);
  font-weight: 800;
  letter-spacing: 0.24em;
  background: linear-gradient(180deg, #fff5dc 0%, #dfb76c 50%, #a87f2e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 14px rgba(217, 173, 109, 0.25);
}

.vcard-brand-sub {
  font-family: 'Cinzel', serif;
  font-size: clamp(13px, 3.2vw, 17px);
  font-weight: 600;
  letter-spacing: 0.46em;
  color: #dfb76c;
  margin-top: 1px;
}

.vcard-brand-est {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: #c49a4b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 4px;
}

.vcard-dash {
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #dfb76c, transparent);
}

.vcard-divider-gold {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(217, 173, 109, 0.3) 15%, rgba(217, 173, 109, 0.85) 50%, rgba(217, 173, 109, 0.3) 85%, transparent 100%);
}

/* Card Body Layout */
.vcard-body {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(0, 0.88fr);
  gap: clamp(24px, 4.5vw, 38px);
  padding: clamp(24px, 4.5vw, 36px) clamp(22px, 4.5vw, 36px);
  align-items: stretch;
}

/* Executive Leaders: Mr. Ankush Rai (Owner) & Late Mr. Anil Rai (Founder) */
.vcard-leaders {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px 28px;
  margin-bottom: 6px;
}

.vcard-leader {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.vcard-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(20px, 3.8vw, 25px);
  font-weight: 700;
  letter-spacing: 0.03em;
  background: linear-gradient(180deg, #ffffff 0%, #f6e6be 40%, #dfb76c 80%, #b8860b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.15;
  margin: 0;
}

.vcard-role-title {
  font-family: 'Manrope', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #dfb76c;
}

.vcard-leader-sep {
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, transparent, rgba(223, 183, 108, 0.45), transparent);
  align-self: center;
}

@media (max-width: 540px) {
  .vcard-leader-sep {
    display: none;
  }
}

.vcard-name-line {
  width: 100%;
  max-width: 200px;
  height: 2px;
  background: linear-gradient(90deg, #dfb76c 0%, #b8860b 80%, transparent 100%);
  margin-top: 10px;
  margin-bottom: 18px;
  border-radius: 2px;
}

/* Bullet Points List */
.vcard-tags-list {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.vcard-tags-list li {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(11px, 2.4vw, 12.5px);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #dfb76c;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.25;
}

.vcard-bullet {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #dfb76c;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(223, 183, 108, 0.5);
}

/* Contacts Rows */
.vcard-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vcard-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #ede3d1;
  background: rgba(217, 173, 109, 0.03);
  border: 1px solid rgba(217, 173, 109, 0.08);
  transition: all 0.25s var(--ease);
}

.vcard-contact-item:hover {
  background: rgba(217, 173, 109, 0.10);
  border-color: rgba(217, 173, 109, 0.28);
  color: #fff;
  transform: translateX(4px);
}

.vcard-contact-item.vcard-address-item {
  align-items: flex-start;
}

.vcard-contact-item.vcard-address-item .vcard-c-icon {
  margin-top: 2px;
}

.vcard-c-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(217, 173, 109, 0.35);
  background: linear-gradient(135deg, rgba(217, 173, 109, 0.20), rgba(179, 129, 79, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dfb76c;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.vcard-contact-item:hover .vcard-c-icon {
  background: linear-gradient(135deg, rgba(217, 173, 109, 0.4), rgba(179, 129, 79, 0.25));
  border-color: #dfb76c;
  box-shadow: 0 0 12px rgba(217, 173, 109, 0.35);
}

.vcard-c-icon svg {
  width: 17px;
  height: 17px;
}

.vcard-c-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  justify-content: center;
}

.vcard-c-label {
  font-size: 8.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a49177;
  font-weight: 700;
  line-height: 1.1;
}

.vcard-c-text {
  font-size: clamp(12.5px, 2.7vw, 13.5px);
  font-weight: 600;
  color: #f3ede2;
  line-height: 1.35;
}

.vcard-c-text span {
  display: block;
}

.vcard-c-sub {
  color: #c9bc9e;
  font-size: 12px;
  font-weight: 500;
  margin-top: 1px;
}

/* Secondary Column: Gold QR & Action Buttons */
.vcard-secondary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  height: 100%;
  justify-content: flex-end;
}

.vcard-actions {
  order: 1;
  width: 100%;
  max-width: 280px;
  margin-top: auto;
}

.vcard-qr-box {
  order: 2;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.vcard-qr-frame {
  position: relative;
  padding: 10px;
  background: #000;
  border: 1.5px solid rgba(217, 173, 109, 0.4);
  border-radius: 14px;
  box-shadow: 
    0 14px 35px rgba(0,0,0,0.85),
    0 0 22px rgba(217, 173, 109, 0.12);
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.vcard-qr-frame:hover {
  transform: translateY(-3px) scale(1.015);
  border-color: #dfb76c;
  box-shadow: 
    0 18px 45px rgba(0,0,0,0.9),
    0 0 28px rgba(217, 173, 109, 0.35);
}

.vcard-qr-image {
  width: clamp(150px, 32vw, 185px);
  height: clamp(150px, 32vw, 185px);
  object-fit: contain;
  display: block;
  border-radius: 6px;
}

.qr-download-overlay {
  position: absolute;
  inset: 10px;
  border-radius: 6px;
  background: rgba(10, 8, 6, 0.82);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #dfb76c;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(2px);
}

.qr-download-overlay svg {
  width: 28px;
  height: 28px;
  stroke: #dfb76c;
}

.vcard-qr-frame:hover .qr-download-overlay {
  opacity: 1;
}

/* Corner Accents for QR Frame */
.qr-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: #dfb76c;
  pointer-events: none;
}

.qr-corner.top-left {
  top: -2px;
  left: -2px;
  border-top: 3px solid #dfb76c;
  border-left: 3px solid #dfb76c;
  border-top-left-radius: 4px;
}

.qr-corner.top-right {
  top: -2px;
  right: -2px;
  border-top: 3px solid #dfb76c;
  border-right: 3px solid #dfb76c;
  border-top-right-radius: 4px;
}

.qr-corner.bottom-left {
  bottom: -2px;
  left: -2px;
  border-bottom: 3px solid #dfb76c;
  border-left: 3px solid #dfb76c;
  border-bottom-left-radius: 4px;
}

.qr-corner.bottom-right {
  bottom: -2px;
  right: -2px;
  border-bottom: 3px solid #dfb76c;
  border-right: 3px solid #dfb76c;
  border-bottom-right-radius: 4px;
}

.vcard-qr-caption {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.qr-tag {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  font-weight: 800;
  color: #dfb76c;
  text-transform: uppercase;
}

.qr-hint {
  font-size: 11px;
  color: #aa9c86;
}

/* Action Buttons */
.vcard-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 280px;
}

.vcard-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 16px;
  width: 100%;
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  box-sizing: border-box;
}

.vcard-action-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.vcard-save-btn {
  background: linear-gradient(135deg, #f1cb7c 0%, #d4af37 50%, #b8860b 100%);
  color: #0d0a06;
  border: none;
  box-shadow: 0 8px 20px rgba(217, 173, 109, 0.35);
}

.vcard-save-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(217, 173, 109, 0.5);
  filter: brightness(1.08);
}

.vcard-wa-btn {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.45);
  color: #4ade80;
}

.vcard-wa-btn:hover {
  background: rgba(37, 211, 102, 0.24);
  border-color: #25d366;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.vcard-review-btn {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(217, 119, 6, 0.26) 100%);
  border: 1px solid rgba(251, 191, 36, 0.55);
  color: #fbbf24;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.18);
}

.vcard-review-btn:hover {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.3) 0%, rgba(217, 119, 6, 0.45) 100%);
  border-color: #f59e0b;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}

/* Card Social Channels Strip */
.vcard-social-strip {
  background: rgba(14, 12, 9, 0.88);
  border-top: 1px solid rgba(217, 173, 109, 0.16);
  padding: 14px clamp(14px, 3vw, 24px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px clamp(8px, 2vw, 16px);
}

.vcard-social-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #dfb76c;
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 8px;
  background: rgba(217, 173, 109, 0.06);
  border: 1px solid rgba(217, 173, 109, 0.16);
  transition: all 0.25s var(--ease);
}

.vcard-social-item svg {
  width: 14px;
  height: 14px;
  color: #dfb76c;
  flex-shrink: 0;
  transition: color 0.25s ease;
}

.vcard-social-icon {
  font-size: 14px;
  line-height: 1;
}

.vcard-social-item:hover {
  background: rgba(217, 173, 109, 0.18);
  border-color: rgba(217, 173, 109, 0.45);
  color: #ffffff;
  transform: translateY(-2px);
}

.vcard-social-item:hover svg {
  color: #ffffff;
}

/* Responsive Collapse for Small Screens */
@media (max-width: 640px) {
  .vcard-body {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 22px 18px;
  }

  .vcard-secondary {
    padding-top: 16px;
    border-top: 1px dashed rgba(217, 173, 109, 0.18);
    width: 100%;
    height: auto;
  }

  .vcard-actions {
    max-width: 100%;
    margin-top: 0;
  }

  .vcard-qr-box {
    margin-top: 12px;
  }
}

/* ==========================================================================
   SOCIAL MATRIX GRID (1-Click Badges for all 5 Platforms)
   ========================================================================== */

.social-matrix-wrap {
  width: 100%;
  max-width: 680px;
  margin-top: 14px;
}

.social-matrix-title {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.social-matrix-title::before,
.social-matrix-title::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--line);
}

.social-matrix-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.social-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(20, 16, 12, 0.8);
  border: 1px solid var(--line);
  color: var(--ivory);
  transition: all 0.3s var(--ease);
}

.social-badge:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: rgba(217, 173, 109, 0.12);
  box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.6);
}

.social-badge svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.social-badge-text {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.social-badge-name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: 0.02em;
}

.social-badge-sub {
  font-size: 10px;
  color: var(--ivory-muted);
  letter-spacing: 0.08em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Individual Brand Accent Colors on Hover */
.social-badge.etsy:hover svg { color: #f1641e; }
.social-badge.instagram:hover svg { color: #e1306c; }
.social-badge.facebook:hover svg { color: #1877f2; }
.social-badge.youtube:hover svg { color: #ff0000; }
.social-badge.google:hover svg { color: #4285f4; }
.social-badge.whatsapp:hover svg { color: #25d366; }

/* ==========================================================================
   HUB FOOTER
   ========================================================================== */

.hub-footer {
  flex: 0 0 auto;
  text-align: center;
  padding: clamp(28px, 5vh, 42px) 12px clamp(70px, 10vh, 90px);
  font-size: clamp(10.5px, 1.4vw, 12px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  opacity: 0;
  animation: rise 0.8s var(--ease) 0.65s forwards;
  line-height: 1.8;
}

.dev-credit-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: all 0.3s var(--ease);
  display: inline-block;
  border-bottom: 1px solid rgba(217, 173, 109, 0.45);
  padding-bottom: 1px;
}

.dev-credit-link:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
  text-shadow: 0 0 12px rgba(217, 173, 109, 0.8);
}

/* ==========================================================================
   LOOKBOOK & DETAIL MODAL
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(8, 7, 5, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(165deg, #1d160f 0%, #120c06 100%);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  box-shadow: 0 35px 80px -20px rgba(0, 0, 0, 0.9), 0 0 30px rgba(217, 173, 109, 0.15);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s var(--ease);
  position: relative;
}

.modal-backdrop.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(12, 11, 9, 0.7);
  border: 1px solid var(--line);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease);
}

.modal-close-btn:hover {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.08);
}

.modal-close-btn svg {
  width: 18px;
  height: 18px;
}

/* Modal Content Layout */
.modal-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.modal-media {
  position: relative;
  min-height: 280px;
  background: #000;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

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

.modal-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(18, 12, 6, 0.95) 100%);
}

.modal-media-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(12, 11, 9, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 700;
}

.modal-details {
  padding: clamp(20px, 4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-kicker {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.6vw, 28px);
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.2;
}

.modal-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ivory-dim);
}

.modal-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 14px;
  background: rgba(12, 11, 9, 0.5);
  border: 1px solid var(--line-subtle);
  border-radius: 12px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spec-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-muted);
}

.spec-val {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ivory);
}

.modal-actions-row {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.modal-btn-primary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  color: var(--black);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s var(--ease);
}

.modal-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -6px rgba(217, 173, 109, 0.6);
}

.modal-btn-secondary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 100px;
  background: rgba(24, 19, 14, 0.8);
  border: 1px solid var(--line);
  color: var(--ivory);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s var(--ease);
}

.modal-btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(217, 173, 109, 0.15);
}

/* ==========================================================================
   ULTRA-LUXURY FLOATING WHATSAPP QUICK ACTION WIDGET
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 8px 10px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.94) 0%, rgba(20, 155, 130, 0.96) 100%);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1.2px solid rgba(255, 255, 255, 0.38);
  border-radius: 9999px;
  color: #ffffff;
  box-shadow: 
    0 14px 38px -6px rgba(37, 211, 102, 0.58),
    0 6px 18px rgba(0, 0, 0, 0.45),
    inset 0 1px 1.5px rgba(255, 255, 255, 0.5),
    inset 0 -1px 1px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
  background: linear-gradient(135deg, #2fe576 0%, #20be59 50%, #108e75 100%);
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: 
    0 20px 48px -6px rgba(37, 211, 102, 0.78),
    0 8px 24px rgba(0, 0, 0, 0.55),
    inset 0 1.5px 2px rgba(255, 255, 255, 0.65),
    0 0 28px rgba(37, 211, 102, 0.45);
  color: #ffffff;
}

.floating-wa-icon-box {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.24);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
}

.floating-whatsapp:hover .floating-wa-icon-box {
  transform: scale(1.1) rotate(-8deg);
}

.floating-wa-icon-box .wa-icon-svg {
  width: 23px;
  height: 23px;
  fill: #25d366;
}

.floating-wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  animation: waRadarPulse 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
  pointer-events: none;
}

@keyframes waRadarPulse {
  0% { transform: scale(0.9); opacity: 0.9; }
  70% { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}

.floating-wa-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.wa-status-text {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e6fffa;
  display: flex;
  align-items: center;
  gap: 5.5px;
}

.wa-status-dot {
  width: 6.5px;
  height: 6.5px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 6px #ffffff;
  display: inline-block;
  animation: waDotGlow 1.5s ease-in-out infinite alternate;
}

@keyframes waDotGlow {
  0% { opacity: 0.7; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1.15); box-shadow: 0 0 8px #ffffff; }
}

.wa-main-text {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #ffffff;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

@media (max-width: 580px) {
  .floating-whatsapp {
    padding: 6px 14px 6px 8px;
    bottom: max(16px, env(safe-area-inset-bottom, 16px));
    right: 14px;
    gap: 8px;
    border-radius: 9999px;
    box-shadow: 
      0 12px 30px -4px rgba(37, 211, 102, 0.65),
      0 4px 14px rgba(0, 0, 0, 0.5),
      inset 0 1px 1.5px rgba(255, 255, 255, 0.55);
  }
  .floating-wa-text {
    display: flex;
  }
  .wa-status-text {
    font-size: 8px;
    letter-spacing: 0.12em;
  }
  .wa-status-dot {
    width: 5.5px;
    height: 5.5px;
  }
  .wa-main-text {
    font-size: 11.5px;
  }
  .floating-wa-icon-box {
    width: 32px;
    height: 32px;
  }
  .floating-wa-icon-box .wa-icon-svg {
    width: 19px;
    height: 19px;
  }
}

/* ==========================================================================
   MOBILE LUXURY EXPERIENCE & AESTHETIC UPGRADE (Ultra-Rich Liquid & Glass)
   ========================================================================== */
@media (max-width: 600px) {
  /* Rich liquid ambient glow on small screens */
  .liquid-canvas {
    opacity: 1 !important;
  }

  .liquid-orb {
    filter: blur(55px) !important;
  }

  .orb-gold-top {
    top: -6% !important;
    left: 5% !important;
    width: 310px !important;
    height: 310px !important;
    background: radial-gradient(circle, rgba(223, 183, 108, 0.45) 0%, rgba(184, 134, 11, 0.22) 50%, transparent 75%) !important;
  }

  .orb-amber-right {
    top: 24% !important;
    right: -12% !important;
    width: 270px !important;
    height: 270px !important;
    background: radial-gradient(circle, rgba(210, 115, 40, 0.38) 0%, rgba(150, 70, 20, 0.18) 50%, transparent 75%) !important;
  }

  .orb-sapphire-left {
    top: 50% !important;
    left: -12% !important;
    width: 280px !important;
    height: 280px !important;
    background: radial-gradient(circle, rgba(45, 105, 195, 0.35) 0%, rgba(18, 55, 130, 0.16) 50%, transparent 75%) !important;
  }

  .orb-bronze-center {
    bottom: -6% !important;
    right: 4% !important;
    width: 290px !important;
    height: 290px !important;
    background: radial-gradient(circle, rgba(217, 173, 109, 0.34) 0%, rgba(170, 95, 30, 0.15) 50%, transparent 75%) !important;
  }

  /* 3 Masterpiece Showcase Cards: Properly BADE (large, tall & spacious) with full clear imagery */
  .hub-cards-grid > .tile:not(.etsy-flagship-card):not(.hub-social-matrix) {
    border-radius: 20px !important;
    border: 1px solid rgba(217, 173, 109, 0.40) !important;
    background: #0f0d0a !important;
    box-shadow: 
      0 18px 40px -10px rgba(0, 0, 0, 0.95),
      0 0 24px rgba(217, 173, 109, 0.12),
      inset 0 1px 1.5px rgba(255, 255, 255, 0.25) !important;
    min-height: clamp(235px, 35vh, 285px) !important;
  }

  .hub-cards-grid > .tile:not(.etsy-flagship-card):not(.hub-social-matrix) .tile-content {
    padding: 18px 20px !important;
    gap: 5px !important;
    max-width: 90% !important;
    z-index: 4 !important;
  }

  .hub-cards-grid > .tile:not(.etsy-flagship-card):not(.hub-social-matrix) .tile-kicker {
    font-size: 9px !important;
    letter-spacing: 0.18em !important;
    color: var(--gold-light) !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.95);
  }

  .hub-cards-grid > .tile:not(.etsy-flagship-card):not(.hub-social-matrix) .tile-title {
    font-size: 21px !important;
    line-height: 1.15 !important;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
  }

  .hub-cards-grid > .tile:not(.etsy-flagship-card):not(.hub-social-matrix) .tile-meta {
    font-size: 11.5px !important;
    line-height: 1.35 !important;
    color: #e5dac9 !important;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.95);
    white-space: normal !important;
    display: block !important;
  }

  .hub-cards-grid > .tile:not(.etsy-flagship-card):not(.hub-social-matrix) .tile-arrow {
    display: none !important;
  }

  .tile-slide-badge {
    top: 14px !important;
    right: 14px !important;
    padding: 5px 12px !important;
    font-size: 10px !important;
    letter-spacing: 0.12em !important;
    background: rgba(10, 8, 6, 0.82) !important;
    border: 1px solid rgba(217, 173, 109, 0.5) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(8px) !important;
  }

  /* Flagship Etsy Card on Mobile */
  .hub-cards-grid > .tile.etsy-flagship-card {
    border-radius: 16px !important;
    border: 1px solid rgba(217, 173, 109, 0.35) !important;
    min-height: 185px !important;
    box-shadow: 
      0 14px 34px -8px rgba(0, 0, 0, 0.85),
      0 0 18px rgba(217, 173, 109, 0.12),
      inset 0 1px 1.5px rgba(255, 255, 255, 0.28) !important;
  }

  .hub-cards-grid > .tile.etsy-flagship-card .tile-content {
    padding: 16px 14px !important;
    gap: 6px !important;
  }

  .hub-cards-grid > .tile.etsy-flagship-card .etsy-card-btn {
    padding: 10px 20px !important;
    font-size: 13.5px !important;
  }

  /* Vibrant, Luminous Jewel-Tone Social Cards on Mobile Screens */
  .tile.facebook {
    background: radial-gradient(circle at 10% 120%, #2563eb 0%, #1d4ed8 35%, #1e40af 70%, #0f172a 100%) !important;
    border: 1px solid rgba(96, 165, 250, 0.5) !important;
    box-shadow: 0 10px 24px -6px rgba(29, 78, 216, 0.5), inset 0 1px 1.5px rgba(255, 255, 255, 0.35) !important;
  }
  .tile.facebook .tile-scrim {
    background: linear-gradient(120deg, rgba(15, 23, 42, 0.35) 0%, rgba(15, 23, 42, 0.05) 100%) !important;
  }
  .tile.facebook .tile-kicker {
    color: #bfdbfe !important;
  }

  .tile.instagram {
    background: radial-gradient(circle at 15% 125%, #facc15 0%, #fb923c 22%, #f43f5e 46%, #c026d3 72%, #4f46e5 100%) !important;
    border: 1px solid rgba(251, 146, 60, 0.6) !important;
    box-shadow: 0 10px 24px -6px rgba(192, 38, 211, 0.5), inset 0 1px 1.5px rgba(255, 255, 255, 0.4) !important;
  }
  .tile.instagram .tile-scrim {
    background: linear-gradient(120deg, rgba(20, 10, 25, 0.35) 0%, rgba(20, 10, 25, 0.05) 100%) !important;
  }
  .tile.instagram .tile-kicker {
    color: #fef08a !important;
  }

  .tile.youtube {
    background: radial-gradient(circle at 10% 120%, #ef4444 0%, #dc2626 35%, #991b1b 70%, #200404 100%) !important;
    border: 1px solid rgba(248, 113, 113, 0.55) !important;
    box-shadow: 0 10px 24px -6px rgba(220, 38, 38, 0.5), inset 0 1px 1.5px rgba(255, 255, 255, 0.35) !important;
  }
  .tile.youtube .tile-scrim {
    background: linear-gradient(120deg, rgba(32, 4, 4, 0.35) 0%, rgba(32, 4, 4, 0.05) 100%) !important;
  }
  .tile.youtube .tile-kicker {
    color: #fca5a5 !important;
  }

  .tile.threads {
    background: radial-gradient(circle at 15% 120%, #3f3f46 0%, #27272a 35%, #18181b 70%, #09090b 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    box-shadow: 0 10px 24px -6px rgba(0, 0, 0, 0.6), inset 0 1px 1.5px rgba(255, 255, 255, 0.35) !important;
  }
  .tile.threads .tile-scrim {
    background: linear-gradient(120deg, rgba(9, 9, 11, 0.35) 0%, rgba(9, 9, 11, 0.05) 100%) !important;
  }
  .tile.threads .tile-kicker {
    color: #e4e4e7 !important;
  }

  .tile.google-profile {
    background: radial-gradient(circle at 15% 120%, #f59e0b 0%, #b45309 30%, #1d4ed8 72%, #091e3a 100%) !important;
    border: 1px solid rgba(251, 191, 36, 0.55) !important;
    box-shadow: 0 10px 24px -6px rgba(217, 119, 6, 0.45), inset 0 1px 1.5px rgba(255, 255, 255, 0.35) !important;
  }
  .tile.google-profile .tile-scrim {
    background: linear-gradient(120deg, rgba(9, 30, 58, 0.35) 0%, rgba(9, 30, 58, 0.05) 100%) !important;
  }
  .tile.google-profile .tile-kicker {
    color: #fde68a !important;
  }

  .tile:active {
    transform: scale(0.985);
    border-color: var(--gold) !important;
  }

  .hub-brand-crest-box {
    width: 74px;
    height: 74px;
    border-radius: 18px;
    box-shadow: 0 0 28px rgba(217, 173, 109, 0.35);
    border: 1.5px solid rgba(217, 173, 109, 0.5);
  }

  .hub-header-text .wordmark {
    font-size: clamp(21px, 5.5vw, 26px) !important;
    letter-spacing: 0.16em !important;
    background: linear-gradient(135deg, #ffffff 15%, #ffd285 55%, #c8933b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hub-header-text .tagline {
    font-size: clamp(9.5px, 2.4vw, 11.5px) !important;
    letter-spacing: 0.14em !important;
    color: var(--gold-light) !important;
    opacity: 1 !important;
  }

  .hub-container {
    padding: 16px 14px 40px !important;
  }
}

/* Disable heavy filters and animations on mobile for silky smooth 60-120fps scrolling */
@media (max-width: 768px) {
  .grain {
    display: none !important;
  }
  .liquid-ambient-canvas {
    display: none !important;
  }
}

/* ==========================================================================
   ANIMATIONS & RESPONSIVENESS
   ========================================================================== */

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

/* Tablet & Desktop Adjustments */
@media (min-width: 768px) {
  .modal-grid {
    grid-template-columns: 1fr 1.15fr;
  }

  .modal-media {
    border-radius: 20px 0 0 20px;
    min-height: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hub-topbar,
  .hub-header,
  .tiles-section-label,
  .tile,
  .cta-section,
  .hub-footer {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==========================================================================
   OFFLINE SKELETON LOADER & CONNECTION STATUS (PWA)
   ========================================================================== */
@keyframes goldShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.tile-slider-container {
  background: linear-gradient(90deg, #14100c 0%, #261c12 35%, #342516 50%, #261c12 65%, #14100c 100%);
  background-size: 250% 100%;
  animation: goldShimmer 2.2s infinite linear;
}

.offline-badge {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(20, 15, 11, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(217, 173, 109, 0.55);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.85), 0 0 24px rgba(217, 173, 109, 0.2);
  color: var(--gold-light);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

.offline-badge.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.offline-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 8px #f59e0b;
}

.offline-dot.online {
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
}
