/* ============================================================
   CONIGX — SURGICAL INSTRUMENTS
   Main Stylesheet
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --primary:        #0b2545;
  --primary-mid:    #134074;
  --accent:         #1565c0;
  --accent-hover:   #0d47a1;
  --accent-light:   #1e88e5;
  --teal:           #00acc1;
  --white:          #ffffff;
  --off-white:      #f8fafc;
  --light-bg:       #f3f6fb;
  --border:         #e5e7eb;
  --border-light:   #f1f3f5;
  --text-dark:      #0d1b2a;
  --text-mid:       #374151;
  --text-soft:      #6b7280;
  --text-muted:     #9ca3af;
  --shadow-sm:      0 1px 4px rgba(0,0,0,.06);
  --shadow:         0 4px 20px rgba(0,0,0,.09);
  --shadow-md:      0 8px 32px rgba(0,0,0,.13);
  --shadow-lg:      0 20px 60px rgba(0,0,0,.16);
  --shadow-accent:  0 8px 28px rgba(21,101,192,.32);
  --r-sm:  6px;
  --r:     10px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-full:9999px;
  --ease:  all .3s ease;
  --ease-fast: all .15s ease;
  --ann-h: 44px;
  --hdr-h: 78px;
  --site-top: calc(var(--hdr-h) + var(--ann-h));
}

body.no-announcement-bar {
  --ann-h: 0px;
  --site-top: var(--hdr-h);
}

body.no-announcement-bar #header {
  top: 0;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
a { text-decoration: none; color: inherit; transition: var(--ease); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; transition: var(--ease); }
input, textarea, select { font-family: inherit; }

/* ---- Layout ---- */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

.sec-pad { padding: 90px 0; }
@media (max-width: 992px) { .sec-pad { padding: 70px 0; } }
@media (max-width: 768px) { .sec-pad { padding: 56px 0; } }

.bg-light { background: var(--light-bg); }
.bg-navy  { background: linear-gradient(135deg, #071525 0%, #0b2545 100%); }

/* ============================================================
   SECTION HEADERS
============================================================ */
.sec-hdr {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.sec-hdr-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.sec-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(21,101,192,.1);
  padding: 5px 16px;
  border-radius: var(--r-full);
  margin-bottom: 14px;
}
.sec-label.light { color: rgba(255,255,255,.9); background: rgba(255,255,255,.12); }
.sec-title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -.3px;
}
.sec-title.light { color: var(--white); }
.sec-title.no-mb { margin-bottom: 0; }
.sec-desc {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.75;
}

/* ============================================================
   GLOBAL BUTTONS
============================================================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 13px 28px;
  border-radius: var(--r);
  font-weight: 700; font-size: 14px;
  box-shadow: var(--shadow-accent);
  transition: var(--ease);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(21,101,192,.42); }

.btn-outline-accent {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 11px 24px;
  border-radius: var(--r);
  font-weight: 600; font-size: 14px;
  white-space: nowrap;
  transition: var(--ease);
}
.btn-outline-accent:hover { background: var(--accent); color: var(--white); }

/* ============================================================
   ANNOUNCEMENT BAR
============================================================ */
#announcement-bar {
  background: linear-gradient(90deg, #071525, #0b2545 40%, #1565c0 70%, #0b2545);
  color: var(--white);
  height: var(--ann-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1001;
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
  transition: height .35s ease, padding .35s ease, opacity .35s ease;
}
#announcement-bar.hidden {
  height: 0;
  padding: 0;
  overflow: hidden;
  pointer-events: none;
}
.announcement-inner { flex: 1; position: relative; height: 20px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.announcement-track { position: relative; width: 100%; display: flex; align-items: center; justify-content: center; }
.ann-item {
  position: absolute;
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  opacity: 0;
  transform: translateY(16px);
  transition: all .5s ease;
  width: 100%;
  pointer-events: none;
}
.ann-item.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.ann-item i { color: #90caf9; }
.ann-close {
  color: rgba(255,255,255,.6);
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 4px;
  flex-shrink: 0;
  transition: var(--ease);
}
.ann-close:hover { color: var(--white); background: rgba(255,255,255,.12); }

/* ============================================================
   HEADER
============================================================ */
#header {
  position: fixed;
  top: var(--ann-h);
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  height: var(--hdr-h);
  background: var(--white);
  box-shadow: 0 2px 24px rgba(0,0,0,.10);
  transition: top .35s ease, background .35s ease, box-shadow .35s ease;
}
#header.ann-gone { top: 0; }

.header-transparent {
  background: rgba(6, 14, 26, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-solid {
  background: var(--white);
  box-shadow: 0 2px 24px rgba(0,0,0,.10);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
}

/* text colours per state */
.header-transparent .nav-link       { color: rgba(255,255,255,.9); }
.header-transparent .icon-btn       { color: rgba(255,255,255,.9); }
.header-transparent .hamburger span { background: var(--white); }

.header-solid .nav-link             { color: var(--text-dark); }
.header-solid .icon-btn             { color: var(--text-dark); }
.header-solid .hamburger span       { background: var(--text-dark); }

.header-inner {
  display: flex;
  align-items: center;
  height: var(--hdr-h);
  gap: 36px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  display: block;
  height: 38px;
  width: auto;
  object-fit: contain;
}
.logo-img-footer {
  height: 42px;
  margin-bottom: 18px;
}

#header > .container {
  position: relative;
}

/* Desktop Nav */
.main-nav { flex: 1; }
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 13px;
  font-size: 14px; font-weight: 500;
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition: var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--accent) !important; background: rgba(21,101,192,.09); }
.header-transparent .nav-link:hover,
.header-transparent .nav-link.active { background: rgba(255,255,255,.12); color: var(--white) !important; }
.dropdown-chevron { font-size: 10px; transition: transform .3s ease; }
.nav-item.has-dropdown { position: static; }
.has-dropdown.dropdown-open .dropdown-chevron { transform: rotate(180deg); }

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: min(620px, calc(100vw - 48px));
  padding-top: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
  z-index: 100;
}
/* Full-width invisible bridge — covers gap between nav link and menu */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 22px;
}
.has-dropdown.dropdown-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.mega-menu-panel {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-top: 6px;
}
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 28px;
  padding: 28px;
}
.mega-plastic { grid-template-columns: 1fr 190px; }
.mega-cols {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mega-heading {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--accent);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 12px;
}
.mega-heading a {
  color: inherit;
  transition: var(--ease);
}
.mega-heading a:hover { color: var(--primary); }
.mega-list { display: flex; flex-direction: column; gap: 5px; }
.mega-list a {
  font-size: 13px; color: var(--text-mid);
  display: flex; align-items: center; gap: 6px;
  padding: 3px 0;
  transition: var(--ease);
}
.mega-list a i { font-size: 10px; color: var(--accent); opacity: 0; transition: var(--ease); }
.mega-list a:hover { color: var(--accent); padding-left: 5px; }
.mega-list a:hover i { opacity: 1; }

