/* ==========================================================================
   KOCANA DESIGN SYSTEM
   Premium seafood export brand — ISO 22000 / OCOP 4 sao
   Palette: Deep Ocean Navy · Ocean Blue · White · Gold
   ========================================================================== */

/* ── Google Font ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

/* ── CMS Compatibility Overrides ─────────────────────────────────────────────
   These must come before design tokens so they win over CMS defaults.
   CMS (Porto/SuperWeb) sets html{font-size:10px} in style.css which breaks
   all rem-based values. Override to 16px so 1rem = 16px as intended.
   ─────────────────────────────────────────────────────────────────────────── */
html { font-size: 16px !important; }

/* ── Hero: Porto flexslider.css makes .section-slider>.flexslider position:absolute
   which takes it out of flow → parent collapses to 0px height.
   min-height alone is NOT enough — must use height. ── */
.kc-hero,
.kc-hero.section-slider {
    height: 85vh !important;
    min-height: 480px !important;
    overflow: hidden !important;
    position: relative !important;
}
.kc-hero .flexslider,
.kc-hero.section-slider .flexslider {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: 100% !important;
    width: 100% !important;
}

/* ── giuseart-nav: CMS custom.css sets left:13px; our right:20px together
   stretch it full-viewport-width on position:fixed. Force left:auto. ── */
.giuseart-nav {
    left: auto !important;
    right: 20px !important;
    bottom: 50px !important;
    width: auto !important;
    max-width: 60px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}
.giuseart-nav ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    width: auto !important;
}
.giuseart-nav ul li {
    width: auto !important;
    margin: 0 !important;
}
.giuseart-nav ul li a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: var(--kc-navy) !important;
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.25) !important;
    text-decoration: none !important;
    font-size: 0 !important; /* hide text labels (Zalo, Gọi ngay, etc.) */
    overflow: hidden !important;
}
.giuseart-nav ul li a i {
    font-size: 18px !important;
    line-height: 1 !important;
}

/* ── Design Tokens ── */
:root {
  --kc-navy:        #0B3D59;
  --kc-ocean:       #1A7FA0;
  --kc-sky:         #00B4D8;
  --kc-gold:        #C9963F;
  --kc-green:       #2D6A4F;
  --kc-white:       #FFFFFF;
  --kc-surface:     #F0F7FA;
  --kc-border:      #D4E6EF;
  --kc-dark:        #0A1628;
  --kc-text:        #334155;
  --kc-muted:       #64748B;

  --kc-radius:      8px;
  --kc-radius-lg:   16px;
  --kc-shadow-sm:   0 2px 8px rgba(11,61,89,.08);
  --kc-shadow:      0 6px 24px rgba(11,61,89,.12);
  --kc-shadow-lg:   0 16px 48px rgba(11,61,89,.18);

  --kc-transition:  all .25s ease;

  --font-body:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display:   'Playfair Display', Georgia, serif;
}

/* ── Reset / Base ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  color: var(--kc-text);
  background: var(--kc-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: var(--kc-ocean); text-decoration: none; transition: var(--kc-transition); }
a:hover { color: var(--kc-navy); text-decoration: none; }

/* ── Typography Scale ── */
.kc-display { font-family: var(--font-display); }

h1, .kc-h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; line-height: 1.2; color: var(--kc-dark); }
h2, .kc-h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; line-height: 1.3; color: var(--kc-dark); }
h3, .kc-h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); font-weight: 600; line-height: 1.4; }

.kc-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--kc-ocean);
}

/* ── Preloader ── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--kc-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
body.loaded #preloader { opacity: 0; visibility: hidden; pointer-events: none; }

/* ══════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════ */
header {
  position: relative;
  background: var(--kc-white);
  border-bottom: none;
  box-shadow: none;
}

/* Top bar */
.kc-topbar {
  background: var(--kc-navy);
  padding: 8px 0;
  font-size: .8125rem;
  color: rgba(255,255,255,.8);
}
.kc-topbar a { color: rgba(255,255,255,.85); }
.kc-topbar a:hover { color: var(--kc-white); }
.kc-topbar .kc-topbar-left { display: flex; align-items: center; gap: 20px; }
.kc-topbar .kc-topbar-right { display: flex; align-items: center; gap: 12px; justify-content: flex-end; }
.kc-topbar-item { display: flex; align-items: center; gap: 6px; }
.kc-topbar-item i { font-size: .75rem; color: var(--kc-sky); }

/* Logo bar */
.kc-logobar {
  padding: 16px 0;
  border-bottom: 1px solid var(--kc-border);
  background: var(--kc-white);
}
.kc-logobar .kc-logo img { height: 60px; width: auto; object-fit: contain; }
.kc-logobar .kc-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--kc-navy);
  line-height: 1.1;
}
.kc-logobar .kc-logo-tagline {
  font-size: .6875rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--kc-ocean);
}

/* Search bar in header */
.kc-header-search .kc-search-wrap {
  display: flex; align-items: center;
  border: 1.5px solid var(--kc-border);
  border-radius: 50px;
  overflow: hidden;
  background: var(--kc-surface);
  transition: var(--kc-transition);
}
.kc-header-search .kc-search-wrap:focus-within {
  border-color: var(--kc-ocean);
  box-shadow: 0 0 0 3px rgba(26,127,160,.12);
}
.kc-header-search input {
  border: none;
  background: transparent;
  padding: 8px 14px;
  font-size: .875rem;
  flex: 1;
  outline: none;
}
.kc-header-search button {
  background: var(--kc-ocean);
  color: var(--kc-white);
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  font-size: .875rem;
  transition: var(--kc-transition);
}
.kc-header-search button:hover { background: var(--kc-navy); }

/* Main navigation */
.kc-navbar {
  background: var(--kc-navy);
  position: relative;
  z-index: 100;
}
.kc-navbar.sticky-ashe {
  position: fixed;
  top: 0; left: 0; right: 0;
  animation: kc-slideDown .3s ease;
  box-shadow: var(--kc-shadow);
}
@keyframes kc-slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.kc-navbar .navbar-nav > li > a {
  color: rgba(255,255,255,.9) !important;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .02em;
  padding: 16px 18px !important;
  text-transform: uppercase;
  transition: var(--kc-transition);
}
.kc-navbar .navbar-nav > li > a:hover,
.kc-navbar .navbar-nav > li.active > a {
  color: var(--kc-white) !important;
  background: rgba(0,180,216,.15) !important;
}

.kc-navbar .dropdown-menu {
  background: var(--kc-white);
  border: none;
  border-top: 3px solid var(--kc-sky);
  border-radius: 0 0 var(--kc-radius) var(--kc-radius);
  box-shadow: var(--kc-shadow);
  padding: 8px 0;
  min-width: 220px;
}
.kc-navbar .dropdown-menu li a {
  color: var(--kc-text) !important;
  font-size: .875rem;
  padding: 10px 20px !important;
  display: block;
  background: none !important;
  transition: var(--kc-transition);
}
.kc-navbar .dropdown-menu li a:hover {
  color: var(--kc-navy) !important;
  background: var(--kc-surface) !important;
  padding-left: 26px !important;
}

