/* Image sizing: avoid height:auto fighting object-fit cover boxes */
img[width][height] {
  max-width: 100%;
}

/* Cover media: fill frame, crop — never stretch */
img.is-cover,
.home-hero-slide img,
.prod-card-img-wrap img,
.product-section .prod-card-img-wrap img,
.prod-card-img-link img,
.prod-list-card__media img,
.blog-card-thumb img,
.card-img-wrap img,
.featured-img-wrap img,
.sb-detail-feature__media img,
.category-image img,
.pd-gallery-main img,
.pd-gallery-thumb img,
.yt-facade__poster {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  padding: 0 !important;
  margin: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block;
  aspect-ratio: unset !important;
  border-radius:7px;
}

/* Aspect-ratio locked media frames */
.prod-card-img-wrap,
.product-section .prod-card-img-wrap,
.prod-list-card__media,
.blog-card-thumb,
.card-img-wrap,
.featured-img-wrap,
.sb-detail-feature__media,
.category-image {
  position: relative;
  display: block;
  overflow: hidden;
  height: auto !important;
  min-height: 0 !important;
}

.prod-card-img-link,
.product-section .prod-card-img-link {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100% !important;
  min-height: 0 !important;
  aspect-ratio: unset !important;
  overflow: hidden;
  z-index: 1;
}

.prod-card-img-wrap .prod-badge,
.product-section .prod-card-img-wrap .prod-badge,
.blog-card-thumb .blog-card-category,
.card-img-wrap .card-date-badge,
.card-img-wrap .card-cat-tag,
.card-img-wrap .card-overlay {
  z-index: 2;
}

.prod-card-img-wrap,
.product-section .prod-card-img-wrap,
.prod-list-card__media,
.blog-card-thumb,
.card-img-wrap,
.category-image {
  aspect-ratio: 4 / 3;
}

.blog-card-featured .blog-card-thumb {
  aspect-ratio: 16 / 10;
}

.blog-card-thumb--wide {
  width: 180px;
  flex-shrink: 0;
  aspect-ratio: 3 / 2 !important;
}

.featured-img-wrap {
  aspect-ratio: 4 / 3;
}

.sb-detail-feature__media {
  aspect-ratio: 16 / 9;
}

.sb-detail-prose img {
  position: static !important;
  inset: auto !important;
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.home-hero-slide {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 0 !important;
}

.home-hero-slider {
  min-height: 0 !important;
}

.home-hero-slide img {
  min-height: 0 !important;
}

@media (max-width: 991.98px) {
  .home-hero-slide {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 767.98px) {
  .featured-img-wrap {
    width: 100%;
    max-width: none;
    aspect-ratio: 16 / 10;
  }

  .sb-detail-feature__media {
    aspect-ratio: 16 / 10;
  }
}

/* ── Skeleton shimmer ─────────────────────────────────── */
@keyframes skel-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.skel,
img.lazy-load,
.yt-facade {
  background:
    linear-gradient(110deg, #e8ecf0 8%, #f5f7f9 18%, #e8ecf0 33%);
  background-size: 200% 100%;
  animation: skel-shimmer 1.35s linear infinite;
}

img.lazy-load {
  opacity: 0.55;
  filter: saturate(0.4);
  transition: opacity 0.45s ease, filter 0.45s ease, transform 0.45s ease;
}

img.is-loaded,
img:not(.lazy-load) {
  animation: none;
}

img.is-loaded {
  opacity: 1;
  filter: none;
}

/* Soft fade-in for media */
@keyframes media-fade-in {
  from { opacity: 0; transform: scale(1.02); }
  to { opacity: 1; transform: scale(1); }
}

img.is-loaded {
  animation: media-fade-in 0.5s ease both;
}

/* Card / section entrance */
@media (prefers-reduced-motion: no-preference) {
  .prod-card,
  .blog-card,
  .category-card,
  .cs-card,
  .cs-mini-card,
  .strength-card,
  .prod-list-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, opacity 0.4s ease;
  }
}

/* ── YouTube privacy facade ───────────────────────────── */
.yt-facade {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  overflow: hidden;
  border-radius: inherit;
}

.yt-facade__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: none;
  opacity: 1;
  filter: none;
  transition: transform 0.5s ease, filter 0.4s ease;
}

.yt-facade:hover .yt-facade__poster,
.yt-facade:focus-visible .yt-facade__poster {
  transform: scale(1.04);
  filter: brightness(0.85);
}

.yt-facade__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 150, 12, 0.95);
  color: #fff;
  font-size: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, background 0.25s ease;
  z-index: 2;
}

.yt-facade:hover .yt-facade__play,
.yt-facade:focus-visible .yt-facade__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: #c8960c;
}

.yt-facade__hint {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 28, 46, 0.72);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.yt-facade.is-loading .yt-facade__play {
  opacity: 0.5;
}

.home-hero-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .skel,
  img.lazy-load {
    animation: none;
  }

  img.is-loaded {
    animation: none;
  }
}

/* ── Category page (enterprise) ───────────────────────── */
.cat-page-hero {
  margin-bottom: 0;
}

.cat-hero-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.cat-hero-panel__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0a1220;
}

.cat-hero-panel__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cat-hero-panel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 28, 46, 0.75) 100%);
  pointer-events: none;
}

