:root {
  --primary: #005EB8;
  --primary-hover: #004b94;
  --primary-light: #e8f2fa;
  --secondary: #00A3E0;
  --dark: #1F2937;
  --light: #F8FAFC;
  --accent: #16A34A;
  --accent-hover: #138a3e;
  --white: #FFFFFF;
  --muted: #6B7280;
  --line: #E5E7EB;
  --border: #D1D5DB;
  --ribbon-height: 40px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--dark);
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: -0.01em;
  animation: pageFade 400ms ease both;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---- Top Bar ---- */
.social-ribbon {
  position: fixed; top: 0; right: 0; left: 0; z-index: 1040;
  height: var(--ribbon-height);
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.social-ribbon .container { height: 100%; }
.social-ribbon-inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.trending-ribbon {
  min-width: 0; flex: 1; display: flex; align-items: center; gap: 12px; color: var(--white);
}
.trending-label {
  flex: 0 0 auto; border-right: 1px solid rgba(255,255,255,0.28);
  padding-right: 12px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
}
.trending-marquee {
  min-width: 0; width: min(52vw, 560px); overflow: hidden; white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
}
.trending-track {
  display: inline-flex; align-items: center; gap: 0; min-width: max-content;
  animation: trendingScroll 24s linear infinite; will-change: transform;
}
.trending-set { display: inline-flex; align-items: center; flex: 0 0 auto; }
.trending-track a {
  width: auto; height: auto; border: 0; border-radius: 0; display: inline-flex; align-items: center;
  color: rgba(255,255,255,0.78); font-size: 0.8rem; font-weight: 500;
  flex: 0 0 auto; min-width: 230px; max-width: 230px; padding-right: 28px; line-height: 1; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.trending-track a::before {
  content: ""; width: 4px; height: 4px; margin: auto 8px auto 0; border-radius: 50%; background: currentColor;
}
.trending-track a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }
.social-ribbon-links { display: flex; align-items: center; flex: 0 0 auto; gap: 8px; }
.social-ribbon-links a {
  width: 28px; height: 28px; border: 1px solid rgba(255,255,255,0.5); border-radius: 50%;
  display: inline-grid; place-items: center; color: var(--white);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}
.social-ribbon-links a:hover { background: var(--white); border-color: var(--white); color: var(--dark); transform: translateY(-1px); }
.social-ribbon svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ---- Navbar ---- */
.site-navbar {
  top: var(--ribbon-height); background: rgba(255,255,255,0.92);
  border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); padding: 16px 0;
  transition: padding 200ms ease, box-shadow 200ms ease;
}
.site-navbar.navbar-scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.06); padding: 10px 0;
}
.navbar-brand {
  color: var(--primary); font-size: 1rem; font-weight: 800; text-transform: none; letter-spacing: -0.01em;
}
.nav-link {
  position: relative; color: var(--dark); font-size: 0.88rem; font-weight: 500;
}
.nav-link:hover, .nav-link.active { color: var(--primary); text-decoration: none; }
.nav-link::after {
  content: ""; position: absolute; left: 8px; right: 8px; bottom: 2px; height: 2px;
  background: var(--primary); transform: scaleX(0); transform-origin: left; transition: transform 200ms ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.cart-pill {
  border: 1.5px solid var(--primary); border-radius: 999px; padding: 8px 16px !important; color: var(--primary);
}
.cart-count {
  display: inline-flex; align-items: center; justify-content: center; min-width: 22px; height: 22px;
  margin-left: 6px; border-radius: 999px; background: var(--primary); color: var(--white);
  font-size: 0.72rem; font-weight: 700; transition: transform 200ms ease;
}
.cart-count.cart-bump { animation: cartBump 400ms ease; }

/* ---- Hero ---- */
.hero-section {
  position: relative; min-height: 100vh; padding: 130px 0 80px;
  display: flex; align-items: center; overflow: hidden;
  background: var(--white);
}
/* Subtle dot-grid pattern */
.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  opacity: 0.18;
  background-image: radial-gradient(circle, var(--primary) 1px, transparent 1px);
  background-size: 40px 40px;
}
/* Floating accent shapes */
.hero-accent-shape {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  opacity: 0.06; background: var(--primary);
}
.hero-accent-1 {
  width: 600px; height: 600px; top: -200px; right: -150px;
  animation: heroShapeFloat 20s ease-in-out infinite;
}
.hero-accent-2 {
  width: 400px; height: 400px; bottom: -100px; left: -80px;
  animation: heroShapeFloat 24s ease-in-out infinite reverse;
  opacity: 0.04;
}

