/* ==========================================================================
   UNITED SURGICAL (PVT) LTD — CARING LIGHT MEDICAL DESIGN SYSTEM
   • Anchored by "proper logo.jpeg" — Circle of Care (Blue, Green, Amber, Crimson, Cyan)
   • Eye-Friendly Light Medical Theme (Clean #FFFFFF & Soothing #F8FAFC Canvas)
   • Global Floating WhatsApp CTA (Mobiles & Desktops)
   • Smart AI Surgical Assistant Widget (24/7 Factory Procurement Intelligence)
   • High-Converting, Hospital-Grade Aesthetic with Smooth Micro-Interactions
   ========================================================================== */

:root {
  /* Soothing Clinical Backgrounds (Zero Eye-Strain) */
  --bg-page: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-subtle: #F1F5F9;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F8FAFC;
  --bg-dark-anchor: #0F172A;

  /* High-Legibility Charcoal Slate Typography */
  --text-main: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;

  /* Brand Palette Directly from "proper logo.jpeg" */
  --brand-primary: #1D4ED8;        /* Royal Surgical Blue - Trust & Authority */
  --brand-primary-hover: #1E40AF;
  --brand-primary-light: #EFF6FF;
  --brand-primary-border: #BFDBFE;

  --brand-emerald: #059669;        /* Medical Healing Green - Life & WhatsApp */
  --brand-emerald-hover: #047857;
  --brand-emerald-light: #ECFDF5;
  --brand-emerald-border: #A7F3D0;

  --brand-amber: #D97706;          /* Craft Gold / Amber - Quality & Ratings */
  --brand-amber-light: #FFFBEB;
  --brand-amber-border: #FDE68A;

  --brand-rose: #E11D48;           /* Life Crimson - Hot Bestsellers & Precision */
  --brand-rose-hover: #BE123C;
  --brand-rose-light: #FFF1F2;
  --brand-rose-border: #FECDD3;

  --brand-cyan: #0891B2;           /* Medical Aqua - Specialized Sets */
  --brand-cyan-light: #ECFEFF;

  /* Soft Borders & Atmospheric Shadows */
  --border-color: #E2E8F0;
  --border-light: #F1F5F9;
  --border-dark: #CBD5E1;

  --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.09);
  --shadow-hover: 0 14px 32px rgba(29, 78, 216, 0.14);

  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Cinzel', 'Poppins', Georgia, serif;
  --container-max: 1280px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  background-color: var(--bg-page);
  color: var(--text-body);
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* High-Performance Buttery Smooth Inertia Scrolling & Native Scrollbar */
html {
  scroll-behavior: auto; /* Let Lenis handle smooth interpolation */
  scrollbar-width: thin;
  scrollbar-color: #94A3B8 #F1F5F9;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: auto !important; /* Safety: never hide scrollbar! */
}

::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background: #F1F5F9;
}

::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 8px;
  border: 2.5px solid #F1F5F9;
}

::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-color: var(--bg-page);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
}

/* ==========================================================================
   PREMIUM INITIAL PRELOADER (CARING BRAND EMERGENCE)
   ========================================================================== */
.premium-site-loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, #FFFFFF 0%, #FFF5F5 45%, #F0F9FF 80%, #F8FAFC 100%);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s ease;
}

.premium-site-loader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 380px;
  padding: 24px;
}

.loader-logo-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 20px rgba(29, 78, 216, 0.18));
  animation: loaderPulse 2s infinite ease-in-out;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 4px 15px rgba(29, 78, 216, 0.15)); }
  50% { transform: scale(1.04); filter: drop-shadow(0 8px 25px rgba(29, 78, 216, 0.28)); }
}

.loader-brand-title {
  font-family: 'Poppins', -apple-system, sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0F172A;
  margin-bottom: 4px;
}

.loader-brand-title .loader-accent {
  font-family: 'Poppins', sans-serif;
  color: var(--brand-primary);
  font-weight: 800;
}

.loader-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-emerald);
  margin-bottom: 24px;
}

.loader-progress-track {
  width: 220px;
  height: 4px;
  background: #E2E8F0;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  margin-bottom: 12px;
}

.loader-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-emerald), var(--brand-amber));
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(29, 78, 216, 0.5);
  transition: width 0.12s linear;
}

.loader-status-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  color: #64748B;
  font-weight: 500;
}

/* ==========================================================================
   MAIN STORE HEADER (CRISP LIGHT MEDICAL GLASS)
   ========================================================================== */
.main-store-header {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
  transform: translateZ(0);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
}

/* Store Brand Logo with Tagline */
.store-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img,
.brand-logo-emblem {
  height: 82px;
  width: 82px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 3px 12px rgba(29, 78, 216, 0.16));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.35s ease;
}

.store-brand:hover .brand-logo-img {
  transform: scale(1.08) rotate(4deg);
  filter: drop-shadow(0 8px 24px rgba(29, 78, 216, 0.32));
}

.store-brand:hover .brand-logo-img {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 8px 24px rgba(29, 78, 216, 0.32));
}

.store-brand:hover .brand-logo-img {
  transform: scale(1.1) rotate(4deg);
  filter: drop-shadow(0 6px 20px rgba(29, 78, 216, 0.28));
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title-line {
  display: flex;
  align-items: baseline;
  gap: 5px;
  line-height: 1;
}

.brand-text-united {
  font-family: 'Poppins', -apple-system, sans-serif;
  font-size: 1.62rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0F172A;
}

.brand-text-united.light {
  color: #0F172A;
}

.brand-text-surgical {
  font-family: 'Poppins', -apple-system, sans-serif;
  font-size: 1.62rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--brand-primary);
  text-transform: uppercase;
}

.brand-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  color: #059669;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.brand-tagline::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #059669;
  box-shadow: 0 0 6px rgba(5, 150, 105, 0.6);
}

/* Search Bar — Prominent E-Commerce Layout */
.header-full-search-bar {
  flex: 1;
  max-width: 680px;
  margin: 0 16px;
}

.header-search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.header-search-icon {
  position: absolute;
  left: 14px;
  pointer-events: none;
}

.header-search-input {
  width: 100%;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 999px;
  padding: 10px 110px 10px 42px;
  font-size: 0.90rem;
  font-weight: 500;
  color: #0F172A;
  outline: none;
  transition: all 0.2s ease;
  font-family: inherit;
}

.header-search-input:focus {
  background: #FFFFFF;
  border-color: #0284C7;
  box-shadow: 0 0 0 3.5px rgba(2, 132, 199, 0.15);
}

.header-search-btn {
  position: absolute;
  right: 4px;
  background: #0284C7;
  color: #FFFFFF;
  border: none;
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  font-family: inherit;
}

.header-search-btn:hover {
  background: #0369A1;
  transform: scale(1.02);
}

/* Header User Actions */
.header-user-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-action-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.action-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0F172A;
  position: relative;
  transition: all 0.2s ease;
}

/* Color distinction for Wishlist (Rose/Crimson) */
.action-icon-circle.wishlist-circle {
  background: #FFF1F2 !important;
  border-color: #FECDD3 !important;
  color: #E11D48 !important;
}

.header-action-item:hover .action-icon-circle.wishlist-circle {
  background: #FFE4E6 !important;
  border-color: #FDA4AF !important;
  transform: scale(1.08);
}

/* Color distinction for Cart (Executive Dark Slate / Navy) */
.action-icon-circle.cart-circle {
  background: #0F172A !important;
  border-color: #1E293B !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25) !important;
}

.header-action-item:hover .action-icon-circle.cart-circle {
  background: #1E293B !important;
  transform: scale(1.08);
}

.action-icon-circle.whatsapp-circle {
  color: var(--brand-emerald);
  background: var(--brand-emerald-light);
  border-color: var(--brand-emerald-border);
}

.badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--brand-rose);
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 800;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFFFF;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.badge-count.wishlist-badge-count {
  background: #E11D48 !important;
}

.badge-count.cart-badge-count {
  background: #0284C7 !important;
}

.action-text-box {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.action-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
}

.action-val {
  font-size: 0.84rem;
  color: #0F172A;
  font-weight: 700;
  white-space: nowrap;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle-btn {
  display: none;
  background: #F1F5F9;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 9px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #0F172A;
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* ==========================================================================
   MOBILE NAVIGATION DRAWER (SLIDE-OUT LUXURY PANEL)
   ========================================================================== */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 86vw;
  max-width: 360px;
  background: #FFFFFF;
  z-index: 9999;
  box-shadow: -8px 0 32px rgba(15, 23, 42, 0.25);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-nav-drawer.active {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #E2E8F0;
  background: #F8FAFC;
}

.mobile-drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.drawer-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.drawer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.drawer-united {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.01em;
}

.drawer-surgical {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-primary);
  letter-spacing: -0.01em;
}

.mobile-drawer-close-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid #CBD5E1;
  background: #FFFFFF;
  color: #0F172A;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.mobile-drawer-close-btn:hover {
  background: #F1F5F9;
  transform: scale(1.05);
}

.mobile-drawer-search {
  display: flex;
  align-items: center;
  margin: 16px 20px 10px;
  background: #F1F5F9;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  padding: 2px 4px 2px 14px;
  transition: border-color 0.2s, background 0.2s;
}

.mobile-drawer-search:focus-within {
  background: #FFFFFF;
  border-color: #0284C7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12);
}

.mobile-drawer-search input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 9px 0;
  font-size: 0.90rem;
  color: #0F172A;
  outline: none;
  font-family: inherit;
}

.mobile-drawer-search button {
  background: transparent;
  border: none;
  color: #0284C7;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.mobile-drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  gap: 4px;
  flex: 1;
}

.mobile-drawer-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: #1E293B;
  font-size: 0.94rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.mobile-drawer-nav a svg {
  color: #64748B;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.mobile-drawer-nav a:hover {
  background: #F1F5F9;
  color: var(--brand-primary);
}

.mobile-drawer-nav a:hover svg {
  color: var(--brand-primary);
}

.mobile-drawer-nav a.active {
  background: #EFF6FF;
  color: #1D4ED8;
  font-weight: 700;
  border-left: 3.5px solid #1D4ED8;
  padding-left: 12px;
}

.mobile-drawer-nav a.active svg {
  color: #1D4ED8;
}

.drawer-link-badge {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  background: #E0F2FE;
  color: #0284C7;
}

.mobile-drawer-ctas {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #E2E8F0;
  background: #F8FAFC;
}

.drawer-cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #0284C7;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: background 0.2s;
  text-align: center;
}

.drawer-cta-primary:hover {
  background: #0369A1;
}

.drawer-cta-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  background: #059669;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.90rem;
  transition: background 0.2s;
}

.drawer-cta-whatsapp:hover {
  background: #047857;
}

.mobile-drawer-footer {
  padding: 14px 20px 20px;
  text-align: center;
  border-top: 1px solid #F1F5F9;
}

.drawer-cert-pill {
  font-size: 0.72rem;
  font-weight: 700;
  color: #059669;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.drawer-contact-phone {
  font-size: 0.75rem;
  color: #64748B;
  margin: 0;
}

/* ==========================================================================
   STORE NAVIGATION BAR (CRISP, BOLD, NO CLUTTERED BACKGROUND BOXES)
   ========================================================================== */
.store-nav-bar {
  background: #FFFFFF;
  border-bottom: 1.5px solid #F1F5F9;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
}

.nav-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.nav-categories-dropdown-btn {
  color: #0284C7 !important;
  text-decoration: none;
  font-size: 0.98rem !important;
  font-weight: 700 !important;
  padding: 9px 20px;
  border: 1.5px solid #BAE6FD !important;
  border-radius: 10px;
  background: #F0F9FF !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: all 0.22s ease;
  font-family: inherit;
}

.nav-categories-dropdown-btn:hover {
  background: #0284C7 !important;
  border-color: #0284C7 !important;
  color: #FFFFFF !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
}

.store-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.store-nav-links a {
  color: #1E293B !important;
  text-decoration: none;
  font-size: 1.02rem !important;
  font-weight: 700 !important;
  padding: 8px 16px;
  border-radius: 6px;
  background: transparent !important;
  position: relative;
  transition: color 0.2s ease;
  letter-spacing: -0.01em;
}