/* Mobile nav toggle */
.kc-mobile-toggle {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.3);
  color: var(--kc-white);
  padding: 8px 14px;
  border-radius: var(--kc-radius);
  font-size: .875rem;
  cursor: pointer;
  display: flex; align-items: center; gap: 8px;
}

/* Slide-left mobile menu */
.c-menu--slide-left {
  position: fixed;
  top: 0; left: -300px;
  width: 300px; height: 100%;
  background: var(--kc-dark);
  z-index: 1000;
  transition: left .3s ease;
  overflow-y: auto;
}
.c-menu--slide-left.active { left: 0; }
.backdrop__body-backdrop___1rvky {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 999;
  display: none;
  backdrop-filter: blur(2px);
}
.backdrop__body-backdrop___1rvky.active { display: block; }

.la-title-nav-items {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--kc-sky);
  padding: 20px 20px 8px;
}
.la-nav-list-items { list-style: none; margin: 0; padding: 0 0 12px; }
.la-nav-list-items li a {
  display: block;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: var(--kc-transition);
}
.la-nav-list-items li a:hover { color: var(--kc-sky); background: rgba(255,255,255,.04); }
.c-menu__close { width: 32px; cursor: pointer; margin: 16px; display: block; }
.la-nav-top-login { border-bottom: 1px solid rgba(255,255,255,.1); }

/* ══════════════════════════════════════════════════════════
   HERO SLIDER
   ══════════════════════════════════════════════════════════ */
.kc-hero {
  position: relative;
  overflow: hidden;
  background: var(--kc-dark);
}
.kc-hero .kc-hero-slide {
  position: relative;
  height: 88vh;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.kc-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,22,40,.85) 0%,
    rgba(11,61,89,.6) 55%,
    rgba(0,0,0,.2) 100%
  );
}
.kc-hero-content {
  position: relative; z-index: 2;
  max-width: 640px;
  padding: 0 24px;
}
.kc-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,180,216,.15);
  border: 1px solid rgba(0,180,216,.35);
  border-radius: 50px;
  padding: 6px 16px;
  color: var(--kc-sky);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.kc-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 700;
  color: var(--kc-white);
  line-height: 1.15;
  margin: 0 0 20px;
}
.kc-hero-subtitle {
  font-size: clamp(.9375rem, 2vw, 1.125rem);
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin-bottom: 36px;
}
.kc-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* FlexSlider overrides for hero */
.section-slider .flexslider { margin: 0; border: none; border-radius: 0; box-shadow: none; }
.section-slider .flex-control-nav { bottom: 24px; z-index: 10; }
.section-slider .flex-control-nav li a {
  background: rgba(255,255,255,.4);
  box-shadow: none;
  width: 10px; height: 10px;
}
.section-slider .flex-control-nav li a.flex-active { background: var(--kc-sky); }
.section-slider .flex-direction-nav a {
  opacity: .6;
  text-shadow: none;
  color: var(--kc-white);
}
.section-slider .flex-direction-nav a:hover { opacity: 1; }

/* ══════════════════════════════════════════════════════════
   CERTIFICATION TRUST BAR
   ══════════════════════════════════════════════════════════ */
.kc-certbar {
  background: var(--kc-dark);
  padding: 24px 0;
  border-top: 3px solid var(--kc-sky);
}
.kc-certbar-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.kc-cert-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 32px;
  border-right: 1px solid rgba(255,255,255,.12);
  flex: 1;
  min-width: 200px;
  justify-content: center;
}
.kc-cert-item:last-child { border-right: none; }
.kc-cert-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201,150,63,.15);
  border: 1.5px solid rgba(201,150,63,.35);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--kc-gold);
  font-size: 1.1rem;
}
.kc-cert-text {}
.kc-cert-name {
  font-size: .8125rem;
  font-weight: 700;
  color: var(--kc-white);
  letter-spacing: .03em;
  display: block;
}
.kc-cert-sub {
  font-size: .6875rem;
  color: rgba(255,255,255,.5);
  display: block;
}

/* ══════════════════════════════════════════════════════════
   SECTION UTILITIES
   ══════════════════════════════════════════════════════════ */
.kc-section { padding: 80px 0; }
.kc-section-sm { padding: 48px 0; }
.kc-section-lg { padding: 100px 0; }
.kc-section--surface { background: var(--kc-surface); }
.kc-section--dark { background: var(--kc-dark); }
.kc-section--navy { background: var(--kc-navy); }

.kc-section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.kc-section-header .kc-label { margin-bottom: 12px; display: block; }
.kc-section-header h2 { margin: 0 0 16px; }
.kc-section-header p { color: var(--kc-muted); font-size: 1rem; line-height: 1.7; margin: 0; }

.kc-divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--kc-sky), var(--kc-ocean));
  border-radius: 2px;
  margin: 16px auto 0;
}
.kc-divider--left { margin-left: 0; }

/* ══════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════ */
.kc-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--kc-radius);
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--kc-transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.kc-btn-primary {
  background: linear-gradient(135deg, var(--kc-ocean), var(--kc-sky));
  color: var(--kc-white) !important;
  box-shadow: 0 4px 16px rgba(26,127,160,.35);
}
.kc-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,127,160,.45);
  color: var(--kc-white) !important;
}
.kc-btn-outline {
  background: transparent;
  color: var(--kc-white) !important;
  border-color: rgba(255,255,255,.5);
}
.kc-btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--kc-white);
  color: var(--kc-white) !important;
}
.kc-btn-dark {
  background: var(--kc-navy);
  color: var(--kc-white) !important;
}
.kc-btn-dark:hover {
  background: var(--kc-dark);
  transform: translateY(-1px);
}
.kc-btn-sm { padding: 10px 20px; font-size: .875rem; }
.kc-btn-lg { padding: 18px 36px; font-size: 1.0625rem; }

/* ══════════════════════════════════════════════════════════
   ABOUT SECTION
   ══════════════════════════════════════════════════════════ */
.kc-about { overflow: hidden; }
.kc-about-img-wrap {
  position: relative;
  border-radius: var(--kc-radius-lg);
  overflow: hidden;
  box-shadow: var(--kc-shadow-lg);
}
.kc-about-img-wrap img { width: 100%; height: 480px; object-fit: cover; display: block; }
.kc-about-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--kc-navy);
  color: var(--kc-white);
  border-radius: var(--kc-radius);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--kc-shadow);
}
.kc-about-badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--kc-sky);
  line-height: 1;
  display: block;
}
.kc-about-badge-txt { font-size: .75rem; color: rgba(255,255,255,.7); display: block; margin-top: 4px; }

