/* =============================================
   Silk Surgico — Main Stylesheet
   Premium Medical Instruments Corporate Theme
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --ss-primary: #0A2E5C;
  --ss-secondary: #123E78;
  --ss-accent: #D9DDE3;
  --ss-bg: #FFFFFF;
  --ss-text: #222222;
  --ss-text-muted: #5A6474;
  --ss-border: #E8ECF0;
  --ss-border-light: #F0F2F5;
  --ss-royal: #2563EB;
  --ss-royal-hover: #1D4ED8;
  --ss-success: #059669;
  --ss-danger: #DC2626;
  --ss-warning: #D97706;
  --ss-gold: #B8860B;

  --ss-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ss-font-heading: 'Poppins', var(--ss-font-body);

  --ss-shadow-sm: 0 2px 8px rgba(10, 46, 92, 0.06);
  --ss-shadow-md: 0 4px 24px rgba(10, 46, 92, 0.1);
  --ss-shadow-lg: 0 8px 40px rgba(10, 46, 92, 0.14);
  --ss-shadow-xl: 0 16px 48px rgba(10, 46, 92, 0.18);

  --ss-radius-sm: 8px;
  --ss-radius-md: 12px;
  --ss-radius-lg: 16px;
  --ss-radius-xl: 24px;

  --ss-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ss-header-h: 76px;
  --ss-topbar-h: 40px;

  --ss-glass-bg: rgba(255, 255, 255, 0.82);
  --ss-glass-border: rgba(255, 255, 255, 0.45);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--ss-font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ss-text);
  background: var(--ss-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.ss-nav-open {
  overflow: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ss-font-heading);
  color: var(--ss-primary);
  line-height: 1.25;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.625rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.375rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Buttons ---------- */
.ss-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--ss-font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--ss-radius-sm);
  border: 2px solid transparent;
  transition: all var(--ss-transition);
  white-space: nowrap;
  cursor: pointer;
}

.ss-btn-primary {
  background: linear-gradient(135deg, var(--ss-primary) 0%, var(--ss-secondary) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(10, 46, 92, 0.25);
}

.ss-btn-primary:hover {
  background: linear-gradient(135deg, var(--ss-royal) 0%, var(--ss-royal-hover) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.ss-btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}

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

.ss-btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(8px);
  border-color: rgba(255, 255, 255, 0.2);
}

.ss-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  transform: translateY(-2px);
}

.ss-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ss-font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ss-secondary);
  transition: all var(--ss-transition);
}

.ss-link:hover {
  color: var(--ss-royal);
  gap: 12px;
}

.ss-link-sm {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ss-royal);
}

.ss-link-sm:hover {
  color: var(--ss-royal-hover);
}

/* ---------- Glass Card ---------- */
.glass-card {
  background: var(--ss-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--ss-glass-border);
  border-radius: var(--ss-radius-lg);
  box-shadow: var(--ss-shadow-lg);
}

/* ---------- Page Loader ---------- */
.ss-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ss-bg);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.ss-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ss-loader-inner {
  text-align: center;
}

.ss-loader-inner img {
  margin: 0 auto 24px;
}

.ss-loader-bar {
  width: 200px;
  height: 3px;
  background: var(--ss-border);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto 16px;
}

.ss-loader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--ss-primary), var(--ss-royal));
  border-radius: 3px;
  animation: ssLoadBar 1.8s ease-in-out infinite;
}

.ss-loader-inner p {
  font-size: 0.875rem;
  color: var(--ss-text-muted);
  margin: 0;
}

@keyframes ssLoadBar {
  0% { width: 0; margin-left: 0; }
  50% { width: 100%; margin-left: 0; }
  100% { width: 0; margin-left: 100%; }
}

/* ---------- Top Bar ---------- */
.ss-topbar {
  background: var(--ss-primary);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8125rem;
  height: var(--ss-topbar-h);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
}

.ss-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.ss-topbar-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ss-topbar-left a,
.ss-topbar-left span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.88);
}

.ss-topbar-left a:hover {
  color: #fff;
}

.ss-topbar-left i {
  font-size: 0.75rem;
  opacity: 0.85;
}

.ss-topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ss-switcher {
  position: relative;
}

.ss-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--ss-radius-sm);
  transition: background var(--ss-transition);
}

.ss-switcher-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.ss-switcher-btn .fa-chevron-down {
  font-size: 0.625rem;
}

.ss-switcher-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  background: #fff;
  border-radius: var(--ss-radius-sm);
  box-shadow: var(--ss-shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--ss-transition);
  z-index: 10;
  overflow: hidden;
}

.ss-switcher:hover .ss-switcher-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ss-switcher-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 0.8125rem;
  color: var(--ss-text);
  transition: background var(--ss-transition);
}

.ss-switcher-menu li a:hover {
  background: var(--ss-border-light);
  color: var(--ss-primary);
}

.ss-topbar-social {
  display: flex;
  gap: 8px;
}

.ss-topbar-social a {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  transition: all var(--ss-transition);
}

.ss-topbar-social a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* ---------- Header ---------- */
.ss-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ss-border);
  transition: box-shadow var(--ss-transition);
}

.ss-header.scrolled {
  box-shadow: var(--ss-shadow-md);
}

.ss-header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--ss-header-h);
}

.ss-logo img {
  height: 42px;
  width: auto;
}

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

.ss-nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-family: var(--ss-font-heading);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ss-text);
  border-radius: var(--ss-radius-sm);
  transition: all var(--ss-transition);
}

.ss-nav-list > li > a:hover,
.ss-nav-list > li.active > a {
  color: var(--ss-primary);
  background: rgba(10, 46, 92, 0.05);
}

.ss-nav-list > li > a .fa-chevron-down {
  font-size: 0.625rem;
  transition: transform var(--ss-transition);
}

.ss-has-mega:hover > a .fa-chevron-down {
  transform: rotate(180deg);
}

/* Mega Menu */
.ss-mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: min(1100px, 96vw);
  background: #fff;
  border-radius: var(--ss-radius-lg);
  box-shadow: var(--ss-shadow-xl);
  border: 1px solid var(--ss-border);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--ss-transition);
  pointer-events: none;
}

.ss-has-mega {
  position: static;
}

.ss-has-mega:hover .ss-mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.ss-mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ss-mega-col {
  min-width: 0;
}

.ss-mega-col-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  margin-bottom: 8px;
  border-radius: var(--ss-radius-sm);
  font-family: var(--ss-font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ss-primary);
  transition: background var(--ss-transition);
}

.ss-mega-col-head:hover {
  background: var(--ss-border-light);
  color: var(--ss-primary);
}

.ss-mega-col-head img {
  width: 48px;
  height: 36px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.ss-mega-sub {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 280px;
  overflow-y: auto;
}

.ss-mega-sub li a {
  display: block;
  padding: 5px 10px;
  font-size: 0.75rem;
  color: var(--ss-text-muted);
  line-height: 1.35;
  border-radius: 4px;
  transition: all var(--ss-transition);
}

.ss-mega-sub li a:hover {
  background: rgba(10, 46, 92, 0.05);
  color: var(--ss-primary);
  padding-left: 14px;
}

.ss-mega-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--ss-radius-sm);
  transition: all var(--ss-transition);
}

.ss-mega-item:hover {
  background: var(--ss-border-light);
}

