/* ============================================
   Global Winning Products Hub — Main Stylesheet
   ============================================ */

/* --- Design Tokens --- */
:root {
  --bg-deep: #060a1a;
  --bg-primary: #0a0e27;
  --bg-secondary: #0f172a;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(59, 130, 246, 0.3);
  --accent-blue: #3b82f6;
  --accent-violet: #8b5cf6;
  --accent-gold: #f59e0b;
  --accent-orange: #f97316;
  --accent-green: #10b981;
  --accent-red: #ef4444;
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --glow-blue: 0 0 30px rgba(59, 130, 246, 0.3);
  --glow-violet: 0 0 30px rgba(139, 92, 246, 0.3);
  --glow-gold: 0 0 30px rgba(245, 158, 11, 0.3);
  --glow-green: 0 0 30px rgba(16, 185, 129, 0.3);
  --gradient-primary: linear-gradient(135deg, #3b82f6, #8b5cf6);
  --gradient-gold: linear-gradient(135deg, #f59e0b, #f97316);
  --gradient-green: linear-gradient(135deg, #10b981, #06b6d4);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ── Jewelry & Accessories Photo Strip ── */
.jewelry-photo-strip {
  overflow: hidden;
  position: relative;
  padding: 10px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.jewelry-photo-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: jewelryPhotoScroll 35s linear infinite;
}
.jewelry-photo-card {
  width: 220px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.jewelry-photo-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.jewelry-photo-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}
.jewelry-photo-card:hover img {
  transform: scale(1.1);
}
.jewelry-photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.jewelry-photo-label span {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.jewelry-photo-label em {
  font-size: 12px;
  color: #f59e0b;
  font-style: normal;
  font-weight: 600;
}
@keyframes jewelryPhotoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.jewelry-photo-strip:hover .jewelry-photo-track {
  animation-play-state: paused;
}
@media (max-width: 1024px) {
  .jewelry-photo-track { animation-duration: 25s; }
  .jewelry-photo-card { width: 180px; }
  .jewelry-photo-card img { height: 240px; }
}
@media (max-width: 640px) {
  .jewelry-photo-track { animation-duration: 18s; gap: 14px; }
  .jewelry-photo-card { width: 150px; }
  .jewelry-photo-card img { height: 200px; }
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  background: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection {
  background: rgba(59, 130, 246, 0.4);
  color: #fff;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent-blue), var(--accent-violet));
  border-radius: 4px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* --- Utility --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 10px 0;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-green {
  background: var(--gradient-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Glass Card --- */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  transition: all 0.4s var(--ease-expo);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: var(--glow-blue);
  transform: translateY(-4px);
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s var(--ease-expo);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover::before { opacity: 1; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s var(--ease-expo);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--accent-blue);
  background: rgba(59, 130, 246, 0.1);
  box-shadow: var(--glow-blue);
  transform: translateY(-2px);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: var(--gradient-gold);
  color: #000;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s var(--ease-expo);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.4);
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-blue);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s var(--ease-expo);
}

.nav.scrolled {
  background: rgba(6, 10, 26, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s var(--ease-expo);
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 24px !important;
  font-size: 0.85rem !important;
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 30px 0 20px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 10, 26, 0.6) 0%,
    rgba(6, 10, 26, 0.4) 40%,
    rgba(6, 10, 26, 0.8) 80%,
    var(--bg-deep) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-blue);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s infinite;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 24px 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-blue);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* --- Hero Stats --- */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 20px auto 0;
}

.hero-stat {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  transition: all 0.3s var(--ease-expo);
}

.hero-stat:hover {
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: var(--glow-blue);
}

.hero-stat-value {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   TRENDING PRODUCTS (Section 2)
   ============================================ */
.trending-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-primary) 50%, var(--bg-deep) 100%);
}

.trending-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 8px 0 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.trending-scroll::-webkit-scrollbar { display: none; }

.trending-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s var(--ease-expo);
  cursor: pointer;
}

.trending-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: var(--glow-blue);
  transform: translateY(-8px);
}

.trending-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-glass);
}

.trending-card-body {
  padding: 20px;
}

.trending-card-rank {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.trending-card-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

.trending-card-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

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

.trending-meta-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trending-meta-value {
  font-size: 0.9rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.heat-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin-top: 12px;
  overflow: hidden;
}

.heat-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--gradient-primary);
  transition: width 1.5s var(--ease-expo);
}