.kc-about-content { padding-left: 48px; }
.kc-about-content p { color: var(--kc-text); line-height: 1.8; margin-bottom: 20px; }

.kc-cert-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.kc-cert-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--kc-surface);
  border: 1.5px solid var(--kc-border);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--kc-navy);
}
.kc-cert-pill i { color: var(--kc-gold); font-size: .9rem; }

/* ══════════════════════════════════════════════════════════
   FEATURE CARDS (Why Kocana)
   ══════════════════════════════════════════════════════════ */
.kc-feature-card {
  background: var(--kc-white);
  border: 1.5px solid var(--kc-border);
  border-radius: var(--kc-radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--kc-transition);
  height: 100%;
}
.kc-feature-card:hover {
  border-color: var(--kc-sky);
  box-shadow: var(--kc-shadow);
  transform: translateY(-4px);
}
.kc-feature-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(26,127,160,.1), rgba(0,180,216,.15));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.75rem;
  color: var(--kc-ocean);
  border: 1.5px solid rgba(26,127,160,.2);
  transition: var(--kc-transition);
}
.kc-feature-card:hover .kc-feature-icon {
  background: linear-gradient(135deg, var(--kc-ocean), var(--kc-sky));
  color: var(--kc-white);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(26,127,160,.3);
}
.kc-feature-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--kc-dark);
  margin: 0 0 12px;
}
.kc-feature-card p { font-size: .9rem; color: var(--kc-muted); line-height: 1.65; margin: 0; }

/* ══════════════════════════════════════════════════════════
   INFO BAR (trust badges)
   ══════════════════════════════════════════════════════════ */
.home-info { background: var(--kc-surface); padding: 48px 0; }
.info-content {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px;
  border-radius: var(--kc-radius);
  transition: var(--kc-transition);
}
.info-content:hover { background: var(--kc-white); box-shadow: var(--kc-shadow-sm); }
.info-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--kc-ocean), var(--kc-sky));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  color: var(--kc-white);
  box-shadow: 0 4px 12px rgba(26,127,160,.3);
}
.info-right h3 {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--kc-navy);
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.info-right p { font-size: .875rem; color: var(--kc-muted); margin: 0; line-height: 1.6; }

/* ══════════════════════════════════════════════════════════
   PRODUCT FEATURED / CATALOG
   ══════════════════════════════════════════════════════════ */
.kc-product-grid { padding: 80px 0; }
.kc-product-grid .kc-section--surface { background: var(--kc-surface); }

/* Product card */
.kc-product-card {
  background: var(--kc-white);
  border-radius: var(--kc-radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--kc-border);
  transition: var(--kc-transition);
  position: relative;
  height: 100%;
  display: flex; flex-direction: column;
}
.kc-product-card:hover {
  border-color: var(--kc-sky);
  box-shadow: var(--kc-shadow);
  transform: translateY(-4px);
}
.kc-product-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--kc-surface);
}
.kc-product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.kc-product-card:hover .kc-product-img img { transform: scale(1.06); }

.kc-product-overlay {
  position: absolute; inset: 0;
  background: rgba(11,61,89,.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--kc-transition);
}
.kc-product-card:hover .kc-product-overlay { opacity: 1; }
.kc-product-overlay a {
  background: var(--kc-white);
  color: var(--kc-navy) !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: .875rem;
  font-weight: 600;
  transform: translateY(12px);
  transition: var(--kc-transition);
}
.kc-product-card:hover .kc-product-overlay a { transform: translateY(0); }

.kc-product-label {
  position: absolute; top: 12px; left: 12px;
  background: var(--kc-ocean);
  color: var(--kc-white);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}
.kc-product-label--sale { background: #e63946; }

.kc-product-body {
  padding: 20px;
  flex: 1; display: flex; flex-direction: column;
}
.kc-product-name {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--kc-dark);
  margin: 0 0 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.kc-product-name a { color: inherit; }
.kc-product-name a:hover { color: var(--kc-ocean); }

.kc-product-price { margin-bottom: 16px; }
.kc-price-current {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--kc-ocean);
}
.kc-price-original {
  font-size: .875rem;
  color: var(--kc-muted);
  text-decoration: line-through;
  margin-left: 8px;
}
.kc-price-contact {
  font-size: .875rem;
  font-weight: 600;
  color: var(--kc-ocean);
}

.kc-product-action { margin-top: auto; }
.kc-product-action a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--kc-surface);
  color: var(--kc-navy) !important;
  border: 1.5px solid var(--kc-border);
  border-radius: var(--kc-radius);
  padding: 10px 16px;
  font-size: .875rem;
  font-weight: 600;
  transition: var(--kc-transition);
  text-align: center;
  width: 100%;
}
.kc-product-action a:hover {
  background: var(--kc-ocean);
  color: var(--kc-white) !important;
  border-color: var(--kc-ocean);
}

/* Carousel product wrapper */
.product-featured { padding: 80px 0; background: var(--kc-surface); }
.product-featured .flexslider { background: transparent; border: none; box-shadow: none; margin: 0; }

/* ── Product catalog sidebar ── */
.kc-sidebar-card {
  background: var(--kc-white);
  border: 1.5px solid var(--kc-border);
  border-radius: var(--kc-radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}
.kc-sidebar-card .kc-sidebar-title {
  background: var(--kc-navy);
  color: var(--kc-white);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 14px 20px;
}
.kc-sidebar-card .navbar-pills { list-style: none; margin: 0; padding: 8px 0; }
.kc-sidebar-card .navbar-pills li a {
  display: block;
  padding: 9px 20px;
  font-size: .875rem;
  color: var(--kc-text);
  border-bottom: 1px solid var(--kc-border);
  transition: var(--kc-transition);
}
.kc-sidebar-card .navbar-pills li a:hover,
.kc-sidebar-card .navbar-pills li.active a {
  color: var(--kc-ocean);
  background: var(--kc-surface);
  padding-left: 26px;
}
.kc-sidebar-card .navbar-pills li:last-child a { border-bottom: none; }

/* Collection filters */
.aside-item.filter-vendor { border-top: 1px solid var(--kc-border); }
.aside-item.filter-vendor .title-head {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--kc-navy);
  padding: 14px 20px 8px;
  margin: 0;
}
.filter-group ul { list-style: none; margin: 0; padding: 8px 20px 16px; }
.filter-item label {
  display: flex; align-items: center; gap: 8px;
  font-size: .875rem;
  cursor: pointer;
  padding: 4px 0;
  color: var(--kc-text);
}
.filter-item input[type=checkbox] { accent-color: var(--kc-ocean); }