.store-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2.5px;
  background: #0284C7;
  border-radius: 2px;
  opacity: 0;
  transform: scaleX(0.4);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.store-nav-links a:hover {
  color: #0284C7 !important;
  background: transparent !important;
}

.store-nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Active Navigation: Crisp Underline Accent, NO Cluttered Background Box */
.store-nav-links a.active,
.store-nav-links a[aria-current="page"],
body[data-page="home"] .store-nav-links a[data-nav="home"],
body[data-page="shop"] .store-nav-links a[data-nav="shop"],
body[data-page="sets"] .store-nav-links a[data-nav="sets"],
body[data-page="catalogue"] .store-nav-links a[data-nav="catalogue"],
body[data-page="about"] .store-nav-links a[data-nav="about"],
body[data-page="contact"] .store-nav-links a[data-nav="contact"] {
  color: #0284C7 !important;
  background: transparent !important;
  font-weight: 800 !important;
}

.store-nav-links a.active::after,
.store-nav-links a[aria-current="page"]::after,
body[data-page="home"] .store-nav-links a[data-nav="home"]::after,
body[data-page="shop"] .store-nav-links a[data-nav="shop"]::after,
body[data-page="sets"] .store-nav-links a[data-nav="sets"]::after,
body[data-page="catalogue"] .store-nav-links a[data-nav="catalogue"]::after,
body[data-page="about"] .store-nav-links a[data-nav="about"]::after,
body[data-page="contact"] .store-nav-links a[data-nav="contact"]::after {
  opacity: 1 !important;
  transform: scaleX(1) !important;
}

.store-nav-links a.active::after,
.store-nav-links a[aria-current="page"]::after,
body[data-page="home"] .store-nav-links a[data-nav="home"]::after,
body[data-page="shop"] .store-nav-links a[data-nav="shop"]::after,
body[data-page="sets"] .store-nav-links a[data-nav="sets"]::after,
body[data-page="catalogue"] .store-nav-links a[data-nav="catalogue"]::after,
body[data-page="about"] .store-nav-links a[data-nav="about"]::after,
body[data-page="contact"] .store-nav-links a[data-nav="contact"]::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2.5px;
  background: var(--brand-primary);
  border-radius: 2px;
}

.nav-quote-btn {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.90rem;
  font-weight: 700;
  padding: 8px 22px;
  border: 1px solid var(--brand-primary);
  border-radius: 8px;
  background: var(--brand-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.25);
}

.header-search-input {
  width: 100%;
  padding: 11px 85px 11px 44px;
  border-radius: 999px;
  border: 1px solid #CBD5E1;
  background: #F8FAFC;
  font-size: 0.90rem;
  color: #0F172A;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
  font-family: inherit;
}

.nav-quote-btn:hover {
  background: var(--brand-primary-hover);
  border-color: var(--brand-primary-hover);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 22px rgba(29, 78, 216, 0.4);
}

/* ==========================================================================
   HERO SECTION: HIGH-KEY MINIMALIST BRIGHT MEDICAL AESTHETIC
   ========================================================================== */
.store-hero-section {
  position: relative;
  min-height: 580px;
  /* Instrument macro, not an operating theatre. The previous image was a
     147 KB 1920px JPEG (hence the noise) and showed surgery in progress,
     which is a poor first impression for an instrument manufacturer. */
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.62) 50%, rgba(15, 23, 42, 0.78) 100%), url('assets/images/hero_macro_precision.jpg') center center / cover no-repeat;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 65px 0 75px;
  overflow: visible;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-vignette-overlay {
  display: none;
}

.hero-centered-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-brand-emblem-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 5;
}

.hero-logo-img {
  width: 105px;
  height: 105px;
  object-fit: contain;
  background: #FFFFFF;
  border-radius: 50%;
  padding: 8px;
  border: 2px solid #E2E8F0;
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04);
  animation: heroLogoFloat 4s ease-in-out infinite alternate;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  cursor: pointer;
}

.hero-brand-emblem-wrap:hover .hero-logo-img,
.hero-logo-img:hover {
  transform: scale(1.08) rotate(4deg);
  box-shadow: 0 12px 30px rgba(2, 132, 199, 0.22), 0 4px 10px rgba(0, 0, 0, 0.06);
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.94);
  border: 1.5px solid #FFFFFF;
  color: #0F172A;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 7px 22px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 auto 16px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-pill-badge span {
  color: #0F172A;
}

.hero-pill-badge:hover {
  transform: translateY(-2px) scale(1.03);
  border-color: #38BDF8;
  box-shadow: 0 6px 24px rgba(56, 189, 248, 0.35);
}

.badge-pulse-icon {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.8);
  animation: pulseEmeraldDot 1.8s infinite;
}

@keyframes pulseEmeraldDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.75; }
}

.hero-main-title {
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  text-align: center;
  margin: 0 auto 18px;
  max-width: 920px;
  text-shadow: 0 4px 18px rgba(0,0,0,0.85), 0 1px 4px rgba(0,0,0,0.6);
}

.hero-blue-highlight {
  color: #38BDF8;
  font-weight: 800;
  display: inline-block;
  position: relative;
  text-shadow: 0 0 25px rgba(56, 189, 248, 0.55);
}

.pulse-glow {
  animation: pulseBlueLuminous 2.6s ease-in-out infinite;
}

@keyframes pulseBlueLuminous {
  0%, 100% {
    color: #38BDF8;
    transform: scale(1);
  }
  50% {
    color: #7DD3FC;
    transform: scale(1.015);
  }
}

.hero-main-subtext {
  font-size: clamp(1.04rem, 1.4vw, 1.18rem);
  color: #F1F5F9;
  font-weight: 500;
  line-height: 1.70;
  max-width: 820px;
  text-align: center;
  margin: 0 auto 36px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9);
}

.hero-footprint-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 0 auto 24px;
}

.hero-footprint-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0F172A;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid #FFFFFF;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  text-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-footprint-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.25);
}

.hero-cta-buttons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* BUTTONS */
.store-hero-section .btn-primary,
.btn-primary {
  background: var(--brand-primary);
  color: #FFFFFF;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.90rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--brand-primary);
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.25);
  font-family: 'Poppins', sans-serif;
}

.store-hero-section .btn-primary:hover,
.btn-primary:hover {
  background: var(--brand-primary-hover);
  border-color: var(--brand-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(29, 78, 216, 0.35);
}

.btn-secondary {
  background: #FFFFFF;
  color: #0F172A;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.90rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
  font-family: 'Poppins', sans-serif;
}

.btn-secondary:hover {
  background: #F8FAFC;
  border-color: #CBD5E1;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: var(--brand-emerald-light);
  color: var(--brand-emerald);
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--brand-emerald-border);
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'Poppins', sans-serif;
}

.btn-outline-white:hover {
  background: var(--brand-emerald);
  border-color: var(--brand-emerald);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.store-hero-section .btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.40);
  color: #FFFFFF;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
.store-hero-section .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #FFFFFF;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.store-hero-section .btn-outline-white {
  background: #059669;
  border: 1.5px solid #059669;
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.40);
}
.store-hero-section .btn-outline-white:hover {
  background: #047857;
  border-color: #047857;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.50);
}

/* ==========================================================================
   SECTION 2: DEDICATED TRANSITION TRUST BAR (UNDER HERO)
   ========================================================================== */
.dedicated-trust-bar-section {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-color);
  padding: 22px 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
}

.hero-trust-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.hero-trust-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-color);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.3s ease;
  cursor: pointer;
}

.hero-trust-card:hover {
  background: #FFFFFF;
  border-color: var(--brand-primary);
  transform: translateY(-9px) scale(1.03);
  box-shadow: 0 20px 45px rgba(29, 78, 216, 0.18), 0 4px 12px rgba(15, 23, 42, 0.04);
}

.hero-trust-card .trust-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-primary-light);
  border: 1px solid var(--brand-primary-border);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.hero-trust-card:hover .trust-icon-box {
  transform: scale(1.22) rotate(8deg);
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.35);
  animation: trustIconBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-trust-card:nth-child(2):hover .trust-icon-box {
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.35);
}
.hero-trust-card:nth-child(3):hover .trust-icon-box {
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.35);
}
.hero-trust-card:nth-child(4):hover .trust-icon-box {
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.35);
}

.hero-trust-card .trust-info h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 3px;
  transition: color 0.25s ease;
}

.hero-trust-card:hover .trust-info h4 {
  color: var(--brand-primary);
}

.hero-trust-card:nth-child(2) .trust-icon-box {
  background: var(--brand-emerald-light);
  border-color: var(--brand-emerald-border);
  color: var(--brand-emerald);
}

.hero-trust-card:nth-child(3) .trust-icon-box {
  background: var(--brand-amber-light);
  border-color: var(--brand-amber-border);
  color: var(--brand-amber);
}

.hero-trust-card:nth-child(4) .trust-icon-box {
  background: var(--brand-rose-light);
  border-color: var(--brand-rose-border);
  color: var(--brand-rose);
}

.trust-info h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 2px;
}

.trust-info p {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* ==========================================================================
   SECTION 3: FEATURED PRODUCTS / BESTSELLERS
   ========================================================================== */
.store-products-section {
  padding: 85px 0 75px;
  background-color: var(--bg-page);
}

.section-title-wrap {
  margin-bottom: 40px;
}

.section-sub-badge {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: var(--brand-primary-light);
  border: 1.5px solid var(--brand-primary-border);
  padding: 6px 18px;
  border-radius: 999px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: fit-content !important;
  max-width: max-content !important;
  align-self: flex-start;
  margin-bottom: 14px;
  box-shadow: 0 2px 6px rgba(29, 78, 216, 0.08);
}

.section-title-wrap.text-center .section-sub-badge,
.text-center .section-sub-badge {
  align-self: center !important;
  margin-left: auto;
  margin-right: auto;
}

h2.section-heading-dark,
.section-heading-dark,
.about-text-content h2,
.about-text-col h2,
.final-cta-title {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  font-size: clamp(2.1rem, 3.5vw, 2.9rem) !important;
  font-weight: 800 !important;
  line-height: 1.20 !important;
  letter-spacing: -0.025em !important;
  color: #0F172A !important;
  margin-bottom: 14px !important;
  text-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
  -webkit-font-smoothing: antialiased;
}

.final-cta-title {
  color: #FFFFFF !important;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.4) !important;
}

.section-lead-text {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

.text-center { text-align: center; }

/* Filter Tabs */
.store-tabs-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.store-tab-btn {
  background: #FFFFFF;
  color: #475569;
  border: 1.5px solid var(--border-color);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.90rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
}

.store-tab-btn:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(29, 78, 216, 0.12);
}

.store-tab-btn.active {
  background: var(--brand-primary);
  color: #FFFFFF;
  border-color: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.35);
}

/* Product Cards Grid */
.product-store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.prod-store-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease !important;
  position: relative;
  display: flex;
  flex-direction: column;
  will-change: transform, box-shadow;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.prod-store-card:hover {
  transform: translateY(-6px) translateZ(0) !important;
  border-color: #93C5FD !important;
  box-shadow: 0 20px 35px -8px rgba(15, 23, 42, 0.12), 0 8px 16px -4px rgba(15, 23, 42, 0.06) !important;
}

.prod-badge-hot {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--brand-rose);
  color: #FFFFFF;
  font-size: 0.70rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(225, 29, 72, 0.3);
}

.prod-wishlist-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFFFFF !important;
  border: 1.5px solid #E2E8F0 !important;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 3;
  cursor: pointer;
  padding: 0;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.prod-wishlist-btn:hover {
  transform: scale(1.12);
  background: #FFF1F2 !important;
  border-color: #FECDD3 !important;
  box-shadow: 0 6px 18px rgba(225, 29, 72, 0.22) !important;
}