.market-tag {
  display: inline-block;
  padding: 3px 8px;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent-violet);
  margin-top: 8px;
}

/* ============================================
   CATEGORIES (Section 3)
   ============================================ */
.categories-section {
  position: relative;
  background: var(--bg-deep);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  padding: 32px 24px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s var(--ease-expo);
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--cat-color, rgba(59, 130, 246, 0.15)), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.category-card:hover::before { opacity: 1; }

.category-card:hover {
  border-color: var(--cat-border, rgba(59, 130, 246, 0.3));
  transform: translateY(-8px);
  box-shadow: var(--cat-glow, var(--glow-blue));
}

.category-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 2rem;
  background: var(--cat-icon-bg, rgba(59, 130, 246, 0.1));
  transition: all 0.3s;
}

.category-card:hover .category-icon {
  transform: scale(1.1);
}

.category-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.category-count {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ============================================
   WINNING CASES (Section 4)
   ============================================ */
.cases-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-primary) 50%, var(--bg-deep) 100%);
  overflow: hidden;
}

.cases-track {
  display: flex;
  gap: 32px;
  animation: scrollCases 30s linear infinite;
  width: max-content;
}

.cases-track:hover { animation-play-state: paused; }

@keyframes scrollCases {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.case-card {
  flex: 0 0 360px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s var(--ease-expo);
}

.case-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: var(--glow-gold);
  transform: scale(1.02);
}

.case-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.case-card-body {
  padding: 24px;
}

.case-card-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.case-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.case-price-item {
  text-align: center;
}

.case-price-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.case-price-value {
  font-size: 1.1rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.case-price-value.cost { color: var(--text-secondary); }
.case-price-value.sell { color: var(--accent-blue); }
.case-price-value.profit { color: var(--accent-green); }

.case-profit-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.case-profit-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--gradient-green);
}

/* ============================================
   WHY CHOOSE US (Section 5)
   ============================================ */
.features-section {
  position: relative;
  background: var(--bg-deep);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 10px;
}

.feature-card {
  padding: 16px 14px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s var(--ease-expo);
}

.feature-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: var(--glow-blue);
  transform: translateY(-8px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-blue);
  transition: all 0.3s;
}

.feature-card:hover .feature-icon {
  background: var(--gradient-primary);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   GLOBAL MAP (Section 6)
   ============================================ */
.map-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-primary) 50%, var(--bg-deep) 100%);
  overflow: hidden;
}

.map-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.map-svg {
  width: 100%;
  height: auto;
}

.map-svg path {
  fill: rgba(59, 130, 246, 0.15);
  stroke: rgba(59, 130, 246, 0.3);
  stroke-width: 0.5;
  transition: fill 0.3s;
}

.map-svg path:hover {
  fill: rgba(59, 130, 246, 0.3);
}

.map-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-blue);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
  animation: mapDotPulse 2s infinite;
  z-index: 2;
}

.map-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--accent-blue);
  opacity: 0.4;
  animation: mapDotRing 2s infinite;
}

@keyframes mapDotPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

@keyframes mapDotRing {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(2); opacity: 0; }
}

.map-label {
  position: absolute;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(6, 10, 26, 0.8);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--border-glass);
  white-space: nowrap;
  z-index: 3;
  pointer-events: none;
}

.map-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.map-stat-card {
  text-align: center;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  backdrop-filter: blur(20px);
}

.map-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  margin-bottom: 4px;
}

.map-stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ============================================
   SUCCESS STORIES (Section 7)
   ============================================ */
.stories-section {
  position: relative;
  background: var(--bg-deep);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.story-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s var(--ease-expo);
}

.story-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: var(--glow-blue);
  transform: translateY(-8px);
}

.story-card-header {
  padding: 24px 24px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.story-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.story-info h4 {
  font-size: 1rem;
  font-weight: 600;
}

.story-info span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.story-card-body {
  padding: 20px 24px;
}

.story-quote {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.story-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px 24px;
  border-top: 1px solid var(--border-glass);
}

.story-metric {
  text-align: center;
}

.story-metric-value {
  font-size: 1.2rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.story-metric-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.story-platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 8px;
}

/* ============================================
   LIVE FEED (Section 8)
   ============================================ */
.feed-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-primary) 50%, var(--bg-deep) 100%);
  overflow: hidden;
}

.feed-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  height: 320px;
  overflow: hidden;
}

.feed-container::before,
.feed-container::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 2;
  pointer-events: none;
}

.feed-container::before {
  top: 0;
  background: linear-gradient(180deg, var(--bg-primary), transparent);
}