.ss-mega-item img {
  width: 56px;
  height: 42px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.ss-mega-item span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ss-text);
  line-height: 1.3;
}

.ss-mega-all {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--ss-primary), var(--ss-secondary));
  color: #fff;
  border-radius: var(--ss-radius-sm);
  font-family: var(--ss-font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--ss-transition);
}

.ss-mega-all:hover {
  background: linear-gradient(135deg, var(--ss-royal), var(--ss-royal-hover));
  color: #fff;
  transform: translateY(-1px);
}

/* Header Actions */
.ss-header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.ss-icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ss-text);
  font-size: 1.0625rem;
  transition: all var(--ss-transition);
}

.ss-icon-btn:hover {
  background: rgba(10, 46, 92, 0.06);
  color: var(--ss-primary);
}

.ss-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--ss-royal);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.ss-cart-btn {
  background: var(--ss-primary);
  color: #fff !important;
}

.ss-cart-btn:hover {
  background: var(--ss-royal);
  color: #fff !important;
}

.ss-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
}

.ss-mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ss-primary);
  border-radius: 2px;
  transition: all var(--ss-transition);
}

.ss-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.ss-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.ss-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.ss-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 46, 92, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--ss-transition);
}

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

/* ---------- Floating Shapes ---------- */
.ss-floating-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.ss-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.04;
}

.ss-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--ss-primary);
  top: 10%;
  right: -100px;
  animation: ssFloat 8s ease-in-out infinite;
}

.ss-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--ss-royal);
  bottom: 20%;
  left: -80px;
  animation: ssFloat 10s ease-in-out infinite reverse;
}

.ss-shape-3 {
  width: 200px;
  height: 200px;
  background: var(--ss-secondary);
  top: 50%;
  left: 30%;
  animation: ssFloat 12s ease-in-out infinite;
}

.ss-shape-4 {
  width: 150px;
  height: 150px;
  background: var(--ss-accent);
  bottom: 10%;
  right: 20%;
  animation: ssFloat 9s ease-in-out infinite reverse;
}

@keyframes ssFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* ---------- Hero Layout + Sidebar ---------- */
.ss-hero-layout {
  display: flex;
  max-width: 100%;
  background: var(--ss-border-light);
}

.ss-categories-sidebar {
  width: 420px;
  flex-shrink: 0;
  background: #fff;
  border-right: 1px solid var(--ss-border);
  display: flex;
  flex-direction: column;
  z-index: 2;
  min-height: 580px;
}

.ss-sidebar-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--ss-primary), var(--ss-secondary));
  color: #fff;
  font-family: var(--ss-font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
}

.ss-sidebar-body {
  display: flex;
  flex: 1;
  min-height: 0;
}

.ss-sidebar-main {
  width: 180px;
  flex-shrink: 0;
  border-right: 1px solid var(--ss-border-light);
  display: flex;
  flex-direction: column;
}

.ss-sidebar-cat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  flex: 1;
  min-height: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ss-text);
  border-bottom: 1px solid var(--ss-border-light);
  transition: all var(--ss-transition);
}

.ss-sidebar-cat > i:first-child {
  width: 16px;
  color: var(--ss-secondary);
  font-size: 0.8125rem;
  flex-shrink: 0;
}

.ss-sidebar-cat > span {
  flex: 1;
  line-height: 1.3;
}

.ss-sidebar-cat > .fa-chevron-right {
  font-size: 0.5625rem;
  color: var(--ss-text-muted);
  opacity: 0;
  transition: all var(--ss-transition);
}

.ss-sidebar-cat:hover,
.ss-sidebar-cat.active {
  background: rgba(10, 46, 92, 0.05);
  color: var(--ss-primary);
}

.ss-sidebar-cat:hover > .fa-chevron-right,
.ss-sidebar-cat.active > .fa-chevron-right {
  opacity: 1;
  color: var(--ss-secondary);
}

.ss-sidebar-sub {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.ss-sidebar-sub-panel {
  position: absolute;
  inset: 0;
  padding: 12px 14px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

.ss-sidebar-sub-panel.active {
  opacity: 1;
  visibility: visible;
}

.ss-sidebar-sub-title {
  font-family: var(--ss-font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ss-primary);
  margin: 0 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ss-border-light);
}

.ss-sidebar-sub-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ss-sidebar-sub-panel li a {
  display: block;
  padding: 6px 0;
  font-size: 0.75rem;
  color: var(--ss-text-muted);
  line-height: 1.35;
  border-bottom: 1px solid transparent;
  transition: all var(--ss-transition);
}

.ss-sidebar-sub-panel li a:hover {
  color: var(--ss-primary);
  padding-left: 6px;
}

.ss-sidebar-nav {
  flex: 1;
  overflow-y: auto;
}

.ss-sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ss-text);
  border-bottom: 1px solid var(--ss-border-light);
  transition: all var(--ss-transition);
}

.ss-sidebar-nav a > i:first-child {
  width: 18px;
  color: var(--ss-secondary);
  font-size: 0.875rem;
}

.ss-sidebar-nav a > .fa-chevron-right {
  margin-left: auto;
  font-size: 0.625rem;
  color: var(--ss-text-muted);
  opacity: 0;
  transform: translateX(-4px);
  transition: all var(--ss-transition);
}

.ss-sidebar-nav a:hover {
  background: rgba(10, 46, 92, 0.04);
  color: var(--ss-primary);
  padding-left: 24px;
}

.ss-sidebar-nav a:hover > .fa-chevron-right {
  opacity: 1;
  transform: translateX(0);
}

.ss-sidebar-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  margin: 12px;
  background: var(--ss-accent);
  color: var(--ss-primary);
  font-family: var(--ss-font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--ss-radius-sm);
  transition: all var(--ss-transition);
}

.ss-sidebar-all:hover {
  background: var(--ss-primary);
  color: #fff;
}

/* Hero Slider */
.ss-hero {
  flex: 1;
  min-width: 0;
  position: relative;
}

.ss-hero-swiper {
  height: 580px;
  overflow: visible;
}

.ss-hero-swiper .swiper-wrapper {
  overflow: visible;
}

.ss-hero-swiper .swiper-slide {
  overflow: visible;
}

.ss-hero-slide {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.ss-hero-slide--surgical {
  background: linear-gradient(135deg, #0a2e5c 0%, #0c4a6e 45%, #0e7490 100%);
}

.ss-hero-slide--dental {
  background: linear-gradient(135deg, #064e3b 0%, #047857 45%, #0ea5e9 100%);
}

.ss-hero-slide--beauty {
  background: linear-gradient(135deg, #831843 0%, #be185d 45%, #f472b6 100%);
}

.ss-hero-slide--veterinary {
  background: linear-gradient(135deg, #14532d 0%, #15803d 45%, #d97706 100%);
}

.ss-hero-container {
  height: 100%;
  display: flex;
  align-items: center;
}

.ss-hero-slide-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
  padding: 16px 0;
}

.ss-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
  overflow: visible;
  padding: 12px 8px;
}

.ss-hero-visual-ring {
  position: absolute;
  width: 540px;
  height: 540px;
  max-width: 98%;
  border: 2px dashed rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  animation: ssHeroSpin 24s linear infinite;
}

.ss-hero-visual-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  overflow: visible;
  padding: 8px;
}

.ss-hero-visual-main {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 32px;
  border: 6px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  min-height: 340px;
  display: block;
}

.ss-hero-slide--beauty .ss-hero-visual-main {
  object-position: center 20%;
}

.ss-hero-slide--dental .ss-hero-visual-main {
  object-position: center center;
}

.ss-hero-visual-tools {
  position: absolute;
  z-index: 4;
  bottom: 4px;
  left: 4px;
  width: 44%;
  min-width: 140px;
  max-width: 210px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.18);
  border-radius: 20px;
  border: 5px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
  background: #fff;
  overflow: hidden;
}

.ss-hero-slide--surgical .ss-hero-visual-tools {
  object-position: center 45%;
}

.ss-hero-slide--dental .ss-hero-visual-tools {
  object-position: center 50%;
}

.ss-hero-slide--beauty .ss-hero-visual-tools {
  object-position: center 40%;
}

.ss-hero-slide--veterinary .ss-hero-visual-tools {
  object-position: center 55%;
}

.ss-hero-visual-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 32px;
  border: 6px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.42);
}

