:root {
  color-scheme: light;
  --primary: #0D9488;          /* Teal - main brand color */
  --primary-dark: #0F766E;     /* Darker teal for hover */
  --primary-light: #14B8A6;    /* Lighter teal */
  --accent: #F97316;           /* Orange - CTA/highlight */
  --accent-dark: #EA580C;      /* Darker orange for hover */
  --navy: #1F2937;             /* Dark gray for text */
  --text: #374151;             /* Main text color */
  --muted: #6B7280;            /* Muted gray text */
  --bg: #ffffff;               /* White background */
  --card: #ffffff;
  --card-bg: #E8EEF4;          /* Light blue-gray for product cards */
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --radius-lg: 12px;
  --radius-md: 8px;
  --border-color: #E5E7EB;
}

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

html {
  height: 100%;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: #ffffff;
  color: var(--text);
  line-height: 1.5;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

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

.media {
  width: 100%;
  height: auto;
  display: block;
}

/* Aspect ratio hints for CLS prevention */
.hero-card img.media,
.hero-card video.media {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-hero-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.product-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.media-split img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.manufacturing-grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

/* Header Top Bar */
.header-top {
  background: var(--navy);
  padding: 8px 0;
  font-size: 0.85rem;
}

.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-contact-info {
  display: flex;
  gap: 20px;
}

.header-contact-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s;
}

.header-contact-link:hover {
  color: #fff;
}

.header-contact-link svg {
  flex-shrink: 0;
}

.header-trust-badges {
  display: flex;
  gap: 16px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  font-weight: 500;
  font-size: 0.8rem;
}

.trust-badge::before {
  content: "✓";
  font-weight: 700;
}

/* Main Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0;
  height: 64px;
}

.logo {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-menu .nav-links {
  display: flex;
  gap: 32px;
  font-weight: 500;
  color: var(--navy);
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-menu .nav-links a {
  padding: 20px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.nav-menu .nav-links a.active,
.nav-menu .nav-links a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-cta-btn:hover {
  background: var(--accent-dark);
}

/* Admin Header Styles */
.admin-header {
  background: var(--navy);
}

.admin-header .nav-bar {
  height: 56px;
}

.admin-header .logo {
  color: #fff;
  font-size: 1.1rem;
}

.admin-nav-links {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}

.admin-nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 0;
  transition: color 0.2s;
}

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

.admin-nav-links .logout-link {
  color: var(--accent);
}

.admin-nav-links .logout-link:hover {
  color: var(--accent-dark);
}

.admin-header .nav-cta-btn {
  padding: 8px 16px;
  font-size: 0.85rem;
  background: var(--primary);
}

.admin-header .nav-cta-btn:hover {
  background: var(--primary-dark);
}

@media (max-width: 768px) {
  .admin-nav-links {
    display: none;
  }
}

/* End Admin Header */

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle-icon {
  display: grid;
  gap: 4px;
}

.nav-toggle-icon span {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  display: block;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 500px;
  max-height: 700px;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-content {
  text-align: center;
  z-index: 5;
  padding: 0 20px;
  max-width: 800px;
}

.hero-slide-content h1 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 28px;
  line-height: 1.25;
}

.hero-slide-content .button.primary {
  padding: 16px 48px;
  font-size: 1.05rem;
  border-radius: 30px;
  margin-bottom: 24px;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #555;
  margin-top: 0;
  line-height: 1.5;
}

.hero-carousel-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 24px;
  border-radius: 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-carousel-dots .dot.active {
  background: var(--primary);
}

.hero-carousel-dots .dot:hover {
  background: var(--primary-light);
}

@media (max-width: 1024px) {
  .hero-carousel {
    height: 60vh;
    min-height: 450px;
  }
  
  .hero-slide-content h1 {
    font-size: clamp(1.6rem, 4.5vw, 2.4rem);
    margin-bottom: 20px;
  }
  
  .hero-slide-content .button.primary {
    padding: 14px 36px;
    font-size: 1rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .hero-carousel {
    height: 50vw;
    min-height: 220px;
    max-height: 400px;
  }

  .hero-slide {
    background-position: center center;
    background-size: cover;
  }

  .hero-slide-content {
    padding: 0 16px;
    display: none;
  }

  .hero-carousel-dots {
    bottom: 12px;
    padding: 6px 12px;
    gap: 6px;
  }

  .hero-carousel-dots .dot {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 480px) {
  .hero-carousel {
    height: 56vw;
    min-height: 200px;
    max-height: 320px;
  }

  .hero-carousel-dots {
    bottom: 8px;
  }

  .hero-subtitle {
    font-size: 0.8rem;
  }

  /* Header - Extra Small */
  .nav-bar {
    min-height: 44px;
    padding: 4px 0;
  }

  .logo {
    font-size: 1rem;
  }

  .nav-cta-btn {
    padding: 5px 10px;
    font-size: 0.75rem;
    margin-right: 8px;
  }

  .nav-toggle {
    width: 34px;
    height: 34px;
  }

  .nav-toggle-icon span {
    width: 16px;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.hero-carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: background 0.2s;
}

.hero-carousel-dots .dot.active {
  background: var(--primary);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.button.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.button.primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
}

.button.secondary {
  background: #ffffff;
  color: var(--navy);
  border: 1px solid var(--border-color);
}

.button.secondary:hover {
  background: #f9fafb;
  border-color: var(--primary);
  color: var(--primary);
}

.hero-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card .media {
  border-radius: calc(var(--radius-lg) - 10px);
}

.hero-card video.media {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-card video.media img.media {
  border-radius: calc(var(--radius-lg) - 10px);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 20px 30px auto auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
}

.trust-strip {
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 46, 93, 0.06);
  border-radius: 20px;
  padding: 28px 32px;
  margin-top: -48px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.page-hero {
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 100%);
  padding: 56px 0 64px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.page-hero-card {
  background: #fff;
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
}

.trust-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.trust-item strong {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
}

.trust-item span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
}

.services-section {
  padding: 60px 0 80px;
  background: #f8f9fa;
  margin-top: -60px;
  position: relative;
  z-index: 5;
}

.services-card-wrapper {
  background: #fff;
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.services-section .section-title {
  margin-bottom: 36px;
}

.services-section .section-title h2 {
  font-size: 1.9rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.services-section .section-title h2 span {
  color: var(--primary);
}

.services-section .section-title p {
  color: var(--muted);
  font-size: 1rem;
}

/* Modern "Why Choose Us" Section */
.why-choose-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

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

.why-choose-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  border: 1px solid transparent;
}

.why-choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(13, 148, 136, 0.1);
}

.why-choose-card:hover::before {
  opacity: 1;
}

.why-choose-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

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

.why-choose-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
}

.why-choose-icon.cost-icon {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}
.why-choose-icon.cost-icon svg {
  color: #059669;
}

.why-choose-icon.quality-icon {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}
.why-choose-icon.quality-icon svg {
  color: #2563eb;
}

.why-choose-icon.delivery-icon {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}
.why-choose-icon.delivery-icon svg {
  color: #d97706;
}

.why-choose-icon.support-icon {
  background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}
.why-choose-icon.support-icon svg {
  color: #db2777;
}

.why-choose-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.why-choose-content p {
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.6;
}

.why-choose-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
}

@media (max-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .why-choose-section {
    padding: 60px 0;
  }
  
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .why-choose-card {
    padding: 24px 20px;
  }
  
  .why-choose-icon {
    width: 56px;
    height: 56px;
  }
  
  .why-choose-icon svg {
    width: 28px;
    height: 28px;
  }
}

/* Legacy service card styles (keep for compatibility) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: all 0.2s ease;
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.12);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

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

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-card-wrapper {
    padding: 32px 24px;
  }
  
  .services-section {
    margin-top: -40px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 40px 0 60px;
    margin-top: -30px;
  }
  
  .services-card-wrapper {
    padding: 28px 20px;
    border-radius: 12px;
  }
  
  .services-section .section-title h2 {
    font-size: 1.5rem;
  }
  
  .services-section .section-title p {
    font-size: 0.9rem;
  }
  
  .service-card {
    padding: 20px 16px;
  }
  
  .service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }
  
  .service-card h3 {
    font-size: 0.95rem;
  }
  
  .service-card p {
    font-size: 0.82rem;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .services-section {
    margin-top: -20px;
  }
  
  .services-card-wrapper {
    padding: 24px 16px;
  }
}

/* 5-Column Feature Strip */
.feature-strip-section {
  padding: 40px 0 20px;
  background: #fff;
  position: relative;
  z-index: 6;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.feature-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 12px;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.feature-strip-item:hover {
  background: #f8f9fa;
}

.feature-strip-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-strip-icon svg {
  width: 64px;
  height: 64px;
}

.feature-strip-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-strip-text strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.feature-strip-text span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 1200px) {
  .feature-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
  
  .feature-strip-text strong {
    font-size: 0.85rem;
  }
}

@media (max-width: 900px) {
  .feature-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 24px 20px;
  }
  
  .feature-strip-item {
    gap: 12px;
  }
  
  .feature-strip-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-strip-icon svg {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 600px) {
  .feature-strip-section {
    padding: 24px 0 12px;
  }
  
  .feature-strip {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 16px;
    border-radius: 12px;
  }
  
  .feature-strip-item {
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
  }
  
  .feature-strip-item:hover {
    background: #f0f1f3;
  }
  
  .feature-strip-icon {
    width: 56px;
    height: 56px;
  }
  
  .feature-strip-icon svg {
    width: 48px;
    height: 48px;
  }
  
  .feature-strip-text strong {
    font-size: 0.88rem;
  }
  
  .feature-strip-text span {
    font-size: 0.75rem;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
  margin-bottom: 12px;
}

.section-title p {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}

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

.feature-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  color: #fff;
}

.feature-card h3 {
  margin: 16px 0 10px;
  font-size: 1.15rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.manufacturing {
  background: var(--bg);
}

.manufacturing-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.6;
}

.checklist .check-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}