.prod-wishlist-btn svg {
  width: 18px;
  height: 18px;
  pointer-events: none;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.prod-wishlist-btn svg path,
.prod-wishlist-btn .heart-outline path {
  fill: none;
  stroke: #64748B;
  stroke-width: 2;
  transition: fill 0.2s ease, stroke 0.2s ease;
}

.prod-wishlist-btn:hover svg path {
  stroke: #E11D48;
}

.prod-wishlist-btn.active {
  background: #FFF1F2 !important;
  border-color: #FECDD3 !important;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.25) !important;
}

.prod-wishlist-btn.active svg path,
.prod-wishlist-btn.active .heart-outline path,
.prod-wishlist-btn.active path {
  fill: #E11D48 !important;
  stroke: #E11D48 !important;
  opacity: 1 !important;
}

.prod-wishlist-btn.pulse {
  animation: wishPulse 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.prod-img-stage {
  height: 280px;
  width: 100%;
  background: #0F172A;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
  position: relative;
}

/* Official United Surgical brand watermark stamp - studio-white radial mask that erases external watermarks on white backgrounds */
.prod-watermark-stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 50%, rgba(255, 255, 255, 0.72) 70%, rgba(255, 255, 255, 0) 88%) !important;
  padding: 12px 10px !important;
  border-radius: 20px !important;
  z-index: 2;
  user-select: none;
  width: 86%;
  max-width: 280px;
  opacity: 1;
}
.prod-watermark-stamp .wm-emblem {
  width: 28px;
  height: 28px;
  object-fit: contain;
  margin-bottom: 3px;
  display: block;
}
.prod-watermark-stamp .wm-sub {
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #E11D48;
  margin-bottom: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.95), 0 0 12px #FFFFFF;
}
.prod-watermark-stamp .wm-main {
  font-size: 14.5px;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: #0284C7;
  text-transform: uppercase;
  line-height: 1.15;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.95), 0 0 14px #FFFFFF;
}
.prod-watermark-stamp .wm-foot {
  font-size: 6.8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #475569;
  margin-top: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.95), 0 0 10px #FFFFFF;
}

/* Scaling on PDP individual product detail page */
.pdp-gallery-main .prod-watermark-stamp {
  width: 84% !important;
  max-width: 480px !important;
  padding: 24px 20px !important;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 52%, rgba(255, 255, 255, 0.74) 72%, rgba(255, 255, 255, 0) 88%) !important;
}
.pdp-gallery-main .prod-watermark-stamp .wm-emblem {
  width: 36px !important;
  height: 36px !important;
  margin-bottom: 4px !important;
}
.pdp-gallery-main .prod-watermark-stamp .wm-sub {
  font-size: 10.5px !important;
  letter-spacing: 0.18em !important;
  color: #E11D48 !important;
}
.pdp-gallery-main .prod-watermark-stamp .wm-main {
  font-size: 24px !important;
  letter-spacing: 0.18em !important;
  color: #0284C7 !important;
}
.pdp-gallery-main .prod-watermark-stamp .wm-foot {
  font-size: 8.5px !important;
  letter-spacing: 0.14em !important;
  color: #475569 !important;
}

.thumb-wm-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8px;
  font-weight: 900;
  color: #0284C7;
  background: rgba(255, 255, 255, 0.96);
  padding: 2px 5px;
  border-radius: 4px;
  pointer-events: none;
  letter-spacing: 0.05em;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  border: 1px solid rgba(2, 132, 199, 0.2);
}

.prod-img-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.prod-store-card:hover .prod-img-stage img {
  transform: scale(1.08);
}

.prod-card-details {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.prod-cat-tag {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--brand-primary);
  background: var(--brand-primary-light);
  border: 1px solid var(--brand-primary-border);
  padding: 3px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 10px;
}

.prod-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.35;
  margin-bottom: 10px;
}

.prod-rating-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.prod-stars {
  color: var(--brand-amber);
  font-size: 0.9rem;
}

.prod-reviews-txt {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.prod-spec-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.prod-chip {
  font-size: 0.70rem;
  font-weight: 600;
  background: #F1F5F9;
  color: #475569;
  padding: 3px 8px;
  border-radius: 4px;
}

.prod-pricing-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
  padding-bottom: 16px;
}

.prod-current-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0F172A;
}

.prod-was-price {
  font-size: 0.88rem;
  color: #94A3B8;
  text-decoration: line-through;
}

.prod-stock-indicator {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-emerald);
  background: var(--brand-emerald-light);
  border: 1px solid var(--brand-emerald-border);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: auto;
}

.prod-actions-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10px;
}

.btn-sm-primary {
  background: var(--brand-primary);
  color: #FFFFFF;
  border: none;
  padding: 10px;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-sm-primary:hover {
  background: var(--brand-primary-hover);
}

.btn-sm-outline {
  background: #FFFFFF;
  color: #334155;
  border: 1px solid var(--border-color);
  padding: 10px;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-sm-outline:hover {
  background: #F8FAFC;
  border-color: #CBD5E1;
}

/* ==========================================================================
   SECTION 4: SURGICAL CATEGORIES
   ========================================================================== */
.store-categories-section {
  padding: 85px 0 75px;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFF5F5 50%, #FFFFFF 100%);
}

.surgi-cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

@media (max-width: 1200px) {
  .surgi-cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .surgi-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .surgi-cat-grid {
    grid-template-columns: 1fr;
  }
}

.surgi-cat-card {
  position: relative;
  height: 250px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.35s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
  background: #0F172A;
}

.surgi-cat-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: var(--brand-primary);
  box-shadow: 0 18px 40px rgba(29, 78, 216, 0.24);
}

.surgi-cat-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--brand-primary);
  box-shadow: 0 20px 45px rgba(29, 78, 216, 0.22);
}



.surgi-cat-img-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.surgi-cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.surgi-cat-card:hover .surgi-cat-img-wrap img {
  transform: scale(1.08);
}

.surgi-cat-overlay,
.surgi-cat-overlay-vivid {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.94) 0%,
    rgba(15, 23, 42, 0.60) 50%,
    rgba(15, 23, 42, 0.15) 100%
  );
  border-top: 2px solid transparent;
  transition: all 0.35s ease;
}

.surgi-cat-card:hover .surgi-cat-overlay,
.surgi-cat-card:hover .surgi-cat-overlay-vivid {
  border-top: 2px solid var(--brand-primary);
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.88) 0%,
    rgba(15, 23, 42, 0.45) 50%,
    rgba(15, 23, 42, 0.08) 100%
  );
}

.surgi-cat-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}

.surgi-cat-count {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-cyan);
  background: rgba(8, 145, 178, 0.15);
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.surgi-cat-title {
  font-size: 1.28rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 4px;
  line-height: 1.25;
}

.surgi-cat-subline {
  font-size: 0.80rem;
  color: #CBD5E1;
  display: block;
}

/* ==========================================================================
   SECTION 5: WHY CHOOSE UNITED SURGICAL
   ========================================================================== */
.why-choose-section {
  padding: 85px 0 75px;
  background-color: var(--bg-page);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-color);
  border-radius: 14px;
  padding: 30px 24px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.3s ease;
  cursor: pointer;
}

.why-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(29, 78, 216, 0.35);
  box-shadow: 0 20px 45px rgba(29, 78, 216, 0.16);
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-primary-border);
  box-shadow: 0 18px 40px rgba(29, 78, 216, 0.14);
}

.why-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--brand-primary-light);
  border: 1px solid var(--brand-primary-border);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.why-card:hover .why-icon-circle {
  transform: scale(1.18) rotate(8deg);
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.28);
}

.why-card:nth-child(2) .why-icon-circle {
  background: var(--brand-emerald-light);
  border-color: var(--brand-emerald-border);
  color: var(--brand-emerald);
}

.why-card:nth-child(3) .why-icon-circle {
  background: var(--brand-amber-light);
  border-color: var(--brand-amber-border);
  color: var(--brand-amber);
}

.why-card:nth-child(4) .why-icon-circle {
  background: var(--brand-rose-light);
  border-color: var(--brand-rose-border);
  color: var(--brand-rose);
}

.why-card:nth-child(5) .why-icon-circle {
  background: var(--brand-cyan-light);
  border-color: rgba(8, 145, 178, 0.3);
  color: var(--brand-cyan);
}

.why-card:nth-child(6) .why-icon-circle {
  background: var(--brand-primary-light);
  border-color: var(--brand-primary-border);
  color: var(--brand-primary);
}

.why-card:hover h3 {
  color: var(--brand-primary);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-primary-border);
  box-shadow: var(--shadow-md);
}

.why-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--brand-primary-light);
  border: 1px solid var(--brand-primary-border);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-card:nth-child(2) .why-icon-box {
  background: var(--brand-emerald-light);
  border-color: var(--brand-emerald-border);
  color: var(--brand-emerald);
}

.why-card:nth-child(3) .why-icon-box {
  background: var(--brand-amber-light);
  border-color: var(--brand-amber-border);
  color: var(--brand-amber);
}

.why-card:nth-child(4) .why-icon-box {
  background: var(--brand-rose-light);
  border-color: var(--brand-rose-border);
  color: var(--brand-rose);
}

.why-card:nth-child(5) .why-icon-box {
  background: var(--brand-cyan-light);
  border-color: rgba(8, 145, 178, 0.3);
  color: var(--brand-cyan);
}

.why-card:nth-child(6) .why-icon-box {
  background: var(--brand-primary-light);
  border-color: var(--brand-primary-border);
  color: var(--brand-primary);
}

.why-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   SECTION 6: ABOUT FACTORY (SIALKOT HERITAGE & METRICS)
   ========================================================================== */
.about-factory-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF5F5 50%, #F8FAFC 100%);
  position: relative;
}

.about-two-col-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 54px;
  align-items: center;
}

.about-text-content,
.about-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-lead {
  font-size: 1.06rem;
  color: #334155;
  line-height: 1.68;
  margin-bottom: 14px;
  font-weight: 500;
}

.about-body {
  font-size: 0.94rem;
  color: #64748B;
  line-height: 1.7;
  margin-bottom: 24px;
}

.about-metrics-row,
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.about-metric-card,
.about-stat-box {
  background: #FFFFFF;
  border: 1.5px solid var(--border-color);
  padding: 20px 14px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-metric-card:hover,
.about-stat-box:hover {
  transform: translateY(-6px);
  border-color: var(--brand-primary-border);
  box-shadow: 0 14px 30px rgba(29, 78, 216, 0.12);
}

.metric-big-num,
.about-stat-number {
  font-size: 1.95rem;
  font-weight: 900;
  color: var(--brand-primary);
  display: block;
  line-height: 1.1;
  margin-bottom: 6px;
}

.about-metric-card:nth-child(2) .metric-big-num,
.about-stat-box:nth-child(2) .about-stat-number {
  color: var(--brand-emerald);
}

.about-metric-card:nth-child(3) .metric-big-num,
.about-stat-box:nth-child(3) .about-stat-number {
  color: var(--brand-amber);
}

.metric-caption,
.about-stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #475569;
  letter-spacing: 0.02em;
}

.about-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.about-pvt-visual {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.14);
  border: 1px solid var(--border-color);
  position: relative;
}

.about-pvt-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-pvt-visual:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   SECTION 7: TESTIMONIALS (SMOOTH CONTINUOUS VERTICAL MARQUEE)
   ========================================================================== */
.testimonials-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF5F5 50%, #F8FAFC 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-marquee-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  height: 520px;
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}

.testimonials-marquee-wrapper::before,
.testimonials-marquee-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 3;
  pointer-events: none;
}

.testimonials-marquee-wrapper::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg-page) 0%, rgba(248, 250, 252, 0) 100%);
}

.testimonials-marquee-wrapper::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bg-page) 0%, rgba(248, 250, 252, 0) 100%);
}

.marquee-col {
  overflow: hidden;
  position: relative;
}

.marquee-col-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: marqueeScrollUp 26s linear infinite;
}

.marquee-col-track:hover {
  animation-play-state: paused;
}

.marquee-col-track.reverse {
  animation: marqueeScrollDown 30s linear infinite;
}

.marquee-col-track.reverse:hover {
  animation-play-state: paused;
}

@keyframes marqueeScrollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes marqueeScrollDown {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

.testi-card-v3 {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testi-card-v3:hover {
  transform: translateY(-5px);
  border-color: var(--brand-primary-border);
  box-shadow: 0 16px 36px rgba(29, 78, 216, 0.12);
}

.testi-card-v3.dark {
  background: #0F172A;
  border-color: #1E293B;
  color: #FFFFFF;
}

.testi-stars {
  color: var(--brand-amber);
  font-size: 1.05rem;
  letter-spacing: 2px;
}

.testi-quote {
  font-size: 0.90rem;
  line-height: 1.62;
  color: #334155;
  font-style: italic;
}

.testi-card-v3.dark .testi-quote {
  color: #E2E8F0;
}

.testi-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.author-avatar-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--brand-primary-border);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.author-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.author-avatar-circle.dark-av {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}

.author-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 2px 0;
}