.ss-hero-visual-badge {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  right: 24px;
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  animation: ssHeroPulse 2.5s ease-in-out infinite;
}

.ss-hero-slide--surgical .ss-hero-visual-badge {
  color: #0e7490;
}

.ss-hero-slide--dental .ss-hero-visual-badge {
  color: #047857;
}

.ss-hero-slide--beauty .ss-hero-visual-badge {
  color: #be185d;
}

.ss-hero-slide--veterinary .ss-hero-visual-badge {
  color: #d97706;
}

/* Slide enter animations — visible by default; animate on active slide */
.ss-hero-slide-inner .ss-hero-content,
.ss-hero-slide-inner .ss-hero-visual {
  opacity: 1;
  transform: none;
}

.swiper-slide-active .ss-hero-slide-inner .ss-hero-content,
.swiper-slide-duplicate-active .ss-hero-slide-inner .ss-hero-content {
  animation: ssHeroFadeLeft 0.75s ease 0.1s both;
}

.swiper-slide-active .ss-hero-slide-inner .ss-hero-visual,
.swiper-slide-duplicate-active .ss-hero-slide-inner .ss-hero-visual {
  animation: ssHeroFadeRight 0.85s ease 0.2s both;
}

.swiper-slide-active .ss-hero-visual-main,
.swiper-slide-duplicate-active .ss-hero-visual-main {
  animation: ssHeroFloat 5s ease-in-out 0.9s infinite;
}

.swiper-slide-active .ss-hero-visual-tools,
.swiper-slide-duplicate-active .ss-hero-visual-tools {
  animation: ssHeroFloatTools 4.5s ease-in-out 1.1s infinite;
}

.swiper-slide-active .ss-hero-tag {
  animation: ssHeroFadeUp 0.6s ease 0.2s both;
}

.swiper-slide-active .ss-hero-brand-name {
  animation: ssHeroFadeUp 0.7s ease 0.35s both;
}

.swiper-slide-active .ss-hero-category-name {
  animation: ssHeroFadeUp 0.7s ease 0.5s both;
}

.swiper-slide-active .ss-hero-content p {
  animation: ssHeroFadeUp 0.7s ease 0.65s both;
}

.swiper-slide-active .ss-hero-btns {
  animation: ssHeroFadeUp 0.7s ease 0.8s both;
}

.ss-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

/* Category hero slides — overlay accents */
.ss-hero-slide--surgical .ss-hero-overlay {
  background: linear-gradient(90deg, rgba(10, 46, 92, 0.25) 0%, transparent 60%);
}

.ss-hero-slide--dental .ss-hero-overlay {
  background: linear-gradient(90deg, rgba(6, 78, 59, 0.2) 0%, transparent 60%);
}

.ss-hero-slide--beauty .ss-hero-overlay {
  background: linear-gradient(90deg, rgba(131, 24, 67, 0.2) 0%, transparent 60%);
}

.ss-hero-slide--veterinary .ss-hero-overlay {
  background: linear-gradient(90deg, rgba(22, 101, 52, 0.2) 0%, transparent 60%);
}

.ss-hero-content--category {
  max-width: 100%;
}

.ss-hero-brand {
  margin-bottom: 20px;
}

.ss-hero-brand-name {
  display: block;
  font-family: var(--ss-font-heading);
  font-size: clamp(2.75rem, 5.5vw, 4.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.ss-hero-category-name {
  display: block;
  margin-top: 10px;
  font-family: var(--ss-font-heading);
  font-size: clamp(1.5rem, 3vw, 2.625rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.ss-hero-slide--surgical .ss-hero-category-name {
  color: #38bdf8;
}

.ss-hero-slide--dental .ss-hero-category-name {
  color: #6ee7b7;
}

.ss-hero-slide--beauty .ss-hero-category-name {
  color: #fbcfe8;
}

.ss-hero-slide--veterinary .ss-hero-category-name {
  color: #fbbf24;
}

.ss-hero-slide--surgical .ss-hero-tag {
  background: rgba(56, 189, 248, 0.18);
  border-color: rgba(56, 189, 248, 0.35);
}

.ss-hero-slide--dental .ss-hero-tag {
  background: rgba(110, 231, 183, 0.18);
  border-color: rgba(110, 231, 183, 0.35);
}

.ss-hero-slide--beauty .ss-hero-tag {
  background: rgba(251, 207, 232, 0.2);
  border-color: rgba(251, 207, 232, 0.4);
}

.ss-hero-slide--veterinary .ss-hero-tag {
  background: rgba(251, 191, 36, 0.2);
  border-color: rgba(251, 191, 36, 0.4);
}

.ss-hero-slide--beauty .ss-btn-primary {
  background: linear-gradient(135deg, #be185d, #db2777);
  border-color: transparent;
}

.ss-hero-slide--beauty .ss-btn-primary:hover {
  background: linear-gradient(135deg, #9d174d, #be185d);
}

.ss-hero-slide--dental .ss-btn-primary {
  background: linear-gradient(135deg, #047857, #059669);
  border-color: transparent;
}

.ss-hero-slide--dental .ss-btn-primary:hover {
  background: linear-gradient(135deg, #065f46, #047857);
}

.ss-hero-slide--veterinary .ss-btn-primary {
  background: linear-gradient(135deg, #b45309, #d97706);
  border-color: transparent;
}

.ss-hero-slide--veterinary .ss-btn-primary:hover {
  background: linear-gradient(135deg, #92400e, #b45309);
}

.ss-hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 40px 0;
  color: #fff;
}

.ss-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.ss-hero-content h1 {
  color: #fff;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.15;
}

.ss-hero-content h1 em {
  font-style: normal;
  color: var(--ss-accent);
}

.ss-hero-content p {
  font-size: 1.0625rem;
  opacity: 0.92;
  margin-bottom: 28px;
  line-height: 1.65;
}

.ss-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ss-hero-pagination {
  bottom: 24px !important;
}

.ss-hero-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: all var(--ss-transition);
}

.ss-hero-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 5px;
  background: #fff;
}

.ss-hero-prev,
.ss-hero-next {
  color: #fff !important;
  width: 48px !important;
  height: 48px !important;
  background: rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(8px);
  border-radius: 50% !important;
  transition: all var(--ss-transition);
}

.ss-hero-prev:hover,
.ss-hero-next:hover {
  background: var(--ss-royal) !important;
}

.ss-hero-prev::after,
.ss-hero-next::after {
  font-size: 1rem !important;
  font-weight: 700;
}

/* ---------- Trust Bar ---------- */
.ss-trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--ss-border);
  padding: 28px 0;
}

.ss-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ss-trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ss-trust-item > i {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 46, 92, 0.06);
  color: var(--ss-primary);
  font-size: 1.25rem;
  border-radius: var(--ss-radius-md);
  flex-shrink: 0;
  transition: all var(--ss-transition);
}

.ss-trust-item:hover > i {
  background: var(--ss-primary);
  color: #fff;
  transform: translateY(-3px);
}

.ss-trust-item strong {
  display: block;
  font-family: var(--ss-font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ss-primary);
  margin-bottom: 2px;
}

.ss-trust-item span {
  font-size: 0.8125rem;
  color: var(--ss-text-muted);
}

/* ---------- Sections ---------- */
.ss-section {
  padding: 80px 0;
}

.ss-bg-light {
  background: #F7F9FC;
}

.ss-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.ss-section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-align: left;
  max-width: 100%;
  gap: 24px;
}

.ss-section-head-row .ss-link {
  flex-shrink: 0;
  margin-bottom: 8px;
}

.ss-label {
  display: inline-block;
  font-family: var(--ss-font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ss-royal);
  margin-bottom: 12px;
}

.ss-section-head h2 {
  margin-bottom: 12px;
}

.ss-section-head p {
  color: var(--ss-text-muted);
  font-size: 1.0625rem;
}

/* ---------- Category Grid ---------- */
.ss-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ss-cat-card {
  position: relative;
  border-radius: var(--ss-radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--ss-shadow-sm);
  border: 1px solid var(--ss-border);
  transition: all var(--ss-transition);
}

.ss-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ss-shadow-lg);
  border-color: transparent;
}

.ss-cat-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ss-cat-card:hover img {
  transform: scale(1.08);
}

.ss-cat-info {
  padding: 18px 20px;
}

.ss-cat-info h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  transition: color var(--ss-transition);
}