.checklist strong {
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}

.manufacturer-banner {
  background: #f5f5f5;
  padding: 60px 0;
  text-align: center;
}

.manufacturer-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.manufacturer-banner p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .manufacturer-banner {
    padding: 40px 0;
  }
  
  .manufacturer-banner h2 {
    font-size: 1.5rem;
  }
  
  .manufacturer-banner p {
    font-size: 0.95rem;
    padding: 0 16px;
  }
}

.supply-chain {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D2D4A 50%, #1A1A2E 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.supply-chain::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(31, 102, 209, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.supply-chain::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(119, 184, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.supply-chain-content {
  position: relative;
  z-index: 1;
}

.supply-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.supply-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.supply-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.supply-item-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.supply-item-icon svg {
  width: 24px;
  height: 24px;
  color: #77b8ff;
}

.supply-item h4 {
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 600;
}

.products-section {
  padding: 80px 0;
  background: #fff;
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.products-title {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.products-label {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}

.products-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin: 0;
}

@media (max-width: 768px) {
  .products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .products-label {
    font-size: 1.2rem;
  }
  
  .products-title h2 {
    font-size: 2rem;
  }
}

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

.product-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s ease;
}

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

.product-card-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--card-bg);
}

.product-card-content {
  padding: 20px;
  background: #fff;
}

.product-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.product-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

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

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

.main-products-section {
  padding: 60px 0 80px;
  background: #fff;
  overflow: hidden;
  width: 100%;
}

.main-products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.main-products-title {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.main-products-title span {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}

.main-products-title strong {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.main-products-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.main-products-btn:hover {
  background: var(--accent-dark);
}

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

.product-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.product-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

.product-category-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f3f4f6;
}

.product-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.product-category-card h3 {
  padding: 14px 8px;
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .product-categories-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .main-products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .main-products-title span {
    font-size: 1rem;
  }

  .main-products-title strong {
    font-size: 1.5rem;
  }

  .main-products-section {
    padding: 40px 0 50px;
  }

  .product-categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .product-category-card h3 {
    font-size: 0.75rem;
    padding: 10px 6px;
  }
}

@media (max-width: 480px) {
  .product-categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .main-products-section {
    padding: 30px 0 40px;
  }

  .product-category-card h3 {
    font-size: 0.7rem;
    padding: 8px 4px;
  }
}

.service-process-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.process-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 70px;
}

.process-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.process-badge svg {
  width: 16px;
  height: 16px;
}

.process-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.process-header p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
}

.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 3px;
}

.timeline-step {
  display: flex;
  gap: 30px;
  margin-bottom: 32px;
  position: relative;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.step-number {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: #fff;
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  position: relative;
  z-index: 2;
}

.step-card {
  flex: 1;
  display: flex;
  gap: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.step-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  width: 28px;
  height: 28px;
}

.step-icon.inquiry-icon {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}
.step-icon.inquiry-icon svg { color: #2563eb; }

.step-icon.quote-icon {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
}
.step-icon.quote-icon svg { color: #16a34a; }

.step-icon.sample-icon {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}
.step-icon.sample-icon svg { color: #d97706; }

.step-icon.production-icon {
  background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}
.step-icon.production-icon svg { color: #db2777; }

.step-icon.delivery-icon {
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
}
.step-icon.delivery-icon svg { color: #7c3aed; }

.step-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.step-features {
  display: flex;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-features li {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.step-features li::before {
  content: '✓';
  font-weight: 700;
}

.process-cta {
  text-align: center;
  margin-top: 60px;
}

.button.large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.cta-note {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .service-process-section {
    padding: 70px 0;
  }
  
  .timeline-line {
    left: 28px;
  }
  
  .step-number {
    width: 56px;
    height: 56px;
    font-size: 1.1rem;
  }
  
  .timeline-step {
    gap: 20px;
  }
  
  .step-card {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }
  
  .step-features {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .timeline-line {
    display: none;
  }
  
  .timeline-step {
    flex-direction: column;
    gap: 16px;
  }
  
  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }
}

.testimonials-section {
  background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 100%;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, #FF8A5B 100%);
  color: #fff;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.testimonials-badge svg {
  width: 16px;
  height: 16px;
}

.testimonials-header h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.testimonials-header p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.testimonials-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 56px;
  padding: 32px 48px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(15, 46, 93, 0.08);
}

.stat-block {
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.stat-divider-v {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, #d5deee, transparent);
}

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

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(15, 46, 93, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 46, 93, 0.12);
}

.testimonial-quote {
  color: var(--primary);
  opacity: 0.15;
  margin-bottom: 16px;
}

.testimonial-quote svg {
  width: 40px;
  height: 40px;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 24px;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-info strong {
  font-size: 0.95rem;
  color: var(--navy);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--muted);
}

.testimonial-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(31, 102, 209, 0.1) 0%, rgba(45, 122, 232, 0.1) 100%);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  align-self: flex-start;
}

@media (max-width: 980px) {
  .testimonials-stats {
    flex-wrap: wrap;
    gap: 24px;
    padding: 24px;
  }
  
  .stat-divider-v {
    display: none;
  }
  
  .stat-block {
    flex: 1 1 40%;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .testimonials-header h2 {
    font-size: 1.75rem;
  }
  
  .stat-value {
    font-size: 2rem;
  }
}

.final-cta {
  background: #f1f4f9;
  border-radius: 28px;
  padding: 48px 40px;
  text-align: center;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.media-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.media-grid img {
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(15, 46, 93, 0.08);
}

.media-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.media-split img,
.media-split video.media {
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.info-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.info-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.info-card-icon svg {
  width: 26px;
  height: 26px;
  color: #fff;
}

.info-card h3 {
  margin-bottom: 10px;
}

.story-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.story-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(31, 102, 209, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.story-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  margin-bottom: 64px;
}

.story-hero-content {
  max-width: 600px;
}

.story-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.story-hero-content h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.story-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--muted);
}

.story-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  padding: 32px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(15, 46, 93, 0.1);
}

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

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, #d5deee, transparent);
}

.values-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  margin-bottom: 72px;
}

.values-main {
  display: flex;
}

.values-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.value-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(15, 46, 93, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(15, 46, 93, 0.12);
}

.value-card-large {
  flex: 1;
}

.value-card-large .value-card-inner {
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.value-card-large h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.value-card-large p {
  font-size: 1.05rem;
  line-height: 1.8;
  flex: 1;
}

.value-card-inner {
  padding: 28px;
  position: relative;
}

.value-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, #2d7ae8 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(31, 102, 209, 0.3);
}

.value-icon-wrap svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.value-icon-alt {
  background: linear-gradient(135deg, #0f2e5d 0%, #1a4080 100%);
  box-shadow: 0 8px 24px rgba(15, 46, 93, 0.3);
}

.value-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.value-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.value-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.journey-section {
  position: relative;
}

.journey-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.journey-header h3 {
  font-size: 1.4rem;
  color: var(--navy);
  white-space: nowrap;
}

.journey-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #d5deee, transparent);
}

.journey-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.journey-milestone {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.milestone-dot {
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dot-ring {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
}

.milestone-current .milestone-dot {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  box-shadow: 0 0 0 4px rgba(31, 102, 209, 0.2);
}

.dot-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.8); opacity: 0; }
}

.journey-connector {
  flex: 0 0 auto;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #d5deee);
  margin-top: 9px;
}

.milestone-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  margin-top: 20px;
  box-shadow: 0 8px 30px rgba(15, 46, 93, 0.08);
  width: 100%;
  max-width: 200px;
  transition: transform 0.3s ease;
}

.journey-milestone:hover .milestone-card {
  transform: translateY(-4px);
}

.milestone-year {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.milestone-card h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

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

.info-panel {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.info-panel ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
}

.contact-form {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 500;
  color: var(--navy);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #d5deee;
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
}

.contact-form button {
  justify-content: center;
}

.info-callout {
  margin-top: 20px;
  background: #f4f8ff;
  border-radius: 16px;
  padding: 16px;
}

.legal-content {
  display: grid;
  gap: 16px;
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.floating-inquiry-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 100;
  padding: 12px 0;
}

.floating-inquiry-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.inquiry-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.inquiry-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.inquiry-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
}

.inquiry-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s;
}