.mega-promo { display: flex; flex-direction: column; gap: 12px; }
.mega-promo-card {
  background: var(--light-bg);
  border-radius: var(--r);
  padding: 18px 14px;
  text-align: center;
  transition: var(--ease);
}
.mega-promo-card:hover { background: var(--accent); }
.mega-promo-card i { font-size: 26px; color: var(--accent); margin-bottom: 8px; display: block; transition: var(--ease); }
.mega-promo-card:hover i { color: var(--white); }
.mega-promo-card h5 { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.mega-promo-card p { font-size: 11px; color: var(--text-soft); margin-bottom: 10px; transition: var(--ease); }
.mega-promo-card:hover p { color: rgba(255,255,255,.8); }
.mega-promo-card:hover h5 { color: var(--white); }
.btn-xs {
  display: inline-block; font-size: 11px; font-weight: 700;
  padding: 5px 13px; border-radius: var(--r-sm);
  background: var(--accent); color: var(--white); transition: var(--ease);
}
.mega-promo-card:hover .btn-xs { background: var(--white); color: var(--accent); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.icon-btn {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  position: relative;
  transition: var(--ease);
}
.icon-btn:hover { background: rgba(21,101,192,.1); color: var(--accent) !important; }
.cart-badge {
  position: absolute; top: 2px; right: 2px;
  background: var(--accent); color: var(--white);
  font-size: 9px; font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.btn-wholesale {
  display: flex; align-items: center; gap: 6px;
  background: var(--accent); color: var(--white);
  padding: 9px 18px;
  border-radius: var(--r-sm);
  font-size: 13px; font-weight: 700;
  white-space: nowrap;
  margin-left: 10px;
  transition: var(--ease);
}
.btn-wholesale:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
  border-radius: var(--r-sm);
}
.hamburger span { display: block; width: 22px; height: 2px; border-radius: 2px; background: var(--text-dark); transition: var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE MENU
============================================================ */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 90vw);
  height: 100dvh;
  background: var(--white);
  z-index: 10000;
  display: flex; flex-direction: column;
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0,0,0,.18);
  transition: right .4s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open { right: 0; }
.menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.52);
  z-index: 9999;
  opacity: 0; visibility: hidden;
  backdrop-filter: blur(3px);
  transition: var(--ease);
}
.menu-overlay.show { opacity: 1; visibility: visible; }