/* Hero badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border: 1px solid var(--line); border-radius: 999px;
  font-size: 0.72rem; font-weight: 600; color: var(--muted);
  letter-spacing: 0.02em; margin-bottom: 28px;
  background: var(--white);
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
}

/* Hero heading */
.hero-section h1 {
  max-width: 680px; font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.03em;
  margin-bottom: 24px; position: relative; z-index: 1;
}
.hero-copy {
  max-width: 540px; color: #64748B; font-size: 1.08rem; line-height: 1.7;
  margin-bottom: 36px; position: relative; z-index: 1;
}
.hero-cta-row {
  display: flex; flex-wrap: wrap; gap: 14px; position: relative; z-index: 1; margin-bottom: 36px;
}

/* Trust row */
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 18px; position: relative; z-index: 1;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.8rem; font-weight: 600; color: var(--muted);
}
.hero-trust-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary);
  font-size: 0.65rem; font-weight: 700; flex-shrink: 0;
}

/* Hero visual */
.hero-visual {
  position: relative; z-index: 1;
}
.hero-image-main {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.12);
}
.hero-image-main img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block;
}
.hero-image-float {
  position: absolute; bottom: -30px; left: -30px; width: 170px; height: 210px;
  border-radius: 16px; overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  animation: heroFloatUp 6s ease-in-out infinite;
}
.hero-image-float img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-stat-float {
  position: absolute; top: 30px; right: -20px;
  background: var(--white); border-radius: 14px; padding: 18px 22px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  text-align: center; animation: heroFloatUp 7s ease-in-out 0.5s infinite;
}
.hero-stat-num {
  display: block; font-size: 1.5rem; font-weight: 800; color: var(--primary); line-height: 1.2;
}
.hero-stat-label {
  display: block; font-size: 0.7rem; color: var(--muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em; margin-top: 2px;
}

/* Hero animations */
.hero-section .hero-badge,
.hero-section h1,
.hero-section .hero-copy,
.hero-section .hero-cta-row,
.hero-section .hero-trust {
  animation: heroRise 800ms cubic-bezier(0.22,1,0.36,1) both;
}
.hero-section h1 { animation-delay: 100ms; }
.hero-section .hero-copy { animation-delay: 200ms; }
.hero-section .hero-cta-row { animation-delay: 300ms; }
.hero-section .hero-trust { animation-delay: 400ms; }

@keyframes heroShapeFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}
@keyframes heroFloatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Remove old carousel hero styles */
.hero-carousel-section,
.hero-indicators,
.hero-carousel-section .carousel,
.hero-carousel-section .carousel-inner,
.hero-carousel-section .carousel-item,
.hero-carousel-section .carousel-item .container,
.hero-carousel-section .carousel-item:not(.active) .eyebrow,
.hero-carousel-section .carousel-item:not(.active) h1,
.hero-carousel-section .carousel-item:not(.active) .hero-copy,
.hero-carousel-section .carousel-item:not(.active) .btn {
  /* overridden by new hero - kept for compatibility */
}

.eyebrow {
  margin-bottom: 16px; color: var(--primary); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
}
h1, .page-title { max-width: 900px; font-size: clamp(2.5rem, 6vw, 5.6rem); font-weight: 800; line-height: 1.04; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3.4rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.01em; }
.hero-copy, .lead {
  max-width: 640px; color: #4B5563; font-size: clamp(1rem, 1.8vw, 1.2rem); line-height: 1.7;
}
.hero-copy { margin: 22px 0 32px; }

/* ---- Buttons ---- */
.btn {
  position: relative; border-radius: 10px; font-weight: 600; padding: 14px 32px; font-size: 0.94rem;
  overflow: hidden; transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,94,184,0.2); }
