/* Luxury Theme Design Tokens */
:root {
  /* Common colors */
  --gold-primary: #c5a059;
  --gold-hover: #b8860b;
  --gold-light: #f7f3e9;
  --text-dark: #121212;
  --text-light: #ffffff;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.3);
  --border-radius: 12px;
}

/* Dark Theme Variables */
body.dark-theme {
  --bg-main: #0d0d0d;
  --bg-card: #181818;
  --bg-surface: #1e1e1e;
  --bg-glass: rgba(24, 24, 24, 0.75);
  --text-primary: #f0f0f0;
  --text-secondary: #909090;
  --border-color: rgba(255, 255, 255, 0.08);
  --glow-color: rgba(197, 160, 89, 0.15);
}

/* Light Theme Variables */
body.light-theme {
  --bg-main: #faf9f6;
  --bg-card: #ffffff;
  --bg-surface: #f1f0ea;
  --bg-glass: rgba(255, 255, 255, 0.85);
  --text-primary: #1c1a17;
  --text-secondary: #706b64;
  --border-color: rgba(0, 0, 0, 0.08);
  --glow-color: rgba(197, 160, 89, 0.08);
}

/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background-color 0.4s, color 0.4s;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  isolation: isolate; /* Ensures z-index: -1 children stay above the body background */
}

/* Ambient Background Glows */
.ambient-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(100px); /* Reduced blur for visibility */
  z-index: -1;
  pointer-events: none;
  opacity: 1; /* Full opacity */
  animation-duration: 6s; /* Much faster */
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}
.glow-1 {
  top: -10vw;
  right: -10vw;
  background-color: rgba(197, 160, 89, 0.4); /* Much stronger gold */
  animation-name: float1;
}
.glow-2 {
  bottom: -15vw;
  left: -15vw;
  background-color: rgba(197, 160, 89, 0.4); /* Much stronger gold */
  animation-name: float2;
  animation-delay: -7.5s; /* Start midway */
}
.glow-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background-color: rgba(197, 160, 89, 0.25);
  animation-name: pulse;
  animation-duration: 8s;
  filter: blur(120px);
  opacity: 0.8;
}

@keyframes float1 {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  33% { transform: translate(-10vw, 15vh) scale(1.2) rotate(45deg); }
  66% { transform: translate(5vw, 25vh) scale(0.9) rotate(-15deg); }
  100% { transform: translate(25vw, -5vh) scale(1.3) rotate(30deg); }
}

@keyframes float2 {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  33% { transform: translate(15vw, -10vh) scale(1.2) rotate(-30deg); }
  66% { transform: translate(-5vw, -20vh) scale(0.8) rotate(15deg); }
  100% { transform: translate(-25vw, 10vh) scale(1.3) rotate(-45deg); }
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(0.7); opacity: 0.4; }
  50% { transform: translate(-50%, -50%) scale(1.5); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(0.7); opacity: 0.4; }
}

/* Container */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px 64px;
}

/* Header */
header {
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(12px);
  background-color: var(--bg-glass);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition);
}

.header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
}
.logo-subtitle {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold-primary);
  font-weight: 500;
}
.logo-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Language Selector */
/* Custom Dropdown Styles */
.custom-dropdown {
  position: relative;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  /* Removed margin-right to flush against the separator */
}

/* Vertical Separator between Lang and Theme */
.header-divider {
  width: 1px;
  height: 20px;
  background-color: var(--border-color);
  margin: 0 4px;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 14px;
  border-radius: 17px;
  background: transparent;
  border: none;
  transition: all 0.3s ease;
  font-weight: 300;
  font-size: 13px;
  color: var(--text-primary);
  box-sizing: border-box;
}

.dropdown-trigger:hover {
  background-color: rgba(197, 160, 89, 0.08);
  color: var(--gold-primary);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 8px;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 100;
}

body.light-theme .dropdown-menu {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.custom-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 10px 15px;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 13px;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(197, 160, 89, 0.1);
  color: var(--text-primary);
}

.dropdown-item.active {
  color: var(--gold-primary);
  font-weight: 500;
}