.mm-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mm-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--text-mid);
  background: var(--light-bg);
  transition: var(--ease);
}
.mm-close:hover { background: #fee2e2; color: #dc2626; }

.mm-nav { flex: 1; padding: 10px 20px; }
.mm-nav ul li { border-bottom: 1px solid var(--border-light); }
.mm-nav ul li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 0;
  font-size: 15px; font-weight: 500; color: var(--text-dark);
}
.mm-nav ul li a:hover { color: var(--accent); }
.mm-link-sub { font-weight: 600; }
.mm-link-sub i { transition: transform .3s ease; }
.mm-has-sub.sub-open .mm-link-sub i { transform: rotate(180deg); }

.mm-sub {
  background: var(--light-bg);
  border-radius: var(--r);
  padding: 16px;
  margin-bottom: 8px;
  display: none;
}
.mm-sub.open { display: block; }
.mm-sub-group { margin-bottom: 14px; }
.mm-sub-group h6 {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: var(--accent); margin-bottom: 8px;
}
.mm-sub-group a { display: block; font-size: 13px; color: var(--text-mid); padding: 4px 0; border: none; }
.mm-sub-group a:hover { color: var(--accent); padding-left: 4px; }
.mm-view-all {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--accent);
  margin-top: 8px; border-top: 1px solid var(--border); padding-top: 10px;
}

.mm-footer { padding: 20px; border-top: 1px solid var(--border); flex-shrink: 0; }
.btn-mm-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--accent); color: var(--white);
  padding: 14px; border-radius: var(--r);
  font-size: 14px; font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
  transition: var(--ease);
}
.btn-mm-cta:hover { background: var(--accent-hover); }
.mm-contact { display: flex; flex-direction: column; gap: 8px; }
.mm-contact a {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-soft);
}
.mm-contact a i { color: var(--accent); width: 16px; }

/* ============================================================
   SEARCH OVERLAY
============================================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 14, 26, 0.88);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.search-overlay.open {
  opacity: 1;
  visibility: visible;
}
.search-overlay.open .search-ov-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.search-ov-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  z-index: 2;
  transition: var(--ease);
}
.search-ov-close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(90deg);
}

.search-ov-inner {
  width: 100%;
  max-width: 640px;
}

.search-ov-card {
  background: linear-gradient(160deg, rgba(11, 37, 69, 0.95) 0%, rgba(6, 14, 26, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-xl);
  padding: 40px 36px 32px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1), opacity .35s ease;
}

.search-ov-head {
  text-align: center;
  margin-bottom: 32px;
}
.search-ov-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(21, 101, 192, 0.25);
  border: 1px solid rgba(30, 136, 229, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #90caf9;
}
.search-ov-head h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -.3px;
}
.search-ov-head p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.search-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.search-field-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-lg);
  padding: 0 18px;
  min-height: 58px;
  transition: var(--ease);
}
.search-field-wrap:focus-within {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(21, 101, 192, 0.2);
}
.search-field-icon {
  color: rgba(255, 255, 255, 0.45);
  font-size: 17px;
  flex-shrink: 0;
  transition: var(--ease);
}
.search-field-wrap:focus-within .search-field-icon {
  color: #90caf9;
}
.search-field-wrap input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 16px;
  font-family: inherit;
  padding: 16px 0;
}
.search-field-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.search-field-wrap input[type="search"]::-webkit-search-cancel-button,
.search-field-wrap input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}
.search-clear {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  transition: var(--ease);
}
.search-clear:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.search-clear[hidden] { display: none; }

.search-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--r-lg);
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  box-shadow: var(--shadow-accent);
  transition: var(--ease);
}
.search-submit i { font-size: 13px; transition: transform .3s ease; }
.search-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(21, 101, 192, 0.4);
}
.search-submit:hover i { transform: translateX(3px); }

.search-popular {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.search-popular-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}
.search-popular-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.search-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: var(--ease);
}
.search-tag:hover {
  background: rgba(21, 101, 192, 0.35);
  border-color: rgba(30, 136, 229, 0.5);
  color: var(--white);
  transform: translateY(-2px);
}

.search-hint {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}
.search-hint kbd {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  font-family: inherit;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 4px;
}

@media (min-width: 576px) {
  .search-form {
    flex-direction: row;
    align-items: stretch;
  }
  .search-field-wrap { flex: 1; }
  .search-submit {
    width: auto;
    min-width: 140px;
    padding: 0 28px;
  }
}

/* ============================================================
   HERO SECTION
============================================================ */
#hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--site-top) + 48px);
  padding-bottom: 0;
  box-sizing: border-box;
  margin-top: 0;
}
#hero > .container {
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.hero-bg-layer {
  position: absolute; inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6, 14, 26, 0.92) 0%,
    rgba(11, 37, 69, 0.78) 42%,
    rgba(11, 37, 69, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 24px 0 40px;
  width: 100%;
  text-align: left;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.9);
  padding: 8px 22px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .8px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}