.ss-cat-card:hover .ss-cat-info h3 {
  color: var(--ss-royal);
}

.ss-cat-info span {
  font-size: 0.8125rem;
  color: var(--ss-text-muted);
}

.ss-cat-all {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ss-primary), var(--ss-secondary));
  min-height: 240px;
}

.ss-cat-all-inner {
  text-align: center;
  color: #fff;
  padding: 24px;
}

.ss-cat-all-inner i {
  font-size: 2.5rem;
  margin-bottom: 16px;
  opacity: 0.9;
}

.ss-cat-all-inner h3 {
  color: #fff;
  margin-bottom: 8px;
}

.ss-cat-all-inner span {
  font-size: 0.875rem;
  opacity: 0.85;
}

.ss-cat-all:hover {
  background: linear-gradient(135deg, var(--ss-royal), var(--ss-royal-hover));
}

/* ---------- Product Cards ---------- */
.ss-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ss-product-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.ss-product-card {
  background: #fff;
  border-radius: var(--ss-radius-lg);
  border: 1px solid var(--ss-border);
  overflow: hidden;
  transition: all var(--ss-transition);
}

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

.ss-product-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: #F7F9FC;
}

.ss-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.ss-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  z-index: 2;
  color: #fff;
}

.ss-product-badge.sale { background: var(--ss-danger); }
.ss-product-badge.hot { background: var(--ss-warning); }
.ss-product-badge.new { background: var(--ss-success); }
.ss-product-badge.trend { background: var(--ss-primary); }

.ss-product-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--ss-transition);
  z-index: 3;
}

.ss-product-card:hover .ss-product-actions {
  opacity: 1;
  transform: translateX(0);
}

.ss-pa-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--ss-text);
  border-radius: 50%;
  box-shadow: var(--ss-shadow-sm);
  font-size: 0.875rem;
  transition: all var(--ss-transition);
}

.ss-pa-btn:hover {
  background: var(--ss-primary);
  color: #fff;
}

.ss-add-cart {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px;
  background: var(--ss-primary);
  color: #fff;
  font-family: var(--ss-font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateY(100%);
  transition: all var(--ss-transition);
  z-index: 3;
}

.ss-product-card:hover .ss-add-cart {
  transform: translateY(0);
}

.ss-add-cart:hover {
  background: var(--ss-royal);
}

.ss-product-body {
  padding: 20px;
}

.ss-product-cat {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ss-royal);
  margin-bottom: 6px;
}

.ss-product-body h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.ss-product-body h3 a:hover {
  color: var(--ss-royal);
}

.ss-product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.ss-stars {
  display: inline-flex;
  gap: 2px;
  color: #FBBF24;
  font-size: 0.75rem;
}

.ss-stars::before {
  content: '★★★★★';
  letter-spacing: 1px;
}

.ss-reviews {
  font-size: 0.75rem;
  color: var(--ss-text-muted);
}

.ss-product-desc {
  font-size: 0.8125rem;
  color: var(--ss-text-muted);
  margin-bottom: 10px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ss-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 12px;
}

.ss-product-meta span {
  font-size: 0.75rem;
  color: var(--ss-text-muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ss-product-meta span i {
  color: var(--ss-success);
  font-size: 0.6875rem;
}

.ss-product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ss-font-heading);
  font-weight: 700;
}

.ss-product-price del {
  font-size: 0.875rem;
  color: var(--ss-text-muted);
  font-weight: 400;
}

.ss-product-price ins {
  font-size: 1.125rem;
  color: var(--ss-primary);
  text-decoration: none;
}

/* Horizontal Product Card */
.ss-product-horizontal {
  display: flex;
  flex-direction: row;
}

.ss-product-horizontal .ss-product-img {
  width: 200px;
  flex-shrink: 0;
  aspect-ratio: auto;
  min-height: 200px;
}

.ss-product-horizontal .ss-product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ss-product-horizontal .ss-add-cart {
  width: auto;
  left: auto;
  right: 12px;
  bottom: 12px;
  border-radius: var(--ss-radius-sm);
  padding: 10px 14px;
  transform: none;
  opacity: 0;
}

.ss-product-horizontal:hover .ss-add-cart {
  opacity: 1;
  transform: none;
}

/* Products Swiper */
.ss-products-swiper {
  padding-bottom: 40px !important;
}

.ss-products-swiper .swiper-pagination-bullet-active {
  background: var(--ss-primary);
}

/* ---------- Premium Banner ---------- */
.ss-premium-banner {
  padding: 0;
}

.ss-banner-inner {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--ss-primary) 0%, var(--ss-secondary) 100%);
  border-radius: var(--ss-radius-xl);
  overflow: hidden;
  margin: 0 1.25rem;
  max-width: calc(1280px - 2.5rem);
  margin-left: auto;
  margin-right: auto;
}

.ss-banner-content {
  flex: 1;
  padding: 48px 56px;
  color: #fff;
}

.ss-banner-content .ss-label {
  color: var(--ss-accent);
}

.ss-banner-content h2 {
  color: #fff;
  margin-bottom: 16px;
}

.ss-banner-content p {
  opacity: 0.9;
  margin-bottom: 28px;
  max-width: 480px;
}

.ss-banner-content .ss-btn-primary {
  background: #fff;
  color: var(--ss-primary);
  box-shadow: none;
}

.ss-banner-content .ss-btn-primary:hover {
  background: var(--ss-accent);
  color: var(--ss-primary);
}

.ss-banner-img {
  width: 42%;
  flex-shrink: 0;
}