.cat-hero-panel__badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(200, 150, 12, 0.92);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cat-hero-panel__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px;
}

.cat-hero-panel__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.cat-hero-panel__btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.cat-hero-panel__btn--primary {
  background: var(--gold, #c8960c);
  color: #fff;
  box-shadow: 0 8px 20px rgba(200, 150, 12, 0.28);
}

.cat-hero-panel__btn--primary:hover {
  background: var(--gold-h, #b3840a);
  color: #fff;
}

.cat-hero-panel__btn--wa {
  background: #128c7e;
  color: #fff;
}

.cat-hero-panel__btn--wa:hover {
  background: #0f766c;
  color: #fff;
}

.cat-page-body {
  padding: 36px 0 72px;
  background:
    radial-gradient(ellipse at top left, rgba(200, 150, 12, 0.05), transparent 42%),
    linear-gradient(180deg, #f7f8fa 0%, #fff 48%, #f7f8fa 100%);
}

/* ── Category sidebar (aligned with product pf-sidebar) ─ */
.cat-side {
  top: 96px;
}

.cat-side .pf-sidebar__clear {
  text-decoration: none;
}

.cat-side .pf-sidebar__clear:hover {
  text-decoration: none;
}

.cat-side__current {
  margin: 14px 14px 0;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(200, 150, 12, 0.08);
  border: 1px solid rgba(200, 150, 12, 0.2);
  border-left: 3px solid var(--gold, #c8960c);
}

.cat-side__current-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a6a08;
  margin-bottom: 4px;
}

.cat-side__current-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0f1c2e;
  line-height: 1.35;
}

.cat-side__nav {
  
  overflow-y: auto;
  padding: 6px 12px 14px;
  scrollbar-width: thin;
  scrollbar-color: rgba(200, 150, 12, 0.35) transparent;
}

.cat-side__nav::-webkit-scrollbar {
  width: 5px;
}

.cat-side__nav::-webkit-scrollbar-thumb {
  background: rgba(200, 150, 12, 0.35);
  border-radius: 10px;
}

/* Category directory rows */
.cat-side-item {
  margin-bottom: 6px;
  border-radius: 12px;
  border: 1px solid rgba(15, 28, 46, 0.07);
  background: #fafbfc;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.cat-side-item:hover {
  background: #fff;
  border-color: rgba(200, 150, 12, 0.28);
  box-shadow: 0 6px 18px rgba(15, 28, 46, 0.05);
}

.cat-side-item.is-active {
  background: #fff;
  border-color: rgba(200, 150, 12, 0.4);
  box-shadow: 0 8px 24px rgba(200, 150, 12, 0.12);
}

.cat-side-item__row {
  display: flex;
  align-items: stretch;
  position: relative;
}

.cat-side-item.is-active .cat-side-item__row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--gold, #c8960c);
}

.cat-side-item__link {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 8px 11px 12px;
  color: inherit;
  text-decoration: none;
}

.cat-side-item__link:hover {
  color: inherit;
  text-decoration: none;
}

.cat-side-item__icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #eef1f5;
  color: #5b6572;
  font-size: 17px;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.cat-side-item:hover .cat-side-item__icon,
.cat-side-item.is-active .cat-side-item__icon {
  background: rgba(200, 150, 12, 0.14);
  color: #8a6a08;
  box-shadow: 0 4px 12px rgba(200, 150, 12, 0.15);
}

.cat-side-item__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cat-side-item__label {
  font-size: 11px;
  font-weight: 700;
  color: #0f1c2e;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cat-side-item__meta {
  font-size: 11px;
  font-weight: 600;
  color: #8a93a0;
  letter-spacing: 0.01em;
}

.cat-side-item.is-active .cat-side-item__meta {
  color: #8a6a08;
}

.cat-side-item__live {
  flex-shrink: 0;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(200, 150, 12, 0.14);
  color: #8a6a08;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cat-side-item__toggle {
  width: 36px;
  border: 0;
  border-left: 1px solid rgba(15, 28, 46, 0.06);
  background: transparent;
  color: #8a93a0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cat-side-item__toggle:hover {
  background: rgba(200, 150, 12, 0.08);
  color: var(--gold, #c8960c);
}

.cat-side-item__toggle.is-open,
.cat-side-item__toggle[aria-expanded="true"] {
  color: var(--gold, #c8960c);
  background: rgba(200, 150, 12, 0.08);
  transform: rotate(180deg);
}

/* Nested product links — timeline style */
.cat-side-sub {
  list-style: none;
  margin: 0;
  padding: 0 10px 12px 22px;
  border-top: 1px solid rgba(15, 28, 46, 0.06);
  position: relative;
}

.cat-side-sub::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 8px;
  bottom: 14px;
  width: 1px;
  background: rgba(200, 150, 12, 0.25);
}

.cat-side-sub li {
  position: relative;
}

.cat-side-sub li + li {
  margin-top: 1px;
}

.cat-side-sub a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 8px 18px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.35;
  color: #5b6572;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.cat-side-sub__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #d0d5dc;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(200, 150, 12, 0.35);
  z-index: 1;
}

.cat-side-sub__name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cat-side-sub a:hover {
  background: rgba(200, 150, 12, 0.08);
  color: #0f1c2e;
  text-decoration: none;
}

.cat-side-sub a:hover .cat-side-sub__dot {
  background: var(--gold, #c8960c);
}

.cat-side-sub__more {
  font-weight: 700 !important;
  color: var(--gold, #c8960c) !important;
}

.cat-side-sub__more:hover {
  color: #8a6a08 !important;
}

.cat-side-sub__more i {
  margin-left: auto;
  font-size: 14px;
}

@media (max-width: 991.98px) {
  .cat-side {
    top: 72px;
    margin-bottom: 12px;
  }

  .cat-side__nav {
    max-height: 280px;
  }
}

.cat-results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 14px 18px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(15, 28, 46, 0.08);
  box-shadow: 0 6px 20px rgba(15, 28, 46, 0.04);
}

.cat-results-bar__text {
  font-size: 13px;
  color: #5b6572;
  line-height: 1.5;
}

.cat-results-bar__text strong {
  color: #0f1c2e;
}

.cat-results-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 0;
  border-radius: 8px;
  background: #0f1c2e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cat-results-bar__btn:hover {
  background: #1a2d48;
  transform: translateY(-1px);
}

.cat-product-grid {
  gap: 18px;
}

.cat-product-card {
  animation: cat-card-in 0.45s ease both;
}

.cat-product-card:nth-child(2) { animation-delay: 0.05s; }
.cat-product-card:nth-child(3) { animation-delay: 0.1s; }
.cat-product-card:nth-child(4) { animation-delay: 0.15s; }
.cat-product-card:nth-child(5) { animation-delay: 0.2s; }

@keyframes cat-card-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cat-pagination {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.cat-pagination .pagination {
  margin: 0;
  gap: 6px;
}

.cat-pagination .page-link {
  border-radius: 8px !important;
  border-color: rgba(15, 28, 46, 0.1);
  color: #0f1c2e;
  font-weight: 600;
  min-width: 40px;
  text-align: center;
}

.cat-pagination .page-item.active .page-link {
  background: var(--gold, #c8960c);
  border-color: var(--gold, #c8960c);
}

.cat-empty {
  margin-top: 8px;
}

.cat-empty__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 8px;
}

@media (max-width: 991.98px) {
  .cat-page-body {
    padding-top: 24px;
  }

  .cat-hero-panel__actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cat-product-card {
    animation: none;
  }
}

/* ── Product detail: overview CMS prose ── */
.pd-prose {
  color: #3d4554;
  font-size: 15.5px;
  line-height: 1.85;
  max-width: 78ch;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  word-spacing: .01em;
}

.pd-prose > *:first-child { margin-top: 0 !important; }
.pd-prose > *:last-child { margin-bottom: 0 !important; }

.pd-prose p {
  margin: 0;
  padding: 10px 0;
  color: #3d4554;
  font-size: 15.5px;
  line-height: 1.85;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.pd-prose p[dir],
.pd-prose li[dir],
.pd-prose h1[dir],
.pd-prose h2[dir],
.pd-prose h3[dir],
.pd-prose h4[dir] {
  direction: ltr;
}

.pd-prose h1,
.pd-prose h2,
.pd-prose h3,
.pd-prose h4,
.pd-prose h5,
.pd-prose h6 {
  font-family: 'Oswald', system-ui, sans-serif !important;
  color: var(--navy, #1F3A5F);
  font-weight: 600 !important;
  line-height: 1.3;
  letter-spacing: .02em;
  text-align: left;
  text-wrap: balance;
  
  padding: 10px 0 !important;
}

/* Extra breathing room when a heading follows body content */
.pd-prose p + h1,
.pd-prose p + h2,
.pd-prose p + h3,
.pd-prose p + h4,
.pd-prose ul + h1,
.pd-prose ul + h2,
.pd-prose ul + h3,
.pd-prose ol + h1,
.pd-prose ol + h2,
.pd-prose ol + h3,
.pd-prose table + h1,
.pd-prose table + h2,
.pd-prose table + h3 {
  margin-top: 10px;
}

.pd-prose h1 + p,
.pd-prose h2 + p,
.pd-prose h3 + p,
.pd-prose h4 + p,
.pd-prose h1 + ul,
.pd-prose h2 + ul,
.pd-prose h3 + ul,
.pd-prose h1 + ol,
.pd-prose h2 + ol,
.pd-prose h3 + ol {
  margin-top: .15rem;
}

.pd-prose h1 { font-size: 1.55rem !important; }

.pd-prose h2 {
  font-size: 1.35rem !important;
  
  border-bottom: 2px solid rgba(200, 150, 12, .22);
}

.pd-prose h3 {
  font-size: 1.15rem !important;
  margin-top: 1.85rem;
  margin-bottom: .85rem;
}

.pd-prose h4 {
  font-size: 1.05rem !important;
  color: #2a3544;
  margin-top: 1.6rem;
  margin-bottom: .75rem;
}

.pd-prose strong,
.pd-prose b {
  color: var(--ink, #1B2430);
  font-weight: 650;
}

.pd-prose a {
  color: var(--gold, #C8960C);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.pd-prose a:hover { color: var(--gold-h, #E0A80D); }

.pd-prose ul,
.pd-prose ol {
  margin: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 0;
  padding-left: 1.15rem;
  list-style: none;
  text-align: justify;
}

.pd-prose ul {
  padding-left: 0;
}

.pd-prose ul > li {
  position: relative;
  margin: 0 0 .7rem;
  padding: 0 0 0 1.35rem;
  font-size: 15.5px;
  line-height: 1.8;
  color: #3d4554;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.pd-prose ul > li::before {
  content: "";
  position: absolute;
  left: .2rem;
  top: .68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold, #C8960C);
  box-shadow: 0 0 0 3px rgba(200, 150, 12, .15);
}

.pd-prose ol {
  list-style: decimal;
  padding-left: 1.35rem;
  padding-top: 10px;
  padding-bottom: 10px;
}

.pd-prose ol > li {
  margin: 0 0 .7rem;
  padding-left: .25rem;
  font-size: 15.5px;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.pd-prose ul ul,
.pd-prose ol ol,
.pd-prose ul ol,
.pd-prose ol ul {
  margin: .55rem 0 .4rem;
}

.pd-prose blockquote {
  margin: 1.5rem 0;
  padding: 1.1rem 1.2rem;
  border-left: 4px solid var(--gold, #C8960C);
  background: rgba(200, 150, 12, .08);
  border-radius: 0 10px 10px 0;
  color: var(--ink, #1B2430);
  font-style: italic;
  text-align: left;
}

.pd-prose img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border-radius: 10px;
  border: 1px solid var(--border, #D8D5CB);
}

.pd-prose hr {
  border: 0;
  border-top: 1px solid var(--border, #D8D5CB);
  margin: 2rem 0;
}

.pd-prose table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin: 10px 0;
  font-size: .9rem;
  background: #fff;
  border: 1px solid var(--border, #D8D5CB);
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
}

.pd-prose table th,
.pd-prose table td {
  padding: .8rem 1rem;
  border: 1px solid var(--border, #D8D5CB);
  vertical-align: top;
  text-align: left;
  line-height: 1.55;
}

.pd-prose table th {
  background: var(--navy, #1F3A5F);
  color: #fff;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .02em;
}

.pd-prose table tr:nth-child(even) td { background: #faf9f6; }
.pd-prose table tr:hover td { background: rgba(200, 150, 12, .06); }

.pd-prose iframe,
.pd-prose video {
  max-width: 100%;
  margin: 1.35rem 0;
  border-radius: 10px;
}

@media (max-width: 767.98px) {
  .pd-prose {
    font-size: 15px;
    max-width: none;
    text-align: left; /* justify looks ragged on narrow screens */
    hyphens: manual;
  }

  .pd-prose p,
  .pd-prose ul,
  .pd-prose ol,
  .pd-prose ul > li,
  .pd-prose ol > li {
    text-align: left;
  }

  .pd-prose h1,
  .pd-prose h2,
  .pd-prose h3,
  .pd-prose h4 {
    margin-top: 1.75rem;
    margin-bottom: .85rem;
  }

  .pd-prose p + h2,
  .pd-prose ul + h2,
  .pd-prose ol + h2 {
    margin-top: 2rem;
  }

  .pd-prose h2 { font-size: 1.22rem !important; }

  .pd-prose table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ── Blog category filter bar ─────────────────────────── */
.blog-filter {
  position: sticky;
  top: 60px;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(216, 213, 203, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(27, 36, 48, 0.04);
}

.blog-filter__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  min-height: 64px;
}

.blog-filter__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  color: var(--navy, #1F3A5F);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.blog-filter__label i {
  color: var(--gold, #C8960C);
  font-size: 16px;
}

.blog-filter__track-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
}

.blog-filter__track {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 2px;
  mask-image: linear-gradient(90deg, transparent, #000 16px, #000 calc(100% - 16px), transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 16px, #000 calc(100% - 16px), transparent);
}

.blog-filter__track::-webkit-scrollbar {
  display: none;
}

.blog-filter__track.is-at-start {
  mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 16px), transparent);
  -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 16px), transparent);
}

.blog-filter__track.is-at-end {
  mask-image: linear-gradient(90deg, transparent, #000 16px, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 16px, #000 100%);
}

.blog-filter__track.is-at-start.is-at-end {
  mask-image: none;
  -webkit-mask-image: none;
}

.blog-filter__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 9px 14px;
  border: 1px solid rgba(216, 213, 203, 0.95);
  border-radius: 999px;
  background: #fff;
  color: #4A5160;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.blog-filter__chip i {
  font-size: 15px;
  opacity: 0.85;
}

.blog-filter__chip:hover {
  border-color: rgba(200, 150, 12, 0.45);
  color: var(--navy, #1F3A5F);
  box-shadow: 0 6px 16px rgba(200, 150, 12, 0.12);
  transform: translateY(-1px);
}

.blog-filter__chip:focus-visible {
  outline: 2px solid var(--gold, #C8960C);
  outline-offset: 2px;
}

.blog-filter__chip.active {
  background: linear-gradient(135deg, #1F3A5F 0%, #152A47 100%);
  border-color: #152A47;
  color: #fff;
  box-shadow: 0 8px 20px rgba(31, 58, 95, 0.22);
}

.blog-filter__chip.active:hover {
  transform: none;
  color: #fff;
}

.blog-filter__chip-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(15, 28, 46, 0.08);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.blog-filter__chip.active .blog-filter__chip-count {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.blog-filter__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(216, 213, 203, 0.95);
  border-radius: 50%;
  background: #fff;
  color: var(--navy, #1F3A5F);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(27, 36, 48, 0.1);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.blog-filter__nav:hover {
  background: var(--gold, #C8960C);
  border-color: var(--gold, #C8960C);
  color: #fff;
}

.blog-filter__nav--prev { left: -2px; }
.blog-filter__nav--next { right: -2px; }

.blog-filter__nav[hidden] { display: none !important; }

.blog-filter-item {
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.blog-filter-item.is-filtering-out {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.home-inquiry-alert {
  display: none;
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.home-inquiry-alert:not(:empty) {
  display: block;
}

.home-inquiry-alert.is-success {
  background: #e8f6ee;
  color: #1f6b45;
  border: 1px solid #b7e0c7;
}

.home-inquiry-alert.is-error {
  background: #fdeeee;
  color: #9b2c2c;
  border: 1px solid #f0c0c0;
}

.home-inquiry-form .form-control-custom.is-invalid {
  border-color: #c0392b;
  background: #fff7f7;
}

.home-inquiry-form .error_msgIcon {
  color: #c0392b;
  font-size: 0.78rem;
  margin-top: 0.35rem;
}

.home-inquiry-form .btn-submit.is-loading,
.js-page-inquiry .btn-submit-main.is-loading,
.js-page-inquiry .btn-submit.is-loading {
  opacity: 0.75;
  pointer-events: none;
}

.contact-inquiry-form .field-input.is-invalid,
.contact-inquiry-form .field-select.is-invalid,
.contact-inquiry-form .field-textarea.is-invalid {
  border-color: #c0392b;
  background: #fff7f7;
}

.contact-inquiry-form .error_msgIcon {
  color: #c0392b;
  font-size: 0.78rem;
  margin-top: 0.35rem;
}

/* Enquiry result popup */
.eq-result {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.eq-result.is-open {
  display: flex;
}

.eq-result__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 28, 46, 0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.eq-result__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem 1.5rem 1.4rem;
  text-align: center;
  box-shadow: 0 24px 60px rgba(15, 28, 46, 0.28);
  animation: eqResultIn 0.22s ease;
}

@keyframes eqResultIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.eq-result__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(27, 36, 48, 0.1);
  border-radius: 50%;
  background: #fff;
  color: #1f3a5f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.eq-result__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.eq-result.is-success .eq-result__icon {
  background: #e8f6ee;
  color: #1f6b45;
}

.eq-result.is-error .eq-result__icon {
  background: #fdeeee;
  color: #9b2c2c;
}

.eq-result__icon-success,
.eq-result__icon-error {
  display: none;
}

.eq-result.is-success .eq-result__icon-success,
.eq-result.is-error .eq-result__icon-error {
  display: inline-block;
}

.eq-result__title {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1b2430;
}

.eq-result__message {
  margin: 0 0 1.2rem;
  color: #4a5160;
  font-size: 0.95rem;
  line-height: 1.5;
}

.eq-result__btn {
  min-width: 120px;
  border: 0;
  border-radius: 8px;
  padding: 0.7rem 1.2rem;
  background: #1f3a5f;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.eq-result.is-success .eq-result__btn {
  background: #2f6b4f;
}

.eq-result.is-error .eq-result__btn {
  background: #9b2c2c;
}

.eq-result__btn:hover {
  filter: brightness(1.05);
}

body.eq-result-open {
  overflow: hidden;
}

.eq-modal__req {
  color: #c0392b;
  font-weight: 700;
}

.eq-modal__label .eq-modal__req {
  margin-left: 2px;
}

/* Enquiry modal: blurred page backdrop + visible close */
body.modal-open .modal-backdrop {
  background-color: rgba(15, 28, 46, 0.42) !important;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

body.modal-open .modal-backdrop.show {
  opacity: 1 !important;
}

.eq-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 20;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(27, 36, 48, 0.12);
  border-radius: 50%;
  background: #fff;
  color: #1f3a5f;
  box-shadow: 0 6px 18px rgba(15, 28, 46, 0.16);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.eq-modal__close i {
  font-size: 20px;
  line-height: 1;
}

.eq-modal__close:hover,
.eq-modal__close:focus {
  background: #1f3a5f;
  color: #fff;
  border-color: #1f3a5f;
  transform: scale(1.05);
  outline: 0;
}

@media (max-width: 991.98px) {
  .eq-modal__close {
    top: 10px;
    right: 10px;
  }
}

.eq-modal__select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23152A47' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}

.eq-modal__select:disabled,
.eq-modal__select.is-locked {
  opacity: 1;
  background-color: #f3f1ea;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .blog-filter { top: 56px; }

  .blog-filter__label span { display: none; }

  .blog-filter__inner {
    gap: 10px;
    padding: 10px 0;
  }
}

@media (max-width: 575.98px) {
  .blog-filter__chip {
    padding: 8px 12px;
    font-size: 12px;
  }

  .blog-filter__nav {
    width: 30px;
    height: 30px;
  }
}

/* ---------- Product hero / buy box (enterprise stage) ---------- */
.pd-hero{
  position:relative;
  
  padding:60px 0;
  
}
.pd-hero__glow{
  position:absolute;
  inset:auto -10% 48% auto;
  width:420px;
  height:420px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(245,200,66,.18), transparent 68%);
  pointer-events:none;
}
.pd-hero__inner{ position:relative; z-index:1; }

.pd-gallery--stage .pd-gallery-frame{
  border-radius:18px;
  background:
    linear-gradient(145deg, rgba(15,28,46,.92) 0%, rgba(31,58,95,.88) 55%, rgba(39,70,111,.9) 100%);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 28px 60px rgba(8,16,28,.35);
}
.pd-gallery--stage .pd-gallery-main{
  height:440px;
}
.pd-gallery--stage .pd-gallery-main .swiper-slide{
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,.08), transparent 42%),
    linear-gradient(180deg, #1a2f4d 0%, #243f66 100%);
}
.pd-gallery--stage .pd-gallery-main img{
  width:100%;
  height:100%;
  object-fit:contain;
  background:transparent;
  padding:18px 18px 28px;
  transition:transform .45s ease;
}
.pd-gallery--stage .pd-gallery-zoom:hover img{
  transform:scale(1.03);
}
.pd-gallery-badges{
  position:absolute;
  top:14px;
  left:14px;
  z-index:4;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.pd-gallery-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:7px 11px;
  border-radius:999px;
  background:rgb(72 40 40 / 12%);
  border:1px solid rgba(255,255,255,.18);
  color:#4b4343;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  backdrop-filter:blur(8px);
}
.pd-gallery-badge--verified{
  background:rgba(200,150,12,.92);
  border-color:rgba(200,150,12,.95);
  color:#1a1404;
}
.pd-gallery-zoom{ position:relative; }
.pd-gallery-zoom-hint{
  position:absolute;
  left:50%;
  bottom:16px;
  transform:translateX(-50%) translateY(8px);
  opacity:0;
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(15,28,46,.78);
  color:#fff;
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.03em;
  pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
}
.pd-gallery-zoom:hover .pd-gallery-zoom-hint{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}
.pd-gallery--stage .pd-gallery-thumbs{ margin-top:14px; }
.pd-gallery--stage .pd-gallery-thumb{
  border-color:rgba(31,58,95,.18);
  background:#fff;
}
.pd-gallery--stage .swiper-slide-thumb-active .pd-gallery-thumb{
  border-color:var(--gold);
  box-shadow:0 8px 18px rgba(200,150,12,.22);
}

.pd-buybox{
  
  display:flex;
  flex-direction:column;
  padding:28px 28px 24px;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(31,58,95,.08);
  box-shadow:0 22px 50px rgba(21,42,71,.12);
  animation:pdBuyIn .55s ease both;
}
@keyframes pdBuyIn{
  from{ opacity:0; transform:translateY(14px); }
  to{ opacity:1; transform:none; }
}
.pd-buybox__meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.pd-buybox__eyebrow{
  font-size:.75rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#8A6A15;
}
.pd-buybox__stock{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:5px 10px;
  border-radius:999px;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.03em;
  text-transform:uppercase;
}
.pd-buybox__stock.is-in{
  background:rgba(22,163,74,.1);
  color:#15803d;
}
.pd-buybox__stock.is-out{
  background:rgba(200,150,12,.12);
  color:#8A6A15;
}
.pd-buybox__title{
  margin:0 0 10px;
  font-size:clamp(1.7rem, 2.4vw, 2.35rem);
  line-height:1.15;
  font-weight:700;
  color:var(--navy-dark);
  letter-spacing:-.02em;
}
.pd-buybox__rating{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:12px;
  color:var(--navy);
  font-size:.92rem;
}
.pd-buybox__stars{ color:var(--gold); display:inline-flex; gap:2px; }
.pd-buybox__rating-count{ color:var(--text-muted); font-size:.82rem; }
.pd-buybox__desc{
  margin:0 0 16px;
  color:var(--text-muted);
  font-size:.98rem;
  line-height:1.65;
}
.pd-buybox__chips{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 18px;
  padding:0;
}
.pd-buybox__chips li{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:7px 11px;
  border-radius:999px;
  background:#eef2f7;
  color:var(--navy);
  font-size:.78rem;
  font-weight:600;
}
.pd-buybox__chips i{ color:var(--gold); }
.pd-buybox__commerce{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:12px;
  margin-bottom:18px;
}
.pd-buybox__price-block,
.pd-buybox__lead{
  padding:14px 16px;
  border-radius:12px;
  background:linear-gradient(180deg, #fbfaf7 0%, #f3f1ea 100%);
  border:1px solid rgba(31,58,95,.08);
}
.pd-buybox__price-label{
  display:block;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--text-muted);
  margin-bottom:4px;
}
.pd-buybox__price,
.pd-buybox__lead-value{
  font-family:'IBM Plex Mono', monospace;
  font-size:1.35rem;
  font-weight:600;
  color:var(--navy-dark);
  line-height:1.2;
}
.pd-buybox__price--soft{ font-size:1.15rem; }
.pd-buybox__price-note{
  display:block;
  margin-top:4px;
  font-size:.75rem;
  color:var(--text-muted);
  line-height:1.4;
}
.pd-buybox__actions{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:10px;
  margin-bottom:16px;
}
.pd-buybox__cta,
.pd-buybox__wa,
.pd-buybox__ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:48px;
  border-radius:10px;
  font-weight:700;
  font-size:11px;
  text-decoration:none;
  transition:transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.pd-buybox__cta{
  background:linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color:#1a1404;
  border:0;
  box-shadow:0 12px 24px rgba(200,150,12,.28);
}
.pd-buybox__cta:hover{
  color:#1a1404;
  transform:translateY(-1px);
  box-shadow:0 16px 28px rgba(200,150,12,.34);
}
.pd-buybox__wa{
  background:#128C7E;
  color:#fff;
  border:0;
}
.pd-buybox__wa:hover{
  background:#0f7a6e;
  color:#fff;
  transform:translateY(-1px);
}
.pd-buybox__ghost{
  background:#fff;
  color:var(--navy);
  border:1px solid rgba(31,58,95,.28);
}
.pd-buybox__ghost:hover{
  background:var(--navy);
  color:#fff;
  transform:translateY(-1px);
}
.pd-buybox__trust{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:10px;
  margin-top:auto;
  padding-top:14px;
  border-top:1px solid rgba(31,58,95,.08);
}
.pd-buybox__trust-item{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.pd-buybox__trust-item strong{
  font-size:.88rem;
  color:var(--navy-dark);
}
.pd-buybox__trust-item span{
  font-size:.72rem;
  color:var(--text-muted);
}
.pd-buybox__trust-item a{
  color:inherit;
  text-decoration:none;
}
.pd-buybox__trust-item a:hover strong{ color:var(--gold); }

@media (max-width:991.98px){
  .pd-hero{
    
    padding:50px 0 28px;
  }
  .pd-gallery--stage .pd-gallery-main{ height:320px; }
  .pd-buybox{ padding:22px 18px; margin-top:50px; }
  .pd-buybox__commerce,
  .pd-buybox__actions,
  .pd-buybox__trust{ grid-template-columns:1fr 1fr; }
  .pd-buybox__cta{ grid-column:1 / -1; }
}
@media (max-width:575.98px){
  .pd-gallery--stage .pd-gallery-main{ height:260px; }
  .pd-buybox__commerce,
  .pd-buybox__actions,
  .pd-buybox__trust{ grid-template-columns:1fr; }
  .pd-buybox__title{ font-size:1.55rem; }
  .trust-strip i {margin-top: 10px;}

}
@media (prefers-reduced-motion: reduce){
  .pd-buybox{ animation:none; }
  .pd-gallery--stage .pd-gallery-main img,
  .pd-buybox__cta,
  .pd-buybox__wa,
  .pd-buybox__ghost{ transition:none; }
}

/* Google reCAPTCHA on inquiry forms */
.sb-recaptcha{
  margin: 0.35rem 0 0.75rem;
}
.sb-recaptcha .g-recaptcha{
  transform-origin: left top;
}
.sb-recaptcha .sb-recaptcha-error,
.sb-recaptcha .error_msgIcon{
  color: #c0392b;
  font-size: 0.85rem;
  margin-top: 0.4rem;
}
.eq-modal__field .sb-recaptcha{
  margin-bottom: 0;
}
.pd-demo-form .sb-recaptcha{
  margin-bottom: 0.85rem;
}
@media (max-width: 400px){
  .sb-recaptcha .g-recaptcha{
    transform: scale(0.9);
  }
}

/* ── Quick contact desk (right rail) ───────────────────── */
.sb-quickdock{
  --qd-ink: #0c1524;
  --qd-panel: #122033;
  --qd-panel-2: #182a42;
  --qd-line: rgba(255,255,255,0.08);
  --qd-gold: #d4a017;
  --qd-gold-2: #f0c14b;
  --qd-text: #f4f6fa;
  --qd-muted: rgba(244,246,250,0.62);
  --qd-wa: #2bbf6a;
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 1040;
  transform: translateY(-50%);
  padding: 0;
  pointer-events: none;
}
.sb-quickdock__shell{
  pointer-events: auto;
  width: 64px;
  overflow: hidden;
  border-radius: 16px 0 0 16px;
  background:
    linear-gradient(180deg, rgba(212,160,23,0.16) 0%, transparent 18%),
    linear-gradient(155deg, var(--qd-panel-2) 0%, var(--qd-ink) 100%);
  border: 1px solid rgba(212,160,23,0.28);
  border-right: 0;
  box-shadow:
    -10px 18px 40px rgba(8, 14, 26, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.06);
  transition: width 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  animation: sbQuickdockIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
.sb-quickdock__shell:hover,
.sb-quickdock__shell:focus-within{
  width: 236px;
  box-shadow:
    -16px 22px 48px rgba(8, 14, 26, 0.42),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.sb-quickdock__brand{
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 14px 10px 18px;
  border-bottom: 1px solid var(--qd-line);
  position: relative;
}
.sb-quickdock__brand::after{
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--qd-gold-2), var(--qd-gold));
}
.sb-quickdock__brand-mark{
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--qd-gold-2), var(--qd-gold));
  box-shadow: 0 0 0 4px rgba(212,160,23,0.16);
  animation: sbQuickdockPulse 2.4s ease-in-out infinite;
}
.sb-quickdock__brand-text{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--qd-gold-2);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.28s ease 0.05s, transform 0.28s ease 0.05s;
}
.sb-quickdock__shell:hover .sb-quickdock__brand-text,
.sb-quickdock__shell:focus-within .sb-quickdock__brand-text{
  opacity: 1;
  transform: translateX(0);
}
.sb-quickdock__list{
  display: flex;
  flex-direction: column;
  padding: 8px 8px 10px;
  gap: 4px;
}
.sb-quickdock__btn{
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  min-height: 52px;
  padding: 0;
  border-radius: 12px;
  color: var(--qd-text);
  text-decoration: none !important;
  background: transparent;
  transition: background 0.25s ease, transform 0.25s ease;
}
.sb-quickdock__btn:hover,
.sb-quickdock__btn:focus-visible{
  background: rgba(255,255,255,0.06);
  transform: translateX(-2px);
}
.sb-quickdock__btn:focus-visible{
  outline: 2px solid var(--qd-gold);
  outline-offset: 1px;
}
.sb-quickdock__icon{
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #eef2f8;
  position: relative;
}
.sb-quickdock__icon::before{
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.sb-quickdock__icon i{
  position: relative;
  z-index: 1;
}
.sb-quickdock__btn:hover .sb-quickdock__icon::before,
.sb-quickdock__btn:focus-visible .sb-quickdock__icon::before{
  background: rgba(212,160,23,0.14);
  border-color: rgba(212,160,23,0.4);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.08);
}
.sb-quickdock__btn:hover .sb-quickdock__icon,
.sb-quickdock__btn:focus-visible .sb-quickdock__icon{
  color: var(--qd-gold-2);
}
.sb-quickdock__btn--wa .sb-quickdock__icon{
  color: var(--qd-wa);
}
.sb-quickdock__btn--wa:hover .sb-quickdock__icon,
.sb-quickdock__btn--wa:focus-visible .sb-quickdock__icon{
  color: #57e08c;
}
.sb-quickdock__btn--wa:hover .sb-quickdock__icon::before,
.sb-quickdock__btn--wa:focus-visible .sb-quickdock__icon::before{
  background: rgba(43,191,106,0.14);
  border-color: rgba(43,191,106,0.4);
  box-shadow: 0 0 0 3px rgba(43,191,106,0.08);
}
.sb-quickdock__copy{
  min-width: 0;
  padding-right: 10px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.28s ease 0.06s, transform 0.28s ease 0.06s;
  pointer-events: none;
}
.sb-quickdock__shell:hover .sb-quickdock__copy,
.sb-quickdock__shell:focus-within .sb-quickdock__copy{
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.sb-quickdock__title{
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: var(--qd-text);
}
.sb-quickdock__meta{
  display: block;
  margin-top: 3px;
  font-size: 0.68rem;
  line-height: 1.2;
  color: var(--qd-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
}
@keyframes sbQuickdockIn{
  from{ opacity: 0; transform: translateX(28px); }
  to{ opacity: 1; transform: translateX(0); }
}
@keyframes sbQuickdockPulse{
  0%, 100%{ box-shadow: 0 0 0 4px rgba(212,160,23,0.14); }
  50%{ box-shadow: 0 0 0 7px rgba(212,160,23,0.08); }
}
@media (max-width: 767.98px){
  .sb-quickdock{
    top: auto;
    bottom: 92px;
    transform: none;
  }
  .sb-quickdock__shell{
    width: 56px;
    border-radius: 14px 0 0 14px;
  }
  .sb-quickdock__shell:hover,
  .sb-quickdock__shell:focus-within{
    width: 210px;
  }
  .sb-quickdock__brand{
    min-height: 40px;
    padding: 10px 12px 8px 16px;
  }
  .sb-quickdock__btn{
    min-height: 46px;
    grid-template-columns: 44px minmax(0, 1fr);
  }
  .sb-quickdock__icon{
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
  }
  .sb-quickdock__meta{
    display: none;
  }
}
@media (prefers-reduced-motion: reduce){
  .sb-quickdock__shell,
  .sb-quickdock__brand-text,
  .sb-quickdock__copy,
  .sb-quickdock__btn,
  .sb-quickdock__icon::before{
    transition: none;
    animation: none;
  }
  .sb-quickdock__brand-mark{
    animation: none;
  }
}

/* ── Team initials avatar (About page) ─────────────────── */
.team-img-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 35%, rgba(225,169,37,0.16), transparent 60%),
    linear-gradient(155deg, #122033 0%, #0c1524 100%);
}
.team-avatar{
  position: relative;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.team-card:hover .team-avatar{
  transform: scale(1.06);
}
.team-avatar__ring{
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(240,193,75,0.35), transparent 45%),
    linear-gradient(160deg, #1c314f, #0f1c2e);
  border: 1px solid rgba(225,169,37,0.45);
  box-shadow:
    0 12px 28px rgba(8,14,26,0.35),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.team-avatar__ring::after{
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px dashed rgba(225,169,37,0.35);
}
.team-avatar__initials{
  position: relative;
  z-index: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #f0c14b;
  text-shadow: 0 2px 12px rgba(212,160,23,0.25);
  line-height: 1;
}
.team-social-row{
  background: linear-gradient(to top, rgba(12,21,36,0.92), transparent);
}
@media (max-width:575.98px){
  .team-avatar{
    width: 100px;
    height: 100px;
  }
  .team-avatar__initials{
    font-size: 1.7rem;
  }
}