.live-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulsedot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulsedot { 0%,100% { opacity:1; transform: scale(1); } 50% { opacity:.5; transform: scale(.75); } }

.hero-title {
  font-size: clamp(34px, 5.5vw, 68px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-gradient-text {
  background: linear-gradient(135deg, #90caf9, #42a5f5 40%, #26c6da);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 820px;
  margin-left: 0;
  margin-right: auto;
}
.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
  justify-content: flex-start;
}
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--primary);
  padding: 16px 34px;
  border-radius: var(--r);
  font-size: 15px; font-weight: 700;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  transition: var(--ease);
}
.btn-hero-primary:hover { background: #eaf0ff; transform: translateY(-2px); box-shadow: 0 14px 42px rgba(0,0,0,.28); }
.btn-hero-primary i { transition: transform .3s ease; }
.btn-hero-primary:hover i { transform: translateX(4px); }
.btn-hero-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px solid rgba(255,255,255,.38);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--r);
  font-size: 15px; font-weight: 600;
  backdrop-filter: blur(6px);
  transition: var(--ease);
}
.btn-hero-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); transform: translateY(-2px); }

.hero-cert-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  justify-content: flex-start;
}
.hcs-item {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,.75);
  font-size: 12px; font-weight: 500;
  padding: 0 18px;
}
.hcs-item:first-child { padding-left: 0; }
.hcs-item i { color: #90caf9; font-size: 14px; }
.hcs-sep { width: 1px; height: 18px; background: rgba(255,255,255,.22); }

/* ============================================================
   STATS SECTION
============================================================ */
#stats {
  background: linear-gradient(135deg, #060e1a 0%, #0b2545 100%);
  padding: 60px 0;
  position: relative; overflow: hidden;
}
#stats::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.stats-row {
  display: flex; align-items: center; justify-content: space-around;
  flex-wrap: wrap; gap: 10px;
  position: relative; z-index: 1;
}
.stat-item { text-align: center; flex: 1; min-width: 140px; padding: 20px 10px; }
.stat-num-wrap {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 2px; margin-bottom: 6px;
}
.stat-num {
  font-size: clamp(44px, 5.5vw, 70px);
  font-weight: 900; color: var(--white);
  line-height: 1; letter-spacing: -2px;
}
.stat-sfx {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700; color: #90caf9;
  padding-top: 8px;
}
.stat-lbl {
  font-size: 12px; color: rgba(255,255,255,.55);
  text-transform: uppercase; letter-spacing: 1px;
}
.stat-sep { width: 1px; height: 70px; background: rgba(255,255,255,.1); flex-shrink: 0; }

/* ============================================================
   CATEGORIES
============================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cat-grid-plastic {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 26px 26px;
  position: relative; overflow: hidden;
  transition: var(--ease);
  cursor: pointer;
}
.cat-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--teal));
  transform: scaleX(0); transition: var(--ease);
}
.cat-card:hover { border-color: transparent; box-shadow: var(--shadow-md); transform: translateY(-5px); }
.cat-card:hover::after { transform: scaleX(1); }

.cat-no {
  position: absolute; top: 18px; right: 22px;
  font-size: 46px; font-weight: 900;
  color: rgba(21,101,192,.09);
  line-height: 1; letter-spacing: -2px;
  pointer-events: none;
}
.cat-icon-wrap {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, rgba(21,101,192,.1), rgba(0,172,193,.1));
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--accent);
  margin-bottom: 18px;
  transition: var(--ease);
}
.cat-card:hover .cat-icon-wrap { background: var(--accent); color: var(--white); }
.cat-card h3 { font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.cat-card p { font-size: 13px; color: var(--text-soft); line-height: 1.65; margin-bottom: 22px; }
.cat-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--accent);
  transition: var(--ease);
}
.cat-arrow:hover { gap: 10px; }

/* Plastic Surgery Excellence cards */
.excellence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.excellence-card {
  background: #eef1ef;
  border-radius: var(--r-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--ease);
}
.excellence-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.excellence-icon {
  font-size: 38px;
  color: var(--accent);
  margin-bottom: 22px;
  line-height: 1;
}
.excellence-icon i {
  display: inline-block;
  color: var(--accent);
}
.excellence-icon .fa-solid {
  font-weight: 900;
}
.excellence-icon .fa-regular {
  font-weight: 400;
}
.excellence-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.excellence-card p {
  font-size: 13px;
  color: #3d5a4a;
  line-height: 1.7;
}

