/* ===================================================================
   WishTime Toys (wishtimetoys.com) - Official Stylesheet
   Direct Manufacturer B2B Toy Sourcing & OEM/ODM Portal
   Enhanced for High-Converting Global Toy Sourcing
=================================================================== */

:root {
  /* WishTime + Fisher-Price Vibrant Brand Palette */
  --primary: #eb1c24;           /* WishTime Passion Red */
  --primary-hover: #cf131a;
  --primary-dark: #a80d13;
  --primary-light: #fff1f2;
  --accent-yellow: #ffb800;     /* Fisher-Price Warm Sunshine Yellow */
  --accent-yellow-hover: #e5a500;
  --accent-blue: #00a3e0;       /* Fisher-Price Sky Blue */
  --accent-blue-hover: #008ec4;
  --accent-green: #00b140;      /* Safety Grass Green */
  --accent-orange: #ff7a18;
  --accent-orange-hover: #e86707;
  --dark: #1e293b;             /* Slate Navy */
  --dark-light: #334155;
  --text-main: #1f2937;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg-body: #fdfbf7;           /* Warm milky cream body background */
  --bg-card: #ffffff;
  --bg-alt: #f8fafc;
  --border: #f1e7de;
  --border-focus: #fca5a5;
  --shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 16px -2px rgba(235, 28, 36, 0.08), 0 3px 6px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 28px -4px rgba(30, 41, 59, 0.09), 0 4px 8px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 22px 35px -6px rgba(235, 28, 36, 0.14), 0 10px 14px -4px rgba(0, 0, 0, 0.05);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1240px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-hover);
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* -------------------------------------------------------------------
   TOP ANNOUNCEMENT BAR
------------------------------------------------------------------- */
.top-bar {
  background-color: var(--dark);
  color: #cbd5e1;
  font-size: 0.825rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-bar-badge {
  background: rgba(46, 163, 242, 0.2);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-link {
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.top-bar-link:hover {
  color: #ffffff;
}

/* -------------------------------------------------------------------
   MAIN HEADER & NAVIGATION
------------------------------------------------------------------- */
.main-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

.logo:hover .logo-img {
  transform: scale(1.03);
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, #c41219 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.35rem;
  box-shadow: 0 4px 12px rgba(235, 28, 36, 0.35);
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--dark);
  line-height: 1.1;
}

.logo-title span {
  color: var(--primary);
}

.logo-tagline {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 16px;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background-color: var(--primary-light);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease-in-out;
  z-index: 100;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 9px 20px;
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}

.dropdown-link:hover {
  background-color: var(--primary-light);
  color: var(--primary);
  padding-left: 24px;
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header-quote {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #ffffff;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(46, 163, 242, 0.3);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-header-quote:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(46, 163, 242, 0.4);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
  padding: 8px;
}

/* -------------------------------------------------------------------
   HERO BANNER & TRUST BAR
------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #0d1e30 0%, #173252 50%, #1f4773 100%);
  color: #ffffff;
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 80% 30%, rgba(46, 163, 242, 0.22) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero-badge-pill span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-green);
  box-shadow: 0 0 10px var(--accent-green);
}

.hero-title {
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.hero-title span {
  color: #63c0ff;
  text-shadow: 0 2px 10px rgba(99, 192, 255, 0.3);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #e2e8f0;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 18px rgba(46, 163, 242, 0.4);
  transition: var(--transition);
}

.btn-primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 163, 242, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 14px 26px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
}

.stat-item-num {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item-num span {
  color: var(--accent-orange);
}

.stat-item-label {
  font-size: 0.8rem;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Showcase Card */
.hero-showcase-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  position: relative;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.hero-card-badge {
  background: var(--accent-orange);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-card-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #ffffff;
  margin-bottom: 16px;
  position: relative;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-card-media:hover img {
  transform: scale(1.05);
}

.hero-card-info h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.hero-card-info p {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin-bottom: 12px;
}

.hero-card-meta {
  display: flex;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.25);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: #cbd5e1;
}

/* -------------------------------------------------------------------
   TRUST BAR (STANDARDS & COMPLIANCE BADGES)
------------------------------------------------------------------- */
.trust-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  box-shadow: var(--shadow-sm);
}

.trust-badges-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  background: var(--bg-body);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.trust-badge-item:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-2px);
}

.trust-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
}

.trust-badge-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--dark);
}

.trust-badge-text span {
  font-size: 0.725rem;
  color: var(--text-muted);
}