.feed-container::after {
  bottom: 0;
  background: linear-gradient(0deg, var(--bg-deep), transparent);
}

.feed-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: feedScroll 20s linear infinite;
}

@keyframes feedScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.feed-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  flex-shrink: 0;
}

.feed-flag {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feed-content {
  flex: 1;
}

.feed-text {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2px;
}

.feed-time {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.feed-amount {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-green);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

/* ============================================
   CONTACT FORM (Section 9)
   ============================================ */
.contact-section {
  position: relative;
  background: var(--bg-deep);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.contact-info h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.contact-benefits .check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-form {
  padding: 40px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input,
.form-select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--font-main);
  transition: all 0.3s;
  outline: none;
}

.form-input:focus,
.form-select:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.form-input::placeholder { color: var(--text-muted); }

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-select option {
  background: var(--bg-primary);
  color: #fff;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 48px 0 24px;
  border-top: 1px solid var(--border-glass);
  background: var(--bg-deep);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.footer-links a:hover { color: #fff; }

/* ============================================
   ANIMATIONS & REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-expo);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }

/* Glow line decoration */
.glow-line {
  width: 80px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
  margin: 0 auto 24px;
  box-shadow: var(--glow-blue);
}

/* Floating orbs background */
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.bg-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-blue);
  top: 20%;
  left: -100px;
  animation: orbFloat 12s ease-in-out infinite;
}

.bg-orb-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-violet);
  top: 60%;
  right: -80px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -30px); }
  66% { transform: translate(-20px, 20px); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .map-stats { grid-template-columns: repeat(2, 1fr); }
  .stories-grid { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section-padding { padding: 64px 0; }

  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(6, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid var(--border-glass);
    gap: 16px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .map-stats { grid-template-columns: 1fr 1fr; }

  .hero-buttons { flex-direction: column; align-items: center; }

  .case-card { flex: 0 0 300px; }

  .contact-form { padding: 24px; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-stat { padding: 16px 12px; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .case-pricing { grid-template-columns: 1fr; gap: 8px; }
  .map-stats { grid-template-columns: 1fr; }
}

/* ============================================
   LOADING MODAL
   ============================================ */
.loading-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-expo);
}

.loading-modal.active {
  opacity: 1;
  visibility: visible;
}

.loading-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.loading-modal-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px;
  max-width: 480px;
  width: 90%;
}

/* Spinner rings */
.loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  pointer-events: none;
}

.loading-spinner-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
}

.loading-spinner-ring:nth-child(1) {
  border-top-color: var(--accent-blue);
  border-right-color: var(--accent-blue);
  animation: spinRing 2s linear infinite;
}

.loading-spinner-ring:nth-child(2) {
  inset: 15px;
  border-bottom-color: var(--accent-violet);
  border-left-color: var(--accent-violet);
  animation: spinRing 2.5s linear infinite reverse;
}

.loading-spinner-ring:nth-child(3) {
  inset: 30px;
  border-top-color: var(--accent-gold);
  animation: spinRing 3s linear infinite;
}

@keyframes spinRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Center icon */
.loading-icon {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.3); }
  50% { box-shadow: 0 0 30px 10px rgba(59, 130, 246, 0.15); }
}

.loading-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loading-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* Progress bar */
.loading-bar-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 16px;
}

.loading-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: width 1s linear;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

/* Status text */
.loading-status {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  min-height: 1.2em;
  transition: opacity 0.3s;
}

/* Countdown */
.loading-countdown {
  font-size: 2rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Complete state */
.loading-modal.complete .loading-spinner { display: none; }

.loading-modal.complete .loading-icon {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
  animation: none;
}

.loading-modal.complete .loading-title {
  background: var(--gradient-green);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Mobile */
@media (max-width: 768px) {
  .loading-modal-content { padding: 32px 20px; }
  .loading-spinner { width: 150px; height: 150px; }
  .loading-title { font-size: 1.2rem; }
}

/* ============================================
   WAREHOUSE GALLERY (Global Map Section)
   ============================================ */
.warehouse-gallery {
  margin-top: 60px;
  margin-bottom: 60px;
}

.warehouse-gallery-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 32px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.warehouse-gallery-title svg {
  color: var(--accent-blue);
}

.warehouse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.warehouse-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
}

.warehouse-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15),
              0 0 30px rgba(139, 92, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}

.warehouse-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.4s ease;
  filter: brightness(0.7) saturate(0.9);
}