/* ============================================================
   PRODUCT BREADCRUMB (archive + single product)
============================================================ */
.conigx-product-breadcrumb {
  --site-top: 105px;
  background: var(--light-bg);
  border-bottom: 1px solid var(--border);
  margin-top: 0;
  padding: calc(var(--site-top) + 0px) 0 14px;
}
.conigx-product-breadcrumb .breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-soft);
}
.conigx-product-breadcrumb .breadcrumb-nav a {
  color: var(--text-soft);
  transition: var(--ease);
}
.conigx-product-breadcrumb .breadcrumb-nav a:hover { color: var(--accent); }
.conigx-product-breadcrumb .bc-sep { font-size: 10px; color: var(--text-muted); }
.conigx-product-breadcrumb .bc-current { color: var(--primary); font-weight: 600; }

/* ============================================================
   PRODUCTS CAROUSEL
============================================================ */
.products-swiper .swiper-wrapper,
.related-swiper .swiper-wrapper {
  padding-bottom: 4px;
  align-items: stretch;
}
.products-swiper .swiper-slide,
.related-swiper .swiper-slide {
  height: auto;
  display: flex;
}
.prod-img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prod-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--ease);
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.prod-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.prod-img {
  height: 210px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.prod-img-icon {
  font-size: 64px;
  color: rgba(11,37,69,.14);
  transition: var(--ease);
  z-index: 1;
}
.prod-card:hover .prod-img-icon { transform: scale(1.1) rotate(5deg); }

.prod-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent); color: var(--white);
  font-size: 10px; font-weight: 700;
  padding: 4px 11px; border-radius: var(--r-full);
  z-index: 2; text-transform: uppercase; letter-spacing: .5px;
}
.prod-sale-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: #dc2626;
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: var(--r-full);
  letter-spacing: 0.3px;
  line-height: 1;
  box-shadow: var(--shadow-sm);
}
.prod-badge.new { background: #16a34a; }
.prod-badge.top { background: #d97706; }
.prod-badge.pop { background: #7c3aed; }

.prod-hover-actions {
  position: absolute; top: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 6px;
  z-index: 2;
  opacity: 0; transform: translateX(12px);
  transition: var(--ease);
}
.prod-card:hover .prod-hover-actions { opacity: 1; transform: translateX(0); }
.prod-hover-actions button,
.prod-hover-actions a {
  width: 34px; height: 34px;
  background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--text-mid);
  box-shadow: var(--shadow);
  transition: var(--ease);
}
.prod-hover-actions button:hover,
.prod-hover-actions a:hover { background: var(--accent); color: var(--white); }

.prod-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.prod-cat { font-size: 10px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 7px; }
.prod-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 10px;
  min-height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prod-stars { display: flex; align-items: center; gap: 3px; margin-bottom: 14px; font-size: 11px; }
.prod-stars i { color: #f59e0b; }
.prod-stars span { color: var(--text-muted); font-size: 11px; }
.prod-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}
.prod-price { display: flex; flex-direction: column; gap: 1px; }
.prod-price small { font-size: 10px; color: var(--text-muted); }
.prod-price { font-size: 18px; font-weight: 800; color: var(--primary); }
.prod-price .price {
  margin: 0;
  line-height: 1.2;
}
.prod-price.is-on-sale .price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.prod-price.is-on-sale del {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.9;
  order: 1;
}
.prod-price.is-on-sale del .woocommerce-Price-amount {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.prod-price.is-on-sale ins {
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  order: 2;
}
.prod-price.is-on-sale ins .woocommerce-Price-amount {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.prod-price.is-on-sale .screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}
.btn-cart {
  background: var(--primary); color: var(--white);
  padding: 9px 15px; border-radius: var(--r-sm);
  font-size: 12px; font-weight: 700;
  white-space: nowrap; transition: var(--ease);
}
.btn-cart:hover { background: var(--accent); }

/* ============================================================
   WHOLESALE / B2B
============================================================ */
.ws-section {
  background: linear-gradient(135deg, #060e1a 0%, #0b2545 50%, #071525 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.ws-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 10% 50%, rgba(21,101,192,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 90% 80%, rgba(0,172,193,.08) 0%, transparent 55%);
  pointer-events: none;
}

.ws-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left content */
.ws-content { max-width: 520px; }

.ws-eyebrow-pill {
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 11px;
  font-weight: 600;
}

.ws-heading {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.3px;
  margin-bottom: 20px;
}

.ws-lead {
  font-size: 15px;
  color: rgba(255,255,255,.62);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
}

.btn-ws-program {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border: 2px solid var(--accent-light);
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: var(--ease);
  margin-bottom: 48px;
}
.btn-ws-program i { font-size: 11px; transition: transform .3s ease; }
.btn-ws-program:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}
.btn-ws-program:hover i { transform: translateX(4px); }

.ws-features {
  display: flex;
  align-items: flex-start;
  max-width: 520px;
}
.ws-feat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 0 18px;
  position: relative;
}
.ws-feat:first-child { padding-left: 0; }
.ws-feat:last-child  { padding-right: 0; }
.ws-feat + .ws-feat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(255,255,255,.15);
}
.ws-feat-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent-light);
  transition: var(--ease);
}
.ws-feat:hover .ws-feat-icon {
  color: var(--white);
  transform: translateY(-3px);
}
.ws-feat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  line-height: 1.45;
}