.btn:active, .mini-button:active, .quantity-control button:active { transform: translateY(0) scale(0.98); }
.btn-primary { background: var(--primary); border-color: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); box-shadow: 0 12px 32px rgba(0,94,184,0.25); }
.btn-outline-primary {
  border-color: var(--primary); color: var(--primary); background: transparent;
}
.btn-outline-primary:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
.btn-dark { background: var(--dark); border-color: var(--dark); color: var(--white); }
.btn-dark:hover { background: #111827; border-color: #111827; }
.btn-outline-dark { border-color: var(--dark); color: var(--dark); }
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }
.btn-accent { background: var(--accent); border-color: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

/* ---- Product Detail Image ---- */
.product-detail-image {
  overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--light);
}
.product-detail-image img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block;
}

/* ---- Sections ---- */
.section-line { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat-item {
  padding: 28px 18px; border-right: 1px solid var(--line);
  transition: background 200ms ease;
}
.stat-item:hover { background: var(--primary-light); }
.stat-item:last-child { border-right: 0; }
.stat-item span { display: block; color: var(--muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.03em; }
.stat-item strong { display: block; margin-top: 6px; font-size: 1rem; font-weight: 700; }
.section-space { padding: 90px 0; }
.page-top { padding-top: 130px; }

/* ---- Premium Section Divider ---- */
.section-divider {
  height: 4px; background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  border: 0; margin: 0;
}

.section-heading, .shop-header {
  display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 32px;
}
.section-heading a, .text-link {
  position: relative; border-bottom: 2px solid var(--primary); padding-bottom: 4px;
  font-weight: 600; color: var(--primary); font-size: 0.9rem;
}
.section-heading a:hover, .text-link:hover { color: var(--primary-hover); border-color: var(--primary-hover); }

/* ---- Product Cards ---- */
#featured-products > div,
#shop-products > div,
#related-products > div {
  display: flex;
}
.product-card {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  background: var(--white);
  transition: transform 350ms cubic-bezier(0.22,1,0.36,1), box-shadow 350ms ease, border-color 350ms ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.product-card:hover {
  border-color: transparent; box-shadow: 0 28px 64px rgba(0,94,184,0.14); transform: translateY(-10px);
}
.product-card-img-link {
  position: relative; display: block; overflow: hidden; background: var(--light);
}
.product-card img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block;
  transition: transform 700ms cubic-bezier(0.22,1,0.36,1);
}
.product-card:hover img { transform: scale(1.06); }
.product-card-body {
  padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1;
}
.product-meta {
  color: var(--primary); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; order: -1;
}
.product-card h3 { margin: 0 0 4px; font-size: 0.98rem; font-weight: 700; line-height: 1.4; }
.product-card h3 a { color: var(--dark); text-decoration: none; }
.product-card h3 a:hover { color: var(--primary); }
.product-sku { font-size: 0.75rem; color: var(--muted); margin-bottom: 14px; }
.price-row {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: auto;
}
.price { font-weight: 800; font-size: 1.15rem; color: var(--dark); letter-spacing: -0.01em; }

/* ---- Product Stock Badge ---- */
.product-badge {
  position: absolute; top: 14px; right: 14px; padding: 5px 12px;
  border-radius: 6px; font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em; z-index: 2;
}
.product-badge.in-stock {
  background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0;
}
.product-badge.out-of-stock {
  background: #fff7ed; color: #c2410c; border: 1px solid #fed7aa;
}

.mini-button {
  border: 1.5px solid var(--primary); border-radius: 8px; background: transparent; color: var(--primary);
  font-size: 0.8rem; font-weight: 600; padding: 9px 16px; cursor: pointer;
  transition: all 200ms ease;
}
.mini-button:hover { background: var(--primary); color: var(--white); box-shadow: 0 8px 24px rgba(0,94,184,0.22); transform: translateY(-1px); }

/* ---- Soft Band ---- */
.soft-band { background: var(--light); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-photo {
  width: 100%; border: 0; border-radius: 16px; aspect-ratio: 4 / 5; object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1); transition: transform 800ms cubic-bezier(0.22,1,0.36,1), box-shadow 800ms ease;
}
.feature-photo:hover { transform: scale(1.03); box-shadow: 0 28px 72px rgba(0,0,0,0.15); }

/* ---- Category Grid ---- */
.category-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px;
}
.category-grid a {
  display: flex; align-items: center; justify-content: center; padding: 28px 20px;
  border: 1px solid var(--line); border-radius: 10px; font-weight: 600; font-size: 0.92rem;
  color: var(--dark); text-align: center;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}
.category-grid a:hover { border-color: var(--primary); background: var(--primary-light); color: var(--primary); transform: translateY(-2px); }