.ss-banner-img img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

/* ---------- Manufacturing Process ---------- */
.ss-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.ss-process-item {
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border-radius: var(--ss-radius-lg);
  border: 1px solid var(--ss-border);
  transition: all var(--ss-transition);
}

.ss-process-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--ss-shadow-md);
  border-color: transparent;
}

.ss-process-icon {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 46, 92, 0.06);
  border-radius: 50%;
  color: var(--ss-primary);
  font-size: 1.5rem;
  transition: all var(--ss-transition);
}

.ss-process-icon span {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 24px;
  height: 24px;
  background: var(--ss-primary);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ss-process-item:hover .ss-process-icon {
  background: var(--ss-primary);
  color: #fff;
}

.ss-process-item h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.ss-process-item p {
  font-size: 0.8125rem;
  color: var(--ss-text-muted);
  margin-bottom: 16px;
}

.ss-progress {
  height: 4px;
  background: var(--ss-border);
  border-radius: 4px;
  overflow: hidden;
}

.ss-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--ss-primary), var(--ss-royal));
  border-radius: 4px;
  transition: width 1.5s ease;
}

.ss-progress-bar.animated {
  width: var(--progress, 100%);
}

/* ---------- Why Choose Us ---------- */
.ss-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ss-why-card {
  padding: 32px 28px;
  background: #fff;
  border-radius: var(--ss-radius-lg);
  border: 1px solid var(--ss-border);
  transition: all var(--ss-transition);
}

.ss-why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ss-shadow-md);
  border-color: var(--ss-royal);
}

.ss-why-card > i {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 46, 92, 0.06);
  color: var(--ss-primary);
  font-size: 1.375rem;
  border-radius: var(--ss-radius-md);
  margin-bottom: 20px;
  transition: all var(--ss-transition);
}

.ss-why-card:hover > i {
  background: var(--ss-primary);
  color: #fff;
}

.ss-why-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 10px;
}

.ss-why-card p {
  font-size: 0.875rem;
  color: var(--ss-text-muted);
  margin: 0;
}

/* ---------- Certifications ---------- */
.ss-cert-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.ss-cert-card {
  text-align: center;
  padding: 28px 16px;
  background: #fff;
  border-radius: var(--ss-radius-lg);
  border: 1px solid var(--ss-border);
  transition: all var(--ss-transition);
}

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

.ss-cert-card > i {
  font-size: 2rem;
  color: var(--ss-primary);
  margin-bottom: 16px;
}

.ss-cert-card h3 {
  font-size: 0.9375rem;
  margin-bottom: 6px;
}

.ss-cert-card p {
  font-size: 0.75rem;
  color: var(--ss-text-muted);
  margin-bottom: 12px;
}

/* ---------- Quality Assurance ---------- */
.ss-quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ss-quality-img {
  border-radius: var(--ss-radius-xl);
  overflow: hidden;
  box-shadow: var(--ss-shadow-lg);
}

.ss-quality-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}

.ss-quality-content h2 {
  margin-bottom: 16px;
}

.ss-quality-content > p {
  color: var(--ss-text-muted);
  margin-bottom: 24px;
}

.ss-quality-list {
  margin-bottom: 28px;
}

.ss-quality-list li {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ss-border-light);
}

.ss-quality-list li:last-child {
  border-bottom: none;
}

.ss-quality-list li > i {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  color: var(--ss-success);
  border-radius: 50%;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.ss-quality-list li strong {
  display: block;
  font-family: var(--ss-font-heading);
  font-size: 0.9375rem;
  color: var(--ss-primary);
  margin-bottom: 2px;
}

.ss-quality-list li span {
  font-size: 0.8125rem;
  color: var(--ss-text-muted);
}

/* ---------- Global Export ---------- */
.ss-export {
  background: linear-gradient(135deg, var(--ss-primary) 0%, var(--ss-secondary) 100%);
  color: #fff;
}

.ss-export-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ss-export-content .ss-label {
  color: var(--ss-accent);
}

.ss-export-content h2 {
  color: #fff;
  margin-bottom: 16px;
}

.ss-export-content > p {
  opacity: 0.9;
  margin-bottom: 32px;
}

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

.ss-stat {
  text-align: center;
  padding: 20px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--ss-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ss-stat-num {
  display: block;
  font-family: var(--ss-font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.ss-stat-label {
  font-size: 0.8125rem;
  opacity: 0.8;
}

.ss-export-map {
  border-radius: var(--ss-radius-xl);
  overflow: hidden;
  box-shadow: var(--ss-shadow-xl);
}

.ss-export-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

/* ---------- Reviews ---------- */
.ss-reviews-swiper {
  padding-bottom: 48px !important;
}

.ss-review-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--ss-radius-lg);
  border: 1px solid var(--ss-border);
  height: 100%;
  transition: all var(--ss-transition);
}

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

.ss-review-stars {
  color: #FBBF24;
  font-size: 0.875rem;
  margin-bottom: 16px;
  display: flex;
  gap: 2px;
}

.ss-review-card > p {
  font-size: 0.9375rem;
  color: var(--ss-text);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
}

.ss-review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ss-review-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.ss-review-author strong {
  display: block;
  font-family: var(--ss-font-heading);
  font-size: 0.9375rem;
  color: var(--ss-primary);
}

.ss-review-author span {
  font-size: 0.8125rem;
  color: var(--ss-text-muted);
}

.ss-reviews-swiper .swiper-pagination-bullet-active {
  background: var(--ss-primary);
}

/* ---------- Brands ---------- */
.ss-brands {
  padding: 48px 0;
  background: #fff;
  border-top: 1px solid var(--ss-border);
  border-bottom: 1px solid var(--ss-border);
}

.ss-brands-track {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 48px;
  margin-bottom: 16px;
}

.ss-brand-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ss-font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ss-text-muted);
  opacity: 0.6;
  transition: all var(--ss-transition);
}

.ss-brand-item i {
  font-size: 1.25rem;
  color: var(--ss-primary);
}

.ss-brand-item:hover {
  opacity: 1;
  color: var(--ss-primary);
}

.ss-brands-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--ss-text-muted);
  margin: 0;
}

/* ---------- Newsletter ---------- */
.ss-newsletter {
  padding: 80px 0;
  background: #F7F9FC;
}

.ss-newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 48px 56px;
}

.ss-newsletter-text h2 {
  margin-bottom: 10px;
}

.ss-newsletter-text p {
  color: var(--ss-text-muted);
  margin: 0;
  max-width: 440px;
}

.ss-newsletter-form {
  display: flex;
  gap: 12px;
  flex: 1;
  max-width: 480px;
}

.ss-newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid var(--ss-border);
  border-radius: var(--ss-radius-sm);
  font-size: 0.9375rem;
  transition: border-color var(--ss-transition);
  background: #fff;
}

.ss-newsletter-form input:focus {
  outline: none;
  border-color: var(--ss-primary);
  box-shadow: 0 0 0 3px rgba(10, 46, 92, 0.1);
}

/* ---------- Instagram Gallery ---------- */
.ss-insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.ss-insta-item {
  position: relative;
  border-radius: var(--ss-radius-md);
  overflow: hidden;
  aspect-ratio: 1;
}

.ss-insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ss-insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 46, 92, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--ss-transition);
}

.ss-insta-overlay i {
  color: #fff;
  font-size: 1.75rem;
}