/* Buttons */
.icon-btn {
  background: transparent;
  border: none;
  color: var(--text-primary);
  height: 34px;
  width: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-sizing: border-box;
}
.icon-btn:hover {
  color: var(--gold-primary);
  background-color: rgba(197, 160, 89, 0.08);
}

/* Theme Toggle icons display */
body.dark-theme .sun-icon { display: block; }
body.dark-theme .moon-icon { display: none; }
body.light-theme .sun-icon { display: none; }
body.light-theme .moon-icon { display: block; }

/* Hero */
.hero {
  text-align: center;
  padding: 60px 20px 40px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.hero p {
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* Filter controls */
.filter-bar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.search-box {
  display: flex;
  align-items: center;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 14px 20px;
  transition: var(--transition);
}
.search-box:focus-within {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.15);
}
.search-box svg {
  color: var(--text-secondary);
  margin-right: 12px;
}
.search-box input {
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 300;
  width: 100%;
  font-family: var(--font-sans);
}

/* Brand Tabs */
.brand-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 5px;
}
.brand-chip {
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 13px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-weight: 300;
  letter-spacing: 0.5px;
}

body.light-theme .brand-chip {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.08);
}

.brand-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.5);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

body.light-theme .brand-chip:hover {
  background: rgba(0, 0, 0, 0.06);
}

.brand-chip.active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(197, 160, 89, 0.05) 100%);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15), inset 0 0 10px rgba(212, 175, 55, 0.05);
  font-weight: 400;
  transform: translateY(-1px);
}

body.light-theme .brand-chip.active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(197, 160, 89, 0.05) 100%);
}

/* Active Chips */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.active-chip {
  display: inline-flex;
  align-items: center;
  background-color: rgba(197, 160, 89, 0.1);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
}
.active-chip button {
  background: none;
  border: none;
  color: inherit;
  margin-left: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

/* Card */
.product-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-md);
}

.card-img-wrapper {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background-color: var(--bg-surface);
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.product-card:hover .card-img {
  transform: scale(1.08);
}

/* Badge overlays */
.card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.badge {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}
.badge-gold {
  background-color: var(--gold-primary);
  color: #fff;
}
.badge-glass {
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  backdrop-filter: blur(4px);
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-brand {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--gold-primary);
  letter-spacing: 1px;
  margin-bottom: 4px;
  font-weight: 400;
}
.card-title {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 12px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
}
.card-price {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-primary);
}
.card-code {
  font-size: 11px;
  color: var(--text-secondary);
}

/* Modal / Drawer Overlay */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  justify-content: flex-end; /* Drawer style */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 850px;
  height: 100%;
  background-color: var(--bg-card);
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.modal.active .modal-content {
  transform: translateX(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
}
.modal-close-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

/* Modal Body */
.modal-body {
  display: grid;
  grid-template-columns: 1fr;
  height: 100%;
}
@media (min-width: 768px) {
  .modal-body {
    grid-template-columns: 1.2fr 1fr;
  }
}

/* Modal Gallery (Left) */
.modal-gallery {
  background-color: #050505;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  position: relative;
  border-right: 1px solid var(--border-color);
  min-width: 0;
}

.main-slider {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}
.slide-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 5;
}
.nav-btn:hover {
  background-color: var(--gold-primary);
}
.prev-btn { left: 16px; }
.next-btn { right: 16px; }

.thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  width: 100%;
  overflow-x: auto;
  padding-bottom: 8px;
}
.thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: var(--transition);
  flex-shrink: 0;
}
.thumb.active, .thumb:hover {
  border-color: var(--gold-primary);
  opacity: 1;
}

/* Modal Info (Right) */
.modal-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.info-brand {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--gold-primary);
  letter-spacing: 2px;
  font-weight: 600;
}
.info-code {
  font-size: 12px;
  color: var(--text-secondary);
}

.info-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 24px;
}

.info-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.meta-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-surface);
  padding: 12px 18px;
  border-radius: 8px;
}
.meta-label {
  font-size: 13px;
  color: var(--text-secondary);
}
.meta-val {
  font-size: 14px;
  font-weight: 600;
}
.meta-val.highlight {
  color: var(--gold-primary);
}