/* Right visual */
.ws-visual { position: relative; }

.ws-image-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3.2;
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
}
.ws-image {
  position: absolute;
  inset: 0;
  background-image: url('../images/b2b.jpg');
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}
.ws-image-wrap:hover .ws-image { transform: scale(1.04); }

.ws-overlay-panel {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: min(240px, 42%);
  background: rgba(6, 14, 26, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  padding: 24px 22px;
  z-index: 2;
}

.ws-panel-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.ws-panel-list {
  display: flex;
  flex-direction: column;
}
.ws-panel-list li {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: var(--ease);
}
.ws-panel-list li:first-child { padding-top: 0; }
.ws-panel-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.ws-panel-list li:hover {
  color: var(--white);
  padding-left: 6px;
}

#featured-products {
  background: var(--light-bg);
}

/* ============================================================
   CERTIFICATIONS
============================================================ */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}
.cert-logo-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  transition: var(--ease);
}
.cert-logo-item:hover {
  border-color: rgba(21, 101, 192, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.cert-logo-item img {
  max-width: 85%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: var(--ease);
}
.cert-logo-item:hover img {
  transform: scale(1.04);
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px; align-items: start;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px;
  transition: var(--ease);
}
.testi-card.featured {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-14px);
  box-shadow: var(--shadow-lg);
}
.testi-card:hover:not(.featured) { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testi-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testi-stars i { color: #f59e0b; font-size: 13px; }
.testi-quote {
  font-size: 14px; color: var(--text-mid);
  line-height: 1.8; font-style: italic; margin-bottom: 22px;
}
.testi-card.featured .testi-quote { color: rgba(255,255,255,.78); }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--white); flex-shrink: 0;
}
.testi-card.featured .testi-avatar { background: rgba(255,255,255,.18); }
.testi-author h4 { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 2px; }
.testi-card.featured .testi-author h4 { color: var(--white); }
.testi-author span { font-size: 12px; color: var(--text-soft); }
.testi-card.featured .testi-author span { color: rgba(255,255,255,.6); }

/* ============================================================
   BLOG CAROUSEL
============================================================ */
.blogs-swiper .swiper-wrapper {
  padding-bottom: 4px;
  align-items: stretch;
}
.blogs-swiper .swiper-slide {
  height: auto;
  display: flex;
}
.blog-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--ease);
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-img {
  height: 195px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.blog-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
  z-index: 1;
}
.blog-card:hover .blog-thumb {
  transform: scale(1.05);
}
.blog-img-icon { font-size: 52px; color: rgba(255,255,255,.2); transition: var(--ease); }
.blog-card:hover .blog-img-icon { transform: scale(1.1); color: rgba(255,255,255,.35); }
.blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(11, 37, 69, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: .6px;
  line-height: 1.3;
  max-width: calc(100% - 28px);
  box-shadow: 0 2px 10px rgba(11, 37, 69, 0.25);
}
.blog-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.blog-meta span { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--text-muted); }
.blog-body h3 {
  font-size: 15px; font-weight: 700; color: var(--primary);
  line-height: 1.4; margin-bottom: 8px;
  min-height: 2.8em;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-body p {
  font-size: 13px; color: var(--text-soft); line-height: 1.65; margin-bottom: 16px;
  min-height: calc(1.65em * 2);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-read {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--accent);
  transition: var(--ease);
  margin-top: auto;
}
.blog-read:hover { gap: 10px; }

/* ============================================================
   SWIPER CUSTOMISATION
============================================================ */
.carousel-wrap {
  width: 100%;
}
.carousel-shell {
  position: relative;
}
.carousel-shell .swiper {
  overflow: hidden;
}
.carousel-shell .swiper-button-next,
.carousel-shell .swiper-button-prev {
  top: 38%;
  z-index: 5;
}
.carousel-shell .swiper-button-prev {
  left: 6px !important;
}
.carousel-shell .swiper-button-next {
  right: 6px !important;
}

.carousel-pagination {
  position: relative !important;
  bottom: auto !important;
  top: auto !important;
  left: 0 !important;
  width: 100% !important;
  margin-top: 30px;
  padding: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  transform: none !important;
  line-height: 1;
}
.carousel-pagination .swiper-pagination-bullet {
  position: relative;
  display: block;
  width: 8px !important;
  height: 8px !important;
  margin: 0 10px !important;
  padding: 0;
  border: none;
  background: #cbd5e1 !important;
  border-radius: 999px !important;
  opacity: 1 !important;
  flex-shrink: 0;
  cursor: pointer;
  overflow: visible;
  transition: opacity 0.25s ease;
}
.carousel-pagination .swiper-pagination-bullet:hover {
  background: #94a3b8 !important;
}
.carousel-pagination .swiper-pagination-bullet-active {
  background: transparent !important;
}
.carousel-pagination .swiper-pagination-bullet-active::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 8px;
  background: var(--accent);
  border-radius: 999px;
  pointer-events: none;
}
.swiper-button-next,
.swiper-button-prev {
  width: 44px !important; height: 44px !important;
  background: var(--white) !important;
  border-radius: 50% !important;
  box-shadow: var(--shadow-md) !important;
  color: var(--primary) !important;
  border: 1px solid var(--border) !important;
  transition: var(--ease) !important;
}
.swiper-button-next:hover,
.swiper-button-prev:hover { background: var(--accent) !important; color: var(--white) !important; border-color: var(--accent) !important; }
.swiper-button-next::after,
.swiper-button-prev::after { font-size: 14px !important; font-weight: 900 !important; }