.inquiry-cta:hover {
  background: var(--accent-dark);
}

.inquiry-cta svg {
  width: 20px;
  height: 20px;
}

.inquiry-cta span {
  font-size: 0.75rem;
  font-weight: 400;
  display: block;
}

/* Mobile Floating Inquiry Bar */
@media (max-width: 768px) {
  .floating-inquiry-bar {
    padding: 8px 0;
  }

  .floating-inquiry-bar .container {
    gap: 10px;
  }

  .inquiry-icon {
    width: 36px;
    height: 36px;
  }

  .inquiry-icon svg {
    width: 18px;
    height: 18px;
  }

  .inquiry-text {
    font-size: 0.9rem;
    display: none;
  }

  .inquiry-cta {
    padding: 10px 14px;
    font-size: 0.8rem;
    gap: 6px;
  }

  .inquiry-cta svg {
    width: 16px;
    height: 16px;
  }

  .inquiry-cta span {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .floating-inquiry-bar {
    padding: 6px 0;
  }

  .inquiry-icon {
    width: 32px;
    height: 32px;
  }

  .inquiry-icon svg {
    width: 16px;
    height: 16px;
  }

  .inquiry-cta {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
}

footer {
  padding: 32px 0 100px;
  color: var(--muted);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 16px;
}

/* ========================================
   Payment & Admin Styles
   ======================================== */

.payment-card,
.payment-result-card,
.admin-login-card,
.admin-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
  max-width: 500px;
  margin: 0 auto;
}

.payment-details h2,
.payment-result-details h2 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--navy);
}

.payment-info,
.payment-result-details {
  display: grid;
  gap: 16px;
}

.payment-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e8eef5;
}

.payment-row:last-child {
  border-bottom: none;
}

.payment-amount {
  font-size: 1.5rem;
  color: var(--primary);
}

.payment-form,
.admin-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.payment-label,
.admin-form label {
  display: grid;
  gap: 8px;
  font-weight: 500;
  color: var(--navy);
  font-size: 0.95rem;
}

.payment-label input,
.admin-form input,
.admin-form select,
.admin-form textarea {
  border: 1px solid #d5deee;
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
}

.payment-button,
.payment-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 1rem;
  margin-top: 8px;
}

.payment-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.85rem;
}