.ss-insta-item:hover img {
  transform: scale(1.1);
}

.ss-insta-item:hover .ss-insta-overlay {
  opacity: 1;
}

/* ---------- Footer ---------- */
.ss-footer {
  background: var(--ss-primary);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 64px;
}

.ss-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ss-footer-about p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 16px 0 20px;
  opacity: 0.85;
}

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

.ss-footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: #fff;
  font-size: 0.875rem;
  transition: all var(--ss-transition);
}

.ss-footer-social a:hover {
  background: var(--ss-royal);
  transform: translateY(-2px);
}

.ss-footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.ss-footer-col ul li {
  margin-bottom: 10px;
}

.ss-footer-col ul li a {
  font-size: 0.875rem;
  opacity: 0.8;
  transition: all var(--ss-transition);
}

.ss-footer-col ul li a:hover {
  opacity: 1;
  color: #fff;
  padding-left: 4px;
}

.ss-footer-contact li {
  display: flex;
  gap: 12px;
  font-size: 0.875rem;
  opacity: 0.85;
  margin-bottom: 14px;
}

.ss-footer-contact li i {
  color: var(--ss-accent);
  margin-top: 4px;
  flex-shrink: 0;
}

.ss-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.ss-footer-bottom p {
  font-size: 0.8125rem;
  opacity: 0.7;
  margin: 0;
}

.ss-payment-icons {
  display: flex;
  gap: 16px;
  font-size: 1.5rem;
  opacity: 0.6;
}

/* ---------- Popups ---------- */
.ss-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--ss-transition);
}

.ss-popup.active {
  opacity: 1;
  visibility: visible;
}

.ss-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 46, 92, 0.6);
  backdrop-filter: blur(4px);
}

.ss-popup-box {
  position: relative;
  background: #fff;
  border-radius: var(--ss-radius-lg);
  box-shadow: var(--ss-shadow-xl);
  max-width: 560px;
  width: 100%;
  padding: 32px;
  transform: scale(0.95) translateY(10px);
  transition: transform var(--ss-transition);
  max-height: 90vh;
  overflow-y: auto;
}

.ss-popup.active .ss-popup-box {
  transform: scale(1) translateY(0);
}

.ss-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ss-text-muted);
  transition: all var(--ss-transition);
  z-index: 2;
}

.ss-popup-close:hover {
  background: var(--ss-border-light);
  color: var(--ss-primary);
}

.ss-search-box h3 {
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.ss-search-form {
  display: flex;
  gap: 0;
  border: 2px solid var(--ss-border);
  border-radius: var(--ss-radius-sm);
  overflow: hidden;
  transition: border-color var(--ss-transition);
}

.ss-search-form:focus-within {
  border-color: var(--ss-primary);
}

.ss-search-form input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  font-size: 0.9375rem;
}

.ss-search-form input:focus {
  outline: none;
}

.ss-search-form button {
  padding: 14px 20px;
  background: var(--ss-primary);
  color: #fff;
  transition: background var(--ss-transition);
}

.ss-search-form button:hover {
  background: var(--ss-royal);
}

.ss-search-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.ss-search-tags span {
  font-size: 0.8125rem;
  color: var(--ss-text-muted);
}

.ss-search-tags a {
  padding: 6px 14px;
  background: var(--ss-border-light);
  border-radius: 50px;
  font-size: 0.8125rem;
  color: var(--ss-text);
  transition: all var(--ss-transition);
}

.ss-search-tags a:hover {
  background: var(--ss-primary);
  color: #fff;
}

/* Quick View */
.ss-quickview-box {
  max-width: 900px;
  padding: 0;
  overflow: hidden;
}

.ss-quickview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ss-quickview-img {
  background: #F7F9FC;
}

.ss-quickview-img img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.ss-quickview-info {
  padding: 32px;
}

.ss-quickview-info h2 {
  font-size: 1.375rem;
  margin-bottom: 12px;
}

.ss-qv-specs {
  margin: 16px 0 24px;
}

.ss-qv-specs li {
  padding: 8px 0;
  font-size: 0.875rem;
  color: var(--ss-text-muted);
  border-bottom: 1px solid var(--ss-border-light);
}

.ss-qv-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ss-qv-actions .ss-btn-outline {
  color: var(--ss-primary);
  border-color: var(--ss-primary);
}

.ss-qv-actions .ss-btn-outline:hover {
  background: var(--ss-primary);
  color: #fff;
}

/* ---------- Cart Drawer ---------- */
.ss-drawer {
  position: fixed;
  inset: 0;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--ss-transition);
}

.ss-drawer.active {
  opacity: 1;
  visibility: visible;
}

.ss-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 46, 92, 0.5);
}

.ss-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--ss-transition);
  box-shadow: var(--ss-shadow-xl);
}

.ss-drawer.active .ss-drawer-panel {
  transform: translateX(0);
}

.ss-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--ss-border);
}

.ss-drawer-head h3 {
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ss-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.ss-cart-empty {
  text-align: center;
  padding: 48px 24px;
}

.ss-cart-empty i {
  font-size: 3rem;
  color: var(--ss-border);
  margin-bottom: 16px;
}

.ss-cart-empty p {
  color: var(--ss-text-muted);
  margin-bottom: 20px;
}

.ss-drawer-foot {
  padding: 20px 24px;
  border-top: 1px solid var(--ss-border);
}

.ss-cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 1rem;
}

.ss-cart-subtotal strong {
  font-family: var(--ss-font-heading);
  font-size: 1.25rem;
  color: var(--ss-primary);
}

.ss-drawer-foot .ss-btn {
  width: 100%;
  margin-bottom: 10px;
}

.ss-drawer-foot .ss-btn-outline {
  color: var(--ss-primary);
  border-color: var(--ss-primary);
}

.ss-drawer-foot .ss-btn-outline:hover {
  background: var(--ss-primary);
  color: #fff;
}

/* ---------- Back To Top ---------- */
.ss-back-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 46px;
  height: 46px;
  background: var(--ss-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  box-shadow: var(--ss-shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--ss-transition);
  z-index: 999;
}

.ss-back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ss-back-top:hover {
  background: var(--ss-royal);
  transform: translateY(-3px);
}

/* ---------- WhatsApp ---------- */
.ss-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--ss-transition);
}

.ss-whatsapp:hover {
  transform: scale(1.08);
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.ss-whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: ssWhatsPulse 2s ease-in-out infinite;
  opacity: 0.4;
}

@keyframes ssWhatsPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.15); opacity: 0; }
}

/* ---------- Utility ---------- */
.w-100 { width: 100%; }

.ss-btn-primary.w-100,
.ss-btn-outline.w-100 {
  display: flex;
}

/* Section buttons on light backgrounds */
.ss-section .ss-btn-outline,
.ss-quality-content .ss-btn-outline,
.ss-cart-empty .ss-btn-outline {
  color: var(--ss-primary);
  border-color: var(--ss-primary);
  background: transparent;
}

.ss-section .ss-btn-outline:hover,
.ss-quality-content .ss-btn-outline:hover,
.ss-cart-empty .ss-btn-outline:hover {
  background: var(--ss-primary);
  color: #fff;
}

/* ---------- Star Ratings (JS rendered) ---------- */
.ss-stars-filled::before {
  content: none;
}

.ss-stars-filled {
  display: inline-flex;
  gap: 2px;
  color: #FBBF24;
  font-size: 0.75rem;
}