.warehouse-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.85) saturate(1.1);
}

.warehouse-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 10, 26, 0.95) 0%,
    rgba(6, 10, 26, 0.5) 40%,
    rgba(6, 10, 26, 0.1) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: background 0.3s ease;
}

.warehouse-card:hover .warehouse-overlay {
  background: linear-gradient(
    to top,
    rgba(6, 10, 26, 0.98) 0%,
    rgba(10, 14, 39, 0.6) 40%,
    rgba(6, 10, 26, 0.2) 100%
  );
}

.warehouse-flag {
  font-size: 1.8rem;
  margin-bottom: 6px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.warehouse-card:hover .warehouse-flag {
  transform: scale(1.15);
}

.warehouse-name {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.warehouse-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.3px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.warehouse-card:hover .warehouse-desc {
  opacity: 1;
  color: var(--accent-blue);
}

/* Large card spans 2 rows */
.warehouse-card-lg {
  grid-row: span 2;
  aspect-ratio: auto;
}

/* Wide card spans 2 columns */
.warehouse-card-wide {
  grid-column: span 2;
}

/* Responsive */
@media (max-width: 768px) {
  .warehouse-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .warehouse-card-lg {
    grid-row: span 1;
    aspect-ratio: 16 / 10;
  }

  .warehouse-card-wide {
    grid-column: span 2;
  }

  .warehouse-name {
    font-size: 0.85rem;
  }

  .warehouse-desc {
    font-size: 0.7rem;
  }

  .warehouse-flag {
    font-size: 1.4rem;
  }

  .warehouse-overlay {
    padding: 14px;
  }
}

@media (max-width: 480px) {
  .warehouse-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .warehouse-card-wide {
    grid-column: span 1;
  }

  .warehouse-card {
    aspect-ratio: 16 / 9;
  }
}

/* ============================================
   AI TECHNOLOGY SECTION
   ============================================ */
.ai-tech-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg-primary) 0%, #080c22 50%, var(--bg-primary) 100%);
  overflow: hidden;
}

.ai-tech-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.ai-tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  margin-bottom: 60px;
}

.ai-tech-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.ai-tech-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2), 0 0 40px rgba(59, 130, 246, 0.1);
}

.ai-tech-card-large {
  grid-row: span 2;
}

.ai-tech-card-wide {
  grid-column: span 2;
}

.ai-tech-img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-tech-card-large .ai-tech-img {
  min-height: 524px;
}

.ai-tech-card:hover .ai-tech-img {
  transform: scale(1.05);
}

.ai-tech-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(6, 10, 26, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.ai-tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #c4b5fd;
  margin-bottom: 12px;
  width: fit-content;
  backdrop-filter: blur(8px);
}

.ai-tech-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.ai-tech-card-large .ai-tech-title {
  font-size: 1.5rem;
}

.ai-tech-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* AI Stats Bar */
.ai-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(12px);
}

.ai-stat-item {
  text-align: center;
}

.ai-stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.ai-stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* AI Tech Responsive */
@media (max-width: 1024px) {
  .ai-tech-grid {
    grid-template-columns: 1fr;
  }

  .ai-tech-card-large {
    grid-row: span 1;
  }

  .ai-tech-card-wide {
    grid-column: span 1;
  }

  .ai-tech-card-large .ai-tech-img {
    min-height: 300px;
  }

  .ai-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px;
  }

  .ai-stat-value {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .ai-stats-bar {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ai-stat-value {
    font-size: 1.75rem;
  }

  .ai-tech-overlay {
    padding: 16px;
  }

  .ai-tech-title {
    font-size: 1.1rem;
  }
}

/* ============================================
   DAILY ESSENTIALS & LUXURY COLLECTION
   ============================================ */
.essentials-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-deep) 50%, var(--bg-primary) 100%);
}

.essentials-subheader {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.essentials-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.luxury-tag {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(234, 179, 8, 0.08));
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fbbf24;
}

.daily-tag {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.08));
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60a5fa;
}

.essentials-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.essentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.essential-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.essential-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.1);
}

.luxury-card:hover {
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.15), 0 0 0 1px rgba(245, 158, 11, 0.2);
}

.daily-card:hover {
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15), 0 0 0 1px rgba(59, 130, 246, 0.2);
}

.essential-card-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.essential-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.essential-card:hover .essential-card-img-wrap img {
  transform: scale(1.08);
}