.success-hero .success-icon,
.cancel-hero .cancel-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popIn {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.success-hero .success-icon svg,
.cancel-hero .cancel-icon svg {
  width: 40px;
  height: 40px;
  color: #fff;
}

.cancel-hero .cancel-icon {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.transaction-id {
  font-family: monospace;
  font-size: 0.85rem;
  word-break: break-all;
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-created,
.status-pending {
  background: #fff3cd;
  color: #856404;
}

.status-paid,
.status-processed,
.status-active {
  background: #d4edda;
  color: #155724;
}

.status-failed,
.status-canceled,
.status-expired {
  background: #f8d7da;
  color: #721c24;
}

.status-used {
  background: #e2e3e5;
  color: #383d41;
}

.payment-next-steps {
  margin-top: 32px;
  padding: 24px;
  background: #f8fafc;
  border-radius: 16px;
}

.payment-next-steps h3 {
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.payment-next-steps ul,
.help-list {
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.payment-next-steps li,
.help-list li {
  padding-left: 24px;
  position: relative;
}

.payment-next-steps li::before,
.help-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.payment-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  justify-content: center;
}

/* Sample Payment Page */
.payment-form-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.payment-form-card {
  max-width: none;
}

.sample-payment-form {
  display: grid;
  gap: 18px;
}

.sample-payment-form label {
  display: grid;
  gap: 8px;
  font-weight: 500;
  color: var(--navy);
  font-size: 0.95rem;
}

.sample-payment-form input,
.sample-payment-form select {
  border: 1px solid #d5deee;
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
}

.form-group {
  display: grid;
  gap: 10px;
}

.form-group > label:first-child {
  font-weight: 500;
  color: var(--navy);
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid #d5deee;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.radio-label:hover {
  border-color: var(--primary);
}

.radio-label input[type="radio"]:checked + span {
  color: var(--primary);
  font-weight: 600;
}

.radio-label input[type="radio"]:checked ~ * {
  color: var(--primary);
}

.radio-label:has(input:checked) {
  border-color: var(--primary);
  background: #f0f7ff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.amount-input-group {
  display: flex;
  gap: 8px;
}

.currency-select {
  width: 90px;
  flex-shrink: 0;
}

.payment-info-panel {
  display: grid;
  gap: 20px;
}

.payment-info-panel .info-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(15, 46, 93, 0.06);
}

.payment-features {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.payment-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.payment-features svg {
  color: var(--primary);
  flex-shrink: 0;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.contact-list a {
  color: var(--primary);
}

/* Admin Styles */
.admin-section {
  min-height: 70vh;
  padding-top: 40px;
}

.admin-page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.admin-page-header h1 {
  font-size: 1.8rem;
  color: var(--navy);
  font-weight: 700;
}

.admin-actions {
  display: flex;
  gap: 12px;
}

.admin-filters {
  margin-bottom: 24px;
}

.filter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-form select {
  border: 1px solid #d5deee;
  border-radius: 10px;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 0.9rem;
  min-width: 150px;
}

.admin-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 4px 16px rgba(15, 46, 93, 0.08);
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.stat-icon.icon-blue {
  background: linear-gradient(135deg, #1f66d1 0%, #2d7ae8 100%);
}

.stat-icon.icon-green {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.stat-icon.icon-purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.stat-icon.icon-orange {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-card .stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-card .stat-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 46, 93, 0.06);
}

.admin-table th,
.admin-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #e8eef5;
}

.admin-table th {
  background: #f8fafc;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--muted);
}

.admin-table tbody tr {
  transition: background-color 0.2s ease;
}

.admin-table tbody tr:hover {
  background: #f1f5f9;
}

.date-primary {
  display: block;
  font-weight: 500;
}

.date-secondary {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}

.customer-name {
  display: block;
  font-weight: 500;
}

.customer-email {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.type-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  background: #e8eef5;
  color: var(--navy);
}

.type-sample { background: #e3f2fd; color: #1565c0; }
.type-deposit { background: #fff3e0; color: #ef6c00; }
.type-quote { background: #e8f5e9; color: #2e7d32; }
.type-order { background: #f3e5f5; color: #7b1fa2; }

.reference-id {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2px;
}

.description-cell {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.amount-cell {
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.no-data {
  color: var(--muted);
  font-style: italic;
  text-align: center;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.page-link {
  padding: 8px 16px;
  border: 1px solid #d5deee;
  border-radius: 8px;
  color: var(--primary);
  font-weight: 500;
  transition: background 0.2s;
}

.page-link:hover {
  background: #f0f7ff;
}

.page-info {
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-login-card {
  max-width: 400px;
}

.admin-login-card h1 {
  margin-bottom: 24px;
  text-align: center;
}

.admin-login-form {
  display: grid;
  gap: 18px;
}

.admin-login-form label {
  display: grid;
  gap: 8px;
  font-weight: 500;
}

.admin-login-form input {
  border: 1px solid #d5deee;
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 1rem;
}

.error-message {
  color: #dc3545;
  font-size: 0.9rem;
  text-align: center;
}

.success-card {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  text-align: center;
}

.success-card h2 {
  color: #155724;
  margin-bottom: 12px;
}

.success-card-content {
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
}

.success-card-left {
  flex: 1;
  min-width: 0;
}

.success-card-qr {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.success-card-qr img {
  border-radius: 8px;
  border: 2px solid #c3e6cb;
  background: #fff;
}

.qr-download-btn {
  font-size: 0.8rem;
  padding: 6px 12px;
}

@media (max-width: 600px) {
  .success-card-content {
    flex-direction: column;
    text-align: center;
  }
  
  .success-card-left {
    width: 100%;
  }
}

.link-display {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}

.link-display input {
  flex: 1;
  border: 1px solid #c3e6cb;
  border-radius: 8px;
  padding: 12px;
  font-family: monospace;
  font-size: 0.9rem;
}

.link-note {
  font-size: 0.85rem;
  color: #155724;
}

.copy-btn {
  padding: 6px 12px;
  font-size: 0.8rem;
}

.expires-info {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
}

@media (max-width: 980px) {
  .payment-form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .admin-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .payment-card,
  .payment-result-card,
  .admin-login-card,
  .admin-form-card {
    padding: 20px;
  }
  
  .payment-actions {
    flex-direction: column;
  }
  
  .admin-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .admin-actions .button {
    width: 100%;
  }
  
  .filter-form {
    flex-direction: column;
  }
  
  .filter-form select,
  .filter-form .button {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .manufacturing-grid,
  .page-hero-grid,
  .two-column,
  .contact-grid,
  .media-split {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .feature-grid,
  .supply-grid,
  .product-grid,
  .client-grid,
  .media-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Header Top Bar - Mobile */
  .header-top {
    display: none;
  }

  .nav-bar {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    height: auto;
    min-height: 50px;
    padding: 6px 0;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
    background: var(--primary);
    color: #fff;
    width: 38px;
    height: 38px;
  }

  .logo {
    order: 1;
    flex: 1;
    font-size: 1.1rem;
  }

  .nav-cta-btn {
    order: 2;
    padding: 6px 12px;
    font-size: 0.8rem;
    margin-right: 10px;
  }

  .nav-menu {
    display: none;
    flex: 0 0 100%;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 0;
    order: 4;
    background: #f8f9fa;
    margin: 8px -5% 0;
    width: 110%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .site-header.nav-open .nav-menu {
    display: flex;
  }

  .nav-menu .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0;
    white-space: normal;
    color: var(--navy);
  }

  .nav-menu .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 1rem;
  }

  .nav-menu .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-menu .nav-links a.active,
  .nav-menu .nav-links a:hover {
    color: var(--primary);
    border-bottom-color: #e5e7eb;
  }

  .story-hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .story-stats {
    justify-content: center;
  }

  .values-showcase {
    grid-template-columns: 1fr;
  }

  .journey-track {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .journey-milestone {
    flex-direction: row;
    text-align: left;
    width: 100%;
    gap: 20px;
  }

  .journey-connector {
    width: 2px;
    height: 40px;
    margin: 0 0 0 9px;
    background: linear-gradient(180deg, var(--primary), #d5deee);
  }

  .milestone-card {
    margin-top: 0;
    max-width: none;
  }

  .milestone-dot {
    flex-shrink: 0;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 48px 0 60px;
  }

  .trust-strip,
  .feature-grid,
  .supply-grid,
  .product-grid,
  .client-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: -32px;
    padding: 20px 16px;
  }

  .story-stats {
    flex-wrap: wrap;
    padding: 24px;
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    flex: 1 1 40%;
  }

  .values-side {
    flex-direction: column;
  }

  .value-card-large .value-card-inner {
    padding: 28px;
  }

  .trust-icon {
    width: 40px;
    height: 40px;
  }

  .trust-icon svg {
    width: 20px;
    height: 20px;
  }

  .feature-icon,
  .info-card-icon {
    width: 46px;
    height: 46px;
  }

  .feature-icon svg,
  .info-card-icon svg {
    width: 22px;
    height: 22px;
  }

  .supply-item-icon,
  .client-icon {
    width: 42px;
    height: 42px;
  }

  .supply-item-icon svg,
  .client-icon svg {
    width: 20px;
    height: 20px;
  }

  .supply-chain {
    padding: 32px 20px;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
    justify-content: center;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
  }
}

.admin-nav-tabs {
  display: flex;
  gap: 4px;
  background: #f1f5f9;
  padding: 4px;
  border-radius: 12px;
  margin-bottom: 0;
}

.nav-tab {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--muted);
  transition: all 0.2s;
}

.nav-tab:hover {
  background: rgba(255, 255, 255, 0.5);
  color: var(--navy);
}

.nav-tab.active {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(15, 46, 93, 0.06);
}

.nav-tab.logout {
  margin-left: auto;
  color: #dc3545;
}

.nav-tab.logout:hover {
  background: #fee2e2;
  color: #b91c1c;
}

/* ========================================
   Redesign: Legal Pages (Terms & Privacy)
   ======================================== */

.legal-hero-visual {
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.legal-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--primary) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.05;
}

.legal-hero-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--navy) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(31, 102, 209, 0.2);
  position: relative;
  z-index: 2;
}

.legal-hero-icon svg {
  width: 40px;
  height: 40px;
  color: #fff;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.legal-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 46, 93, 0.12);
}

.legal-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.legal-card-icon {
  width: 32px;
  height: 32px;
  background: #f0f7ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.legal-card h2 {
  font-size: 1.25rem;
  color: var(--navy);
  margin: 0;
}

.legal-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

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

/* ========================================
   Redesign: About Page Values
   ======================================== */

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

.value-card-redesign {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(15, 46, 93, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.value-card-redesign:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15, 46, 93, 0.12);
}

.value-card-redesign .value-icon-wrap {
  margin-bottom: 24px;
}

.value-card-redesign h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.value-card-redesign p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
  flex: 1;
}

.value-card-redesign .value-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0.8;
}

@media (max-width: 900px) {
  .values-grid-3 {
    grid-template-columns: 1fr;
  }
}


.stat-card {
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 20px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.icon-blue { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); }
.icon-green { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.icon-purple { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); }
.icon-orange { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1.5rem;
  line-height: 1.2;
}

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(15, 46, 93, 0.04);
  flex-wrap: wrap;
}

.filter-form.expanded {
  display: flex;
  gap: 16px;
  align-items: center;
  flex: 1;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-group {
  flex: 1;
  min-width: 200px;
}

.search-group input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9rem;
}

.date-group {
  background: #f8fafc;
  padding: 4px 8px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.date-group input {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.85rem;
  color: var(--navy);
  width: 110px;
}

.date-separator {
  color: var(--muted);
}

.select-group {
  gap: 8px;
}

.select-group select {
  padding: 8px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.85rem;
  background-color: #fff;
  min-width: 120px;
}

.filter-actions {
  display: flex;
  gap: 8px;
}

.button.small {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.button.icon-btn {
  gap: 6px;
}

.id-badge {
  font-family: monospace;
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.8rem;
  color: var(--muted);
}

.customer-info {
  display: flex;
  flex-direction: column;
}

.action-buttons {
  display: flex;
  gap: 6px;
}

.action-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}

.action-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #f0f7ff;
}

.action-btn.stripe-btn:hover {
  background: #635bff;
  border-color: #635bff;
  color: #fff;
}

@media (max-width: 1100px) {
  .admin-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .admin-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  
  .filter-form.expanded {
    flex-direction: column;
    align-items: stretch;
  }
  
  .filter-group {
    width: 100%;
  }
  
  .date-group {
    justify-content: space-between;
  }
  
  .date-group input {
    width: auto;
    flex: 1;
  }
  
  .select-group {
    flex-direction: row;
  }
  
  .select-group select {
    flex: 1;
  }
}

@media (max-width: 640px) {
  .admin-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .admin-nav-tabs {
    flex-wrap: wrap;
  }
  
  .nav-tab {
    flex: 1;
    text-align: center;
  }
}

/* ========================================
   Create Payment Link Page Styles
   ======================================== */

.create-link-layout {
  max-width: 680px;
}

.create-link-layout .admin-form-card {
  max-width: none;
}

.preview-card {
  display: none;
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.preview-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.preview-badge {
  background: rgba(255,255,255,0.2);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

.preview-content {
  display: grid;
  gap: 20px;
  flex: 1;
}

.preview-amount-display {
  text-align: center;
  padding: 32px 0;
  background: rgba(255,255,255,0.15);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.preview-amount-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.preview-amount-value {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.preview-details {
  display: grid;
  gap: 16px;
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 12px;
}

.preview-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.preview-label {
  color: rgba(255,255,255,0.7);
}

.preview-value {
  font-weight: 500;
  color: #fff;
  text-align: right;
}

.preview-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.preview-branding,
.preview-security {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

.preview-branding svg,
.preview-security svg {
  opacity: 0.8;
}

.amount-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.amount-chip {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s;
}

.amount-chip:hover {
  background: #e2e8f0;
  transform: translateY(-1px);
}

.recent-links-section {
  margin-top: 40px;
}

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

.recent-links-header h3 {
  font-size: 1.1rem;
  color: var(--navy);
}

.recent-links-list {
  display: grid;
  gap: 12px;
}

.recent-link-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #e8eef5;
  transition: all 0.2s;
  cursor: pointer;
}

.recent-link-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(15, 46, 93, 0.06);
}

.recent-link-info h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--navy);
}

.recent-link-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

.recent-link-amount {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1rem;
}

@media (max-width: 980px) {
  .create-link-layout {
    grid-template-columns: 1fr;
  }
  
  .preview-card {
    position: static;
    order: -1;
    margin-bottom: 24px;
  }
}

/* ========== QR Modal ========== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  max-width: 360px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.2s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.15s ease;
}

.modal-close:hover {
  color: var(--text);
}

.modal-content h3 {
  margin: 0 0 20px;
  font-size: 1.25rem;
  color: var(--text);
}

.qr-wrapper {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  display: inline-block;
}

.qr-wrapper img {
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 4px;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.modal-actions .button {
  flex: 1;
  max-width: 140px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  padding: 32px 0 80px;
  max-width: 1400px;
  margin: 0 auto;
  width: 90%;
}

.catalog-sidebar {
  position: sticky;
  top: 80px;
  align-self: start;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

.sidebar-section {
  margin-bottom: 24px;
}

.sidebar-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 8px;
  font-weight: 600;
  color: var(--navy);
}

.sidebar-header svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.sidebar-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  border-bottom: 1px solid #f0f0f0;
}

.category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 8px;
  color: var(--text);
  font-size: 0.9rem;
  transition: all 0.2s;
}

.category-link:hover {
  color: var(--primary);
  padding-left: 12px;
}

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

.category-arrow {
  width: 16px;
  height: 16px;
  color: var(--muted);
}

.sidebar-featured {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

.featured-item {
  display: flex;
  gap: 12px;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
  cursor: pointer;
}

.featured-item:hover {
  background: #f8f9fa;
}

.featured-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.featured-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.featured-title {
  font-size: 0.8rem;
  color: var(--navy);
  line-height: 1.4;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

.featured-moq {
  font-size: 0.75rem;
  color: var(--muted);
}

.featured-sold {
  font-size: 0.75rem;
  color: #888;
}

.catalog-main {
  min-width: 0;
}

.catalog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}

.catalog-title-area h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--muted);
  transition: color 0.2s;
}

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

.breadcrumb-sep {
  color: #ccc;
}

.catalog-view-toggle {
  display: flex;
  gap: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.view-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: none;
  border-right: 1px solid #e0e0e0;
  cursor: pointer;
  transition: all 0.2s;
}

.view-btn:last-child {
  border-right: none;
}

.view-btn svg {
  width: 20px;
  height: 20px;
  color: var(--muted);
}

.view-btn:hover {
  background: #f5f5f5;
}

.view-btn.active {
  background: #f0f0f0;
}

.view-btn.active svg {
  color: var(--navy);
}

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

.product-catalog-grid.list-view {
  grid-template-columns: 1fr;
  gap: 16px;
}

.product-catalog-grid.list-view .catalog-product-card {
  flex-direction: row;
  align-items: stretch;
}

.product-catalog-grid.list-view .catalog-product-image {
  width: 200px;
  aspect-ratio: 1;
  flex-shrink: 0;
}

.product-catalog-grid.list-view .catalog-product-info {
  flex: 1;
  padding: 20px;
}

.product-catalog-grid.list-view .catalog-product-title {
  font-size: 1rem;
  -webkit-line-clamp: 1;
  min-height: auto;
}

.product-catalog-grid.list-view .catalog-contact-btn {
  align-self: center;
  margin: 20px;
  width: auto;
  min-width: 140px;
}

.product-detail-page {
  padding: 24px 0 80px;
  background: #fff;
}

.product-breadcrumb {
  margin-bottom: 20px;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

.product-gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
}

.gallery-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gallery-thumb {
  width: 72px;
  height: 72px;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: var(--primary);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-main {
  position: relative;
  grid-column: 2;
  grid-row: 1 / 3;
}

.gallery-main-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f8f8;
}

.gallery-main-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 5;
  transition: all 0.2s;
}

.gallery-nav:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.gallery-nav svg {
  width: 20px;
  height: 20px;
  color: var(--navy);
}

.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }

.gallery-favorite,
.gallery-zoom {
  position: absolute;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.gallery-favorite { top: 12px; right: 12px; }
.gallery-zoom { top: 12px; right: 56px; }

.gallery-favorite:hover,
.gallery-zoom:hover {
  background: #fff;
  transform: scale(1.1);
}

.gallery-favorite svg,
.gallery-zoom svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
}

.gallery-tabs {
  grid-column: 2;
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}

.gallery-tab {
  padding: 8px 16px;
  background: none;
  border: none;
  font-size: 0.9rem;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.gallery-tab.active {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

.gallery-tab.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.gallery-main-image video {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: contain;
}

.product-info {
  position: sticky;
  top: 80px;
}

.product-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  text-align: center;
  margin-bottom: 16px;
}

.product-description {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-key-info {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 24px;
}

.key-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.key-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.key-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}

.product-specs {
  margin-bottom: 20px;
}

.product-specs h3,
.product-logistics h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.spec-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.spec-label {
  font-size: 0.85rem;
  color: var(--muted);
  min-width: 80px;
}

.spec-value {
  font-size: 0.85rem;
  color: var(--navy);
}

.color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  border: 1px solid #ddd;
}

.spec-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.spec-tag {
  padding: 6px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: #f8f9fa;
  font-size: 0.85rem;
  color: var(--navy);
}

.product-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.product-actions .button {
  flex: 1;
  padding: 14px 20px;
  font-size: 0.95rem;
}

.product-actions .button.primary {
  flex: 1.5;
}

.product-trust {
  border-top: 1px solid #eee;
  padding-top: 16px;
}

.trust-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--muted);
}

.trust-row svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-row strong {
  color: var(--navy);
  display: block;
}

.related-products {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #eee;
}

.related-products h2 {
  font-size: 1.25rem;
  margin-bottom: 24px;
}

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

.related-product-card {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s;
}

.related-product-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.related-product-image {
  aspect-ratio: 1;
  overflow: hidden;
}

.related-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-product-title {
  padding: 12px 12px 4px;
  font-size: 0.8rem;
  color: var(--navy);
  line-height: 1.4;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-product-price {
  padding: 0 12px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.related-product-moq {
  padding: 4px 12px;
  font-size: 0.75rem;
  color: var(--muted);
}

.related-product-cta {
  display: block;
  padding: 8px 12px 12px;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 500;
}

.product-attributes-section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #eee;
}

.product-attributes-section h2 {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.attributes-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.attributes-table th,
.attributes-table td {
  padding: 12px 16px;
  border: 1px solid #eee;
  font-size: 0.85rem;
  text-align: left;
}

.attributes-table th {
  background: #f8f9fa;
  color: var(--muted);
  font-weight: 500;
  width: 15%;
}

.attributes-table td {
  color: var(--navy);
}

.inquiry-cta-section {
  margin-top: 48px;
  padding: 48px;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 100%);
  border-radius: 16px;
  text-align: center;
}

.inquiry-cta-content h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.inquiry-cta-content p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 1rem;
}

.inquiry-cta-content .button {
  padding: 16px 48px;
}

@media (max-width: 1024px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .product-info {
    position: static;
  }
  
  .related-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-gallery {
    grid-template-columns: 1fr;
  }
  
  .gallery-thumbnails {
    flex-direction: row;
    order: 2;
    overflow-x: auto;
  }
  
  .gallery-main {
    grid-column: 1;
    grid-row: 1;
  }
  
  .gallery-tabs {
    grid-column: 1;
    order: 3;
  }
  
  .product-actions {
    flex-wrap: wrap;
  }
  
  .product-actions .button {
    flex: 1 1 45%;
  }
  
  .tier-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .attributes-table th,
  .attributes-table td {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 600px) {
  .related-products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .details-tabs {
    overflow-x: auto;
    gap: 16px;
  }
  
  .details-tab {
    white-space: nowrap;
    font-size: 0.85rem;
  }
}

.catalog-product-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}

.catalog-product-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.catalog-product-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f8f8f8;
}

.catalog-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.catalog-product-card:hover .catalog-product-image img {
  transform: scale(1.05);
}

.catalog-product-info {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.catalog-product-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
}

.catalog-product-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-range {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}

.catalog-product-meta {
  display: flex;
  gap: 6px;
  font-size: 0.8rem;
}

.moq-label {
  color: var(--accent);
  font-weight: 500;
}

.moq-value {
  color: var(--text);
}

.catalog-product-note {
  font-size: 0.75rem;
  color: var(--muted);
}

.catalog-product-sold {
  font-size: 0.75rem;
  color: #888;
  margin-top: auto;
}

.catalog-contact-btn {
  display: block;
  text-align: center;
  padding: 12px 16px;
  margin: 0 16px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  transition: all 0.2s;
}

.catalog-contact-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

@media (max-width: 1200px) {
  .product-catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .catalog-layout {
    grid-template-columns: 1fr;
  }
  
  .catalog-sidebar {
    position: static;
    max-height: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .sidebar-featured {
    flex-direction: row;
    flex-wrap: wrap;
    border-top: none;
    margin-top: 0;
    padding-top: 0;
  }
  
  .featured-item {
    flex: 1 1 calc(50% - 8px);
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .product-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .catalog-sidebar {
    grid-template-columns: 1fr;
  }
  
  .sidebar-featured {
    display: none;
  }
  
  .catalog-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .catalog-title-area h1 {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .product-catalog-grid {
    grid-template-columns: 1fr;
  }
  
  .catalog-product-card {
    flex-direction: row;
  }
  
  .catalog-product-image {
    width: 120px;
    aspect-ratio: 1;
    flex-shrink: 0;
  }
  
  .catalog-product-info {
    padding: 12px;
  }
  
  .catalog-contact-btn {
    margin: 0 12px 12px;
    padding: 10px 12px;
    font-size: 0.85rem;
  }
}

/* How it Works Section */
.how-it-works-section {
  background: #ffffff;
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  padding: 60px 0;
  margin: 60px 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.how-it-works-section .section-title {
  margin-bottom: 48px;
}

.how-it-works-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.how-it-works-section p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  max-width: 1200px;
}

.how-step {
  text-align: center;
  padding: 24px;
  background: #f9f9f9;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.how-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 16px;
}

.how-step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
  text-align: center;
}

.how-step p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .how-it-works-section {
    padding: 40px 0;
    margin: 40px 0;
  }

  .how-it-works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .how-step {
    padding: 16px;
  }

  .step-number {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .how-step h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .how-step p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .how-it-works-section {
    padding: 32px 0;
    margin: 24px 0;
    border-width: 2px;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .how-step {
    padding: 12px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .how-step h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .how-step p {
    font-size: 0.8rem;
  }
}

/* ========================================
   Screen Reader Only (for H1 SEO)
   ======================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ========================================
   Footer Grid Layout
   ======================================== */
footer {
  padding: 64px 0 120px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  color: var(--text);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: auto;
  border-top: 1px solid #e5e7eb;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 16px;
}

.footer-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.footer-tagline {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  color: var(--muted);
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
  transition: color 0.2s;
  font-size: 0.9rem;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary);
}

.footer-contact a {
  color: var(--muted);
  transition: color 0.2s;
}

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

.footer-hours {
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
  margin-top: 8px;
}

.footer-hours strong {
  color: var(--navy);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: var(--muted);
  font-size: 0.85rem;
  transition: color 0.2s;
}

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

.footer-copyright {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
}

/* Footer Responsive */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 640px) {
  footer {
    padding: 48px 0 120px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
}

/* ============================================
   Manufacturing Capabilities Section
   ============================================ */

.capabilities-showcase {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.capability-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.capability-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.capability-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  background: #f3f4f6;
}

.capability-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.capability-card:hover .capability-image img {
  transform: scale(1.05);
}

.capability-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin: 20px 24px 12px;
  line-height: 1.3;
}

.capability-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 24px 24px;
}

/* ============================================
   Popular Box Styles Section
   ============================================ */

.box-styles-section {
  background: #fff;
}

.box-styles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.box-style-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  position: relative;
}

.box-style-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

.box-style-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #e8f4f8 100%);
}

.box-style-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.box-style-card:hover .box-style-image img {
  transform: scale(1.08);
}

.box-style-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin: 24px 24px 12px;
  line-height: 1.3;
}

.box-style-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 24px 16px;
}

.box-style-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 24px 24px;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.box-style-link:hover {
  gap: 12px;
  color: var(--navy);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .box-styles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .capabilities-grid,
  .box-styles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .capability-image,
  .box-style-image {
    height: 200px;
  }

  .capability-card h3,
  .box-style-card h3 {
    font-size: 1.1rem;
    margin: 16px 20px 10px;
  }

  .capability-card p,
  .box-style-card p {
    font-size: 0.9rem;
    margin: 0 20px 20px;
  }

  .box-style-link {
    margin: 0 20px 20px;
  }
}

/* ============================================
   FAIRE PLATFORM OPTIMIZATION STYLES
   ============================================ */

/* Wholesale Pricing Card */
.wholesale-pricing-card {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 24px;
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-row {
  display: flex;
  gap: 24px;
  justify-content: space-around;
  margin-top: 8px;
}

.pricing-item {
  text-align: center;
}

.price-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.price-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.price-value.highlight {
  color: var(--primary);
  font-size: 1.8rem;
}

.pricing-item.msrp .price-value {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 1.2rem;
}

/* Policy Pages */
.policy-page .page-hero {
  background: var(--navy);
  color: #fff;
  padding: 60px 0 40px;
  text-align: center;
}

.policy-page .page-hero h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.policy-updated {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.policy-container {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 48px;
  align-items: start;
}

.policy-toc {
  position: sticky;
  top: 100px;
  background: #f8f9fa;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.policy-toc h3 {
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.policy-toc ul {
  list-style: none;
}

.policy-toc a {
  display: block;
  padding: 8px 12px;
  font-size: 0.95rem;
  color: var(--text);
  border-left: 2px solid transparent;
  margin-left: -12px;
  transition: all 0.2s;
}

.policy-toc a:hover,
.policy-toc a.active {
  color: var(--primary);
  border-left-color: var(--primary);
  background: rgba(13, 148, 136, 0.05);
}

.policy-main {
  max-width: 800px;
}

.policy-section {
  margin-bottom: 48px;
  scroll-margin-top: 100px;
}

.policy-section h2 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-color);
}

.policy-section h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin: 24px 0 12px;
}

.policy-section p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.policy-list {
  list-style: none;
  margin: 16px 0;
}

.policy-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  align-items: flex-start;
}

.policy-list li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--primary);
  margin-top: 2px;
}

.policy-list.simple {
  padding-left: 20px;
}

.policy-list.simple li {
  display: list-item;
  list-style: disc;
  margin-bottom: 8px;
}

.policy-list.numbered {
  counter-reset: policy-counter;
}

.policy-list.numbered li {
  display: block;
  counter-increment: policy-counter;
  padding-left: 32px;
  position: relative;
}

.policy-list.numbered li::before {
  content: counter(policy-counter) ".";
  position: absolute;
  left: 0;
  font-weight: 600;
  color: var(--primary);
}

.policy-highlight,
.policy-alert {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  margin: 20px 0;
}

.policy-highlight {
  background: #ecfdf5;
  border-left: 4px solid var(--primary);
}

.policy-highlight svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.policy-highlight.quality {
  background: #eff6ff;
  border-left-color: #3b82f6;
}

.policy-highlight.quality svg {
  color: #3b82f6;
}

.policy-alert {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
}

.policy-alert svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #f59e0b;
}