.testi-card-v3.dark .author-name {
  color: #FFFFFF;
}

.author-title {
  font-size: 0.76rem;
  color: #64748B;
  font-weight: 500;
}

.testi-card-v3.dark .author-title {
  color: #94A3B8;
}

/* ==========================================================================
   SECTION 8: OEM & CUSTOM BRANDING
   ========================================================================== */
.oem-section {
  padding: 85px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.oem-box-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.oem-text-col .section-sub-badge {
  display: inline-block;
  background: var(--brand-emerald-light);
  color: var(--brand-emerald);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

/* duplicate section-heading-dark removed for unified typography */

.oem-lead {
  font-size: 1.02rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 24px;
}

.oem-perks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.oem-perks-list li {
  font-size: 0.92rem;
  color: #334155;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.oem-inquiry-form {
  background: #F8FAFC;
  border: 1.5px solid var(--border-color);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.oem-form-title {
  font-size: 1.22rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-group {
  margin-bottom: 16px;
}

.form-control {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.88rem;
  font-family: inherit;
  color: #0F172A;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.15);
  background: #FFFFFF;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   SECTION 9: FINAL CALL TO ACTION (BRIGHT CLINICAL AESTHETIC)
   ========================================================================== */
.final-cta-section {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(10, 15, 29, 0.65) 0%,
    rgba(15, 23, 42, 0.55) 50%,
    rgba(10, 15, 29, 0.72) 100%
  ), url('assets/images/cta_surgical_craft.jpg') center center / cover no-repeat;
  padding: 85px 0 80px;
  text-align: center;
  color: #FFFFFF;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.final-cta-content {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.final-cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(186, 230, 253, 0.45);
  color: #38BDF8;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 20px;
  border-radius: 30px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.final-cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #FFFFFF !important;
  margin-bottom: 18px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8) !important;
}

.final-cta-desc {
  font-size: 1.08rem;
  color: #E2E8F0 !important;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75) !important;
}

.final-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.final-cta-buttons .btn-primary {
  background: #0284C7;
  color: #FFFFFF;
  border-color: #0284C7;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(2, 132, 199, 0.45);
  transition: all 0.3s ease;
}

.final-cta-buttons .btn-primary:hover {
  background: #0369A1;
  border-color: #0369A1;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.55);
}

.final-cta-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 0.90rem;
  font-weight: 700;
  color: #34D399 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.btn-whatsapp {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 10px;
  background: #25D366;
  color: #FFFFFF;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.96rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.28);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-sizing: border-box;
}

.final-cta-buttons .btn-primary,
.final-cta-buttons .btn-whatsapp {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.38);
  color: #FFFFFF;
}

.btn-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: #FFFFFF;
  flex-shrink: 0;
}



.final-cta-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  font-weight: 600;
  color: #34D399;
}

/* ==========================================================================
   MINIMAL SOLID BLACK / SLATE FOOTER
   ========================================================================== */
.minimal-store-footer {
  background: #090A0C;
  border-top: 1px solid #1A1C20;
  color: #9CA3AF;
  padding: 75px 0 32px;
}

.footer-inner-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1.3fr;
  gap: 36px;
  margin-bottom: 45px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-brand .brand-logo-img,
.footer-brand .brand-logo-emblem {
  height: 82px;
  width: 82px;
  object-fit: contain;
  background: #FFFFFF;
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.2), 0 0 28px rgba(29, 78, 216, 0.35);
  transition: transform 0.4s ease;
}

.footer-brand:hover .brand-logo-img {
  transform: scale(1.08) rotate(4deg);
}

.footer-brand:hover .brand-logo-img {
  transform: scale(1.1) rotate(5deg);
}

.footer-brand:hover .brand-logo-img {
  transform: scale(1.1) rotate(4deg);
}

.footer-brand .brand-text-united {
  color: #FFFFFF;
}

.footer-brand .brand-text-surgical {
  color: #60A5FA;
}

.footer-brand .brand-tagline {
  color: #34D399;
}

.footer-about-text {
  font-size: 0.86rem;
  line-height: 1.65;
  color: #94A3B8;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-cert-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-cert-tag {
  font-size: 0.72rem;
  font-weight: 600;
  background: #14161A;
  border: 1px solid #22262E;
  color: #E5E7EB;
  padding: 4px 10px;
  border-radius: 4px;
}

.footer-column-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.86rem;
  transition: color 0.2s ease;
}

.footer-nav-list a:hover {
  color: #FFFFFF;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: #CBD5E1;
  line-height: 1.45;
}

.footer-contact-item svg {
  color: var(--brand-emerald);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
}

.footer-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  padding: 9px 12px;
  font-size: 0.82rem;
  color: #FFFFFF;
  outline: none;
}

.footer-input:focus {
  border-color: var(--brand-primary);
}

.footer-submit-btn {
  background: var(--brand-primary);
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  padding: 9px 16px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
}

.footer-bottom-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #64748B;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   GLOBAL FLOATING WHATSAPP CTA
   ========================================================================== */
/* Perfect Floating WhatsApp CTA */
.floating-whatsapp-btn {
  position: fixed;
  left: 28px;
  bottom: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  z-index: 99999;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background 0.2s ease;
}

.floating-whatsapp-btn:hover {
  background: #20BA5A;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
  color: #FFFFFF;
}

.whatsapp-icon-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.whatsapp-icon-inner svg {
  width: 32px;
  height: 32px;
  fill: #FFFFFF;
  display: block;
}

.whatsapp-floating-tooltip {
  position: absolute;
  left: 70px;
  background: #0F172A;
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);
  transition: all 0.25s ease;
  pointer-events: none;
  box-shadow: var(--shadow-md);
}

.floating-whatsapp-btn:hover .whatsapp-floating-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ==========================================================================
   SMART AI SURGICAL ASSISTANT WIDGET
   ========================================================================== */
.ai-assistant-wrapper {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
}

.ai-assistant-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF1F2 100%);
  border: 1.5px solid #FECDD3;
  border-radius: 40px;
  padding: 8px 18px 8px 8px;
  box-shadow: 0 10px 30px rgba(225, 29, 72, 0.16), 0 4px 12px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.25s ease;
}

.ai-assistant-trigger:hover {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFE4E6 100%);
  border-color: #FDA4AF;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 38px rgba(225, 29, 72, 0.26);
}

.ai-assistant-trigger:hover {
  transform: translateY(-3px);
  border-color: var(--brand-primary-border);
  box-shadow: 0 10px 30px rgba(29, 78, 216, 0.2);
}

.ai-avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-primary-light);
  border: 1px solid var(--brand-primary-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ai-avatar-mini {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.ai-status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: var(--brand-emerald);
  border: 2px solid #FFFFFF;
  border-radius: 50%;
}

.ai-trigger-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.ai-trigger-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -0.01em;
}

.ai-trigger-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  color: #059669;
}

/* Chat Window */
.ai-chat-window {
  position: absolute;
  right: 0;
  bottom: 64px;
  width: 400px;
  height: 550px;
  max-height: calc(100vh - 110px);
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 24px 65px rgba(15, 23, 42, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(22px) scale(0.92);
  transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ai-chat-window.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.ai-chat-header {
  background: #F8FAFC;
  border-bottom: 1px solid var(--border-color);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ai-header-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ai-header-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ai-header-avatar img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.ai-online-beacon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 9px;
  height: 9px;
  background: var(--brand-emerald);
  border: 2px solid #FFFFFF;
  border-radius: 50%;
}

.ai-header-info h4 {
  font-size: 0.90rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.2;
}

.ai-header-info p {
  font-size: 0.70rem;
  color: var(--text-muted);
  margin: 0;
}

.ai-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ai-action-btn {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.ai-action-btn:hover {
  background: #F1F5F9;
  color: #0F172A;
}

/* Chips */
.ai-chips-scroll {
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  overflow-x: auto;
  white-space: nowrap;
  background: #F8FAFC;
  border-bottom: 1px solid var(--border-color);
  scrollbar-width: none;
}

.ai-chips-scroll::-webkit-scrollbar {
  display: none;
}

.ai-chip-btn {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.ai-chip-btn:hover {
  background: var(--brand-primary-light);
  border-color: var(--brand-primary-border);
  color: var(--brand-primary);
}

/* Chat Body */
.ai-chat-body {
  flex: 1;
  padding: 16px;
  background: #F8FAFC;
  overflow-y: scroll;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scrollbar-width: thin;
  scrollbar-color: #CBD5E1 #F8FAFC;
}

.ai-chat-body::-webkit-scrollbar {
  width: 6px;
}

.ai-chat-body::-webkit-scrollbar-track {
  background: #F8FAFC;
}

.ai-chat-body::-webkit-scrollbar-thumb {
  background-color: #CBD5E1;
  border-radius: 6px;
}

.ai-msg-row {
  display: flex;
  gap: 10px;
  max-width: 86%;
}

.ai-msg-bot {
  align-self: flex-start;
}

.ai-msg-user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.ai-msg-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #F1F5F9;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ai-msg-avatar img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.ai-msg-bubble {
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 0.84rem;
  line-height: 1.5;
  position: relative;
}

.ai-msg-bot .ai-msg-bubble {
  background: #F1F5F9;
  color: #1E293B;
  border-bottom-left-radius: 2px;
}

.ai-msg-user .ai-msg-bubble {
  background: var(--brand-primary);
  color: #FFFFFF;
  border-bottom-right-radius: 2px;
}

.ai-msg-bubble p {
  margin-bottom: 6px;
}

.ai-msg-bubble p:last-child {
  margin-bottom: 0;
}

.ai-msg-timestamp {
  display: block;
  font-size: 0.65rem;
  color: #94A3B8;
  margin-top: 4px;
  text-align: right;
}

.ai-msg-user .ai-msg-timestamp {
  color: rgba(255, 255, 255, 0.7);
}

/* Typing Indicator */
.ai-typing-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #FFFFFF;
}

.ai-dot {
  width: 6px;
  height: 6px;
  background: var(--brand-primary);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out;
}

.ai-dot:nth-child(2) { animation-delay: 0.2s; }
.ai-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

.ai-typing-txt {
  font-size: 0.70rem;
  color: #64748B;
  margin-left: 6px;
}

/* Chat Footer Input */
.ai-chat-footer {
  padding: 10px 14px;
  background: #F8FAFC;
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 8px;
}

.ai-input-field {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 9px 16px;
  font-size: 0.84rem;
  color: #0F172A;
  outline: none;
  font-family: inherit;
  transition: all 0.2s ease;
}

.ai-input-field:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
}

.ai-send-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-primary);
  border: none;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.ai-send-btn:hover {
  background: var(--brand-primary-hover);
}

.ai-chat-subfooter {
  background: #F1F5F9;
  padding: 6px 14px;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.ai-whatsapp-handoff {
  color: var(--brand-emerald);
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ai-whatsapp-handoff:hover {
  text-decoration: underline;
}

/* AI Settings Modal */
.ai-settings-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.ai-settings-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.ai-settings-modal-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 28px;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.ai-settings-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.ai-settings-head h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0F172A;
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #64748B;
  cursor: pointer;
}

.ai-settings-desc {
  font-size: 0.84rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 20px;
}

.ai-settings-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

/* ==========================================================================
   SPEC DRAWER & DISTRIBUTOR MODAL (LIGHT THEME)
   ========================================================================== */
.spec-drawer-backdrop,
.distributor-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  z-index: 10001;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.spec-drawer-backdrop.show,
.distributor-modal-backdrop.show,
.spec-drawer-backdrop.active,
.distributor-modal-backdrop.active {
  display: block;
  opacity: 1;
}

.distributor-modal-card {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FFFFFF;
  border-radius: 14px;
  padding: 34px;
  max-width: 520px;
  width: 90%;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
  z-index: 10002;
  border: 1px solid var(--border-color);
}

.modal-card-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 6px;
}

.modal-card-header p {
  font-size: 0.84rem;
  color: #64748B;
  margin-bottom: 20px;
}

.distributor-modal-card .form-group label {
  color: #334155;
}