.essential-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.luxury-badge {
  background: linear-gradient(135deg, #f59e0b, #eab308);
  color: #000;
}

.daily-badge {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #fff;
}

.essential-card-body {
  padding: 16px;
}

.essential-card-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.essential-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.essential-price-range {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.essential-margin {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-gold);
}

.daily-card .essential-margin {
  color: var(--accent-green);
}

.essential-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.essential-tag-sm {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Responsive */
@media (max-width: 1200px) {
  .essentials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .essentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .essentials-subheader {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .essential-card-img-wrap {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .essentials-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   BESTSELLER PRODUCT MATRIX
   ============================================ */
.bestseller-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.bestseller-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: transform 0.4s var(--ease-expo), box-shadow 0.4s ease, border-color 0.3s ease;
}

.bestseller-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
}

.bestseller-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #111;
}

.bestseller-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-expo);
}

.bestseller-card:hover .bestseller-img {
  transform: scale(1.1);
}

.bestseller-overlay {
  padding: 16px;
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.0) 0%, rgba(10, 14, 39, 0.95) 30%);
  position: relative;
}

.bestseller-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.15);
  color: var(--accent-blue);
  border: 1px solid rgba(59, 130, 246, 0.25);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.bestseller-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px 0;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bestseller-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.bestseller-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-gold);
  font-variant-numeric: tabular-nums;
}

.bestseller-sold {
  font-size: 12px;
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
}

.bestseller-margin {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-green);
  padding: 2px 8px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 4px;
  display: inline-block;
}