/* -------------------------------------------------------------------
   SECTION HEADERS
------------------------------------------------------------------- */
.section {
  padding: 80px 0;
}

.section-alt {
  background-color: var(--bg-alt);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px;
}

.section-tag {
  display: inline-block;
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* -------------------------------------------------------------------
   SECTION 1: A TOY SUPPLIER THAT OWNS THE PRODUCTION FLOOR
------------------------------------------------------------------- */
.factory-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 40px;
}

.factory-text-col h3 {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
  line-height: 1.3;
}

.factory-text-col p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 18px;
}

.factory-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 30px;
}

.factory-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--dark);
}

.factory-feature-item svg {
  color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 3px;
}

.factory-visual-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.factory-img-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  background: #cbd5e1;
}

.factory-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.factory-img-card:hover img {
  transform: scale(1.06);
}

.factory-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
}

/* 4 Advantage Value Cards */
.value-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: #ffffff;
  padding: 30px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.value-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.value-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* -------------------------------------------------------------------
   SECTION 2: CUSTOM TOY CATEGORIES WE MANUFACTURE
------------------------------------------------------------------- */
.categories-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.category-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.category-card-thumb {
  position: relative;
  aspect-ratio: 16/11;
  background: var(--bg-alt);
  overflow: hidden;
}

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

.category-card:hover .category-card-thumb img {
  transform: scale(1.08);
}

.category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(28, 36, 48, 0.85);
  backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
}

.category-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.category-card-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.category-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  flex-grow: 1;
  line-height: 1.55;
}

.category-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  font-size: 0.825rem;
}

.category-count {
  font-weight: 600;
  color: var(--primary);
}

.category-link {
  font-weight: 700;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.category-link:hover {
  color: var(--primary);
}

/* -------------------------------------------------------------------
   SECTION 3: HOW YOUR TOYS ARE ACTUALLY MADE (6-STAGE JOURNEY)
------------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}

.process-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.process-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.process-step-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(46, 163, 242, 0.18);
  line-height: 1;
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: monospace;
}

.process-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.process-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.process-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.process-specs-tag {
  font-size: 0.775rem;
  background: var(--bg-alt);
  color: var(--dark-light);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

/* -------------------------------------------------------------------
   SECTION 4: PRODUCTION LINES & SHOWROOM IN MOTION
------------------------------------------------------------------- */
.video-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.video-thumb-container {
  position: relative;
  aspect-ratio: 16/10;
  background: #1e293b;
  overflow: hidden;
}

.video-thumb-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.4s ease;
}

.video-card:hover .video-thumb-container img {
  transform: scale(1.05);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background: rgba(46, 163, 242, 0.9);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: var(--transition);
}

.video-card:hover .video-play-btn {
  background: var(--primary);
  transform: translate(-50%, -50%) scale(1.1);
}

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

.video-card-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.video-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* -------------------------------------------------------------------
   SECTION 5: SHOWROOM & SAMPLE ROOM
------------------------------------------------------------------- */
.showroom-banner-box {
  background: linear-gradient(135deg, #1c2a38 0%, #2b3e52 100%);
  border-radius: var(--radius-lg);
  color: #ffffff;
  padding: 50px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
  box-shadow: var(--shadow-xl);
}

.showroom-text h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.25;
}

.showroom-text p {
  color: #e2e8f0;
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.showroom-metrics {
  display: flex;
  gap: 30px;
  margin-bottom: 28px;
}

.metric-box strong {
  display: block;
  font-size: 1.85rem;
  font-weight: 800;
  color: #63c0ff;
}

.metric-box span {
  font-size: 0.825rem;
  color: #cbd5e1;
  text-transform: uppercase;
}

.showroom-media-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.showroom-media-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #334155;
}

.showroom-media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -------------------------------------------------------------------
   SECTION 6: TOY SAFETY STANDARDS WE MANUFACTURE TO
------------------------------------------------------------------- */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.standard-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.standard-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.standard-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.standard-pill {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 6px 14px;
  border-radius: var(--radius-md);
}

.standard-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}

.standard-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

.standard-checklist {
  font-size: 0.825rem;
  color: var(--dark-light);
}

.standard-checklist li {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.standard-checklist li::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: 800;
}

/* -------------------------------------------------------------------
   SECTION 7: PRODUCTS FROM RECENT PRODUCTION RUNS (CATALOG GRID)
------------------------------------------------------------------- */
.catalog-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
  background: #ffffff;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.category-tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.cat-tab-btn {
  background: var(--bg-body);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
}