.distributor-modal-card .form-control {
  background: #F8FAFC;
  border: 1px solid var(--border-color);
  color: #0F172A;
}

.distributor-modal-card .form-control:focus {
  background: #FFFFFF;
  border-color: var(--brand-primary);
}

.spec-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 440px;
  max-width: 90%;
  height: 100%;
  background: #FFFFFF;
  box-shadow: -8px 0 30px rgba(15, 23, 42, 0.15);
  z-index: 10002;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.spec-drawer.open,
.spec-drawer.active {
  transform: translateX(0);
}

.spec-drawer-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.spec-drawer-header h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0F172A;
}

.spec-drawer-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #64748B;
}

.spec-drawer-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

/* Animations */
@keyframes heroFadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   GLOBAL FLOATING WHATSAPP CTA
   ========================================================================== */





  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.whatsapp-icon-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

.whatsapp-floating-tooltip {
  position: absolute;
  left: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(-8px);
  background: #0F172A;
  color: #FFFFFF;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp-floating-tooltip::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent #0F172A transparent transparent;
}

.floating-whatsapp-btn:hover .whatsapp-floating-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ==========================================================================
   SMART AI SURGICAL ASSISTANT WIDGET
   ========================================================================== */
.ai-assistant-wrapper {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 99999;
  font-family: var(--font-family);
}

.ai-assistant-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  border: 1.5px solid var(--brand-primary-border);
  border-radius: 999px;
  padding: 8px 18px 8px 8px;
  cursor: pointer;
  box-shadow: 0 8px 26px rgba(29, 78, 216, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ai-assistant-trigger:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(29, 78, 216, 0.24);
  border-color: var(--brand-primary);
}

.ai-avatar-circle {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #EFF6FF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.ai-avatar-mini {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ai-status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #10B981;
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
  animation: pulseBeacon 2s infinite;
}

@keyframes pulseBeacon {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.8; }
}

.ai-trigger-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.25;
}

.ai-trigger-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0F172A;
}

.ai-trigger-sub {
  font-size: 0.74rem;
  font-weight: 600;
  color: #059669;
}

/* Chat Window */
.ai-chat-window {
  position: absolute;
  right: 0;
  bottom: 64px;
  width: 390px;
  height: 540px;
  max-height: calc(100vh - 110px);
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.96);
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1), transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-chat-window.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.ai-chat-header {
  background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 100%);
  color: #FFFFFF;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ai-header-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ai-header-avatar {
  position: relative;
  width: 38px;
  height: 38px;
  background: #FFFFFF;
  border-radius: 50%;
  padding: 3px;
}

.ai-header-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ai-online-beacon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #10B981;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
}

.ai-header-info h4 {
  font-size: 0.96rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.ai-header-info p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.ai-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ai-action-btn {
  background: rgba(255, 255, 255, 0.16);
  border: none;
  color: #FFFFFF;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.ai-action-btn:hover {
  background: rgba(255, 255, 255, 0.28);
}

/* Quick Suggestion Chips */
.ai-chips-scroll {
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  background: #F8FAFC;
  border-bottom: 1px solid var(--border-color);
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: thin;
}

.ai-chip-btn {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #334155;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.ai-chip-btn:hover {
  background: #EFF6FF;
  border-color: var(--brand-primary-border);
  color: var(--brand-primary);
}

/* Chat Body */
.ai-chat-body {
  flex: 1;
  padding: 16px;
  background: #F8FAFC;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ai-msg-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.ai-msg-row.ai-msg-bot {
  justify-content: flex-start;
}

.ai-msg-row.ai-msg-user {
  justify-content: flex-end;
}

.ai-msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  padding: 2px;
  flex-shrink: 0;
}

.ai-msg-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ai-msg-bubble {
  max-width: 82%;
  padding: 11px 14px;
  border-radius: 14px;
  font-size: 0.85rem;
  line-height: 1.5;
  position: relative;
}

.ai-msg-bot .ai-msg-bubble {
  background: #FFFFFF;
  color: #1E293B;
  border: 1px solid var(--border-color);
  border-top-left-radius: 3px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.ai-msg-bot .ai-msg-bubble p {
  margin-bottom: 6px;
}

.ai-msg-bot .ai-msg-bubble p:last-of-type {
  margin-bottom: 0;
}

.ai-msg-bot .ai-msg-bubble ul {
  margin: 6px 0 6px 14px;
  padding: 0;
  list-style: none;
}

.ai-msg-bot .ai-msg-bubble li {
  margin-bottom: 3px;
}

.ai-msg-user .ai-msg-bubble {
  background: var(--brand-primary);
  color: #FFFFFF;
  border-top-right-radius: 3px;
}

.ai-msg-user .ai-msg-bubble p {
  margin: 0;
  color: #FFFFFF;
}

.ai-msg-timestamp {
  display: block;
  font-size: 0.68rem;
  color: #94A3B8;
  margin-top: 4px;
  text-align: right;
}

.ai-msg-user .ai-msg-timestamp {
  color: rgba(255, 255, 255, 0.7);
}

/* Typing Indicator */
.ai-typing-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #F8FAFC;
}

.ai-dot {
  width: 7px;
  height: 7px;
  background: #94A3B8;
  border-radius: 50%;
  animation: bounceDot 1.4s infinite ease-in-out both;
}

.ai-dot:nth-child(1) { animation-delay: -0.32s; }
.ai-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounceDot {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

.ai-typing-txt {
  font-size: 0.73rem;
  color: #64748B;
  margin-left: 6px;
}

/* Chat Footer Input */
.ai-chat-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #FFFFFF;
  border-top: 1px solid var(--border-color);
}

.ai-input-field {
  flex: 1;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 9px 16px;
  font-size: 0.84rem;
  outline: none;
  font-family: inherit;
  background: #F8FAFC;
  color: #0F172A;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.ai-input-field:focus {
  border-color: var(--brand-primary);
  background: #FFFFFF;
}

.ai-send-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.15s ease;
}

.ai-send-btn:hover {
  background: var(--brand-primary-hover);
  transform: scale(1.05);
}

/* Chat Subfooter */
.ai-chat-subfooter {
  padding: 8px 14px;
  background: #EFF6FF;
  border-top: 1px solid var(--brand-primary-border);
  text-align: center;
}

.ai-whatsapp-handoff {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--brand-primary);
  text-decoration: none;
}

.ai-whatsapp-handoff:hover {
  text-decoration: underline;
}

/* Settings Modal */
.ai-settings-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.ai-settings-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.ai-settings-modal-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 24px;
  width: 440px;
  max-width: 90%;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
  border: 1px solid var(--border-color);
}

.ai-settings-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.ai-settings-head h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #64748B;
  cursor: pointer;
}

.ai-settings-desc {
  font-size: 0.82rem;
  color: #64748B;
  line-height: 1.5;
  margin-bottom: 16px;
}

.ai-settings-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

/* ==========================================================================
   MOBILE & RESPONSIVE BREAKPOINTS (ALL PHONES & TABLETS)
   ========================================================================== */