.policy-highlight strong,
.policy-alert strong {
  display: block;
  margin-bottom: 4px;
}

/* Refund Timeline */
.refund-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 24px 0;
}

.refund-timeline .timeline-step {
  display: flex;
  gap: 16px;
  position: relative;
  padding-bottom: 24px;
}

.refund-timeline .timeline-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 36px;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}

.refund-timeline .step-number {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.refund-timeline .step-content h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.refund-timeline .step-content p {
  font-size: 0.95rem;
  color: var(--text);
  margin: 0;
}

/* Contact Methods */
.contact-methods {
  display: flex;
  gap: 16px;
  margin: 24px 0;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #f8f9fa;
  border-radius: var(--radius-md);
  flex: 1;
  transition: all 0.2s;
}

.contact-method:hover {
  background: #ecfdf5;
  transform: translateY(-2px);
}

.contact-method svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.contact-method strong {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-method span {
  color: var(--navy);
  font-weight: 500;
}

.response-note {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
}

/* Wholesale Terms Page */
.wholesale-intro {
  background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
  padding: 32px;
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
}

.wholesale-intro h2 {
  color: var(--primary);
  margin-bottom: 12px;
  border: none;
  padding: 0;
}

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

.moq-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: all 0.2s;
}

.moq-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.moq-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--primary);
}