.ss-pa-btn.active {
  background: var(--ss-primary);
  color: #fff;
}

/* ---------- Toast Notification ---------- */
.ss-toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ss-primary);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--ss-radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--ss-shadow-lg);
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: all var(--ss-transition);
  max-width: 90vw;
  text-align: center;
}

.ss-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ---------- Cart List Items ---------- */
.ss-cart-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ss-cart-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ss-border-light);
  position: relative;
}

.ss-cart-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--ss-radius-sm);
  flex-shrink: 0;
  background: var(--ss-border-light);
}

.ss-cart-item-info {
  flex: 1;
  min-width: 0;
  padding-right: 24px;
}

.ss-cart-item-info h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.35;
}

.ss-cart-item-sku {
  font-size: 0.75rem;
  color: var(--ss-text-muted);
}

.ss-cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.ss-cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--ss-border);
  border-radius: var(--ss-radius-sm);
}

.ss-cart-qty button {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--ss-text);
  transition: background var(--ss-transition);
}

.ss-cart-qty button:hover {
  background: var(--ss-border-light);
}

.ss-cart-qty span {
  font-size: 0.875rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.ss-cart-remove {
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ss-text-muted);
  border-radius: 50%;
  transition: all var(--ss-transition);
}

.ss-cart-remove:hover {
  background: rgba(220, 38, 38, 0.1);
  color: var(--ss-danger);
}

/* ---------- Form Validation ---------- */
.is-invalid {
  border-color: var(--ss-danger) !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12) !important;
}

.form-success-msg {
  padding: 12px 16px;
  background: rgba(5, 150, 105, 0.1);
  color: var(--ss-success);
  border-radius: var(--ss-radius-sm);
  margin-top: 12px;
  font-size: 0.875rem;
}

/* ---------- About Page ---------- */
.ss-page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a2e5c 0%, #0c4a6e 45%, #0e7490 100%);
}

.ss-page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ss-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 46, 92, 0.82) 0%, rgba(10, 46, 92, 0.55) 50%, rgba(14, 116, 144, 0.35) 100%);
  pointer-events: none;
}

.ss-page-hero-container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.ss-page-hero-content {
  max-width: 720px;
}

.ss-page-hero-subtitle {
  color: #38bdf8 !important;
}

.ss-about-section {
  padding: 72px 0 96px;
  background: #fff;
}

.ss-about-content {
  max-width: 860px;
  margin: 0 auto;
}

.ss-about-head {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--ss-border-light);
}

.ss-about-head h1 {
  font-family: var(--ss-font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--ss-primary);
  margin-top: 8px;
  margin-bottom: 0;
}

.ss-about-content h2 {
  font-family: var(--ss-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ss-primary);
  margin-top: 36px;
  margin-bottom: 12px;
}

.ss-about-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ss-text);
  margin-bottom: 0;
}

.ss-about-closing {
  margin-top: 36px !important;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(10, 46, 92, 0.04), rgba(14, 116, 144, 0.06));
  border-left: 4px solid var(--ss-secondary);
  border-radius: 0 var(--ss-radius-sm) var(--ss-radius-sm) 0;
  font-weight: 500;
  line-height: 1.9 !important;
}

.ss-about-img {
  margin-top: 48px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 40%;
  border-radius: var(--ss-radius);
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(10, 46, 92, 0.12);
}

.ss-about-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ---------- Contact Page ---------- */
.ss-page-hero--contact .ss-page-hero-overlay {
  background: linear-gradient(90deg, rgba(10, 46, 92, 0.85) 0%, rgba(14, 116, 144, 0.5) 100%);
}

.ss-contact-section {
  position: relative;
  padding: 80px 0 72px;
  background: linear-gradient(160deg, #f0f6fc 0%, #fff 45%, #f8fafc 100%);
  overflow: hidden;
  perspective: 1400px;
}

.ss-contact-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ss-contact-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  animation: ssContactFloat 8s ease-in-out infinite;
}

.ss-contact-shape--1 {
  width: 320px;
  height: 320px;
  background: var(--ss-secondary);
  top: -80px;
  right: -60px;
  animation-delay: 0s;
}

.ss-contact-shape--2 {
  width: 220px;
  height: 220px;
  background: var(--ss-primary);
  bottom: 10%;
  left: -40px;
  animation-delay: 2s;
}

.ss-contact-shape--3 {
  width: 140px;
  height: 140px;
  background: var(--ss-accent);
  top: 40%;
  right: 8%;
  animation-delay: 4s;
}

.ss-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.ss-contact-info,
.ss-contact-form-wrap {
  transform-style: preserve-3d;
  transition: transform 0.35s ease;
  will-change: transform;
}

.ss-contact-info-head {
  margin-bottom: 28px;
}

.ss-contact-info-head .ss-label {
  display: block;
  margin-bottom: 8px;
}

.ss-contact-info-head h2 {
  font-family: var(--ss-font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--ss-primary);
  margin-bottom: 10px;
}

.ss-contact-info-head p {
  color: var(--ss-text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

.ss-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ss-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: #fff;
  border-radius: var(--ss-radius);
  border: 1px solid rgba(10, 46, 92, 0.08);
  box-shadow:
    0 4px 0 rgba(10, 46, 92, 0.06),
    0 12px 32px rgba(10, 46, 92, 0.08),
    0 1px 0 #fff inset;
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
  animation: ss3dCardIn 0.7s ease both;
}

.ss-contact-card:hover {
  transform: translateY(-6px) translateZ(20px) rotateX(2deg);
  box-shadow:
    0 8px 0 rgba(10, 46, 92, 0.05),
    0 24px 48px rgba(10, 46, 92, 0.14),
    0 1px 0 #fff inset;
}

.ss-contact-card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ss-primary), var(--ss-secondary));
  color: #fff;
  border-radius: 14px;
  font-size: 1.25rem;
  box-shadow: 0 8px 20px rgba(10, 46, 92, 0.25);
  transform: translateZ(16px);
  transition: transform 0.35s ease;
}

.ss-contact-card:hover .ss-contact-card-icon {
  transform: translateZ(28px) scale(1.08);
}

.ss-contact-card-body strong {
  display: block;
  font-family: var(--ss-font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ss-text-muted);
  margin-bottom: 6px;
}

.ss-contact-card-body a,
.ss-contact-card-body span {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ss-primary);
  line-height: 1.6;
  transition: color var(--ss-transition);
}

.ss-contact-card-body a:hover {
  color: var(--ss-secondary);
}

.ss-contact-card-body a + a {
  margin-top: 4px;
}

.ss-contact-form-panel {
  height: 100%;
  padding: 36px 32px;
  background: #fff;
  border-radius: var(--ss-radius);
  border: 1px solid rgba(10, 46, 92, 0.08);
  box-shadow:
    0 6px 0 rgba(10, 46, 92, 0.06),
    0 20px 56px rgba(10, 46, 92, 0.12),
    0 1px 0 #fff inset;
  transform-style: preserve-3d;
}

.ss-contact-form-panel h3 {
  font-family: var(--ss-font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--ss-primary);
  margin-bottom: 6px;
}

.ss-contact-form-panel > p {
  font-size: 0.875rem;
  color: var(--ss-text-muted);
  margin-bottom: 28px;
}

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

.ss-contact-form .ss-field {
  margin-bottom: 18px;
  transform-style: preserve-3d;
  transition: transform 0.35s ease;
}