@media (max-width: 1024px) {
  .product-store-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .surgi-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-trust-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

/* Desktop only - hide mobile navigation drawer links on desktop */
@media (min-width: 769px) {
  .mobile-only-nav-link {
    display: none !important;
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .action-text-box {
    display: none !important;
  }
  .header-full-search-bar {
    max-width: 320px;
    margin: 0 10px;
  }
  .header-search-input {
    padding: 8px 75px 8px 36px;
    font-size: 0.84rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 8px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    gap: clamp(8px, 3vw, 16px) !important;
    min-height: 52px !important;
  }

  .store-brand {
    display: flex !important;
    align-items: center !important;
    gap: clamp(6px, 2vw, 8px) !important;
    flex-shrink: 1 !important;
    min-width: 0 !important;
  }

  /* Fluid, not stepped. These carry !important, so the narrower 480px/360px
     blocks below could never override fixed values — which is why the header
     stayed full-size on every phone and only looked right on the very widest
     ones. clamp() scales continuously from a 320px screen up instead. */
  .brand-logo-img {
    height: clamp(32px, 9.5vw, 42px) !important;
    width: clamp(32px, 9.5vw, 42px) !important;
    flex-shrink: 0 !important;
  }

  .brand-title-line {
    display: flex !important;
    align-items: baseline !important;
    gap: 4px !important;
  }

  .brand-text-united,
  .brand-text-surgical {
    font-size: clamp(0.92rem, 4.1vw, 1.15rem) !important;
    font-weight: 800 !important;
  }

  .brand-tagline {
    font-size: clamp(0.48rem, 2.1vw, 0.55rem) !important;
    margin-top: 1px !important;
    white-space: nowrap !important;
  }

  .header-user-actions {
    display: flex !important;
    align-items: center !important;
    gap: clamp(4px, 1.8vw, 8px) !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
    flex-wrap: nowrap !important;
  }

  .action-icon-circle {
    width: clamp(31px, 8.6vw, 38px) !important;
    height: clamp(31px, 8.6vw, 38px) !important;
  }

  .mobile-menu-toggle-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    padding: 0 !important;
    border-radius: 8px !important;
    flex-shrink: 0 !important;
  }

  .action-text-box {
    display: none !important;
  }

  .hide-on-mobile {
    display: none !important;
  }

  .store-nav-bar {
    display: none !important;
  }

  /* Responsive Home Hero Section */
  .store-hero-section {
    padding: 42px 0 45px;
    min-height: auto;
  }

  .hero-logo-img {
    width: 72px !important;
    height: 72px !important;
    padding: 6px !important;
  }

  .hero-pill-badge {
    font-size: 0.68rem !important;
    padding: 6px 14px !important;
    letter-spacing: 0.04em !important;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    margin-bottom: 12px !important;
  }

  .hero-main-title {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem) !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
  }

  .hero-main-subtext {
    font-size: 0.90rem !important;
    line-height: 1.6 !important;
    margin-bottom: 18px !important;
    padding: 0 4px;
  }

  .hero-footprint-strip {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin: 0 auto 20px;
    gap: 8px;
  }

  .hero-footprint-item {
    font-size: 0.78rem !important;
    padding: 6px 12px !important;
    justify-content: center;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-cta-buttons-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    gap: 10px;
  }

  .hero-cta-buttons-row a,
  .hero-cta-buttons-row button {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 12px 18px;
  }

  .hero-trust-cards-grid {
    grid-template-columns: 1fr;
  }

  .surgi-cat-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .product-store-grid {
    grid-template-columns: 1fr;
  }

  .about-two-col-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-pvt-visual img {
    height: 260px;
  }

  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-marquee-wrapper {
    grid-template-columns: 1fr;
    height: 480px;
    margin-top: 28px;
  }

  /* Reduce gradient fogs on mobile so quotes are 100% crystal clear */
  .testimonials-marquee-wrapper::before,
  .testimonials-marquee-wrapper::after {
    height: 36px;
  }

  .marquee-col {
    transform: none !important; /* Disable horizontal shifts on mobile */
  }

  .marquee-col:nth-child(2) {
    display: none;
  }

  .marquee-col-track {
    gap: 16px;
    animation-duration: 26s;
  }

  .testi-card-v3 {
    padding: 20px 18px;
    border-radius: 12px;
  }

  .testi-quote {
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .author-avatar-circle {
    width: 44px;
    height: 44px;
  }

  .author-name {
    font-size: 0.90rem;
  }

  .author-title {
    font-size: 0.74rem;
  }

  .oem-box-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* Floating WhatsApp on Mobile */
  .floating-whatsapp-btn {
    left: 16px;
    bottom: 18px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-floating-tooltip {
    display: none;
  }

  /* AI Assistant on Mobile */
  .ai-assistant-wrapper {
    right: 16px;
    bottom: 18px;
  }

  .ai-trigger-text {
    display: none;
  }

  .ai-assistant-trigger {
    padding: 6px;
    border-radius: 50%;
  }

  .ai-chat-window {
    width: calc(100vw - 32px);
    right: -8px;
    bottom: 60px;
    height: 480px;
  }
}

@media (max-width: 480px) {
  .hide-on-small-mobile {
    display: none !important;
  }

  .brand-text-united {
    font-size: 1.35rem;
  }

  .brand-text-surgical {
    font-size: 1.2rem;
  }

  .brand-logo-img {
    height: 44px;
    width: 44px;
  }

  .hero-main-title {
    font-size: 1.95rem;
  }

  .hero-cta-buttons-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-cta-buttons-row a, .hero-cta-buttons-row button {
    width: 100%;
  }

  .prod-img-stage {
    height: 270px;
  }

  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 14px;
    margin: 0 auto 36px;
  }

  .final-cta-buttons a, .final-cta-buttons button {
    width: 100% !important;
    max-width: 360px !important;
    height: 52px;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  .btn-whatsapp svg {
    margin-right: 4px;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .brand-text-united {
    font-size: 1.15rem;
  }

  .brand-text-surgical {
    font-size: 1.02rem;
  }

  .brand-tagline {
    display: none;
  }

  .brand-logo-img {
    height: 38px;
    width: 38px;
  }

  .header-user-actions {
    gap: 8px;
  }

  .action-icon-circle {
    width: 36px;
    height: 36px;
  }

  .hero-main-title {
    font-size: 1.62rem;
  }

  .final-cta-buttons a, .final-cta-buttons button {
    max-width: 100% !important;
  }
}


/* AI Suggestion Chip Badges */
.chip-badge {
  display: inline-block;
  background: var(--brand-primary-light);
  color: var(--brand-primary);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-right: 5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ChatGPT cursor animation */
.ai-typing-cursor {
  display: inline-block;
  width: 2px;
  height: 14px;
  background-color: var(--brand-primary);
  margin-left: 3px;
  vertical-align: middle;
  animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* AI WhatsApp Quick Bar */
.ai-whatsapp-quickbar {
  padding: 8px 14px;
  background: #ECFDF5;
  border-top: 1px solid #A7F3D0;
}

.ai-whatsapp-bar-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #047857;
  text-decoration: none;
  transition: color 0.2s;
}

.ai-whatsapp-bar-link:hover {
  color: #065F46;
  text-decoration: underline;
}


/* ==========================================================================
   ENTRANCE ANIMATIONS ("COMING FROM OUTSIDE" SILKY LUXURY SCROLL REVEAL)
   ========================================================================== */
/* ==========================================================================
   EXPANDED "COMING FROM OUTSIDE" LUXURY SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Coming from outside horizontal directions */
.reveal-left {
  transform: translateX(-110px);
}

.reveal-far-left {
  transform: translateX(-180px);
}

.reveal-right {
  transform: translateX(110px);
}

.reveal-far-right {
  transform: translateX(180px);
}

/* Coming from outside vertical directions */
.reveal-up {
  transform: translateY(75px);
}

.reveal-far-up {
  transform: translateY(120px) scale(0.93);
}

.reveal-pop {
  transform: scale(0.80);
}

/* Staggered luxury entrance delays */
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

.reveal-on-scroll.revealed {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1) !important;
}

/* Chatbot Message Bubbles Entrance Animation */
.ai-msg-row {
  animation: chatMsgEntrance 0.32s cubic-bezier(0.34, 1.4, 0.64, 1) both;
}

@keyframes chatMsgEntrance {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.ai-msg-bot .ai-msg-bubble {
  border-radius: 16px;
  border-top-left-radius: 3px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.ai-msg-user .ai-msg-bubble {
  border-radius: 16px;
  border-top-right-radius: 3px;
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.25);
}

/* Hero Logo Ambient Breathing Float */
@keyframes heroLogoFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(1.5deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* ==========================================================================
   PREMIUM BUTTON HOVER, SHEEN & JUMP SPRING ANIMATIONS
   ========================================================================== */
.btn-primary,
.btn-secondary,
.btn-outline-white,
.btn-whatsapp,
.nav-quote-btn,
.btn-sm-primary {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-primary::after,
.btn-secondary::after,
.btn-outline-white::after,
.btn-whatsapp::after,
.nav-quote-btn::after,
.btn-sm-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -80%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  pointer-events: none;
  opacity: 0;
  z-index: 2;
}

.btn-primary:hover::after,
.btn-secondary:hover::after,
.btn-outline-white:hover::after,
.btn-whatsapp:hover::after,
.nav-quote-btn:hover::after,
.btn-sm-primary:hover::after {
  animation: btnSheenReflection 0.8s ease-in-out;
}

@keyframes btnSheenReflection {
  0% {
    left: -80%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    left: 135%;
    opacity: 0;
  }
}

/* Hero & Main Button Hover Spring Lift */
.store-hero-section .btn-primary:hover,
.btn-primary:hover {
  background: var(--brand-primary-hover);
  border-color: var(--brand-primary-hover);
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 14px 32px rgba(29, 78, 216, 0.45), 0 0 25px rgba(96, 165, 250, 0.4);
  color: #FFFFFF;
}

.btn-secondary:hover {
  background: #FFFFFF;
  border-color: #94A3B8;
  color: var(--brand-primary);
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.16);
}

.btn-outline-white:hover {
  background: var(--brand-emerald);
  border-color: var(--brand-emerald);
  color: #FFFFFF;
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 14px 32px rgba(5, 150, 105, 0.45);
}

.nav-quote-btn:hover {
  background: var(--brand-primary-hover);
  border-color: var(--brand-primary-hover);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 24px rgba(29, 78, 216, 0.4);
}

.btn-primary:active,
.btn-secondary:active,
.btn-outline-white:active,
.btn-whatsapp:active,
.nav-quote-btn:active,
.btn-sm-primary:active {
  transform: translateY(-1px) scale(0.99);
}

/* Product Card Silky Hover & Image Framing (Zero White Margin) */
.prod-img-stage {
  position: relative;
  background: #F8FAFC !important;
  height: 230px !important;
  width: 100% !important;
  overflow: hidden !important;
  padding: 0 !important;
  border-top-left-radius: 12px !important;
  border-top-right-radius: 12px !important;
}

.prod-img-stage img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.prod-store-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease !important;
  will-change: transform, box-shadow;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.prod-store-card:hover {
  transform: translateY(-6px) translateZ(0) !important;
  border-color: #93C5FD !important;
  box-shadow: 0 20px 35px -8px rgba(15, 23, 42, 0.12), 0 8px 16px -4px rgba(15, 23, 42, 0.06) !important;
}

.prod-store-card:hover .prod-img-stage img {
  transform: scale(1.035) !important;
}

/* Pulsing Discount Tag for Hot Deals */
.prod-pulse-discount-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #E11D48;
  color: #FFFFFF;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 3;
  box-shadow: 0 3px 10px rgba(225, 29, 72, 0.4);
  animation: pulseDiscountTag 2.2s infinite ease-in-out;
  pointer-events: none;
}

@keyframes pulseDiscountTag {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.45); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 7px rgba(225, 29, 72, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
}

.btn-sm-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(29, 78, 216, 0.35);
}

/* Trust cards staggered scroll reveal */
.hero-trust-card:nth-child(1) { transition-delay: 0.04s; }
.hero-trust-card:nth-child(2) { transition-delay: 0.12s; }
.hero-trust-card:nth-child(3) { transition-delay: 0.20s; }
.hero-trust-card:nth-child(4) { transition-delay: 0.28s; }

/* Category cards sequential wave */
.surgi-cat-card:nth-child(1) { transition-delay: 0.02s; }
.surgi-cat-card:nth-child(2) { transition-delay: 0.06s; }
.surgi-cat-card:nth-child(3) { transition-delay: 0.10s; }
.surgi-cat-card:nth-child(4) { transition-delay: 0.14s; }
.surgi-cat-card:nth-child(5) { transition-delay: 0.18s; }
.surgi-cat-card:nth-child(6) { transition-delay: 0.22s; }
.surgi-cat-card:nth-child(7) { transition-delay: 0.26s; }
.surgi-cat-card:nth-child(8) { transition-delay: 0.30s; }
.surgi-cat-card:nth-child(9) { transition-delay: 0.34s; }
.surgi-cat-card:nth-child(10) { transition-delay: 0.38s; }

/* Why choose us cards sequential entrance */
.why-card:nth-child(1) { transition-delay: 0.04s; }
.why-card:nth-child(2) { transition-delay: 0.10s; }
.why-card:nth-child(3) { transition-delay: 0.16s; }
.why-card:nth-child(4) { transition-delay: 0.22s; }
.why-card:nth-child(5) { transition-delay: 0.28s; }
.why-card:nth-child(6) { transition-delay: 0.34s; }

@keyframes trustIconBounce {
  0% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.28) rotate(-6deg); }
  100% { transform: scale(1.22) rotate(8deg); }
}

/* Category Filter Staggered Card Entrance Animation */
@keyframes filterTabCardIn {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Footer Payment Methods Row — Strictly Horizontal and Enlarged */
.footer-payment-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
  padding: 26px 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
  margin-top: 36px !important;
}

.footer-payment-label {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #94A3B8 !important;
  letter-spacing: 0.02em !important;
}

.footer-payment-icons {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
}

.payment-icon-card {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.payment-icon-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25) !important;
}

.payment-icon-card svg {
  display: block !important;
  width: 48px !important;
  height: 30px !important;
}

/* ==========================================================================
   MODERN LUXURY TOAST NOTIFICATION SYSTEM
   ========================================================================== */
.us-luxury-toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  max-width: 440px;
  width: calc(100vw - 40px);
}

.us-luxury-toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.16), 0 4px 12px rgba(0, 0, 0, 0.04);
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}

.us-luxury-toast.active {
  transform: translateX(0);
  opacity: 1;
}

.us-luxury-toast.exit {
  transform: translateX(120%);
  opacity: 0;
}

.us-luxury-toast.toast-cart {
  border-left: 4.5px solid #059669;
}

.us-luxury-toast.toast-wishlist {
  border-left: 4.5px solid #E11D48;
}

.us-luxury-toast.toast-info {
  border-left: 4.5px solid #0284C7;
}

.toast-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast-cart .toast-icon-circle {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
}

.toast-wishlist .toast-icon-circle {
  background: #FFF1F2;
  border: 1px solid #FECDD3;
}

.toast-info .toast-icon-circle {
  background: #F0F9FF;
  border: 1px solid #BAE6FD;
}

.toast-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toast-tag-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toast-cart .toast-tag-label {
  color: #059669;
}

.toast-wishlist .toast-tag-label {
  color: #E11D48;
}

.toast-info .toast-tag-label {
  color: #0284C7;
}

.toast-title-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: #0F172A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 210px;
}

.toast-actions-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.toast-action-pill {
  background: #0F172A;
  color: #FFFFFF !important;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.toast-action-pill:hover {
  background: #0284C7;
  transform: scale(1.04);
}

.toast-close-btn {
  background: transparent;
  border: none;
  font-size: 1.35rem;
  line-height: 1;
  color: #94A3B8;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}

.toast-close-btn:hover {
  color: #0F172A;
}


/* PREMIUM PAGE LOADER */
.page-transition-loader {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #FFFFFF;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
}
.page-transition-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #F1F5F9;
  border-top-color: #0284C7;
  border-radius: 50%;
  animation: spinner 0.8s linear infinite;
}
@keyframes spinner {
  to { transform: rotate(360deg); }
}


@keyframes floatUp {
  0% { opacity: 1; transform: translate(-50%, 0) scale(0.8); }
  50% { transform: translate(-50%, -40px) scale(1.2); }
  100% { opacity: 0; transform: translate(-50%, -80px) scale(1); }
}
@keyframes heartbeat {
  0% { transform: scale(1); }
  14% { transform: scale(1.1); }
  28% { transform: scale(1); }
  42% { transform: scale(1.1); }
  70% { transform: scale(1); }
}


  to { opacity: 1; transform: translateY(0); } }
  top: 24px;
  right: 24px;
  z-index: 9999999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  max-width: 440px;
  width: calc(100vw - 40px);
}

.us-luxury-toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.16), 0 4px 12px rgba(0, 0, 0, 0.04);
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}

.us-luxury-toast.active {
  transform: translateX(0);
  opacity: 1;
}

.us-luxury-toast.exit {
  transform: translateX(120%);
  opacity: 0;
}

.us-luxury-toast.toast-cart {
  border-left: 4.5px solid #059669;
}

.us-luxury-toast.toast-wishlist {
  border-left: 4.5px solid #E11D48;
}

.us-luxury-toast.toast-info {
  border-left: 4.5px solid #0284C7;
}

.toast-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast-cart .toast-icon-circle {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
}