.moq-icon svg {
  width: 100%;
  height: 100%;
}

.moq-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.moq-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}

.moq-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.moq-note-text {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 16px;
}

.wholesale-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.wholesale-table th,
.wholesale-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.wholesale-table th {
  background: #f8f9fa;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
}

.wholesale-table tr:hover {
  background: #f8f9fa;
}

/* Pricing Tiers */
.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.pricing-tier {
  background: #fff;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  position: relative;
}

.pricing-tier.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.tier-header h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.tier-qty {
  font-size: 0.9rem;
  color: var(--muted);
}

.tier-discount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 16px 0;
}

.pricing-tier p {
  font-size: 0.9rem;
  color: var(--text);
  margin: 0;
}

/* Payment and Sample Options */
.payment-options,
.sample-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 20px 0;
}

.payment-option,
.sample-type {
  background: #f8f9fa;
  padding: 24px;
  border-radius: var(--radius-md);
}

.payment-option h3,
.sample-type h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.sample-type > p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

/* Customization Grid */
.customization-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 20px 0;
}

.customization-item {
  background: #f8f9fa;
  padding: 24px;
  border-radius: var(--radius-md);
}

.customization-item h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 12px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
  padding: 48px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: 48px;
}

.cta-section h2 {
  border: none;
  padding: 0;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

/* Client Logos Section */
.client-logos-section {
  background: #f8f9fa;
  padding: 72px 0;
}

.client-logos-header {
  text-align: center;
  margin-bottom: 48px;
}

.client-logos-header h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.client-logos-header p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

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

.client-logo-item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.2s;
}