/* ---- Shop ---- */
.shop-filter-toggle {
  display: none; width: 100%; border: 1px solid var(--line); border-radius: 10px; background: var(--white);
  padding: 14px 18px; text-align: left; font-weight: 600; color: var(--dark); margin-bottom: 20px;
}
.shop-filter-toggle span { display: block; color: var(--muted); font-weight: 400; font-size: 0.82rem; margin-top: 2px; }
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 36px; }
.shop-sidebar { display: flex; flex-direction: column; gap: 18px; }
.filter-block { }
.filter-label { font-weight: 600; font-size: 0.85rem; margin-bottom: 6px; display: block; }
.shop-results-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 10px; }

/* ---- Product Detail---- */
.product-detail-panel p.eyebrow { margin-bottom: 10px; }
.detail-list { list-style: none; padding: 0; margin: 24px 0; }
.detail-list li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); }
.detail-list li:first-child { border-top: 1px solid var(--line); }
.detail-list li span { color: var(--muted); font-size: 0.85rem; }
.detail-list li strong { font-weight: 600; text-align: right; max-width: 60%; }

/* ---- Cart ---- */
.cart-row {
  display: grid; grid-template-columns: 80px 1fr auto; gap: 20px; align-items: center;
  padding: 22px 0; border-bottom: 1px solid var(--line);
}
.cart-row:first-child { border-top: 1px solid var(--line); }
.cart-row img { width: 80px; height: 90px; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); }
.cart-summary { border: 1px solid var(--line); border-radius: 12px; padding: 24px; position: sticky; top: 130px; }
.quantity-control { display: inline-flex; align-items: center; gap: 12px; }
.quantity-control button {
  width: 34px; height: 34px; border: 1.5px solid var(--line); border-radius: 8px; background: var(--white);
  font-size: 1.1rem; font-weight: 600; cursor: pointer; line-height: 1;
  transition: border-color 150ms ease, background 150ms ease;
}
.quantity-control button:hover { border-color: var(--primary); background: var(--primary-light); }
.quantity-control span { font-weight: 600; min-width: 24px; text-align: center; }
.remove-button { border: 0; background: none; color: #DC2626; font-size: 0.82rem; font-weight: 500; cursor: pointer; padding: 0; }
.empty-state { text-align: center; padding: 70px 20px; }

/* ---- About ---- */

/* ---- Contact ---- */
.contact-form { }

/* ---- Tracking ---- */
.track-hero { padding: 20px 0 30px; }
.track-lookup-card { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 28px 32px; margin-bottom: 0; }
.track-form { }
.track-error { display: flex; align-items: flex-start; gap: 14px; margin-top: 20px; padding: 16px 20px; background: #fff3f0; border-radius: 10px; border: 1px solid #ffcdc2; }
.track-error-icon { font-size: 1.4rem; flex-shrink: 0; }
.track-error strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.track-error p { font-size: 0.85rem; color: var(--muted); }

/* Status Banner */
.track-status-banner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 24px 28px; margin-bottom: 28px; }
.track-status-left { display: flex; align-items: center; gap: 16px; }
.track-status-icon { font-size: 2.2rem; }
.track-status-right { text-align: right; }
.track-order-num { display: block; font-size: 0.82rem; color: var(--muted); font-weight: 500; }
.track-order-total { display: block; font-size: 1.2rem; font-weight: 700; color: var(--dark); }

/* Progress Bar */
.track-progress-bar { display: flex; align-items: flex-start; gap: 0; margin-bottom: 8px; }
.track-progress-step { flex: 1; text-align: center; min-width: 0; }
.track-progress-dot { display: flex; justify-content: center; margin-bottom: 8px; }
.track-progress-dot span { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: #e9ecef; color: var(--muted); font-size: 0.78rem; font-weight: 700; transition: all 300ms ease; }
.track-progress-step.done .track-progress-dot span { background: var(--accent); color: #fff; }
.track-progress-step.current .track-progress-dot span { background: var(--primary); color: #fff; box-shadow: 0 0 0 4px rgba(0,94,184,0.15); }
.track-progress-label { font-size: 0.72rem; font-weight: 500; color: var(--muted); margin: 0; }
.track-progress-step.done .track-progress-label, .track-progress-step.current .track-progress-label { color: var(--accent); font-weight: 600; }
.track-progress-line { width: 100%; height: 3px; background: #e9ecef; border-radius: 2px; margin-top: 14px; flex-shrink: 1; min-width: 20px; transition: background 300ms ease; }
.track-progress-line.done { background: var(--accent); }

/* Detail Cards */
.track-detail-card { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 24px 28px; }
.track-address { font-size: 0.88rem; line-height: 1.7; color: var(--dark); margin: 0; }
.track-dl { display: grid; grid-template-columns: 130px 1fr; gap: 10px 12px; font-size: 0.88rem; margin: 0; }
.track-dl dt { color: var(--muted); font-weight: 500; }
.track-dl dd { color: var(--dark); font-weight: 500; margin: 0; }
.track-status-pill { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 0.75rem; font-weight: 600; text-transform: capitalize; }
.track-status-pill.status-completed { background: #e6f7ed; color: #0d7d3e; }
.track-status-pill.status-processing, .track-status-pill.status-pending { background: #fff8e6; color: #b87a00; }
.track-status-pill.status-shipped { background: #e6f0ff; color: #005eb8; }
.track-status-pill.status-cancelled { background: #ffeaea; color: #c53030; }

/* Items List */
.track-items-list { }
.track-item-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.track-item-row:first-child { padding-top: 0; }
.track-item-info strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.track-item-info span { font-size: 0.8rem; color: var(--muted); }
.track-item-price { font-size: 0.9rem; font-weight: 600; white-space: nowrap; }
.track-items-total { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; font-size: 1rem; }
.track-items-total strong { font-size: 1.1rem; }

/* Empty State */
.track-empty { text-align: center; padding: 40px 20px 20px; }
.track-empty-icon { font-size: 3rem; margin-bottom: 16px; }
.track-help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 600px; margin: 0 auto; }
.track-help-item { display: flex; align-items: flex-start; gap: 10px; text-align: left; padding: 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); }
.track-help-item span { font-size: 1.3rem; flex-shrink: 0; }
.track-help-item strong { display: block; font-size: 0.82rem; margin-bottom: 2px; }
.track-help-item p { font-size: 0.78rem; }
.track-help-item a { color: var(--primary); text-decoration: none; }

@media (max-width: 991px) {
  .track-progress-bar { overflow-x: auto; }
  .track-progress-step { min-width: 70px; }
  .track-progress-line { min-width: 30px; }
}
@media (max-width: 767px) {
  .track-help-grid { grid-template-columns: 1fr; }
  .track-dl { grid-template-columns: 1fr; gap: 2px 0; }
  .track-dl dt { margin-top: 8px; }
}

/* ---- Contact Cards (Top Row) ---- */
.contact-hero {
  padding: 0 0 30px;
}
.contact-hero .lead {
  max-width: 700px;
}
.contact-card {
  text-align: center; border: 1px solid var(--line); border-radius: 14px; padding: 32px 20px;
  height: 100%; background: var(--white); transition: all 250ms ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.contact-card:hover {
  border-color: var(--primary); box-shadow: 0 16px 48px rgba(0,94,184,0.1); transform: translateY(-4px);
}
.contact-card-icon { font-size: 2rem; margin-bottom: 12px; color: var(--primary); }
.contact-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.contact-card-value { font-size: 0.9rem; font-weight: 700; color: var(--primary); margin-bottom: 2px; word-break: break-all; }
.contact-card-sub { font-size: 0.78rem; color: var(--muted); margin: 0; }

/* ---- Contact Form Card ---- */
.contact-form-card {
  border: 1px solid var(--line); border-radius: 16px; padding: 36px;
  background: var(--white); box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

/* ---- Contact Info Panel ---- */
.contact-info-panel {
  border: 1px solid var(--line); border-radius: 16px; padding: 32px;
  background: var(--white); box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.contact-dl { margin: 0; }
.contact-dl dt {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--muted); margin-bottom: 2px; margin-top: 16px;
}
.contact-dl dt:first-child { margin-top: 0; }
.contact-dl dd {
  font-size: 0.9rem; font-weight: 600; color: var(--dark); margin: 0; padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.emergency-note {
  margin-top: 20px; padding: 16px; border: 2px solid var(--accent); border-radius: 10px;
  background: #f0fdf4;
}
.emergency-note strong { font-size: 0.85rem; color: var(--accent); }
.emergency-note p { font-size: 0.85rem; margin: 4px 0 0; color: #065f46; }

/* ---- Department Cards ---- */
.dept-card {
  border: 1px solid var(--line); border-radius: 14px; padding: 28px; height: 100%;
  background: var(--white); transition: all 250ms ease;
}
.dept-card:hover {
  border-color: var(--primary); box-shadow: 0 14px 40px rgba(0,94,184,0.08); transform: translateY(-3px);
}
.dept-icon { font-size: 1.8rem; margin-bottom: 12px; color: var(--primary); }
.dept-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.dept-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }

/* ---- Location Features ---- */
.loc-features { margin-top: 28px; display: grid; gap: 12px; }
.loc-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; font-weight: 500; color: var(--dark);
}
.loc-check {
  width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: #f0fdf4; color: var(--accent); font-weight: 700; font-size: 0.8rem;
  flex-shrink: 0;
}
.location-image-wrap {
  border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.location-image-wrap img { width: 100%; display: block; }

/* ---- About Page Visuals ---- */
.about-hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.about-stat {
  text-align: center; border: 1px solid var(--line); border-radius: 12px;
  padding: 24px 12px; background: var(--white); transition: border-color 200ms ease;
}
.about-stat:hover { border-color: var(--primary); }
.about-stat .stat-num {
  display: block; font-size: 1.8rem; font-weight: 800; color: var(--primary);
}
.about-stat .stat-label {
  display: block; font-size: 0.75rem; color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.04em; margin-top: 4px; font-weight: 600;
}

.about-image-hero {
  width: 100%; border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}

.value-card {
  border: 1px solid var(--line); border-radius: 14px; padding: 32px 24px; height: 100%;
  background: var(--white); transition: all 250ms ease; text-align: center;
}
.value-card:hover {
  border-color: var(--primary); box-shadow: 0 16px 48px rgba(0,94,184,0.1); transform: translateY(-4px);
}
.value-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 14px; margin-bottom: 18px;
  background: var(--primary-light); font-size: 1.6rem; color: var(--primary);
}
.value-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.value-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin: 0; }

.stat-card-about {
  border: 1px solid var(--line); border-radius: 12px; padding: 24px 16px;
  text-align: center; background: var(--white);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.stat-card-about:hover { border-color: var(--primary); box-shadow: 0 12px 36px rgba(0,94,184,0.08); }
.stat-card-about span { display: block; color: var(--muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.stat-card-about strong { display: block; font-size: 1.6rem; font-weight: 800; margin-top: 6px; color: var(--primary); }

/* ---- Navbar Upgrade ---- */
.site-navbar {
  top: var(--ribbon-height); background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--line); backdrop-filter: blur(20px) saturate(180%);
  padding: 14px 0; transition: padding 200ms ease, box-shadow 200ms ease;
}
.site-navbar.navbar-scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.08); padding: 10px 0;
}
.navbar-brand {
  color: var(--primary); font-size: 1.05rem; font-weight: 800; text-transform: none; letter-spacing: -0.02em;
}

/* ---- Stat Bar Upgrade ---- */
.stat-item {
  padding: 32px 20px; border-right: 1px solid var(--line);
  transition: background 250ms ease;
}
.stat-item:hover { background: var(--primary-light); }
.stat-item:last-child { border-right: 0; }
.stat-item span { display: block; color: var(--muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.stat-item strong { display: block; margin-top: 6px; font-size: 1.05rem; font-weight: 800; color: var(--primary); }

/* ---- Section Headings Upgrade ---- */
.section-heading a, .text-link {
  position: relative; border-bottom: 0; padding-bottom: 2px;
  font-weight: 600; color: var(--primary); font-size: 0.88rem;
  transition: color 200ms ease;
}
.text-link::after {
  content: " →"; transition: transform 200ms ease; display: inline-block;
}
.text-link:hover::after { transform: translateX(3px); }
.text-link:hover { color: var(--primary-hover); }

/* ---- Category Grid Upgrade ---- */
.category-grid a {
  padding: 22px 20px; border-radius: 12px; font-size: 0.88rem; font-weight: 600;
  background: var(--white); box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.category-grid a:hover {
  border-color: var(--primary); background: var(--primary); color: var(--white); transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,94,184,0.2);
}

/* ---- Footer Upgrade ---- */
.site-footer {
  border-top: 1px solid var(--line); padding: 48px 0 32px;
  font-size: 0.85rem; color: var(--muted); background: var(--light);
}
.site-footer p { margin: 0; }

/* ---- Toast ---- */
.toast-note {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 9999;
  background: var(--dark); color: var(--white); padding: 12px 28px; border-radius: 10px;
  font-size: 0.88rem; font-weight: 600; animation: toastIn 400ms ease;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

/* ---- Small title ---- */
.small-title {
  font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 700; padding-top: 20px;
  border-top: 1px solid var(--line); margin-bottom: 8px;
}

/* ---- Animations ---- */
@keyframes pageFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes heroRise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes imageReveal { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }
@keyframes slowFloat { 0% { transform: scale(1); } 100% { transform: scale(1.03); } }
@keyframes cartBump { 0% { transform: scale(1); } 50% { transform: scale(1.35); } 100% { transform: scale(1); } }
@keyframes trendingScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes toastIn { from { opacity: 0; transform: translateX(-50%) translateY(12px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }

/* ---- Industry Cards ---- */
.industry-card {
  border: 1px solid var(--line); border-radius: 12px; padding: 28px; height: 100%;
  background: var(--white); transition: border-color 200ms ease, box-shadow 200ms ease;
}
.industry-card:hover { border-color: var(--primary); box-shadow: 0 12px 36px rgba(0,94,184,0.08); }
.industry-icon { font-size: 2.2rem; margin-bottom: 14px; }
.industry-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.industry-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }

/* ---- Brand Grid ---- */
.brand-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px;
}
.brand-card {
  border: 1px solid var(--line); border-radius: 10px; padding: 20px 16px;
  text-align: center; background: var(--white);
  transition: border-color 180ms ease, transform 180ms ease;
}
.brand-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,94,184,0.08); }
.brand-logo {
  display: block; width: 100%; height: 42px; margin-bottom: 6px;
}
.brand-card p { color: var(--muted); font-size: 0.72rem; margin: 0; font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; }

/* ---- Why Choose Us ---- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.why-item { padding: 20px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); }
.why-item strong { display: block; font-size: 0.92rem; margin-bottom: 6px; }
.why-item p { color: var(--muted); font-size: 0.85rem; line-height: 1.6; margin: 0; }

/* ---- Cert Badges ---- */
.cert-badge {
  border: 1px solid var(--line); border-radius: 12px; padding: 24px 16px; height: 100%;
  background: var(--white); transition: border-color 200ms ease;
}
.cert-badge:hover { border-color: var(--primary); }
.cert-badge span { display: block; color: var(--muted); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; margin-bottom: 6px; }
.cert-badge strong { display: block; font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; }
.cert-badge p { color: var(--muted); font-size: 0.78rem; margin: 0; }

/* ---- Testimonials ---- */
.testimonial-card {
  border: 1px solid var(--line); border-radius: 12px; padding: 28px; height: 100%;
  background: var(--white);
}
.testimonial-quote {
  font-size: 0.92rem; line-height: 1.75; color: var(--dark); font-style: italic; margin-bottom: 20px;
}
.testimonial-quote::before { content: "\201C"; font-size: 3rem; color: var(--primary); line-height: 0; vertical-align: -0.55em; margin-right: 6px; }
.testimonial-author strong { display: block; font-size: 0.88rem; }
.testimonial-author span { display: block; color: var(--muted); font-size: 0.78rem; }
.testimonial-name { font-size: 0.82rem; color: var(--muted); margin-top: 12px; font-style: normal; }

/* ---- Benefits ---- */
.benefit-item { margin-bottom: 16px; }
.benefit-item strong { display: block; font-size: 0.92rem; margin-bottom: 4px; }
.benefit-item p { color: var(--muted); font-size: 0.82rem; line-height: 1.5; }

/* ---- Partner CTA ---- */
.partner-cta-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 32px; text-align: center;
}

/* ---- Solutions ---- */
.solution-card {
  border: 1px solid var(--line); border-radius: 12px; padding: 28px; height: 100%;
  background: var(--white); transition: border-color 200ms ease, box-shadow 200ms ease;
}
.solution-card:hover { border-color: var(--primary); box-shadow: 0 8px 28px rgba(0,94,184,0.06); }
.solution-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.solution-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ---- Emergency Banner ---- */
.emergency-banner {
  background: var(--accent); color: var(--white); padding: 40px 0;
}
.emergency-banner-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.emergency-banner-text { font-size: 0.95rem; opacity: 0.92; max-width: 720px; margin: 0 auto; line-height: 1.6; }
.emergency-banner-text strong { color: var(--white); }

/* ---- News Cards ---- */
.news-card {
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden; height: 100%;
  background: var(--white); transition: border-color 200ms ease, box-shadow 200ms ease;
}
.news-card:hover { border-color: var(--primary); box-shadow: 0 12px 36px rgba(0,94,184,0.08); }
.news-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.news-card-body { padding: 20px; }
.news-card-body h3 { font-size: 0.95rem; font-weight: 700; margin: 8px 0; line-height: 1.4; }
.news-card-body p { font-size: 0.83rem; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }

/* ---- Blog ---- */
.blog-hero { padding: 20px 0 50px; }
.blog-article { max-width: 780px; margin: 0 auto; }
.blog-article-header { margin-bottom: 24px; }
.blog-article-header h2 { font-size: 1.6rem; font-weight: 800; line-height: 1.3; margin-bottom: 8px; }
.blog-byline { font-size: 0.82rem; color: var(--muted); margin: 0; }
.blog-hero-img { width: 100%; border-radius: 12px; margin-bottom: 32px; aspect-ratio: 21/9; object-fit: cover; }
.blog-body { font-size: 0.95rem; line-height: 1.8; color: var(--dark); }
.blog-body h3 { font-size: 1.15rem; font-weight: 700; margin: 32px 0 12px; }
.blog-body p { margin-bottom: 16px; }
.blog-body ul { padding-left: 20px; margin-bottom: 20px; }
.blog-body li { margin-bottom: 8px; }
.blog-body a { color: var(--primary); text-decoration: underline; }

/* ---- Partners ---- */
.partner-strip {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 28px;
}
.partner-strip span {
  font-weight: 600; font-size: 0.88rem; color: var(--muted); letter-spacing: -0.01em;
}

/* ---- CTA Card ---- */
.cta-card {
  border: 1px solid var(--primary); border-radius: 16px; padding: 48px;
  background: var(--primary-light);
}
.cta-card h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); }
.cta-card .lead { margin-top: 12px; }

/* ---- FAQ Items ---- */
.faq-item {
  border: 1px solid var(--line); border-radius: 10px; padding: 22px; height: 100%;
  background: var(--white);
}
.faq-item h3 { font-size: 0.92rem; font-weight: 700; margin-bottom: 8px; }
.faq-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ---- SEO Content ---- */
.seo-content h3 {
  font-size: 1.1rem; font-weight: 700; margin-top: 28px; margin-bottom: 10px;
}
.seo-content p {
  font-size: 0.92rem; color: #4B5563; line-height: 1.75; margin-bottom: 16px;
}
.breadcrumb { font-size: 0.82rem; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--primary); }

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-filter-toggle { display: block; }
  .shop-sidebar { display: none; }
  .shop-sidebar.is-open { display: flex; }
  .hero-section { padding: 120px 0 50px; min-height: auto; }
  .hero-image-float { display: none; }
  .hero-stat-float { top: 16px; right: 10px; padding: 14px 16px; }
  .hero-stat-num { font-size: 1.2rem; }
  .hero-accent-1 { width: 300px; height: 300px; }
  .stat-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat-item:last-child { border-bottom: 0; }
  .track-progress-bar { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .track-progress-step { min-width: 64px; }
  .track-progress-line { min-width: 24px; }
  .track-progress-label { font-size: 0.65rem; }
}

@media (max-width: 767px) {
  .cart-row { grid-template-columns: 64px 1fr; }
  .cart-row img { width: 64px; height: 72px; }
  .section-space { padding: 50px 0; }
  .page-top { padding-top: 120px; }
  .section-heading, .shop-header { flex-direction: column; align-items: start; }
  .hero-section h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-copy { font-size: 1rem; }
  .hero-trust { gap: 12px; }
  .hero-trust-item { font-size: 0.75rem; }
  .hero-visual { margin-top: 24px; }
  .hero-image-float { width: 120px; height: 150px; bottom: -20px; left: -16px; }
  .why-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .cta-card { padding: 32px 24px; }
  .partner-strip { gap: 16px; }
  .about-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .contact-form-card, .contact-info-panel { padding: 24px; }
}