.ss-contact-form .ss-field.ss-field-focus {
  transform: translateZ(12px);
}

.ss-contact-form label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ss-primary);
  margin-bottom: 8px;
}

.ss-contact-form input,
.ss-contact-form textarea,
.ss-contact-form select {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--ss-font-body);
  font-size: 0.9375rem;
  color: var(--ss-text);
  background: #f8fafc;
  border: 2px solid var(--ss-border-light);
  border-radius: var(--ss-radius-sm);
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 2px 0 rgba(10, 46, 92, 0.04);
}

.ss-contact-form input:focus,
.ss-contact-form textarea:focus,
.ss-contact-form select:focus {
  outline: none;
  background: #fff;
  border-color: var(--ss-secondary);
  box-shadow:
    0 4px 0 rgba(14, 116, 144, 0.12),
    0 8px 24px rgba(10, 46, 92, 0.08);
  transform: translateY(-2px);
}

.ss-contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.ss-contact-form .ss-btn-primary {
  width: 100%;
  padding: 15px 24px;
  font-size: 1rem;
  margin-top: 8px;
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 0 rgba(10, 46, 92, 0.2), 0 12px 28px rgba(10, 46, 92, 0.18);
}

.ss-contact-form .ss-btn-primary:hover {
  transform: translateY(-3px) translateZ(8px);
  box-shadow: 0 9px 0 rgba(10, 46, 92, 0.15), 0 18px 36px rgba(10, 46, 92, 0.22);
}

.ss-contact-form .ss-btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 3px 0 rgba(10, 46, 92, 0.2);
}

.ss-contact-map-section {
  position: relative;
  padding: 0 0 80px;
  background: #fff;
}

.ss-contact-map-wrap {
  position: relative;
  border-radius: var(--ss-radius);
  overflow: hidden;
  box-shadow:
    0 8px 0 rgba(10, 46, 92, 0.06),
    0 24px 56px rgba(10, 46, 92, 0.14);
  transform-style: preserve-3d;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  animation: ss3dMapIn 0.9s ease 0.3s both;
}

.ss-contact-map-wrap:hover {
  transform: translateY(-4px) rotateX(1deg);
  box-shadow:
    0 12px 0 rgba(10, 46, 92, 0.04),
    0 32px 64px rgba(10, 46, 92, 0.16);
}

.ss-contact-map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.ss-contact-map-head {
  text-align: center;
  margin-bottom: 32px;
}

.ss-contact-map-head h2 {
  font-family: var(--ss-font-heading);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--ss-primary);
  margin-top: 8px;
}

/* ---------- Categories Page ---------- */
.ss-page-hero--categories .ss-page-hero-overlay {
  background: linear-gradient(90deg, rgba(10, 46, 92, 0.88) 0%, rgba(10, 46, 92, 0.6) 60%, rgba(14, 116, 144, 0.4) 100%);
}

.ss-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.75);
}

.ss-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--ss-transition);
}

.ss-breadcrumb a:hover {
  color: #38bdf8;
}

.ss-breadcrumb i {
  font-size: 0.5625rem;
  opacity: 0.6;
}

.ss-breadcrumb span {
  color: #38bdf8;
}

.ss-categories-page {
  padding: 48px 0 80px;
  background: var(--ss-border-light);
}

.ss-categories-layout {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.ss-categories-layout .ss-categories-sidebar {
  width: 340px;
  min-height: auto;
  border-radius: var(--ss-radius-lg);
  border: 1px solid var(--ss-border);
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.ss-categories-main {
  flex: 1;
  min-width: 0;
}

.ss-cat-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.ss-cat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.ss-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ss-text);
  background: #fff;
  border: 1px solid var(--ss-border);
  border-radius: 50px;
  transition: all var(--ss-transition);
  white-space: nowrap;
}

.ss-cat-pill:hover,
.ss-cat-pill.active {
  background: var(--ss-primary);
  color: #fff;
  border-color: var(--ss-primary);
}

.ss-cat-pill-count {
  opacity: 0.7;
  font-size: 0.75rem;
}

.ss-cat-count {
  font-size: 0.875rem;
  color: var(--ss-text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.ss-maincat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ss-maincat-card {
  position: relative;
  border-radius: var(--ss-radius-lg);
  overflow: hidden;
  border: 1px solid var(--ss-border);
  background: #fff;
  transition: all var(--ss-transition);
  min-height: 220px;
}

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

.ss-maincat-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.ss-maincat-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ss-maincat-info i {
  color: var(--ss-royal);
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.ss-maincat-info h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ss-primary);
}

.ss-maincat-info span {
  font-size: 0.8125rem;
  color: var(--ss-text-muted);
}

.ss-subcat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ss-subcat-card {
  background: #fff;
  border: 1px solid var(--ss-border);
  border-radius: var(--ss-radius);
  overflow: hidden;
  transition: all var(--ss-transition);
}

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

.ss-subcat-img {
  aspect-ratio: 4/3;
  background: #F7F9FC;
  overflow: hidden;
}

.ss-subcat-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.4s ease;
}

.ss-subcat-card:hover .ss-subcat-img img {
  transform: scale(1.05);
}

.ss-subcat-info {
  padding: 14px 16px;
  border-top: 1px solid var(--ss-border-light);
}

.ss-subcat-info h3 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ss-primary);
  line-height: 1.35;
  margin-bottom: 4px;
}

.ss-subcat-info span {
  font-size: 0.75rem;
  color: var(--ss-text-muted);
}

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

.ss-cat-product {
  background: #fff;
  border: 1px solid var(--ss-border);
  border-radius: var(--ss-radius-lg);
  overflow: hidden;
  transition: all var(--ss-transition);
}

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

.ss-cat-product-img {
  aspect-ratio: 1;
  background: #F7F9FC;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
}

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

.ss-cat-product:hover .ss-cat-product-img img {
  transform: scale(1.06);
}

.ss-cat-product-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ss-cat-product-article {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ss-royal);
  font-family: monospace;
  letter-spacing: 0.5px;
}

.ss-cat-product-body h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ss-primary);
  line-height: 1.35;
}

.ss-cat-product-sub {
  font-size: 0.6875rem;
  color: var(--ss-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ss-btn-sm {
  padding: 8px 14px;
  font-size: 0.75rem;
  margin-top: 4px;
}

.ss-cat-empty-wrap {
  display: flex;
  justify-content: center;
}

.ss-cat-empty {
  text-align: center;
  padding: 60px 40px;
  background: #fff;
  border-radius: var(--ss-radius-lg);
  border: 1px dashed var(--ss-border);
  max-width: 480px;
}

.ss-cat-empty i {
  font-size: 3rem;
  color: var(--ss-border);
  margin-bottom: 16px;
}

.ss-cat-empty h3 {
  font-size: 1.125rem;
  color: var(--ss-primary);
  margin-bottom: 8px;
}

.ss-cat-empty p {
  font-size: 0.875rem;
  color: var(--ss-text-muted);
  line-height: 1.6;
}

.ss-cat-empty code {
  font-size: 0.75rem;
  background: var(--ss-border-light);
  padding: 2px 6px;
  border-radius: 4px;
}

.ss-sidebar-sub-panel li a.active {
  color: var(--ss-royal);
  font-weight: 600;
}

.ss-footer-col ol, ul {
  padding-left: 0 !important; 
}