.client-logo-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.logo-placeholder,
.company-logo-placeholder {
  background: #e5e7eb;
  color: var(--muted);
  padding: 24px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.logo-text {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d3748 100%);
  color: #fff;
  padding: 24px 16px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: 0.5px;
}

.company-logo-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
}

.client-industry {
  font-size: 0.85rem;
  color: var(--muted);
}

.client-logos-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 24px;
}

/* Testimonial Enhancements */
.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.testimonial-company-logo {
  flex-shrink: 0;
}

.testimonial-order-info {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 4px;
}

.testimonials-cta {
  text-align: center;
  margin-top: 32px;
}

/* Team Page */
.team-page .page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #374151 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0 60px;
}

.team-page .page-hero h1 {
  color: #fff;
}

.team-page .page-hero p {
  color: rgba(255, 255, 255, 0.8);
}

.founder-section {
  background: #f8f9fa;
}

.founder-card {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 48px;
  align-items: center;
}

.founder-image img,
.founder-placeholder {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

.founder-placeholder {
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-placeholder svg {
  width: 80px;
  height: 80px;
  color: #9ca3af;
}

.founder-label {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.founder-content h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.founder-position {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 24px;
}

.founder-bio p {
  line-height: 1.8;
  margin-bottom: 24px;
}

.founder-quote {
  font-style: italic;
  color: var(--muted);
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  margin: 24px 0;
}

.founder-highlights {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.highlight-item {
  text-align: center;
}

.highlight-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.highlight-label {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Team Grid */
.team-grid-section .section-title {
  text-align: center;
  margin-bottom: 48px;
}

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

.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

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

.team-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card-placeholder svg {
  width: 64px;
  height: 64px;
  color: #9ca3af;
}

.team-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
}

.department-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 12px;
}

.team-card-content {
  padding: 24px;
}

.team-card-content h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-position {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}

.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 16px;
  transition: gap 0.2s;
}

.team-linkedin:hover {
  gap: 12px;
}

/* Team Values */
.team-values {
  background: var(--navy);
  color: #fff;
}

.values-header {
  text-align: center;
  margin-bottom: 48px;
}

.values-header h2 {
  color: #fff;
  font-size: 2rem;
}

.values-header p {
  color: rgba(255, 255, 255, 0.7);
}

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

.value-item {
  text-align: center;
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary-light);
}

.value-item h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.value-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* FAQ Page */
.faq-page .page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #374151 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0 60px;
}

.faq-page .page-hero h1 {
  color: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 100px;
}

.faq-sidebar h3 {
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.faq-nav {
  list-style: none;
  margin-bottom: 32px;
}

.faq-nav a {
  display: block;
  padding: 12px 16px;
  color: var(--text);
  border-radius: var(--radius-md);
  transition: all 0.2s;
  font-weight: 500;
}

.faq-nav a:hover,
.faq-nav a.active {
  background: #ecfdf5;
  color: var(--primary);
}

.faq-contact-card {
  background: #f8f9fa;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.faq-contact-card h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.faq-contact-card p {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 16px;
}

.faq-section {
  margin-bottom: 48px;
  scroll-margin-top: 100px;
}

.faq-section > h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border-color);
}

.faq-section > h2 svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s;
}

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

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--muted);
  transition: transform 0.2s;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer > * {
  padding: 0 24px;
}

.faq-answer > *:first-child {
  padding-top: 0;
}