/* Collection product grid */
.kc-collection-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--kc-border);
}
.kc-collection-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--kc-dark);
  margin: 0;
}
.open-filters {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: var(--kc-navy);
  color: var(--kc-white) !important;
  border-radius: var(--kc-radius);
  font-size: .875rem;
  cursor: pointer;
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════
   STATISTICS
   ══════════════════════════════════════════════════════════ */
#home-statistics {
  background: linear-gradient(135deg, var(--kc-navy) 0%, var(--kc-dark) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
#home-statistics::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(0,180,216,.06);
  pointer-events: none;
}
.counter-box-simple { text-align: center; padding: 20px; }
.counter-box-simple .counter,
.counter-box-simple .text-l {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--kc-sky);
  line-height: 1;
}
.hau-stastic-border {
  width: 40px; height: 3px;
  background: linear-gradient(90deg, var(--kc-sky), transparent);
  border-radius: 2px;
  margin: 12px auto;
}
.hau-statistic-text {
  font-size: .9375rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   CONTACT / PROMO SECTION
   ══════════════════════════════════════════════════════════ */
.image-banner {
  background: linear-gradient(135deg, var(--kc-ocean) 0%, var(--kc-navy) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.image-banner::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}
.hcontact-wrapper {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--kc-radius-lg);
  padding: 48px 40px;
}
.hcontact-wrapper h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--kc-white);
  margin: 0 0 12px;
}
.hcontact-desc { color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 28px; font-size: .9375rem; }
.hcontact-form .input-full {
  width: 100%;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--kc-radius);
  padding: 12px 16px;
  color: var(--kc-white);
  font-size: .9rem;
  margin-bottom: 12px;
  transition: var(--kc-transition);
}
.hcontact-form .input-full::placeholder { color: rgba(255,255,255,.5); }
.hcontact-form .input-full:focus {
  outline: none;
  border-color: var(--kc-sky);
  background: rgba(255,255,255,.15);
}
.hcontact-form textarea.input-full { rows: 4; resize: vertical; min-height: 100px; }
.hcontact-form .btn {
  background: var(--kc-white);
  color: var(--kc-navy) !important;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: var(--kc-radius);
  border: none;
  cursor: pointer;
  font-size: .9375rem;
  transition: var(--kc-transition);
}
.hcontact-form .btn:hover {
  background: var(--kc-sky);
  color: var(--kc-white) !important;
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════════
   BREADCRUMB
   ══════════════════════════════════════════════════════════ */
.bread-crumb { background: var(--kc-surface); padding: 14px 0; border-bottom: 1px solid var(--kc-border); }
.breadcrumb { background: transparent; margin: 0; padding: 0; font-size: .875rem; }
.breadcrumb > li + li::before { content: '›'; color: var(--kc-muted); padding: 0 8px; }
.breadcrumb li a { color: var(--kc-ocean); }
.breadcrumb li strong { color: var(--kc-text); font-weight: 500; }

/* ══════════════════════════════════════════════════════════
   NEWS / BLOG
   ══════════════════════════════════════════════════════════ */
.blog-content { padding: 80px 0; }
.kc-article-card {
  background: var(--kc-white);
  border: 1.5px solid var(--kc-border);
  border-radius: var(--kc-radius-lg);
  overflow: hidden;
  transition: var(--kc-transition);
  height: 100%;
}
.kc-article-card:hover { box-shadow: var(--kc-shadow); transform: translateY(-3px); border-color: var(--kc-sky); }
.kc-article-img { aspect-ratio: 16/9; overflow: hidden; }
.kc-article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.kc-article-card:hover .kc-article-img img { transform: scale(1.05); }
.kc-article-body { padding: 20px; }
.kc-article-meta { font-size: .8rem; color: var(--kc-muted); margin-bottom: 8px; }
.kc-article-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--kc-dark);
  line-height: 1.45;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.kc-article-title a { color: inherit; }
.kc-article-title a:hover { color: var(--kc-ocean); }
.kc-article-readmore { font-size: .8125rem; font-weight: 600; color: var(--kc-ocean); }

/* ══════════════════════════════════════════════════════════
   TRADEMARK / PARTNER LOGOS
   ══════════════════════════════════════════════════════════ */
.trade { padding: 48px 0; background: var(--kc-surface); border-top: 1px solid var(--kc-border); }
.trade .flexslider { background: transparent; border: none; box-shadow: none; margin: 0; }
.trade .slides li img { opacity: .6; filter: grayscale(1); transition: var(--kc-transition); }
.trade .slides li:hover img { opacity: 1; filter: grayscale(0); }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
#footer { background: var(--kc-dark); color: rgba(255,255,255,.75); }
.footer-content { padding: 64px 0 48px; }
.ft-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--kc-white);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--kc-ocean);
  display: inline-block;
}
.ft-contact-tel,
.ft-contact-email,
.ft-contact-detail { margin-bottom: 10px; font-size: .9rem; line-height: 1.65; }
.ft-contact-detail a { color: rgba(255,255,255,.75); }
.ft-contact-detail a:hover { color: var(--kc-sky); }
.footer-copyrights {
  background: rgba(0,0,0,.3);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .8125rem;
}
.ft-copyrights-content { color: rgba(255,255,255,.5); text-align: center; }
.ft-copyrights-content a { color: rgba(255,255,255,.6); }
.ft-copyrights-content a:hover { color: var(--kc-sky); }

/* ══════════════════════════════════════════════════════════
   FLOATING NAV (Zalo / Phone / Messenger)
   ══════════════════════════════════════════════════════════ */
.giuseart-nav {
  position: fixed;
  bottom: 32px; right: 20px;
  z-index: 500;
  display: flex; flex-direction: column; gap: 10px;
}
.giuseart-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.giuseart-nav li a {
  display: flex; flex-direction: column; align-items: center;
  width: 52px;
  background: var(--kc-navy);
  color: var(--kc-white) !important;
  border-radius: var(--kc-radius);
  padding: 8px 4px;
  font-size: .6rem;
  font-weight: 600;
  text-align: center;
  transition: var(--kc-transition);
  text-transform: uppercase;
  letter-spacing: .04em;
  box-shadow: var(--kc-shadow-sm);
  gap: 4px;
}
.giuseart-nav li a i { font-size: 1.1rem; }
.giuseart-nav li a:hover { background: var(--kc-ocean); transform: scale(1.08); box-shadow: var(--kc-shadow); }
.giuseart-nav li.phone-mobile a { background: linear-gradient(135deg, #25D366, #128C7E); }

/* ══════════════════════════════════════════════════════════
   PRODUCT DETAIL
   ══════════════════════════════════════════════════════════ */
#product-page { padding: 40px 0 80px; }
.product-title h1 { font-size: 1.625rem; margin-bottom: 16px; }
.product-price {
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.product-price ins {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--kc-ocean);
  text-decoration: none;
}
.product-price del, .pro-compare-price {
  font-size: 1.0625rem;
  color: var(--kc-muted);
  text-decoration: line-through;
}
.product-image #product-review { border: 1.5px solid var(--kc-border); border-radius: var(--kc-radius-lg); overflow: hidden; }
.cart-product {
  background: linear-gradient(135deg, var(--kc-ocean), var(--kc-sky));
  color: var(--kc-white) !important;
  border: none;
  border-radius: var(--kc-radius);
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: var(--kc-transition);
  box-shadow: 0 4px 16px rgba(26,127,160,.35);
}
.cart-product:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,127,160,.45);
}
.quantity { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--kc-border); border-radius: var(--kc-radius); overflow: hidden; }
.quantity input[type=button] { background: var(--kc-surface); border: none; padding: 10px 16px; font-size: 1.1rem; cursor: pointer; color: var(--kc-navy); font-weight: 700; }
.quantity .qty { border: none; width: 52px; text-align: center; font-weight: 600; font-size: .9375rem; }