.cat-tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.cat-tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(46, 163, 242, 0.35);
}

.catalog-search-box {
  position: relative;
  min-width: 260px;
}

.catalog-search-input {
  width: 100%;
  padding: 9px 16px 9px 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  outline: none;
  transition: var(--transition);
}

.catalog-search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(46, 163, 242, 0.15);
}

.catalog-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.product-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.product-card-media {
  position: relative;
  aspect-ratio: 1/1;
  background: #ffffff;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.product-card-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-media img {
  transform: scale(1.08);
}

.product-item-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--dark);
  color: #ffffff;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.product-oem-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 192, 115, 0.12);
  color: var(--accent-green);
  border: 1px solid rgba(0, 192, 115, 0.3);
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 4px;
}

.product-card-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7em;
}

.product-specs-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.spec-chip {
  background: var(--bg-alt);
  color: var(--text-muted);
  font-size: 0.725rem;
  padding: 3px 7px;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}

.btn-card-view {
  background: var(--bg-alt);
  color: var(--dark);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-card-view:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
}

.btn-card-inquire {
  background: var(--primary);
  color: #ffffff;
  border: none;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-card-inquire:hover {
  background: var(--primary-hover);
  color: #ffffff;
}

/* -------------------------------------------------------------------
   SECTION 8: THE PEOPLE WHO HANDLE YOUR ORDER
------------------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #cbd5e1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  border: 3px solid #ffffff;
  box-shadow: var(--shadow-md);
}

.team-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.team-role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
}

.team-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

/* -------------------------------------------------------------------
   SECTION 9: ORDERING CUSTOM TOYS FROM CHINA (FAQ)
------------------------------------------------------------------- */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  text-align: left;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-toggle-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-body);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.25s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: #ffffff;
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  display: none;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
}

.faq-item.active .faq-answer {
  display: block;
}

/* -------------------------------------------------------------------
   SECTION 10: SEND US YOUR DESIGN / RFQ INQUIRY FORM
------------------------------------------------------------------- */
.inquiry-wrapper {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
}

.inquiry-sidebar {
  background: linear-gradient(135deg, var(--dark) 0%, #1e3a5f 100%);
  color: #ffffff;
  padding: 45px 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.inquiry-sidebar h3 {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.inquiry-sidebar p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-block strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #94a3b8;
  margin-bottom: 4px;
}

.contact-info-block p, .contact-info-block a {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-body {
  padding: 45px 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.925rem;
  color: var(--dark);
  transition: var(--transition);
  outline: none;
  background-color: var(--bg-body);
}

.form-control:focus {
  border-color: var(--primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(46, 163, 242, 0.15);
}

textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

.btn-submit-rfq {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-hover) 100%);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 15px 30px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 122, 24, 0.35);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit-rfq:hover {
  background: linear-gradient(135deg, var(--accent-orange-hover) 0%, #c95100 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 122, 24, 0.45);
}

/* -------------------------------------------------------------------
   PRODUCT QUICK-VIEW MODAL
------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease-in-out;
  padding: 20px;
}

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

.modal-container {
  background: #ffffff;
  border-radius: var(--radius-xl);
  max-width: 950px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s ease-in-out;
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
  z-index: 10;
}

.modal-close-btn:hover {
  background: var(--primary);
  color: #ffffff;
}

.modal-content-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  padding: 36px;
}

.modal-gallery-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-main-img-box {
  width: 100%;
  aspect-ratio: 1/1;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.modal-main-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.modal-details-col {
  display: flex;
  flex-direction: column;
}

.modal-cat-tag {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.modal-prod-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 8px;
}

.modal-item-no {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-alt);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 16px;
  width: fit-content;
}

.modal-prod-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.modal-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.825rem;
  margin-bottom: 24px;
}

.modal-specs-table th, .modal-specs-table td {
  padding: 7px 12px;
  border: 1px solid var(--border);
  text-align: left;
}

.modal-specs-table th {
  background: var(--bg-alt);
  color: var(--dark);
  font-weight: 600;
  width: 38%;
}

.modal-specs-table td {
  color: var(--text-main);
}

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

/* -------------------------------------------------------------------
   FOOTER
------------------------------------------------------------------- */
.main-footer {
  background-color: #0e1724;
  color: #94a3b8;
  padding: 70px 0 24px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col p {
  line-height: 1.6;
  margin-bottom: 18px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #94a3b8;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-contact-item {
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact-item strong {
  color: #e2e8f0;
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.825rem;
}

/* -------------------------------------------------------------------
   RESPONSIVE DESIGN (MEDIA QUERIES)
------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .value-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid, .video-showcase-grid, .standards-grid, .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .showroom-banner-box {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    overflow-y: auto;
    display: none;
  }
  .main-nav.active {
    display: flex;
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 16px;
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .factory-intro-grid, .inquiry-wrapper, .modal-content-grid {
    grid-template-columns: 1fr;
  }
  .process-grid, .video-showcase-grid, .standards-grid, .team-grid, .value-cards-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------------
   WHATSAPP FLOATING CHAT WIDGET (ALL PAGES)
------------------------------------------------------------------- */
.whatsapp-widget-wrapper {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1100;
  font-family: inherit;
}

.whatsapp-float-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  border: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  position: relative;
}

.whatsapp-float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-btn svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.whatsapp-online-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #10b981;
  border: 2.5px solid #ffffff;
}

.whatsapp-pulse-ring {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2s infinite;
  opacity: 0;
  pointer-events: none;
}

@keyframes waPulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 0; }
  100% { transform: scale(0.95); opacity: 0; }
}

.whatsapp-float-tooltip {
  position: absolute;
  right: 74px;
  top: 50%;
  transform: translateY(-50%);
  background: #1e293b;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  pointer-events: none;
}

.whatsapp-float-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #1e293b;
}