.faq-answer > *:last-child {
  padding-bottom: 24px;
}

.faq-answer p {
  line-height: 1.7;
  margin-bottom: 12px;
}

.faq-answer ul,
.faq-answer ol {
  margin: 12px 0 12px 24px;
}

.faq-answer li {
  margin-bottom: 8px;
}

.faq-table {
  width: calc(100% - 48px);
  margin: 0 24px 24px;
  border-collapse: collapse;
}

.faq-table th,
.faq-table td {
  padding: 10px 12px;
  text-align: left;
  border: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.faq-table th {
  background: #f8f9fa;
  font-weight: 600;
}

/* Case Studies Page */
.case-studies-page .page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #374151 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0 60px;
}

.case-studies-page .page-hero h1 {
  color: #fff;
}

.case-studies-intro {
  background: #f8f9fa;
  padding: 48px 0;
}

.intro-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
}

.intro-stat {
  text-align: center;
}

.intro-stat .stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.intro-stat .stat-label {
  font-size: 0.9rem;
  color: var(--muted);
}

.case-study-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 72px;
  align-items: start;
}

.case-study-card.reverse {
  direction: rtl;
}

.case-study-card.reverse > * {
  direction: ltr;
}

.case-study-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.case-study-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.image-placeholder svg {
  width: 48px;
  height: 48px;
  color: #9ca3af;
}

.image-placeholder span {
  color: #9ca3af;
  font-size: 0.9rem;
}

.industry-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
}

.case-study-header {
  margin-bottom: 24px;
}

.company-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.company-info .company-logo {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  object-fit: contain;
  background: #f8f9fa;
  padding: 8px;
}

.company-info .company-logo-placeholder {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin: 0;
}

.company-info h2 {
  font-size: 1.5rem;
  color: var(--navy);
  margin: 0;
}

.partnership-info {
  font-size: 0.9rem;
  color: var(--muted);
}

.case-study-section {
  margin-bottom: 24px;
}

.case-study-section h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.case-study-section h3 svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.case-study-section p {
  color: var(--text);
  line-height: 1.7;
}

.case-study-metrics {
  display: flex;
  gap: 32px;
  margin: 24px 0;
  padding: 20px;
  background: #ecfdf5;
  border-radius: var(--radius-md);
}

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

.metric-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.metric-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.case-study-quote {
  background: #f8f9fa;
  padding: 24px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
  margin-top: 24px;
}

.case-study-quote p {
  font-style: italic;
  color: var(--text);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.case-study-quote footer {
  display: flex;
  flex-direction: column;
}

.case-study-quote footer strong {
  color: var(--navy);
}

.case-study-quote footer span {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Industries Grid */
.industries-served {
  background: #f8f9fa;
}

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

.industry-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.2s;
}

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

.industry-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: #ecfdf5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.industry-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.industry-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Footer Enhancements */
.footer-col-wide {
  grid-column: span 1;
}

.footer-address {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-address svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-address strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.footer-address span {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive Styles for New Components */
@media (max-width: 1024px) {
  .policy-container {
    grid-template-columns: 1fr;
  }

  .policy-toc {
    position: static;
    margin-bottom: 32px;
  }

  .moq-grid,
  .pricing-tiers {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-image {
    max-width: 300px;
    margin: 0 auto;
  }

  .founder-highlights {
    justify-content: center;
  }

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

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

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    position: static;
  }

  .case-study-card,
  .case-study-card.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

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

@media (max-width: 768px) {
  .pricing-row {
    flex-direction: column;
    gap: 16px;
  }

  .moq-grid,
  .pricing-tiers,
  .payment-options,
  .sample-types,
  .customization-grid {
    grid-template-columns: 1fr;
  }

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

  .intro-stats {
    flex-wrap: wrap;
    gap: 32px;
  }

  .founder-highlights {
    flex-wrap: wrap;
    gap: 24px;
  }

  .team-grid,
  .values-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .case-study-metrics {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .contact-methods {
    flex-direction: column;
  }
}


/* Contact & About Page Enhancements */
.info-panel ul li {
  margin-bottom: 12px;
}

.info-panel ul li strong {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2px;
}

.info-callout.company-info,
.info-callout.certifications {
  margin-bottom: 16px;
}

.info-callout.company-info p,
.info-callout.certifications p {
  margin: 0 0 8px;
}

.business-hours {
  margin-top: 12px;
  font-size: 0.9rem;
}

.cert-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}

.cert-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 0.9rem;
}

.cert-list li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
}

.certifications-box {
  background: #ecfdf5;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-top: 20px;
}

.certifications-box h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.cert-badges {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cert-badges li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.cert-badges li:last-child {
  border-bottom: none;
}

.cert-badges svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.cert-badges span {
  font-weight: 500;
  color: var(--navy);
}

.company-details {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.company-details h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.company-details p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-link {
  margin-top: 12px;
}

.contact-link a {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.9rem;
}

.contact-link a:hover {
  text-decoration: underline;
}

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown-trigger svg {
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  z-index: 1000;
  margin-top: 8px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s;
  border: none !important;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.4;
  text-align: center;
}

.nav-dropdown-menu a:hover {
  background: #f8f9fa;
  color: var(--primary);
}

/* Certifications Banner */
.certifications-banner {
  background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
  padding: 48px 0;
}

.certifications-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.cert-intro {
  max-width: 500px;
}

.cert-intro h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.cert-intro p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.cert-badges-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.cert-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cert-badge-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-badge-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary-light);
}

.cert-badge-text strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.cert-badge-text span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Product Card Wholesale Badge */
.catalog-product-image {
  position: relative;
}

.wholesale-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.catalog-pricing {
  margin: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.msrp-price {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: line-through;
}

.wholesale-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}

.case-pack-info {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Shipping Policy Specific Styles */
.shipping-highlights {
  display: flex;
  gap: 32px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.shipping-highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 200px;
}

.shipping-highlight-item svg {
  width: 40px;
  height: 40px;
  color: var(--primary);
  flex-shrink: 0;
}

.shipping-highlight-item strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
}

.shipping-highlight-item span {
  font-size: 0.85rem;
  color: var(--muted);
}

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

.shipping-method-card {
  background: #fff;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.2s;
}

.shipping-method-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.shipping-method-card.express {
  border-color: #f59e0b;
}

.shipping-method-card.air {
  border-color: #3b82f6;
}

.shipping-method-card.sea {
  border-color: var(--primary);
}

.method-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.method-header h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin: 0;
}

.method-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
}

.shipping-method-card.express .method-badge {
  background: #fef3c7;
  color: #b45309;
}

.shipping-method-card.air .method-badge {
  background: #dbeafe;
  color: #1d4ed8;
}

.shipping-method-card.sea .method-badge {
  background: #d1fae5;
  color: #047857;
}

.method-carriers {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.method-details {
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.9rem;
}

.detail-label {
  color: var(--muted);
}

.detail-value {
  color: var(--navy);
  font-weight: 500;
  text-align: right;
}

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

.destination-region {
  background: #f8f9fa;
  padding: 24px;
  border-radius: var(--radius-md);
}

.destination-region h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.destination-region h4 svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.destination-region ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.destination-region li {
  font-size: 0.9rem;
  color: var(--text);
  padding: 4px 0;
}

.table-note {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 8px;
}

.incoterms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.incoterm-card {
  background: #f8f9fa;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  position: relative;
}

.incoterm-card.featured {
  background: #ecfdf5;
  border-color: var(--primary);
}

.incoterm-card h4 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.incoterm-card p {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 12px;
}

.responsibility {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
}

.recommended-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  margin-top: 12px;
}

/* Responsive for new components */
@media (max-width: 1024px) {
  .certifications-content {
    flex-direction: column;
    text-align: center;
  }

  .cert-badges-row {
    justify-content: center;
  }

  .shipping-methods-grid {
    grid-template-columns: 1fr;
  }

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

  .incoterms-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    background: #f8f9fa;
    border-radius: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .cert-badges-row {
    flex-direction: column;
    gap: 20px;
  }

  .cert-badge-item {
    justify-content: center;
  }

  .shipping-highlights {
    flex-direction: column;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }
}