/* Tabs */
.tabs.simple .tabs-navigation { display: flex; gap: 4px; border-bottom: 2px solid var(--kc-border); margin-bottom: 28px; }
.tabs.simple .tabs-navigation li a {
  display: block;
  padding: 12px 20px;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--kc-muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--kc-transition);
}
.tabs.simple .tabs-navigation li.active a,
.tabs.simple .tabs-navigation li a:hover {
  color: var(--kc-ocean);
  border-bottom-color: var(--kc-ocean);
}

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════════ */
@keyframes kc-fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.kc-anim-up { animation: kc-fadeUp .6s ease both; }
.kc-anim-up--d1 { animation-delay: .1s; }
.kc-anim-up--d2 { animation-delay: .2s; }
.kc-anim-up--d3 { animation-delay: .3s; }
.kc-anim-up--d4 { animation-delay: .4s; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .kc-hero .kc-hero-slide { height: 70vh; min-height: 420px; }
  .kc-about-content { padding-left: 0; margin-top: 36px; }
  .kc-about-img-wrap img { height: 320px; }
  .kc-cert-item { padding: 12px 16px; min-width: 160px; }
  .kc-navbar { display: none; }
  .kc-topbar .kc-topbar-left { display: none; }
}
@media (max-width: 767px) {
  .kc-section { padding: 56px 0; }
  .kc-hero .kc-hero-slide { height: 85vw; min-height: 320px; }
  .kc-hero-title { font-size: 1.875rem; }
  .kc-certbar { padding: 16px 0; }
  .kc-cert-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: 12px 20px; min-width: 100%; }
  .kc-certbar-items { flex-direction: column; }
  .kc-section-header { margin-bottom: 36px; }
  .kc-feature-card { padding: 24px 20px; }
  .kc-about-img-wrap img { height: 240px; }
  #home-statistics { padding: 40px 0; }
  .counter-box-simple { padding: 12px; }
  .hcontact-wrapper { padding: 28px 20px; }
  .giuseart-nav li a { width: 46px; font-size: .55rem; }
  .footer-content { padding: 40px 0 32px; }
  .kc-product-card { margin-bottom: 20px; }
}

/* ── Override legacy framework conflicts ── */
body .navbar-default { background: transparent; border: none; box-shadow: none; }
header .navbar.navbar-main { background: transparent; margin-bottom: 0; }
.navbar-collapse.collapse { padding: 0; }
header { margin: 0; }
.header-top .hd-contact { display: none; }  /* replaced by kc-topbar */
.header-image { display: none; }             /* replaced by kc-logobar */
.header-middle { display: none; }            /* replaced by kc-navbar mobile toggle */

/* ═══════════════════════════════════════════════════════════════════════════
   TRACEABILITY PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.kc-trace-hero {
    position: relative;
    background: linear-gradient(135deg, var(--kc-navy) 0%, #0d4f72 60%, var(--kc-ocean) 100%);
    padding: 80px 0 60px;
    text-align: center;
    overflow: hidden;
}
.kc-trace-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 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='none' fill-rule='evenodd'%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/g%3E%3C/svg%3E");
}
.kc-trace-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 61, 89, 0.3);
}
.kc-trace-hero__inner {
    position: relative;
    z-index: 2;
}
.kc-trace-hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--kc-white);
    margin: 12px 0 16px;
    font-weight: 700;
}
.kc-trace-hero__sub {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

/* ── Search form ── */
.kc-trace-form { max-width: 680px; margin: 0 auto; }
.kc-trace-form__row {
    display: flex;
    gap: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    backdrop-filter: blur(8px);
}
.kc-trace-form__input-wrap {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}
.kc-trace-form__icon {
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    margin-right: 10px;
    flex-shrink: 0;
}
.kc-trace-form__input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--kc-white);
    font-size: 1rem;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.04em;
}
.kc-trace-form__input::placeholder { color: rgba(255,255,255,0.45); }
.kc-trace-form__btn {
    border-radius: 40px !important;
    padding: 10px 28px !important;
    white-space: nowrap;
    flex-shrink: 0;
}
.kc-trace-form__hint {
    margin-top: 12px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
}
.kc-trace-form__hint a { color: var(--kc-sky); text-decoration: none; }
.kc-trace-form__hint a:hover { text-decoration: underline; }

/* ── Loading ── */
.kc-trace-loading {
    text-align: center;
    padding: 60px 0;
    color: var(--kc-ocean);
}
.kc-trace-loading__spinner {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}
.kc-trace-loading__spinner span {
    width: 12px; height: 12px;
    background: var(--kc-ocean);
    border-radius: 50%;
    animation: kc-bounce 1.2s infinite ease-in-out;
}
.kc-trace-loading__spinner span:nth-child(2) { animation-delay: 0.2s; }
.kc-trace-loading__spinner span:nth-child(3) { animation-delay: 0.4s; }
@keyframes kc-bounce {
    0%, 80%, 100% { transform: scale(0); opacity: 0.3; }
    40%            { transform: scale(1); opacity: 1; }
}

/* ── Error ── */
.kc-trace-error { padding: 60px 0; }
.kc-trace-error__box {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    background: #fff8f0;
    border: 1px solid #ffd4b2;
    border-radius: var(--kc-radius-lg);
    padding: 48px 32px;
}
.kc-trace-error__box > i {
    font-size: 3rem;
    color: #e87b1a;
    margin-bottom: 16px;
    display: block;
}
.kc-trace-error__box h3 { color: var(--kc-dark); margin-bottom: 8px; }
.kc-trace-error__box p  { color: var(--kc-text); margin-bottom: 24px; }

/* ── Result section ── */
.kc-trace-result { padding: 60px 0; }
.kc-trace-result__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--kc-surface);
}
.kc-trace-result__verified {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #16a34a;
    font-weight: 700;
    font-size: 1.05rem;
}
.kc-trace-result__verified i { font-size: 1.4rem; }