/* Bestseller Matrix Responsive */
@media (max-width: 1024px) {
  .bestseller-matrix {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .bestseller-img-wrap {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .bestseller-matrix {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .bestseller-img-wrap {
    height: 160px;
  }
  .bestseller-overlay {
    padding: 12px;
  }
  .bestseller-name {
    font-size: 13px;
  }
  .bestseller-price {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .bestseller-matrix {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .bestseller-img-wrap {
    height: 130px;
  }
  .bestseller-overlay {
    padding: 10px;
  }
  .bestseller-name {
    font-size: 12px;
  }
  .bestseller-price {
    font-size: 13px;
  }
  .bestseller-sold {
    font-size: 11px;
  }
}

/* ============================================
   CATEGORY LOGO SELECTOR STRIP
   ============================================ */
.category-logo-strip {
  position: relative;
  overflow: hidden;
  margin: 32px 0 40px;
  padding: 16px 0;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.category-logo-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: logoScrollLeft 30s linear infinite;
}

.category-logo-strip:hover .category-logo-track {
  animation-play-state: paused;
}

@keyframes logoScrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.category-logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  flex-shrink: 0;
  user-select: none;
}

.category-logo-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--logo-color, rgba(59, 130, 246, 0.4));
  box-shadow: 0 0 20px color-mix(in srgb, var(--logo-color, #3b82f6) 25%, transparent);
  transform: translateY(-2px);
}

.category-logo-item.active {
  background: color-mix(in srgb, var(--logo-color, #3b82f6) 15%, transparent);
  border-color: var(--logo-color, #3b82f6);
  box-shadow: 0 0 24px color-mix(in srgb, var(--logo-color, #3b82f6) 30%, transparent);
}

.category-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--logo-color, #3b82f6) 12%, transparent);
  color: var(--logo-color, #3b82f6);
  flex-shrink: 0;
}

.category-logo-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.category-logo-item:hover .category-logo-label {
  color: var(--logo-color, #3b82f6);
}

.category-logo-item.active .category-logo-label {
  color: var(--logo-color, #3b82f6);
}

/* Responsive */
@media (max-width: 768px) {
  .category-logo-strip {
    margin: 24px 0 32px;
    padding: 12px 0;
  }
  .category-logo-track {
    gap: 12px;
    animation-duration: 20s;
  }
  .category-logo-item {
    padding: 8px 16px;
    gap: 8px;
  }
  .category-logo-icon {
    width: 30px;
    height: 30px;
  }
  .category-logo-icon svg {
    width: 18px;
    height: 18px;
  }
  .category-logo-label {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .category-logo-track {
    gap: 10px;
    animation-duration: 15s;
  }
  .category-logo-item {
    padding: 6px 12px;
    gap: 6px;
  }
  .category-logo-icon {
    width: 26px;
    height: 26px;
  }
  .category-logo-icon svg {
    width: 16px;
    height: 16px;
  }
  .category-logo-label {
    font-size: 11px;
  }
}

/* ============================================
   55. FASHION PHOTO STRIP — Single Row Left Scroll
   ============================================ */
.fashion-photo-strip {
  position: relative;
  overflow: hidden;
  margin: 0 0 40px;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}
.fashion-photo-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: fashionPhotoScroll 35s linear infinite;
}
.fashion-photo-strip:hover .fashion-photo-track {
  animation-play-state: paused;
}
@keyframes fashionPhotoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.fashion-photo-card {
  position: relative;
  flex-shrink: 0;
  width: 220px;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.fashion-photo-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}
.fashion-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.fashion-photo-card:hover img {
  transform: scale(1.1);
}
.fashion-photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(6,10,26,0.95), transparent);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.fashion-photo-label span {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-gold);
  font-variant-numeric: tabular-nums;
}
@media (max-width: 1024px) {
  .fashion-photo-card {
    width: 180px;
    height: 230px;
  }
  .fashion-photo-track {
    animation-duration: 25s;
  }
}
@media (max-width: 640px) {
  .fashion-photo-card {
    width: 150px;
    height: 200px;
  }
  .fashion-photo-track {
    animation-duration: 18s;
  }
  .fashion-photo-label {
    font-size: 11px;
    padding: 8px;
  }
  .fashion-photo-label span {
    font-size: 12px;
  }
}

/* ============================================
   AIR FREIGHT PHOTO STRIP
   ============================================ */
.air-photo-strip {
  width: 100%;
  overflow: hidden;
  margin: 30px 0 20px;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.air-photo-strip-track {
  display: flex;
  gap: 20px;
  animation: air-photo-scroll 40s linear infinite;
  width: max-content;
}

.air-photo-strip:hover .air-photo-strip-track {
  animation-play-state: paused;
}

@keyframes air-photo-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.air-photo-card {
  flex-shrink: 0;
  width: 240px;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.air-photo-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.air-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.air-photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: #f59e0b;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .air-photo-card {
    width: 200px;
    height: 260px;
  }
  .air-photo-strip-track {
    animation-duration: 30s;
  }
}

@media (max-width: 768px) {
  .air-photo-card {
    width: 160px;
    height: 220px;
  }
  .air-photo-strip-track {
    animation-duration: 20s;
  }
  .air-photo-label {
    font-size: 12px;
    padding: 8px 12px;
  }
}

/* ============================================
   CASE STUDY PHOTO STRIP
   ============================================ */
.case-photo-strip {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  margin: 30px 0 20px;
}

.case-photo-track {
  display: flex;
  gap: 20px;
  animation: casePhotoScroll 40s linear infinite;
  width: max-content;
}

.case-photo-strip:hover .case-photo-track {
  animation-play-state: paused;
}

.case-photo-card {
  flex-shrink: 0;
  width: 240px;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-photo-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.case-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: var(--accent-gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

@keyframes casePhotoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 1024px) {
  .case-photo-card {
    width: 200px;
    height: 260px;
  }
  .case-photo-track {
    animation-duration: 30s;
  }
}

@media (max-width: 768px) {
  .case-photo-card {
    width: 160px;
    height: 220px;
  }
  .case-photo-track {
    animation-duration: 20s;
  }
  .case-photo-label {
    font-size: 12px;
    padding: 8px 12px;
  }
}

/* ============================================
   LOGIN MODAL
   ============================================ */
.login-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
.login-modal.active {
  display: flex;
}
.login-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: loginFadeIn 0.3s ease;
}
.login-modal-content {
  position: relative;
  width: 90%;
  max-width: 420px;
  background: rgba(15, 20, 50, 0.95);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 0 60px rgba(59, 130, 246, 0.15), 0 0 120px rgba(139, 92, 246, 0.08);
  animation: loginSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.login-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.2s;
}
.login-modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.login-modal-icon {
  margin-bottom: 20px;
}
.login-modal-title {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.login-modal-desc {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 28px;
}
.login-modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.login-input-wrap {
  position: relative;
}
.login-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.login-input {
  width: 100%;
  padding: 14px 16px 14px 42px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.login-input::placeholder {
  color: #64748b;
}
.login-input:focus {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
}
.login-submit-btn {
  padding: 14px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}
.login-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 30px rgba(59, 130, 246, 0.45);
}
.login-submit-btn:active {
  transform: translateY(0);
}
.login-modal-hint {
  font-size: 12px;
  color: #475569;
  margin-top: 16px;
}
@keyframes loginFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes loginSlideIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