.info-price-section {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  background-color: rgba(197, 160, 89, 0.08);
  border: 1px dashed rgba(197, 160, 89, 0.3);
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}
.price-label {
  font-size: 13px;
  color: var(--gold-primary);
  font-weight: 500;
}
.info-price {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-primary);
}

.info-divider {
  height: 1px;
  background-color: var(--border-color);
  margin-bottom: 24px;
}

.info-desc-section h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text-secondary);
}
.source-path {
  font-family: monospace;
  font-size: 12px;
  color: var(--text-secondary);
  background-color: var(--bg-surface);
  padding: 10px;
  border-radius: 6px;
  word-break: break-all;
}

.info-action-section {
  margin-top: auto;
  padding-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
}
.btn-gold {
  background-color: var(--gold-primary);
  color: #ffffff;
}
.btn-gold:hover {
  background-color: var(--gold-hover);
}
.btn-primary {
  background-color: var(--text-primary);
  color: var(--bg-main);
  border: 1px solid var(--border-color);
}
.btn-primary:hover {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--text-primary);
}
.btn-block {
  display: flex;
  width: 100%;
}

/* Empty State / Loading State */
.empty-state {
  text-align: center;
  padding: 80px 20px;
}
.empty-state svg {
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.empty-state h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.empty-state p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* Footer */
footer {
  border-top: 1px solid var(--border-color);
  padding: 30px 20px;
  text-align: center;
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 60px;
}

/* Skeleton Loading */
.skeleton-card {
  height: 380px;
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-surface) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}
@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .container {
    padding: 0 16px 32px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .header-container {
    padding: 12px 16px;
  }
  .modal-content {
    max-width: 100%;
  }
}

/* Lightbox Zoom */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 4px;
  cursor: zoom-out;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}
.lightbox.active img {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 40px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2001;
}
.lightbox-close:hover {
  color: var(--gold-primary);
  transform: scale(1.1);
}
.slide-img {
  cursor: zoom-in;
}

/* WhatsApp Bubble */
.whatsapp-bubble {
  position: fixed;
  bottom: 50px;
  right: 30px;
  background-color: #25D366;
  color: #FFF;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
  animation: wa-pulse 2.5s infinite;
}
.whatsapp-bubble:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  animation: none;
}
.whatsapp-bubble svg {
  margin-top: 2px;
  margin-left: 1px;
}

@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 600px) {
  .whatsapp-bubble {
    bottom: 44px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-bubble svg {
    width: 26px;
    height: 26px;
  }
}

/* Live Activity Toast */
.live-activity-toast {
  position: fixed;
  bottom: 50px;
  left: 30px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  border-radius: 30px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1000;
  overflow: hidden;
  max-width: 320px;
  backdrop-filter: blur(12px);
  background-color: var(--bg-glass);
}

.live-activity-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

.live-activity-content {
  overflow: hidden;
  white-space: nowrap;
  width: 240px;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.live-activity-scroll {
  display: inline-block;
  white-space: nowrap;
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 500;
  animation: marquee-scroll 12s linear infinite;
  padding-left: 100%;
}

.live-activity-scroll span {
  display: inline-block;
  letter-spacing: 0.5px;
}

.dot-separator {
  color: var(--gold-primary);
  margin: 0 20px;
  font-size: 14px;
  vertical-align: middle;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@media (max-width: 600px) {
  .live-activity-toast {
    bottom: 44px;
    left: 20px;
    max-width: calc(100vw - 100px);
    padding: 8px 14px;
  }
  .live-activity-content {
    width: 160px;
  }
}

/* Trust Badge Bar */
.trust-badge-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #000000;
  color: #ffffff;
  z-index: 999;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.trust-badge-content {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.trust-badge-logo {
  width: 16px;
  height: 16px;
}

@media (max-width: 600px) {
  .trust-badge-bar {
    padding: 8px 15px;
  }
  .trust-badge-content {
    font-size: 11px;
    gap: 8px;
  }
  .trust-badge-logo {
    width: 14px;
    height: 14px;
  }
}