/* ── Product identity ── */
.kc-trace-identity {
    background: var(--kc-white);
    border: 1px solid #e2edf5;
    border-radius: var(--kc-radius-lg);
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 2px 20px rgba(11,61,89,0.06);
}
.kc-trace-img-wrap {
    position: relative;
    border-radius: var(--kc-radius);
    overflow: hidden;
    background: var(--kc-surface);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.kc-trace-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.kc-trace-img-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(22,163,74,0.9);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.kc-trace-product-meta { padding-left: 8px; }
.kc-trace-product-name {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    color: var(--kc-navy);
    margin: 8px 0 16px;
}
.kc-trace-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.kc-trace-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.kc-trace-badge--iso  { background: #dbeafe; color: #1e40af; }
.kc-trace-badge--ocop { background: #fef3c7; color: #92400e; }
.kc-trace-badge--haccp{ background: #d1fae5; color: #065f46; }

/* ── Info grid ── */
.kc-trace-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 24px;
}
.kc-trace-info-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.kc-trace-info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--kc-ocean);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}
.kc-trace-info-label i { font-size: 0.7rem; }
.kc-trace-info-value {
    font-size: 0.95rem;
    color: var(--kc-dark);
    font-weight: 500;
}

/* ── Detail cards ── */
.kc-trace-details { margin-bottom: 32px; }
.kc-trace-card {
    background: var(--kc-white);
    border: 1px solid #e2edf5;
    border-radius: var(--kc-radius-lg);
    overflow: hidden;
    height: 100%;
    box-shadow: 0 2px 16px rgba(11,61,89,0.05);
    margin-bottom: 24px;
}
.kc-trace-card__head {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--kc-navy);
    color: var(--kc-white);
    padding: 14px 20px;
    font-size: 0.95rem;
}
.kc-trace-card__head i { font-size: 1rem; color: var(--kc-sky); }
.kc-trace-card__head h3 { margin: 0; font-size: 1rem; font-weight: 700; color: inherit; }
.kc-trace-card__body { padding: 20px; }

.kc-trace-source-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid var(--kc-surface);
    gap: 12px;
    font-size: 0.9rem;
}
.kc-trace-source-item:last-child { border-bottom: none; }
.kc-trace-source-label {
    color: var(--kc-text);
    flex-shrink: 0;
    max-width: 48%;
}
.kc-trace-source-item > span:last-child {
    color: var(--kc-dark);
    font-weight: 500;
    text-align: right;
}

/* ── Timeline ── */
.kc-trace-process {
    background: var(--kc-white);
    border: 1px solid #e2edf5;
    border-radius: var(--kc-radius-lg);
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 2px 16px rgba(11,61,89,0.05);
}
.kc-trace-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--kc-navy);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.kc-trace-section-title i { color: var(--kc-ocean); }

.kc-trace-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
.kc-tl-step {
    display: flex;
    gap: 16px;
    background: var(--kc-surface);
    border-radius: var(--kc-radius);
    padding: 18px;
    border-left: 3px solid var(--kc-ocean);
    transition: box-shadow 0.2s;
}
.kc-tl-step:hover { box-shadow: 0 4px 16px rgba(26,127,160,0.12); }
.kc-tl-dot {
    width: 40px; height: 40px;
    min-width: 40px;
    background: var(--kc-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kc-sky);
    font-size: 0.95rem;
}
.kc-tl-body {}
.kc-tl-step-num {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--kc-ocean);
    font-weight: 700;
    margin-bottom: 2px;
}
.kc-tl-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--kc-navy);
    margin: 0 0 4px;
}
.kc-tl-desc {
    font-size: 0.83rem;
    color: var(--kc-text);
    line-height: 1.5;
    margin: 0;
}

/* ── Nutrition table ── */
.kc-nutrition-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.kc-nutrition-table tr { border-bottom: 1px solid var(--kc-surface); }
.kc-nutrition-table tr:last-child { border-bottom: none; }
.kc-nutrition-table td { padding: 8px 4px; color: var(--kc-text); }
.kc-nutrition-table td:last-child { font-weight: 600; color: var(--kc-dark); text-align: right; }

/* ── Cert list ── */
.kc-trace-cert-list { display: flex; flex-direction: column; gap: 0; }
.kc-trace-cert-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--kc-surface);
}
.kc-trace-cert-item:last-child { border-bottom: none; }
.kc-trace-cert-item img {
    width: 44px; height: 44px;
    object-fit: contain;
    flex-shrink: 0;
    background: var(--kc-surface);
    border-radius: 6px;
    padding: 4px;
}
.kc-trace-cert-item > div { flex: 1; }
.kc-trace-cert-item strong { display: block; font-size: 0.9rem; color: var(--kc-navy); }
.kc-trace-cert-item span  { font-size: 0.78rem; color: var(--kc-text); }
.kc-cert-ok { color: #16a34a; font-size: 1.1rem; flex-shrink: 0; }

/* ── Badge helpers ── */
.kc-badge-green { color: #16a34a; font-weight: 600; }
.kc-badge-red   { color: #dc2626; font-weight: 600; }

/* ── Quality section ── */
.kc-trace-quality { margin-bottom: 32px; }

/* ── Company footer card ── */
.kc-trace-company {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--kc-navy);
    border-radius: var(--kc-radius-lg);
    padding: 28px 32px;
    flex-wrap: wrap;
}
.kc-trace-company__logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    padding: 8px;
}
.kc-trace-company__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 200px;
}
.kc-trace-company__info strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--kc-white);
    margin-bottom: 4px;
    display: block;
}
.kc-trace-company__info span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 6px;
}
.kc-trace-company__info i { color: var(--kc-sky); font-size: 0.75rem; }
.kc-trace-company__actions { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }

/* ── Responsive ── */
@media (max-width: 767px) {
    .kc-trace-hero { padding: 50px 0 40px; }
    .kc-trace-form__row {
        flex-direction: column;
        border-radius: 16px;
        padding: 14px 16px;
        gap: 8px;
    }
    .kc-trace-form__btn { border-radius: 10px !important; width: 100%; justify-content: center; }
    .kc-trace-identity  { padding: 20px; }
    .kc-trace-info-grid { grid-template-columns: 1fr; }
    .kc-trace-timeline  { grid-template-columns: 1fr; }
    .kc-trace-result__header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .kc-trace-company { flex-direction: column; text-align: center; }
    .kc-trace-company__info { align-items: center; }
    .kc-trace-company__actions { flex-direction: row; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT / COMPANY INTRODUCTION PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.kc-about-hero {
    position: relative;
    background: linear-gradient(140deg, var(--kc-dark) 0%, var(--kc-navy) 50%, #0d5f82 100%);
    padding: 80px 0 70px;
    text-align: center;
    overflow: hidden;
}
.kc-about-hero::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 50px;
    background: var(--kc-white);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.kc-about-hero__overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.25);
}
.kc-about-hero__inner { position: relative; z-index: 2; }
.kc-about-hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--kc-white);
    margin: 12px 0 14px;
    line-height: 1.2;
}
.kc-about-hero__sub {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
}