/* ============================================================
   NEWSLETTER
============================================================ */
#newsletter {
  background: linear-gradient(135deg, var(--accent) 0%, var(--teal) 100%);
  padding: 56px 0;
}
.nl-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.nl-left { display: flex; align-items: center; gap: 20px; }
.nl-icon { font-size: 44px; color: rgba(255,255,255,.8); flex-shrink: 0; }
.nl-left h2 { font-size: clamp(18px, 2.5vw, 26px); font-weight: 800; color: var(--white); margin-bottom: 4px; }
.nl-left p  { font-size: 14px; color: rgba(255,255,255,.78); }
.nl-form { display: flex; border-radius: var(--r); overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.2); flex-shrink: 0; }
.nl-form input {
  padding: 14px 22px;
  background: var(--white); border: none; outline: none;
  font-size: 14px; color: var(--text-dark); font-family: inherit;
  min-width: 270px;
}
.nl-form input::placeholder { color: var(--text-muted); }
.nl-form button {
  background: var(--primary); color: var(--white);
  padding: 14px 26px;
  font-size: 14px; font-weight: 700; font-family: inherit;
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap; transition: var(--ease);
}
.nl-form button:hover { background: #060e1a; }

/* ============================================================
   FOOTER
============================================================ */
#footer { background: #060e1a; }
.footer-top {
  padding: 80px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
}
.footer-about {
  font-size: 13px; color: rgba(255,255,255,.5);
  line-height: 1.75; margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,.55);
  transition: var(--ease);
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); transform: translateY(-3px); }

.footer-hdg {
  font-size: 13px; font-weight: 800; color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  position: relative;
}
.footer-hdg::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--accent);
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 13px; color: rgba(255,255,255,.5);
  display: flex; align-items: center; gap: 7px;
  transition: var(--ease);
}
.footer-links a i { font-size: 10px; color: var(--accent); opacity: 1; transition: var(--ease); flex-shrink: 0; }
.footer-links a:hover { color: rgba(255,255,255,.9); }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.footer-contact-list li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-list li i { color: var(--accent); font-size: 14px; margin-top: 1px; flex-shrink: 0; }
.footer-contact-list li span { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5; }
.footer-contact-list li span a { color: rgba(255,255,255,.5); }
.footer-contact-list li span a:hover { color: rgba(255,255,255,.9); }
.btn-footer-quote {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: var(--white);
  padding: 11px 20px; border-radius: var(--r);
  font-size: 13px; font-weight: 700;
  transition: var(--ease);
}
.btn-footer-quote:hover { background: var(--accent-hover); transform: translateY(-2px); }

.footer-bottom { padding: 20px 0; }
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-bottom-inner p { font-size: 12px; color: rgba(255,255,255,.35); }
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,.35); transition: var(--ease); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.75); }

/* ============================================================
   BACK TO TOP
============================================================ */
#backToTop {
  position: fixed; bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  background: var(--accent); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-accent);
  z-index: 998;
  opacity: 0; visibility: hidden;
  transform: translateY(20px);
  transition: all .3s ease;
}
#backToTop.show { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { background: var(--accent-hover); transform: translateY(-4px); box-shadow: 0 14px 36px rgba(21,101,192,.42); }