.whatsapp-widget-wrapper:hover .whatsapp-float-tooltip {
  opacity: 1;
  visibility: visible;
  right: 78px;
}

/* WhatsApp Chat Window Box */
.whatsapp-chat-box {
  position: fixed;
  bottom: 104px;
  right: 28px;
  width: 360px;
  max-width: calc(100vw - 40px);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.96);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0,0,0,0.08);
}

.whatsapp-chat-box.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.wa-header {
  background: #075e54;
  color: #ffffff;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  color: #075e54;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  border: 2px solid #25d366;
}

.wa-title-area h5 {
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
  line-height: 1.2;
}

.wa-title-area span {
  font-size: 0.75rem;
  color: #a7f3d0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.wa-title-area span::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #25d366;
  display: inline-block;
}

.wa-close-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.wa-close-btn:hover {
  opacity: 1;
}

.wa-body {
  background-color: #efeae2;
  background-image: radial-gradient(#d1d7db 10%, transparent 11%);
  background-size: 16px 16px;
  padding: 18px 16px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wa-timestamp {
  align-self: center;
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.7rem;
  color: #54656f;
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 500;
  box-shadow: 0 1px 1px rgba(0,0,0,0.06);
}

.wa-bubble-msg {
  background: #ffffff;
  padding: 12px 14px;
  border-radius: 0 12px 12px 12px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #111b21;
  box-shadow: 0 1px 2px rgba(0,0,0,0.12);
  position: relative;
  max-width: 90%;
}

.wa-bubble-msg strong {
  color: #075e54;
}

.wa-quick-replies {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.wa-chip {
  background: #ffffff;
  border: 1px solid #10b981;
  color: #065f46;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.775rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.wa-chip:hover {
  background: #10b981;
  color: #ffffff;
  transform: translateX(3px);
}

.wa-footer {
  background: #f0f2f5;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid #e9edef;
}

.wa-input {
  flex-grow: 1;
  background: #ffffff;
  border: none;
  padding: 10px 14px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  outline: none;
  color: #111b21;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

.wa-send-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 6px rgba(37, 211, 102, 0.4);
}

.wa-send-btn:hover {
  background: #1ebc59;
  transform: scale(1.05);
}

@media (max-width: 480px) {
  .whatsapp-chat-box {
    right: 16px;
    bottom: 90px;
    width: calc(100vw - 32px);
  }
  .whatsapp-widget-wrapper {
    right: 16px;
    bottom: 20px;
  }
}

/* ===================================================================
   FISHER-PRICE & WISHTIME BRAND VISUAL ENHANCEMENTS
   - Playful rounded cards (border-radius: 20px - 28px)
   - Cheerful color pills (WishTime Red, Sunshine Yellow, Ocean Blue)
   - Real-world documentary factory photography showcase
   =================================================================== */

.brand-pill-yellow {
  background: #fffbeb;
  color: #b45309;
  border: 1px solid #fef3c7;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.brand-pill-blue {
  background: #f0f9ff;
  color: #0369a1;
  border: 1px solid #e0f2fe;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.brand-pill-red {
  background: #fff1f2;
  color: #e11d48;
  border: 1px solid #ffe4e6;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Factory Documentary Photo Gallery Grid */
.factory-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.factory-gallery-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1e7de;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s ease, border-color 0.28s ease;
  display: flex;
  flex-direction: column;
}

.factory-gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(235, 28, 36, 0.1);
  border-color: #fca5a5;
}

.factory-gallery-thumb {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #f1f5f9;
}

.factory-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.factory-gallery-card:hover .factory-gallery-thumb img {
  transform: scale(1.04);
}

.factory-gallery-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(30, 41, 59, 0.88);
  backdrop-filter: blur(4px);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.factory-gallery-badge.live-status {
  position: absolute;
  top: 14px;
  right: 14px;
  left: auto;
  background: #00b140;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.factory-gallery-badge.live-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.factory-gallery-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.factory-gallery-body h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.factory-gallery-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.factory-specs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed #f1e7de;
}

.factory-specs-chip {
  background: #f8fafc;
  color: #475569;
  border: 1px solid #e2e8f0;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

/* Authentic Factory Trust Banner */
.factory-trust-banner {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 40px;
  margin: 40px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.factory-trust-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(235, 28, 36, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.factory-trust-text h3 {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.factory-trust-text p {
  color: #cbd5e1;
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.factory-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.factory-metric-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}

.factory-metric-val {
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffb800;
  line-height: 1.1;
  margin-bottom: 4px;
}

.factory-metric-lbl {
  font-size: 0.78rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .factory-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .factory-trust-banner {
    grid-template-columns: 1fr;
    padding: 28px;
  }
}

@media (max-width: 640px) {
  .factory-gallery-grid {
    grid-template-columns: 1fr;
  }
}



/* ==========================================================================
   2026-2027 Q4 & HOLIDAY TREND FLAGSHIP SHOWCASE (TOP 1-6)
   ========================================================================== */
.trend-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
  position: relative;
}

.trend-header-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffedd5;
  color: #c2410c;
  border: 1px solid #fed7aa;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.trend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.trend-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.trend-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
  border-color: #cbd5e1;
}

.trend-card-media {
  position: relative;
  background: #f1f5f9;
  padding-top: 90%;
  overflow: hidden;
}

.trend-card-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.trend-card:hover .trend-card-media img {
  transform: scale(1.05);
}

.trend-rank-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #eb1c24 0%, #b91c1c 100%);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 9999px;
  box-shadow: 0 4px 10px rgba(235, 28, 36, 0.35);
  letter-spacing: 0.5px;
  z-index: 2;
}

.trend-score-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: #fbbf24;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.trend-signal-tag {
  background: #ecfdf5;
  color: #047857;
  border-left: 3px solid #10b981;
  padding: 6px 12px;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.35;
}

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

.trend-card-cat {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
}

.trend-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
  margin-bottom: 12px;
}

.trend-price-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 12px;
  margin-bottom: 14px;
}