/* ── Story ── */
.kc-about-story__row { align-items: center; }
.kc-about-story__media { position: relative; margin-bottom: 24px; }
.kc-about-story__img {
    width: 100%;
    border-radius: var(--kc-radius-lg);
    object-fit: cover;
    height: 380px;
    background: var(--kc-surface);
    display: block;
}
.kc-about-story__stat-card {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--kc-white);
    border-radius: var(--kc-radius-lg);
    box-shadow: 0 8px 32px rgba(11,61,89,0.15);
    display: flex;
    align-items: center;
    padding: 20px 28px;
    gap: 20px;
    white-space: nowrap;
}
.kc-about-story__stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.kc-about-story__stat-item strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--kc-ocean);
    line-height: 1;
}
.kc-about-story__stat-item span {
    font-size: 0.75rem;
    color: var(--kc-text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.kc-about-story__stat-divider {
    width: 1px; height: 40px;
    background: var(--kc-surface);
}
.kc-about-story__content { padding-left: 20px; padding-top: 24px; }
.kc-about-story__content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--kc-navy);
    margin-bottom: 16px;
}
.kc-about-story__content p { color: var(--kc-text); line-height: 1.75; margin-bottom: 14px; }
.kc-about-cert-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }

/* ── VMV cards ── */
.kc-vmv-card {
    background: var(--kc-white);
    border: 1px solid #e2edf5;
    border-radius: var(--kc-radius-lg);
    padding: 36px 28px;
    text-align: center;
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s;
    margin-bottom: 24px;
}
.kc-vmv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(11,61,89,0.1);
}
.kc-vmv-card--featured {
    background: var(--kc-navy);
    border-color: var(--kc-navy);
    color: var(--kc-white);
}
.kc-vmv-card--featured h3 { color: var(--kc-white); }
.kc-vmv-card--featured p  { color: rgba(255,255,255,0.8); }
.kc-vmv-card__icon {
    width: 64px; height: 64px;
    margin: 0 auto 20px;
    background: var(--kc-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--kc-ocean);
}
.kc-vmv-card--featured .kc-vmv-card__icon {
    background: rgba(255,255,255,0.1);
    color: var(--kc-sky);
}
.kc-vmv-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--kc-navy); margin-bottom: 12px; }
.kc-vmv-card p  { font-size: 0.9rem; line-height: 1.7; color: var(--kc-text); margin: 0; }
.kc-vmv-list { list-style: none; padding: 0; margin: 0; text-align: left; }
.kc-vmv-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--kc-text);
    border-bottom: 1px solid var(--kc-surface);
}
.kc-vmv-list li:last-child { border-bottom: none; }
.kc-vmv-list li i { color: #16a34a; flex-shrink: 0; font-size: 0.8rem; }

/* ── Company timeline ── */
.kc-company-timeline {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}
.kc-company-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--kc-ocean), var(--kc-sky));
    transform: translateX(-50%);
}
.kc-ct-item {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
}
.kc-ct-item--left  { flex-direction: row; }
.kc-ct-item--right { flex-direction: row-reverse; }
.kc-ct-year {
    width: calc(50% - 36px);
    text-align: right;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--kc-ocean);
    flex-shrink: 0;
    font-family: var(--font-display);
}
.kc-ct-item--right .kc-ct-year { text-align: left; }
.kc-ct-dot {
    width: 20px; height: 20px;
    min-width: 20px;
    background: var(--kc-white);
    border: 3px solid var(--kc-ocean);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(26,127,160,0.15);
}
.kc-ct-dot--future {
    border-color: var(--kc-gold);
    box-shadow: 0 0 0 4px rgba(201,150,63,0.15);
}
.kc-ct-content {
    background: var(--kc-white);
    border: 1px solid #e2edf5;
    border-radius: var(--kc-radius);
    padding: 20px 22px;
    width: calc(50% - 36px);
    box-shadow: 0 2px 12px rgba(11,61,89,0.06);
}
.kc-ct-content h4 { font-size: 0.95rem; font-weight: 700; color: var(--kc-navy); margin-bottom: 6px; }
.kc-ct-content p  { font-size: 0.85rem; color: var(--kc-text); line-height: 1.6; margin: 0; }

/* ── Manufacturing stats ── */
.kc-mfg-stat {
    text-align: center;
    padding: 32px 16px;
    margin-bottom: 24px;
}
.kc-mfg-stat__icon {
    width: 60px; height: 60px;
    background: var(--kc-ocean);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
    color: var(--kc-white);
}
.kc-mfg-stat__num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--kc-navy);
    margin-bottom: 6px;
    font-family: var(--font-display);
}
.kc-mfg-stat__label {
    font-size: 0.85rem;
    color: var(--kc-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.kc-about-mfg__features { margin-top: 40px; }

/* ── CTA banner ── */
.kc-about-cta { background: var(--kc-navy); }
.kc-about-cta__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    padding: 40px 0;
}
.kc-about-cta__box h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--kc-white); margin-bottom: 6px; }
.kc-about-cta__box p  { color: rgba(255,255,255,0.7); margin: 0; }
.kc-about-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.kc-btn--light {
    border-color: rgba(255,255,255,0.5) !important;
    color: var(--kc-white) !important;
}
.kc-btn--light:hover { background: rgba(255,255,255,0.1) !important; }

/* ── Responsive ── */
@media (max-width: 991px) {
    .kc-about-story__stat-card { position: static; transform: none; margin-top: 16px; width: fit-content; }
    .kc-about-story__content { padding-left: 0; padding-top: 40px; }
    .kc-company-timeline::before { left: 20px; }
    .kc-ct-item, .kc-ct-item--right { flex-direction: row; align-items: flex-start; }
    .kc-ct-year { width: auto; font-size: 1rem; min-width: 64px; text-align: left !important; }
    .kc-ct-content { width: auto; flex: 1; }
}
@media (max-width: 767px) {
    .kc-about-cta__box { flex-direction: column; text-align: center; }
    .kc-about-cta__actions { justify-content: center; }
    .kc-about-story__stat-card { flex-wrap: wrap; gap: 12px; padding: 16px; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CERTIFICATIONS PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.kc-cert-hero {
    position: relative;
    background: linear-gradient(135deg, #0A1628 0%, var(--kc-navy) 60%, #0d5f82 100%);
    padding: 80px 0 70px;
    text-align: center;
    overflow: hidden;
}
.kc-cert-hero::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 50px;
    background: var(--kc-white);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.kc-cert-hero__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.2); }
.kc-cert-hero__inner { position: relative; z-index: 2; }
.kc-cert-hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--kc-white);
    margin: 12px 0 16px;
    line-height: 1.2;
}
.kc-cert-hero__sub { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 32px; }
.kc-cert-hero__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.kc-cert-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--kc-white);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
}
.kc-cert-hero__badge i { color: var(--kc-sky); }