/* ============================================================
   RESPONSIVE — 1200px
============================================================ */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand-col { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
  .cert-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid-plastic { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — 992px
============================================================ */
@media (max-width: 992px) {
  .main-nav  { display: none; }
  .hamburger { display: flex; }
  .btn-wholesale span { display: none; }
  .btn-wholesale { width: 38px; height: 38px; padding: 0; justify-content: center; border-radius: var(--r-sm); }

  .cat-grid  { grid-template-columns: repeat(2, 1fr); }
  .cat-grid-plastic { grid-template-columns: repeat(2, 1fr); }
  .excellence-grid { grid-template-columns: repeat(2, 1fr); }

  .ws-layout { grid-template-columns: 1fr; gap: 48px; }
  .ws-content { max-width: none; }
  .ws-features { max-width: none; }
  .ws-overlay-panel { width: min(260px, 50%); }

  .testi-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .testi-card.featured { transform: none; box-shadow: var(--shadow-md); }

  .sec-hdr-flex { flex-direction: column; align-items: flex-start; }

  .nl-inner { flex-direction: column; align-items: center; text-align: center; }
  .nl-left { flex-direction: column; align-items: center; text-align: center; }
  .nl-form { width: 100%; max-width: 420px; flex-direction: column; border-radius: var(--r); }
  .nl-form input { min-width: auto; width: 100%; border-radius: var(--r) var(--r) 0 0; }
  .nl-form button { justify-content: center; border-radius: 0 0 var(--r) var(--r); }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand-col { grid-column: 1 / -1; grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — 768px
============================================================ */
@media (max-width: 768px) {
  .stat-sep { display: none; }
  .stats-row { gap: 0; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,.07); }
  .stat-item:last-child { border-bottom: none; }

  .excellence-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }

  .ws-section { padding: 70px 0; }
  .ws-features {
    flex-wrap: wrap;
    max-width: none;
  }
  .ws-feat {
    flex: 0 0 50%;
    padding: 0 20px 20px;
  }
  .ws-feat:nth-child(odd) { padding-left: 0; }
  .ws-feat:nth-child(even) { padding-right: 0; }
  .ws-feat + .ws-feat::before { display: none; }
  .ws-feat:nth-child(even)::before {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: rgba(255,255,255,.15);
  }
  .ws-feat:nth-child(n+3) {
    padding-bottom: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.12);
  }
  .ws-overlay-panel {
    right: 16px;
    width: min(220px, 55%);
    padding: 18px 16px;
  }
  .ws-panel-list li { font-size: 13px; padding: 10px 0; }

  .hero-cert-strip { display: none; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand-col { grid-column: auto; display: block; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  .carousel-shell .swiper-button-next,
  .carousel-shell .swiper-button-prev {
    width: 38px !important;
    height: 38px !important;
  }
  .carousel-pagination { margin-top: 24px; }
  .carousel-pagination .swiper-pagination-bullet { margin: 0 8px !important; }
}

/* ============================================================
   RESPONSIVE — 576px
============================================================ */
@media (max-width: 576px) {
  .cat-grid { grid-template-columns: 1fr; max-width: 350px; margin: 0 auto; }
  .cat-grid-plastic { grid-template-columns: 1fr; max-width: 350px; }
  #hero { padding-top: calc(var(--site-top) + 28px); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas { flex-direction: column; }
  .btn-hero-primary, .btn-hero-outline { width: 100%; justify-content: center; }
  .ws-section { padding: 56px 0; }
  .ws-features { flex-wrap: wrap; }
  .ws-feat {
    flex: 0 0 50%;
    padding: 0 14px 16px;
  }
  .ws-feat:nth-child(odd) { padding-left: 0; }
  .ws-feat:nth-child(even) { padding-right: 0; }
  .ws-feat + .ws-feat::before { display: none; }
  .ws-feat:nth-child(even)::before { display: block; }
  .ws-feat:nth-child(n+3) {
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.12);
  }
  .btn-ws-program { width: 100%; justify-content: center; margin-bottom: 36px; }
  .ws-image-wrap {
    display: flex;
    flex-direction: column;
    aspect-ratio: auto;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }
  .ws-image {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    overflow: hidden;
  }
  .ws-overlay-panel {
    position: static;
    transform: none;
    width: 100%;
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    border-top: none;
  }
  #backToTop { bottom: 20px; right: 20px; }
  .ann-item { font-size: 11px; }
  .search-ov-card { padding: 28px 20px 24px; }
  .search-ov-head h2 { font-size: 20px; }
  .search-ov-close { top: 16px; right: 16px; width: 42px; height: 42px; }
}