.trend-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  margin-bottom: 4px;
}

.trend-price-row:last-child {
  margin-bottom: 0;
  padding-top: 4px;
  border-top: 1px dashed #cbd5e1;
}

.trend-fob-val {
  font-weight: 800;
  color: #0f172a;
}

.trend-retail-val {
  font-weight: 700;
  color: #64748b;
}

.trend-margin-val {
  font-weight: 800;
  color: #059669;
}

.trend-specs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.trend-spec-pill {
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #e2e8f0;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: var(--radius-sm);
}

.trend-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

.btn-trend-quickview {
  background: #f8fafc;
  color: #334155;
  border: 1px solid #cbd5e1;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.btn-trend-quickview:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.btn-trend-inquire {
  background: #0f172a;
  color: #ffffff;
  border: none;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.btn-trend-inquire:hover {
  background: #eb1c24;
}

/* 4 Buyer Pitch Cards */
.buyer-personas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.buyer-persona-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.buyer-persona-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.buyer-persona-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: #f1f5f9;
}

.buyer-persona-title h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
}

.buyer-persona-title span {
  font-size: 0.74rem;
  color: #64748b;
}

.buyer-pain-point {
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #e2e8f0;
}

.buyer-pitch-box {
  background: #f8fafc;
  border-left: 3px solid #2563eb;
  padding: 10px 12px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.84rem;
  color: #1e293b;
  line-height: 1.5;
  margin-top: auto;
  font-style: italic;
}

@media (max-width: 1100px) {
  .trend-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .buyer-personas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .trend-grid {
    grid-template-columns: 1fr;
  }
  .buyer-personas-grid {
    grid-template-columns: 1fr;
  }
}