.toast-wishlist .toast-icon-circle {
  background: #FFF1F2;
  border: 1px solid #FECDD3;
}

.toast-info .toast-icon-circle {
  background: #F0F9FF;
  border: 1px solid #BAE6FD;
}

.toast-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toast-tag-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toast-cart .toast-tag-label {
  color: #059669;
}

.toast-wishlist .toast-tag-label {
  color: #E11D48;
}

.toast-info .toast-tag-label {
  color: #0284C7;
}

.toast-title-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: #0F172A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 210px;
}

.toast-actions-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.toast-action-pill {
  background: #0F172A;
  color: #FFFFFF !important;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.toast-action-pill:hover {
  background: #0284C7;
  transform: scale(1.04);
}

.toast-close-btn {
  background: transparent;
  border: none;
  font-size: 1.35rem;
  line-height: 1;
  color: #94A3B8;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}

.toast-close-btn:hover {
  color: #0F172A;
}


/* PREMIUM PAGE LOADER */
.page-transition-loader {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #FFFFFF;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
}
.page-transition-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #F1F5F9;
  border-top-color: #0284C7;
  border-radius: 50%;
  animation: spinner 0.8s linear infinite;
}
@keyframes spinner {
  to { transform: rotate(360deg); }
}


@keyframes floatUp {
  0% { opacity: 1; transform: translate(-50%, 0) scale(0.8); }
  50% { transform: translate(-50%, -40px) scale(1.2); }
  100% { opacity: 0; transform: translate(-50%, -80px) scale(1); }
}
@keyframes heartbeat {
  0% { transform: scale(1); }
  14% { transform: scale(1.1); }
  28% { transform: scale(1); }
  42% { transform: scale(1.1); }
  70% { transform: scale(1); }
}


  to { opacity: 1; transform: translateY(0); } }

@media (max-width: 768px) { .store-hero-section .hero-footprint-strip, .store-hero-section .hero-trust-badges { display: none !important; } }

@keyframes pop { 0% { transform: scale(0.9); opacity: 0; } 50% { transform: scale(1.05); } 100% { transform: scale(1); opacity: 1; } } .us-luxury-toast.active { animation: pop 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

/* ---------------- PAGE TRANSITION SYSTEM ----------------
   Entry is pure CSS (runs before any JS, so there is no flash of
   un-faded content); exit is driven by the .page-exit class in app.js.
   Only opacity is animated on <body> so that position:fixed headers,
   drawers and modals keep working (transform/filter would turn <body>
   into a containing block and break them). */
@keyframes usPageEnter {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes usPageExit {
  from { opacity: 1; }
  to   { opacity: 0; }
}

body {
  animation: usPageEnter 380ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Exit is its own animation rather than a transition: it replaces the
   entrance animation cleanly even if the visitor clicks mid-fade-in. */
body.page-exit {
  animation: usPageExit 200ms cubic-bezier(0.4, 0, 1, 1) both !important;
}

@media (prefers-reduced-motion: reduce) {
  body,
  body.page-exit {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 768px) { .show-on-mobile-inline { display: inline !important; } }

body { overflow-x: hidden; } .prod-store-card { max-width: 100%; }

/* ---------------- FOOTER OFFICE / ADDRESS HIERARCHY ---------------- */
.footer-office-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 16px;
}
.footer-office {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-office-flag {
  font-size: 1.05rem;
  line-height: 1.3;
  flex-shrink: 0;
}
.footer-office-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #38BDF8;
  margin-bottom: 3px;
}
.footer-office-address {
  font-style: normal;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #CBD5E1;
}
.footer-contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease;
}
.footer-contact-item a:hover,
.footer-contact-item a:focus-visible {
  color: #38BDF8;
  text-decoration: underline;
}
.footer-contact-note {
  color: #94A3B8;
  font-size: 0.8rem;
  white-space: nowrap;
}

/* Contact page: registered-office cards */
.contact-office-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 34px;
}
.contact-office-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
}
.contact-office-card.is-primary {
  border-color: #38BDF8;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.13);
}
.contact-office-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
}
.contact-office-flag { font-size: 1.3rem; line-height: 1; }
.contact-office-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #0284C7;
}
.contact-office-card address {
  font-style: normal;
  color: #475569;
  font-size: 0.93rem;
  line-height: 1.65;
}
.contact-office-tag {
  display: inline-block;
  margin-top: 12px;
  background: #F1F5F9;
  color: #334155;
  border-radius: 999px;
  padding: 4px 11px;
  font-size: 0.74rem;
  font-weight: 700;
}

/* ---------------- BLOG / INSIGHTS ---------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}
.blog-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.11);
}
.blog-card-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #F1F5F9;
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card-cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0284C7;
  margin-bottom: 9px;
}
.blog-card-title { font-size: 1.12rem; line-height: 1.38; margin: 0 0 10px; }
.blog-card-title a { color: #0F172A; text-decoration: none; }
.blog-card-title a:hover { color: #0284C7; }
.blog-card-excerpt { color: #475569; font-size: 0.93rem; line-height: 1.6; margin: 0 0 16px; }
.blog-card-meta {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  color: #94A3B8;
  font-size: 0.82rem;
  font-weight: 600;
}

.blog-article { max-width: 760px; margin: 0 auto; }
.blog-article-hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 22px;
}
.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  color: #94A3B8;
  font-size: 0.85rem;
  font-weight: 600;
  padding-bottom: 18px;
  border-bottom: 1px solid #E2E8F0;
  margin-bottom: 26px;
}
.blog-article-meta .blog-card-cat { margin-bottom: 0; }
.blog-article-body { color: #334155; font-size: 1.04rem; line-height: 1.78; }
.blog-article-body h2 {
  font-size: 1.4rem;
  color: #0F172A;
  margin: 34px 0 12px;
  line-height: 1.3;
}
.blog-article-body p { margin: 0 0 18px; }
.blog-article-body ul { margin: 0 0 20px; padding-left: 22px; }
.blog-article-body li { margin-bottom: 9px; }
.blog-article-cta {
  margin-top: 42px;
  padding: 30px 26px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  text-align: center;
}
.blog-article-cta h3 { margin: 0 0 8px; color: #0F172A; font-size: 1.22rem; }
.blog-article-cta p { margin: 0 0 20px; color: #64748B; }
.blog-more { margin-top: 56px; }
.blog-more h3 { font-size: 1.3rem; color: #0F172A; margin-bottom: 20px; }

@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-article-body { font-size: 1rem; }
  .blog-article-body h2 { font-size: 1.22rem; }
  .blog-article-cta { padding: 24px 18px; }
}

/* ---------------- FOOTER PAYMENT MARKS ----------------
   Replaces the old inline !important styling. The marks scale with the
   viewport instead of sitting at a fixed 58px and spilling out of the row. */
.footer-payment-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px 24px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 40px;
}
.footer-payment-label {
  font-size: 0.82rem;
  font-weight: 800;
  color: #94A3B8;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.footer-payment-icons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
/* White tiles carrying the real brand artwork. */
.payment-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 34px;
  padding: 4px 6px;
  border-radius: 7px;
  background: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.payment-mark img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.payment-mark:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 640px) {
  .footer-payment-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .footer-payment-icons { gap: 10px; }
  .payment-mark { width: clamp(72px, 21vw, 92px); }
}

/* The support email must stay on ONE line. overflow-wrap:anywhere was
   letting it break after "gmail.co" and drop the final "m". Sized so the
   full address fits the narrowest card it ever sits in. */
.contact-info-card a[href^="mailto:"],
.footer-contact-item a[href^="mailto:"] {
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
  font-size: 0.8rem;
  letter-spacing: -0.006em;
  display: inline-block;
  max-width: 100%;
}
.contact-info-card a[href^="mailto:"] { font-size: 0.83rem; }

/* Phone/WhatsApp lines keep their note on the same row where there is room. */
.footer-contact-item a { overflow-wrap: normal; }