/* ── Trust bar ── */
.kc-cert-trust {
    background: var(--kc-navy);
    padding: 20px 0;
}
.kc-cert-trust__row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}
.kc-cert-trust__item {
    text-align: center;
    padding: 8px 32px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.kc-cert-trust__item strong { color: var(--kc-sky); font-size: 0.95rem; font-weight: 700; }
.kc-cert-trust__item span  { color: rgba(255,255,255,0.6); font-size: 0.78rem; }
.kc-cert-trust__sep { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

/* ── Certificate cards ── */
.kc-cert-grid { margin-top: 8px; }
.kc-cert-card {
    background: var(--kc-white);
    border: 1px solid #e2edf5;
    border-radius: var(--kc-radius-lg);
    overflow: hidden;
    margin-bottom: 28px;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 2px 12px rgba(11,61,89,0.06);
}
.kc-cert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(11,61,89,0.12);
}
.kc-cert-card__img-wrap {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--kc-surface);
    display: flex;
    align-items: center;
    justify-content: center;
}
.kc-cert-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.kc-cert-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--kc-surface) 0%, #d4e8f0 100%);
    font-size: 4rem;
    color: var(--kc-ocean);
}
.kc-cert-placeholder--lg { font-size: 6rem; min-height: 300px; }
.kc-cert-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(11,61,89,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
}
.kc-cert-card:hover .kc-cert-card__overlay { opacity: 1; }
.kc-cert-zoom {
    background: var(--kc-white);
    color: var(--kc-navy);
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}
.kc-cert-zoom:hover { background: var(--kc-sky); color: var(--kc-white); }
.kc-cert-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.kc-cert-card__badge--valid { background: #d1fae5; color: #065f46; }
.kc-cert-card__badge--ocop  { background: #fef3c7; color: #92400e; }
.kc-cert-card__body { padding: 18px; }
.kc-cert-card__body h3 { font-size: 1rem; font-weight: 700; color: var(--kc-navy); margin-bottom: 4px; }
.kc-cert-card__body p  { font-size: 0.82rem; color: var(--kc-text); margin-bottom: 12px; line-height: 1.4; }
.kc-cert-card__meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.kc-cert-card__meta span {
    font-size: 0.75rem;
    color: var(--kc-ocean);
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

/* ── Standards explained ── */
.kc-cert-explain-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e2edf5;
}
.kc-cert-explain-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.kc-cert-explain-item__icon {
    width: 48px; height: 48px;
    min-width: 48px;
    background: var(--kc-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--kc-sky);
}
.kc-cert-explain-item__icon--gold { background: var(--kc-gold); color: var(--kc-white); }
.kc-cert-explain-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--kc-navy); margin-bottom: 8px; }
.kc-cert-explain-item p  { font-size: 0.875rem; color: var(--kc-text); line-height: 1.7; margin: 0; }

/* ── Commitment banner ── */
.kc-cert-commitment { background: var(--kc-navy); }
.kc-cert-commitment__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 40px 0;
}
.kc-cert-commitment__icon {
    width: 64px; height: 64px;
    min-width: 64px;
    background: var(--kc-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--kc-white);
}
.kc-cert-commitment h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--kc-white); margin-bottom: 6px; }
.kc-cert-commitment p  { color: rgba(255,255,255,0.7); margin: 0; flex: 1; }

/* ── Modal ── */
.kc-cert-modal {
    position: fixed;
    inset: 0;
    background: rgba(10,22,40,0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}
.kc-cert-modal__box {
    background: var(--kc-white);
    border-radius: var(--kc-radius-lg);
    max-width: 760px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: kc-modal-in 0.25s ease;
}
@keyframes kc-modal-in {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
.kc-cert-modal__close {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--kc-surface);
    border: none;
    width: 36px; height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    color: var(--kc-text);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: background 0.2s;
}
.kc-cert-modal__close:hover { background: #f1f5f9; }
.kc-cert-modal__content {
    display: flex;
    gap: 32px;
    padding: 32px;
}
.kc-cert-modal__img-wrap {
    width: 220px;
    min-width: 220px;
    aspect-ratio: 3/4;
    background: var(--kc-surface);
    border-radius: var(--kc-radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.kc-cert-modal__img { width: 100%; height: 100%; object-fit: cover; }
.kc-cert-ph-icon { font-size: 5rem; color: var(--kc-ocean); }
.kc-cert-modal__info { flex: 1; }
.kc-cert-modal__info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--kc-navy);
    margin: 8px 0 12px;
}
.kc-cert-modal__info > p { font-size: 0.9rem; color: var(--kc-text); line-height: 1.7; margin-bottom: 20px; }
.kc-cert-modal__details {
    border-top: 1px solid var(--kc-surface);
    padding-top: 16px;
}
.kc-cert-modal__detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--kc-surface);
    font-size: 0.875rem;
    gap: 12px;
}
.kc-cert-modal__detail-row:last-child { border-bottom: none; }
.kc-cert-modal__detail-label { color: var(--kc-text); }
.kc-cert-modal__detail-value { color: var(--kc-dark); font-weight: 600; text-align: right; }

@media (max-width: 767px) {
    .kc-cert-trust__sep { display: none; }
    .kc-cert-trust__item { padding: 8px 16px; }
    .kc-cert-modal__content { flex-direction: column; padding: 20px; }
    .kc-cert-modal__img-wrap { width: 100%; min-width: 0; aspect-ratio: 4/3; }
    .kc-cert-commitment__inner { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   LANGUAGE SWITCHER
   ═══════════════════════════════════════════════════════════════════════════ */

.kc-lang-switch {
    position: relative;
    margin-left: 12px;
}
.kc-lang-switch__btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0.04em;
}
.kc-lang-switch__btn:hover { background: rgba(255,255,255,0.2); }
.kc-lang-switch__arrow {
    font-size: 0.65rem;
    transition: transform 0.2s;
}
.kc-lang-switch__dropdown--open ~ * .kc-lang-switch__arrow,
.kc-lang-switch__btn .kc-lang-switch__dropdown--open .kc-lang-switch__arrow {
    transform: rotate(180deg);
}

.kc-lang-switch__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--kc-white);
    border: 1px solid #e2edf5;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(11,61,89,0.15);
    min-width: 140px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s, visibility 0.18s, transform 0.18s;
    z-index: 9000;
}
.kc-lang-switch__dropdown--open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.kc-lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 9px 14px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 0.875rem;
    color: var(--kc-text);
    cursor: pointer;
    transition: background 0.15s;
}
.kc-lang-option:hover { background: var(--kc-surface); }
.kc-lang-option--active {
    color: var(--kc-ocean);
    font-weight: 700;
    background: #e8f4f8;
}
.kc-lang-flag { font-size: 1rem; line-height: 1; }

/* Mobile variant — dropdown opens upward on small screens */
.kc-lang-switch--mobile .kc-lang-switch__btn {
    padding: 4px 8px;
    font-size: 0.75rem;
}
.kc-lang-switch--mobile .kc-lang-switch__dropdown {
    top: auto;
    bottom: calc(100% + 8px);
    right: 0;
    min-width: 100px;
}