/* ---------------- SPECIALITY CATALOGUE CHAPTERS ---------------- */
.chapter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}
.chapter-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.chapter-card:hover {
  transform: translateY(-3px);
  border-color: #BAE6FD;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.09);
}
.chapter-num {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #0369A1;
  background: #E0F2FE;
  border-radius: 999px;
  padding: 4px 11px;
  margin-bottom: 13px;
}
.chapter-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 9px;
  line-height: 1.35;
}
.chapter-card p {
  font-size: 0.89rem;
  line-height: 1.6;
  color: #64748B;
  margin: 0 0 20px;
  flex: 1;
}
.chapter-actions { display: flex; gap: 10px; margin-top: auto; flex-wrap: wrap; }
.chapter-btn,
.chapter-btn-ghost {
  flex: 1 1 130px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-weight: 700;
  font-size: 0.87rem;
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.16s ease, background 0.16s ease;
}
.chapter-btn { background: #0284C7; color: #fff; border: 1px solid #0284C7; }
.chapter-btn:hover { filter: brightness(0.93); }
.chapter-btn-ghost { background: #fff; color: #0F172A; border: 1.5px solid #CBD5E1; }
.chapter-btn-ghost:hover { background: #F8FAFC; }

.chapter-card--soon {
  background: #F8FAFC;
  border-style: dashed;
  border-color: #CBD5E1;
}
.chapter-card--soon .chapter-num { background: #F1F5F9; color: #64748B; }

@media (max-width: 560px) {
  .chapter-grid { grid-template-columns: 1fr; gap: 16px; }
  .chapter-card { padding: 20px 18px; }
}

/* ---------------- HEADER SOCIAL ICONS ----------------
   Sit beside the Request Quote button in the nav bar. Hidden on small
   screens, where the drawer already carries the same links. */
.nav-right-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.nav-social-row {
  display: flex;
  align-items: center;
  gap: 7px;
  list-style: none;
  margin: 0;
  padding: 0;
}
/* Each mark carries its own brand colour, and fills with that brand on hover —
   no flat grey outlines, no recolouring every platform to the site blue. */
.nav-social-row a.soc {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  color: var(--soc-brand, #475569);
  transition: background 0.16s ease, border-color 0.16s ease,
              color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}
.nav-social-row a.soc:hover,
.nav-social-row a.soc:focus-visible {
  background: var(--soc-fill, var(--soc-brand, #0284C7));
  border-color: transparent;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px var(--soc-glow, rgba(15, 23, 42, 0.18));
}
.nav-social-row svg { width: 15px; height: 15px; display: block; }

.soc-instagram {
  --soc-brand: #E1306C;
  --soc-fill: linear-gradient(45deg, #F9CE34 0%, #EE2A7B 50%, #6228D7 100%);
  --soc-glow: rgba(225, 48, 108, 0.32);
}
.soc-tiktok {
  --soc-brand: #010101;
  --soc-fill: #010101;
  --soc-glow: rgba(1, 1, 1, 0.26);
}
.soc-linkedin {
  --soc-brand: #0A66C2;
  --soc-glow: rgba(10, 102, 194, 0.32);
}
.soc-whatsapp {
  --soc-brand: #25D366;
  --soc-glow: rgba(37, 211, 102, 0.34);
}

@media (max-width: 1100px) {
  .nav-social-row { display: none; }
}

/* ================= CHECKOUT PAGE =================
   Rebuilt for clarity: slim header, two-column layout with a sticky summary,
   radio cards with real brand marks, and consistent spacing throughout. */
.checkout-header {
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF2F7 100%);
  border-bottom: 1px solid #E2E8F0;
  padding: 26px 0 22px;
}
.checkout-header h1 {
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  color: #0F172A;
  margin: 8px 0 18px;
  letter-spacing: -0.02em;
}
.checkout-header .page-breadcrumb { color: #64748B; text-shadow: none; }
.checkout-header .page-breadcrumb a { color: #0284C7; text-decoration: none; }

.checkout-steps {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 0;
  padding: 0;
}
.checkout-steps li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #94A3B8;
}
.checkout-steps li span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.76rem;
  font-weight: 800;
  background: #E2E8F0;
  color: #64748B;
}
.checkout-steps li.done { color: #059669; }
.checkout-steps li.done span { background: #059669; color: #fff; }
.checkout-steps li.current { color: #0F172A; }
.checkout-steps li.current span { background: #0284C7; color: #fff; }

.checkout-section-wrap { padding-top: 32px; }

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 372px;
  gap: 28px;
  align-items: start;
}

.checkout-form-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 30px 32px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}
.checkout-section + .checkout-section {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid #E2E8F0;
}
.checkout-section h3 {
  font-size: 1.08rem;
  color: #0F172A;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.checkout-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}
.checkout-form-row.single { grid-template-columns: 1fr; }
.checkout-form-card .form-group { margin-bottom: 16px; }
/* Scoped to .form-group: the payment methods are <label> elements too, and an
   unscoped rule here forced them to display:block and inherited bold text. */
.checkout-form-card .form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #475569;
  margin-bottom: 6px;
}
.checkout-form-card .form-control {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid #CBD5E1;
  border-radius: 10px;
  font: inherit;
  color: #0F172A;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.checkout-form-card .form-control:focus {
  outline: none;
  border-color: #0284C7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}
.checkout-form-card textarea.form-control { resize: vertical; min-height: 68px; }

/* ---- payment method radio cards ---- */
.payment-method-list { display: grid; gap: 13px; }
.payment-method-option {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}
.payment-method-option:hover { border-color: #BAE6FD; background: #F8FAFC; }
.payment-method-option.selected {
  border-color: #0284C7;
  background: #F0F9FF;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12);
}
.payment-method-option input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #0284C7;
  cursor: pointer;
}
.payment-method-icon {
  width: 52px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  padding: 4px 6px;
  overflow: hidden;
}
.payment-method-icon svg { width: 20px; height: 20px; display: block; }
.payment-method-icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.payment-method-icon.is-chat { background: #F0F9FF; border-color: #BAE6FD; }
.payment-method-body { display: block; min-width: 0; }
.payment-method-label {
  display: block;
  font-weight: 700;
  color: #0F172A;
  font-size: 1.05rem;
  margin-bottom: 5px;
}
.payment-method-tag {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0369A1;
  background: #E0F2FE;
  border-radius: 999px;
  padding: 2px 8px;
  margin-left: 4px;
  vertical-align: middle;
}
.payment-method-desc {
  display: block;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #64748B;
}

/* ---- order summary ---- */
.order-review-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 26px 28px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
  position: sticky;
  top: 20px;
}
.order-review-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 2px solid #F1F5F9;
}
.order-review-head h3 { margin: 0; font-size: 1.2rem; color: #0F172A; letter-spacing: -0.01em; }
.order-review-edit {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0284C7;
  text-decoration: none;
}
.order-review-edit:hover { text-decoration: underline; }

/* No inner scrollbar: a scroll area inside a card hides items and feels
   cramped. The whole summary scrolls with the page instead. */
.order-review-lines {
  margin: 0 0 18px;
}
.review-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid #F1F5F9;
}
.review-line:last-child { border-bottom: none; }
.review-line-media { position: relative; }
.review-line-media img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
  display: block;
}
.review-line-qty-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 21px;
  height: 21px;
  padding: 0 6px;
  border-radius: 999px;
  background: #0F172A;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}
/* Full product name — truncating it at checkout makes people unsure what
   they are actually buying. */
.review-line-name {
  font-size: 0.94rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.45;
}
.review-line-unit { font-size: 0.8rem; color: #94A3B8; margin: 5px 0 9px; }
.review-line-price { font-weight: 800; color: #0F172A; font-size: 1rem; white-space: nowrap; }

.review-qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid #E2E8F0;
  border-radius: 7px;
  overflow: hidden;
}
.review-qty-stepper button {
  width: 26px;
  height: 26px;
  border: none;
  background: #F8FAFC;
  color: #475569;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1;
}
.review-qty-stepper button:hover { background: #E2E8F0; }
.review-qty-stepper span {
  min-width: 28px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
}

.order-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 11px 0;
  font-size: 1rem;
  font-weight: 500;
  color: #475569;
}
.order-summary-row span:last-child { font-weight: 700; color: #0F172A; }
.order-summary-row.total {
  border-top: 2px solid #E2E8F0;
  margin-top: 10px;
  padding-top: 18px;
  font-size: 1.32rem;
  font-weight: 800;
  color: #0F172A;
}
.order-summary-row.total span:last-child { color: #0284C7; }
.free-tag { color: #059669; font-weight: 800; }

.order-assurances {
  list-style: none;
  margin: 18px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid #F1F5F9;
  display: grid;
  gap: 10px;
}
.order-assurances li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #475569;
}
.order-assurances svg { width: 16px; height: 16px; color: #059669; flex-shrink: 0; margin-top: 1px; }

.order-help {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid #F1F5F9;
  font-size: 0.82rem;
  color: #64748B;
}
.order-help a { color: #0284C7; font-weight: 700; text-decoration: none; }
.order-help a:hover { text-decoration: underline; }

/* Matches shop.css, which already collapses .checkout-grid at 1024px. */
@media (max-width: 1024px) {
  .checkout-grid { grid-template-columns: 1fr; }
  /* Summary first on narrow screens: people want to see what they are buying
     before filling in a long form. */
  .order-review-card { position: static; order: -1; }
}
@media (max-width: 560px) {
  .checkout-form-card { padding: 20px 18px; }
  .checkout-form-row { grid-template-columns: 1fr; }
  .payment-method-option { grid-template-columns: auto 1fr; padding: 13px 14px; }
  .payment-method-icon { display: none; }
  .order-review-card { padding: 18px 16px; }
}

/* Disclaimer under the shipping line when the flat fee applies. */
.shipping-note {
  margin: -4px 0 12px;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #64748B;
  background: #F8FAFC;
  border-left: 3px solid #38BDF8;
  padding: 7px 11px;
  border-radius: 0 6px 6px 0;
}

/* ---------------- CHECKOUT PAYMENT DETAILS ----------------
   The real receiving details for the selected method, so the buyer can pay
   straight away rather than waiting for an email. */
.payment-details {
  margin-top: 16px;
  padding: 18px 20px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
}
.payment-details h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: #0F172A;
}
.payment-details > p {
  margin: 0 0 14px;
  color: #475569;
  font-size: 0.9rem;
}
.pay-detail-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  align-items: baseline;
  padding: 7px 0;
  border-bottom: 1px dashed #E2E8F0;
}
.pay-detail-row:last-child { border-bottom: none; }
.pay-detail-row > span {
  flex: 0 0 148px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #64748B;
}
.pay-detail-row > code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92rem;
  font-weight: 600;
  color: #0F172A;
  overflow-wrap: anywhere;
  user-select: all; /* one click selects the whole value */
}
.pay-detail-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 6px 26px;
  margin: 12px 0;
  padding: 14px 0;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}
.pay-detail-split > div > strong {
  display: block;
  font-size: 0.78rem;
  color: #0284C7;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.pay-detail-note {
  margin: 12px 0 0;
  font-size: 0.85rem;
  color: #475569;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 8px;
  padding: 10px 13px;
}
@media (max-width: 520px) {
  .payment-details { padding: 15px; }
  .pay-detail-row > span { flex-basis: 100%; }
}

/* ---------------- PDP EXPRESS CHECKOUT BUTTONS ----------------
   Branded to each provider's own palette, the way real storefronts do it,
   with the payment mark carried inside the button. */
.pay-btn-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
/* Brand-filled express checkout buttons, the way Apple Pay / Google Pay /
   Link do it: each provider's own background, glyph and text inherit
   `currentColor` so they stay legible on it. */
.pay-btn {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  transition: filter 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
}
.pay-btn:hover { filter: brightness(0.95); box-shadow: 0 5px 16px rgba(15, 23, 42, 0.18); }
.pay-btn:active { transform: translateY(1px); }
.pay-btn:focus-visible { outline: 3px solid #0284C7; outline-offset: 2px; }

/* Express checkout palettes, each provider's own convention.
   Wise / bank transfer / Western Union are NOT here — those are arranged on
   the checkout page, not offered as one-tap buttons on a product. */
.pay-btn.is-apple  { background: #000000; color: #FFFFFF; }
.pay-btn.is-gpay   { background: #000000; color: #FFFFFF; }
.pay-btn.is-paypal { background: #003087; color: #FFFFFF; }

.pay-btn-mark {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: block;
}
.pay-btn-verb { white-space: nowrap; font-weight: 600; opacity: 0.78; }
.pay-btn-brand {
  white-space: nowrap;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.015em;
}
.pay-btn-note {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.68;
  white-space: nowrap;
}

/* Trust marks under the buttons */
.pdp-trust-marks {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
/* Accepted-method badges: the real brand artwork, sized to a common height. */
.pdp-trust-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 32px;
  padding: 4px 6px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}
.pdp-trust-mark img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* "Choose another method at checkout" line under the express button. */
.pay-btn-alt {
  margin: 2px 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #64748B;
  text-align: center;
}

@media (max-width: 420px) {
  .pay-btn { font-size: 0.88rem; gap: 7px; padding: 10px 12px; }
  .pay-btn-brand { font-size: 0.95rem; }
  .pay-btn-note { display: none; }
  .pdp-trust-mark span { font-size: 0.68rem; }
}

/* ---------------- PDP WISHLIST BUTTON ----------------
   Previously this had no styling hook, so clicking it produced no
   visible feedback at all. */
.pdp-wishlist-btn {
  background: none;
  border: none;
  color: #64748B;
  font-size: 0.92rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 6px 2px;
  border-radius: 8px;
  transition: color 0.2s ease;
}
.pdp-wishlist-btn:hover { color: #E11D48; }
.pdp-wishlist-btn .pdp-wishlist-heart {
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), fill 0.2s ease, stroke 0.2s ease;
}
.pdp-wishlist-btn.is-saved { color: #E11D48; }
.pdp-wishlist-btn.is-saved .pdp-wishlist-heart {
  fill: #E11D48;
  stroke: #E11D48;
}
@keyframes usHeartPop {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.35); }
  100% { transform: scale(1); }
}
.pdp-wishlist-btn.is-pulsing .pdp-wishlist-heart {
  animation: usHeartPop 0.42s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (prefers-reduced-motion: reduce) {
  .pdp-wishlist-btn.is-pulsing .pdp-wishlist-heart { animation: none; }
}

/* Product tab strip: nowrap pushed the third tab off-screen on phones,
   where it could not be reached at all. Let the strip scroll instead. */
.pdp-tab-buttons {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.pdp-tab-buttons::-webkit-scrollbar { height: 3px; }
.pdp-tab-buttons::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 3px; }
.pdp-tab-btn { flex: 0 0 auto; }

.drawer-contact-phone a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}
.drawer-contact-phone a:hover,
.drawer-contact-phone a:focus-visible { text-decoration: underline; }

@media (max-width: 560px) {
  .footer-office-list { gap: 14px; }
  .contact-office-card { padding: 18px; }
}


/* ==========================================================================
   MOBILE & UI POLISH OVERRIDES (STRICTLY NON-OVERFLOWING & RESPONSIVE)
   ========================================================================== */

.prod-watermark-stamp {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 768px) {
  .shop-product-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    width: 100% !important;
    min-width: 0 !important;
  }
  .prod-store-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .prod-actions-row {
    flex-direction: column !important;
    width: 100% !important;
    gap: 8px !important;
  }
  .prod-actions-row:not(.is-active) button {
    width: 100% !important;
    min-width: 0 !important;
  }
  .prod-actions-row.is-active {
    flex-direction: row !important;
    width: 100% !important;
  }
  .prod-actions-row.is-active button {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    max-width: 36px !important;
    flex-shrink: 0 !important;
  }
  .shop-pagination {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 6px !important;
    padding: 10px 0 !important;
  }
  .shop-pagination button {
    min-width: 36px !important;
    height: 36px !important;
    padding: 0 8px !important;
    font-size: 0.85rem !important;
  }
  .shop-pagination-jump {
    width: 100% !important;
    justify-content: center !important;
    margin: 8px 0 0 0 !important;
  }
}

.us-luxury-toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 420px;
  width: calc(100vw - 32px);
  pointer-events: none;
}

.us-luxury-toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  box-shadow: 0 16px 32px -4px rgba(15, 23, 42, 0.16);
  transform: translateX(110%);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  overflow: hidden;
}

.us-luxury-toast.active {
  transform: translateX(0);
  opacity: 1;
}

.toast-action-pill {
  background: #0F172A;
  color: #FFFFFF !important;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

