@charset "UTF-8";
:root {
  --ox-primary-dark: #012E40;
  --ox-secondary-dark: #024959;
  --ox-accent: #026773;
  --ox-accent-soft: #3CA6A6;
  --ox-soft-bg: #F2E3D5;
  /* Surfaces */
  --ox-body-bg: #fff;
  --ox-body-bg-soft-start: rgba(242, 227, 213, 0.65);
  --ox-body-bg-soft-end: rgba(242, 227, 213, 0.15);
  --ox-body-bg-warm-start: #fdf8f3;
  --ox-body-bg-warm-end: #f9f1e8;
  --ox-surface: #ffffff;
  --ox-surface-weak: #f8fafb;
  --ox-surface-hover: #f0f4f5;
  /* Text */
  --ox-text: #0b1f26;
  --ox-text-muted: rgba(11, 31, 38, 0.72);
  --ox-text-inverse: rgba(255, 255, 255, 0.92);
  --ox-text-inverse-muted: rgba(255, 255, 255, 0.78);
  /* Borders */
  --ox-border: rgba(1, 46, 64, 0.08);
  --ox-border-medium: rgba(1, 46, 64, 0.1);
  --ox-border-strong: rgba(1, 46, 64, 0.12);
  --ox-border-accent: rgba(2, 103, 115, 0.22);
  /* Shadows */
  --ox-shadow-color: rgba(1, 46, 64, 0.08);
  --ox-shadow-color-md: rgba(1, 46, 64, 0.12);
  --ox-shadow-color-lg: rgba(1, 46, 64, 0.18);
  --ox-shadow-sm: 0 10px 30px rgba(1, 46, 64, 0.08);
  --ox-shadow-md: 0 18px 45px rgba(1, 46, 64, 0.12);
  --ox-shadow-lg: 0 28px 70px rgba(1, 46, 64, 0.18);
  /* Nav */
  --ox-nav-bg: rgba(255, 255, 255, 0.78);
  --ox-nav-border: rgba(1, 46, 64, 0.08);
  /* Wave divider fills */
  --ox-wave-fill: #fcf6f1;
  --ox-wave-fill-white: #ffffff;
  --ox-wave-fill-warm: #fcf6f1;
  --ox-wave-fill-soft: #f7ede4;
  --ox-wave-fill-dark: #012E40;
  /* Focus ring */
  --ox-accent-focus: rgba(2, 103, 115, 0.18);
  /* Misc */
  --ox-radius-sm: 12px;
  --ox-radius-md: 16px;
  --ox-radius-lg: 24px;
  --ox-section-py: 96px;
  --ox-section-py-sm: 72px;
  --ox-section-py-xs: 30px;
}

/* Dark mode overrides */
[data-theme=dark] {
  color-scheme: dark;
  --ox-body-bg: #0d1b22;
  --ox-body-bg-soft-start: rgba(0, 0, 0, 0.35);
  --ox-body-bg-soft-end: rgba(0, 0, 0, 0.15);
  --ox-body-bg-warm-start: #121f27;
  --ox-body-bg-warm-end: #0d1b22;
  --ox-surface: #1a2e3a;
  --ox-surface-weak: #152733;
  --ox-surface-hover: #223a47;
  --ox-text: #e0e9ed;
  --ox-text-muted: rgba(200, 212, 218, 0.6);
  --ox-text-inverse: rgba(255, 255, 255, 0.92);
  --ox-text-inverse-muted: rgba(255, 255, 255, 0.78);
  --ox-border: rgba(255, 255, 255, 0.08);
  --ox-border-medium: rgba(255, 255, 255, 0.1);
  --ox-border-strong: rgba(255, 255, 255, 0.12);
  --ox-border-accent: rgba(2, 103, 115, 0.35);
  --ox-shadow-color: rgba(0, 0, 0, 0.25);
  --ox-shadow-color-md: rgba(0, 0, 0, 0.35);
  --ox-shadow-color-lg: rgba(0, 0, 0, 0.45);
  --ox-shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.25);
  --ox-shadow-md: 0 18px 45px rgba(0, 0, 0, 0.35);
  --ox-shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.45);
  --ox-nav-bg: rgba(13, 27, 34, 0.85);
  --ox-nav-border: rgba(255, 255, 255, 0.08);
  /* Wave divider */
  --ox-wave-fill: #121f27;
  --ox-wave-fill-white: #0d1b22;
  --ox-wave-fill-warm: #121f27;
  --ox-wave-fill-soft: #0d1b22;
  --ox-wave-fill-dark: #0d1b22;
  /* Focus ring */
  --ox-accent-focus: rgba(60, 166, 166, 0.22);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, Liberation Sans, sans-serif;
  color: var(--ox-text);
  background: var(--ox-body-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.form-control,
.form-select {
  border-radius: 16px;
  border-color: rgba(1, 46, 64, 0.14);
  padding: 0.85rem 1rem;
}
.form-control:focus,
.form-select:focus {
  border-color: rgba(2, 103, 115, 0.55);
  box-shadow: 0 0 0 0.25rem rgba(2, 103, 115, 0.12);
}

.form-check-input:checked {
  background-color: var(--ox-accent);
  border-color: var(--ox-accent);
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(2, 103, 115, 0.12);
}

::-moz-selection {
  background: rgba(2, 103, 115, 0.22);
}

::selection {
  background: rgba(2, 103, 115, 0.22);
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
}

.section {
  padding: var(--ox-section-py) 0;
}

.section-soft {
  background: linear-gradient(180deg, var(--ox-body-bg-soft-start), var(--ox-body-bg-soft-end));
}

.section-warm {
  background: linear-gradient(180deg, var(--ox-body-bg-warm-start), var(--ox-body-bg-warm-end));
}

.section-white {
  background: var(--ox-body-bg);
}

/* Wave dividers */
.wave-divider svg path {
  fill: var(--ox-wave-fill) !important;
}

.wave-fill-white svg path {
  fill: var(--ox-wave-fill-white) !important;
}

.wave-fill-warm svg path {
  fill: var(--ox-wave-fill-warm) !important;
}

.wave-fill-soft svg path {
  fill: var(--ox-wave-fill-soft) !important;
}

.wave-fill-dark svg path {
  fill: var(--ox-wave-fill-dark) !important;
}

.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

@media (max-width: 767.98px) {
  .wave-divider svg {
    height: 40px;
  }
}
.wave-divider--overlap {
  margin-top: -60px;
  margin-bottom: -1px;
}

@media (max-width: 767.98px) {
  .wave-divider--overlap {
    margin-top: -40px;
    margin-bottom: -1px;
  }
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(2, 103, 115, 0.1);
  color: var(--ox-accent);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
}

.section-label-invert {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}

.avatar-stack {
  display: inline-flex;
  align-items: center;
}
.avatar-stack img {
  border: 2px solid rgba(255, 255, 255, 0.85);
}
.avatar-stack img + img {
  margin-left: -10px;
}

.max-w-860 {
  max-width: 860px;
}

.max-w-54ch {
  max-width: 54ch;
}

.opacity-60 {
  opacity: 0.6 !important;
}

.opacity-90 {
  opacity: 0.9 !important;
}

.text-muted-ox {
  color: var(--ox-text-muted) !important;
}

.text-ox-accent {
  color: var(--ox-accent) !important;
}

.text-ox-faint {
  color: var(--ox-text-muted) !important;
}

.card-ox {
  border: 1px solid var(--ox-border);
  border-radius: var(--ox-radius-lg);
  box-shadow: var(--ox-shadow-sm);
  background: var(--ox-surface);
}

.code-block {
  padding: 16px 16px;
  border-radius: 18px;
  border: 1px solid var(--ox-border);
  background: var(--ox-surface-weak);
  overflow-x: auto;
}
.code-block code {
  color: var(--ox-text);
}

.glass {
  background: var(--ox-surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--ox-border);
}

[data-theme=dark] .glass {
  background: rgba(255, 255, 255, 0.06);
}

.icon-pill {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(2, 103, 115, 0.12);
  color: var(--ox-accent);
}

[data-theme=dark] .icon-pill {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--ox-text-inverse);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.btn-ox {
  border-radius: 999px;
  padding: 0.85rem 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition-property: transform, box-shadow, background-color, border-color, color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn-ox:active {
  transform: translateY(0) scale(0.99);
}
.btn-ox-primary {
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0);
  background: linear-gradient(135deg, var(--ox-accent), var(--ox-accent-soft));
  box-shadow: 0 18px 40px rgba(2, 103, 115, 0.28);
}
.btn-ox-primary:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(2, 103, 115, 0.34);
}
.btn-ox-outline {
  background: var(--ox-surface-weak);
  border: 1px solid var(--ox-border-medium);
  color: var(--ox-text);
}
.btn-ox-outline:hover {
  transform: translateY(-1px);
  box-shadow: var(--ox-shadow-sm);
}
.btn-ox-dark {
  color: #fff;
  background: linear-gradient(135deg, var(--ox-primary-dark), var(--ox-secondary-dark));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 60px rgba(1, 46, 64, 0.34);
}
.btn-ox-dark:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 26px 75px rgba(1, 46, 64, 0.42);
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--ox-accent), var(--ox-accent-soft));
  color: #fff;
  box-shadow: 0 14px 34px rgba(2, 103, 115, 0.25);
}

.subnav-oxygen {
  position: fixed;
  left: 50%;
  top: var(--ox-subnav-top, 72px);
  z-index: 5;
  margin-top: 10px;
  transform: translateX(-50%) translateY(-10px);
  padding: 6px;
  background: var(--ox-surface);
  border: 1px solid var(--ox-border);
  border-radius: 999px;
  box-shadow: 0 14px 40px var(--ox-shadow-color-md);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  max-width: calc(100vw - 32px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.subnav-oxygen.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.subnav-oxygen .subnav-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  padding-bottom: 2px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.subnav-oxygen .subnav-inner::-webkit-scrollbar {
  display: none;
}
.subnav-oxygen .subnav-link {
  flex: 0 0 auto;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ox-text-muted);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  transition-property: background-color, border-color, color, box-shadow;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.subnav-oxygen .subnav-link:hover {
  border-color: rgba(2, 103, 115, 0.24);
  background: rgba(2, 103, 115, 0.1);
  color: var(--ox-text);
  box-shadow: var(--ox-shadow-sm);
}
.subnav-oxygen .subnav-link.active {
  border-color: rgba(2, 103, 115, 0.32);
  background: rgba(2, 103, 115, 0.14);
  color: var(--ox-text);
}
.subnav-oxygen .subnav-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(2, 103, 115, 0.18), var(--ox-shadow-sm);
}

.navbar-oxygen {
  padding: 16px 0;
  transition-property: background-color, box-shadow, padding, border-color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.navbar-oxygen .navbar-nav {
  gap: 6px;
}
.navbar-oxygen .navbar-toggler i {
  color: var(--ox-text);
}
.navbar-oxygen .navbar-brand {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ox-text);
}
[data-theme=dark] .navbar-oxygen .navbar-brand {
  color: #fff;
}
.navbar-oxygen .nav-link {
  color: var(--ox-text);
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 10px 16px;
  border-radius: 999px;
  transition-property: background-color, color, padding;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.navbar-oxygen .nav-link:hover {
  color: var(--ox-text);
  background: var(--ox-surface-hover);
  padding: 10px 20px;
}
.navbar-oxygen .nav-link.active {
  color: var(--ox-text);
  background: var(--ox-surface);
}
.navbar-oxygen .dropdown-mega {
  position: static;
}
.navbar-oxygen .dropdown-mega-menu {
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  z-index: 1090;
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s linear 220ms;
}
.navbar-oxygen .dropdown-mega-menu.show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 220ms ease, transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.navbar-oxygen .dropdown-mega-menu .mega-tabs .nav-link {
  color: var(--ox-text-muted);
}
.navbar-oxygen .dropdown-mega-menu .mega-tabs .nav-link:hover {
  color: var(--ox-text);
}
.navbar-oxygen .dropdown-mega-menu .mega-tabs .nav-link.active {
  color: var(--ox-text);
}
.navbar-oxygen .mega-surface {
  background: var(--ox-surface);
  border: 1px solid var(--ox-border-medium);
  box-shadow: 0 22px 70px var(--ox-shadow-color-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.navbar-oxygen .mega-heading {
  font-weight: 850;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  color: var(--ox-text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-oxygen .mega-heading i {
  color: var(--ox-text-muted);
  font-size: 18px;
}
.navbar-oxygen .mega-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--ox-text);
  background: rgba(2, 103, 115, 0.14);
  border: 1px solid rgba(2, 103, 115, 0.18);
}
.navbar-oxygen .mega-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid var(--ox-border);
  background: var(--ox-surface-weak);
  text-decoration: none;
  color: var(--ox-text);
  position: relative;
  transition-property: transform, box-shadow, border-color, background-color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.navbar-oxygen .mega-row:hover {
  transform: translateY(-1px);
  border-color: rgba(2, 103, 115, 0.22);
  box-shadow: var(--ox-shadow-sm);
}
.navbar-oxygen .mega-row:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(2, 103, 115, 0.18), var(--ox-shadow-sm);
}
.navbar-oxygen .mega-row-body {
  display: grid;
  gap: 2px;
  min-width: 0;
  flex: 1 1 auto;
}
.navbar-oxygen .mega-row .mega-arrow {
  background: var(--ox-surface-hover);
  color: var(--ox-text-muted);
}
.navbar-oxygen .mega-row:hover .mega-arrow {
  background: rgba(2, 103, 115, 0.12);
  color: var(--ox-accent);
}
.navbar-oxygen .mega-row-title {
  font-weight: 850;
  font-size: 0.9rem;
  letter-spacing: -0.02em;
  line-height: 1.05;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.navbar-oxygen .mega-row-desc {
  color: var(--ox-text-muted);
  font-weight: 600;
  font-size: 0.82rem;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.navbar-oxygen .mega-row-viewall {
  justify-content: space-between;
}
.navbar-oxygen .icon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid var(--ox-border);
  background: var(--ox-surface-weak);
  text-decoration: none;
  color: var(--ox-text);
  font-weight: 750;
  transition-property: transform, box-shadow, border-color, background-color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.navbar-oxygen .icon-row .icon-row-icon {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(2, 103, 115, 0.12);
  border: 1px solid rgba(2, 103, 115, 0.18);
  color: var(--ox-accent);
  flex: 0 0 auto;
}
.navbar-oxygen .icon-row .icon-row-icon i {
  font-size: 18px;
  line-height: 1;
}
.navbar-oxygen .icon-row .icon-row-body {
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.navbar-oxygen .icon-row .mega-arrow {
  background: var(--ox-surface-hover);
  color: var(--ox-text-muted);
}
.navbar-oxygen .icon-row:hover {
  transform: translateY(-1px);
  border-color: rgba(2, 103, 115, 0.22);
  box-shadow: var(--ox-shadow-sm);
}
.navbar-oxygen .icon-row:hover .mega-arrow {
  background: rgba(2, 103, 115, 0.12);
  color: var(--ox-accent);
}
.navbar-oxygen .icon-row:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(2, 103, 115, 0.18), var(--ox-shadow-sm);
}
.navbar-oxygen .mega-center {
  border-top: 1px solid var(--ox-border);
  padding-top: 18px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 6px;
}
.navbar-oxygen .mega-center-title {
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ox-text);
}
.navbar-oxygen .mega-center-text {
  color: var(--ox-text-muted);
  font-weight: 650;
  font-size: 0.92rem;
}
.navbar-oxygen .mega-map {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--ox-border-medium);
  background: var(--ox-surface-weak);
  box-shadow: var(--ox-shadow-md);
  height: 100%;
}
.navbar-oxygen .mega-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}
.navbar-oxygen .mega-info {
  border-radius: 22px;
  padding: 18px 18px;
  border: 1px solid var(--ox-border-medium);
  background: var(--ox-surface-weak);
  box-shadow: var(--ox-shadow-md);
  height: 100%;
}
.navbar-oxygen .mega-info hr {
  border-color: var(--ox-border);
  opacity: 1;
}
.navbar-oxygen .mega-info-title {
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ox-text);
}
.navbar-oxygen .mega-info-label {
  font-weight: 850;
  letter-spacing: -0.01em;
  color: var(--ox-text);
}
.navbar-oxygen .mega-info-text {
  color: var(--ox-text-muted);
  font-weight: 650;
}
.navbar-oxygen .mega-tabs {
  display: grid;
  gap: 10px;
}
.navbar-oxygen .mega-tabs .nav-link {
  border-radius: 18px;
  padding: 12px 12px;
  font-weight: 850;
  color: var(--ox-text-muted);
  background: var(--ox-surface-weak);
  border: 1px solid var(--ox-border);
  text-align: start;
  transition-property: background-color, border-color, transform, box-shadow, color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.navbar-oxygen .mega-tabs .nav-link:hover {
  transform: translateY(-1px);
  border-color: rgba(2, 103, 115, 0.22);
  box-shadow: var(--ox-shadow-sm);
}
.navbar-oxygen .mega-tabs .nav-link.active {
  color: var(--ox-text);
  background: rgba(2, 103, 115, 0.12);
  border-color: rgba(2, 103, 115, 0.22);
}
.navbar-oxygen .dropdown-flyout {
  position: relative;
}
.navbar-oxygen .dropdown-flyout-menu {
  width: min(320px, 100vw - 24px);
  padding: 12px;
  margin-top: 12px;
  margin-bottom: 0;
  list-style: none;
  border-radius: 22px;
  background: var(--ox-surface);
  border: 1px solid var(--ox-border-medium);
  box-shadow: 0 22px 70px var(--ox-shadow-color-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s linear 220ms;
}
.navbar-oxygen .dropdown-flyout-menu.show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 220ms ease, transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.navbar-oxygen .flyout-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid var(--ox-border);
  background: var(--ox-surface-weak);
  text-decoration: none;
  color: var(--ox-text);
  transition-property: transform, box-shadow, border-color, background-color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.navbar-oxygen .flyout-item:hover {
  transform: translateY(-1px);
  border-color: rgba(2, 103, 115, 0.22);
  box-shadow: var(--ox-shadow-sm);
}
.navbar-oxygen .flyout-item:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(2, 103, 115, 0.18), var(--ox-shadow-sm);
}
.navbar-oxygen .flyout-icon {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(2, 103, 115, 0.12);
  border: 1px solid rgba(2, 103, 115, 0.18);
  color: var(--ox-accent);
  flex: 0 0 auto;
}
.navbar-oxygen .flyout-icon i {
  font-size: 18px;
}
.navbar-oxygen .flyout-body {
  display: grid;
  gap: 2px;
  flex: 1 1 auto;
  min-width: 0;
}
.navbar-oxygen .flyout-title {
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.navbar-oxygen .flyout-desc {
  color: var(--ox-text-muted);
  font-weight: 650;
  font-size: 0.92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.navbar-oxygen .flyout-caret {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--ox-surface-hover);
  color: var(--ox-text-muted);
  flex: 0 0 auto;
}
.navbar-oxygen .flyout-caret i {
  font-size: 18px;
  line-height: 1;
}
.navbar-oxygen .dropdown-submenu {
  position: relative;
  /* Invisible bridge to keep hover alive while crossing the gap */
}
.navbar-oxygen .dropdown-submenu::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  inset-inline-start: 100%;
  width: 8px;
  z-index: 1;
}
.navbar-oxygen .dropdown-submenu > .dropdown-menu {
  top: 0;
  inset-inline-start: calc(100% + 8px);
  z-index: 2;
  margin-top: -6px;
  padding: 12px;
  border-radius: 24px;
  background: var(--ox-surface);
  border: 1px solid var(--ox-border-medium);
  box-shadow: 0 22px 70px var(--ox-shadow-color-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  min-width: 240px;
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: opacity 220ms ease, transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s linear 220ms;
  /* Connecting arrow to parent */
}
.navbar-oxygen .dropdown-submenu > .dropdown-menu::before {
  content: "";
  position: absolute;
  top: 20px;
  inset-inline-start: -6px;
  width: 10px;
  height: 10px;
  background: var(--ox-surface);
  border-inline-start: 1px solid var(--ox-border-medium);
  border-block-start: 1px solid var(--ox-border-medium);
  transform: rotate(-45deg);
}
.navbar-oxygen .dropdown-submenu.is-open > .dropdown-menu, .navbar-oxygen .dropdown-submenu:focus-within > .dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  transition: opacity 220ms ease, transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.navbar-oxygen .dropdown-submenu {
  /* Parent item open state */
}
.navbar-oxygen .dropdown-submenu.is-open > .flyout-item.has-children {
  border-color: rgba(2, 103, 115, 0.35);
  background: rgba(2, 103, 115, 0.08);
  box-shadow: 0 0 0 1px rgba(2, 103, 115, 0.12);
}
.navbar-oxygen .dropdown-submenu.is-open > .flyout-item.has-children .submenu-caret {
  background: rgba(2, 103, 115, 0.14);
  color: var(--ox-accent);
}
.navbar-oxygen .dropdown-submenu .submenu-caret i {
  transition: transform 220ms ease;
}
.navbar-oxygen .dropdown-submenu.is-open .submenu-caret i {
  transform: rotate(90deg);
}
.navbar-oxygen .dropdown-submenu-menu {
  padding: 4px;
}
.navbar-oxygen .dropdown-submenu-menu li {
  list-style: none;
}
.navbar-oxygen .submenu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 16px;
  text-decoration: none;
  color: var(--ox-text);
  font-weight: 650;
  font-size: 0.9rem;
  line-height: 1.2;
  transition-property: background-color, color, transform;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.navbar-oxygen .submenu-item:hover {
  background: var(--ox-surface-hover);
  color: var(--ox-accent);
  transform: translateX(2px);
}
.navbar-oxygen .submenu-item:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(2, 103, 115, 0.18);
}
.navbar-oxygen .submenu-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ox-border-accent);
  flex: 0 0 auto;
  transition: background-color 200ms ease, transform 200ms ease;
}
.navbar-oxygen .submenu-item:hover .submenu-dot {
  background: var(--ox-accent);
  transform: scale(1.15);
}
.navbar-oxygen .mega-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid var(--ox-border-medium);
  background: var(--ox-surface);
  box-shadow: var(--ox-shadow-sm);
  color: var(--ox-text);
  text-decoration: none;
  transition-property: transform, box-shadow, border-color, background-color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.navbar-oxygen .mega-card:hover {
  transform: translateY(-2px);
  border-color: rgba(2, 103, 115, 0.22);
  box-shadow: var(--ox-shadow-md);
}
.navbar-oxygen .mega-card:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(2, 103, 115, 0.18), var(--ox-shadow-md);
}
.navbar-oxygen .mega-card.is-featured {
  border-color: rgba(2, 103, 115, 0.26);
  background: linear-gradient(180deg, rgba(2, 103, 115, 0.08), var(--ox-surface-hover));
}
.navbar-oxygen .mega-thumb {
  width: 52px;
  height: 40px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--ox-border);
  background: var(--ox-surface-hover);
}
.navbar-oxygen .mega-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.navbar-oxygen .mega-card-body {
  display: grid;
  gap: 2px;
  flex: 1 1 auto;
  min-width: 0;
}
.navbar-oxygen .mega-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}
.navbar-oxygen .mega-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.navbar-oxygen .mega-desc {
  color: var(--ox-text-muted);
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.navbar-oxygen .mega-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ox-text);
  background: linear-gradient(135deg, rgba(2, 103, 115, 0.18), rgba(60, 166, 166, 0.16));
  border: 1px solid rgba(2, 103, 115, 0.18);
  flex: 0 0 auto;
}
.navbar-oxygen .mega-arrow {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: rgba(2, 103, 115, 0.08);
  color: var(--ox-accent);
  flex: 0 0 auto;
}
.navbar-oxygen .mega-arrow i {
  font-size: 20px;
  line-height: 1;
}
.navbar-oxygen .mega-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid var(--ox-border);
  background: var(--ox-surface-weak);
  color: var(--ox-text);
  font-weight: 700;
  text-decoration: none;
  transition-property: transform, box-shadow, border-color, background-color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.navbar-oxygen .mega-link i {
  color: var(--ox-accent);
  font-size: 18px;
}
.navbar-oxygen .mega-link:hover {
  transform: translateY(-1px);
  border-color: rgba(2, 103, 115, 0.22);
  box-shadow: var(--ox-shadow-sm);
}
.navbar-oxygen .mega-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(2, 103, 115, 0.18), var(--ox-shadow-sm);
}
.navbar-oxygen .mega-promo {
  border-radius: 22px;
  padding: 18px 18px;
  border: 1px solid var(--ox-border-medium);
  background: radial-gradient(closest-side, rgba(2, 103, 115, 0.22), rgba(2, 103, 115, 0) 70%), linear-gradient(135deg, var(--ox-surface), rgba(242, 227, 213, 0.55));
  box-shadow: var(--ox-shadow-md);
}
.navbar-oxygen .mega-promo-title {
  font-weight: 850;
  letter-spacing: -0.02em;
  color: var(--ox-text);
}
.navbar-oxygen .mega-promo-text {
  margin-top: 6px;
  color: var(--ox-text-muted);
  font-weight: 600;
}
.navbar-oxygen .nav-item-sections {
  display: none;
}
.navbar-oxygen .dropdown-sections-menu {
  width: min(440px, 100vw - 24px);
  padding: 14px;
  margin-top: 12px;
  border-radius: 22px;
  background: var(--ox-surface);
  border: 1px solid var(--ox-border-medium);
  box-shadow: 0 22px 70px var(--ox-shadow-color-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.navbar-oxygen .section-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid var(--ox-border);
  background: var(--ox-surface-weak);
  text-decoration: none;
  color: var(--ox-text);
  transition-property: transform, box-shadow, border-color, background-color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.navbar-oxygen .section-link:hover {
  transform: translateY(-1px);
  border-color: rgba(2, 103, 115, 0.22);
  box-shadow: var(--ox-shadow-sm);
}
.navbar-oxygen .section-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(2, 103, 115, 0.18), var(--ox-shadow-sm);
}
.navbar-oxygen .section-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(2, 103, 115, 0.12);
  border: 1px solid rgba(2, 103, 115, 0.18);
  color: var(--ox-accent);
}
.navbar-oxygen .section-icon i {
  font-size: 18px;
}
.navbar-oxygen .section-body {
  display: grid;
  gap: 2px;
  flex: 1 1 auto;
  min-width: 0;
}
.navbar-oxygen .section-title {
  font-weight: 850;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.navbar-oxygen .section-desc {
  color: var(--ox-text-muted);
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.navbar-oxygen .section-arrow {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--ox-surface-hover);
  color: var(--ox-text-muted);
  flex: 0 0 auto;
}
.navbar-oxygen.is-scrolled .nav-item-sections {
  display: list-item;
}
.navbar-oxygen.is-scrolled .nav-item-scrolllink {
  display: none;
}
.navbar-oxygen.navbar-invert .navbar-brand {
  color: var(--ox-text-inverse);
}
.navbar-oxygen.navbar-invert:not(.is-scrolled) .navbar-toggler i {
  color: var(--ox-text-inverse);
}
.navbar-oxygen.navbar-invert .nav-link {
  color: var(--ox-text-inverse-muted);
}
.navbar-oxygen.navbar-invert .nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}
.navbar-oxygen.navbar-invert .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}
.navbar-oxygen.navbar-invert.is-scrolled .navbar-brand {
  color: var(--ox-text);
}
.navbar-oxygen.navbar-invert.is-scrolled .nav-link {
  color: var(--ox-text);
}
.navbar-oxygen.navbar-invert.is-scrolled .nav-link:hover {
  color: var(--ox-text);
  background: var(--ox-surface-hover);
}
.navbar-oxygen.navbar-invert.is-scrolled .nav-link.active {
  color: var(--ox-text);
  background: var(--ox-surface);
}
.navbar-oxygen.navbar-oxygen-float {
  transform: translateY(0);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.navbar-oxygen.navbar-oxygen-float .container {
  transition: border-radius 320ms cubic-bezier(0.2, 0.8, 0.2, 1), padding 320ms cubic-bezier(0.2, 0.8, 0.2, 1), background-color 320ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 320ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.navbar-oxygen.navbar-oxygen-float.is-scrolled {
  top: 14px;
  padding: 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transform: translateY(-6px);
}
.navbar-oxygen.navbar-oxygen-float.is-scrolled .container {
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--ox-nav-bg);
  border: 1px solid var(--ox-nav-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 22px 70px var(--ox-shadow-color-lg);
}
.navbar-oxygen.is-scrolled {
  padding: 10px 0;
  background: var(--ox-nav-bg);
  border-bottom: 1px solid var(--ox-nav-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 60px var(--ox-border);
}

/* Hero navbar (not fixed — scrolls away with page) */
.navbar-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
}

/* Scroll-triggered floating pill navbar */
.navbar-oxygen-scroll {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  padding: 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transform: translateY(-140%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease, transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1040;
}
.navbar-oxygen-scroll .container {
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--ox-nav-bg);
  border: 1px solid var(--ox-nav-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 22px 70px var(--ox-shadow-color-lg);
  transition: border-radius 320ms cubic-bezier(0.2, 0.8, 0.2, 1), padding 320ms cubic-bezier(0.2, 0.8, 0.2, 1), background-color 320ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 320ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.navbar-oxygen-scroll.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.navbar-oxygen-scroll {
  /* Invert text for dark backgrounds */
}
.navbar-oxygen-scroll.navbar-invert .navbar-brand {
  color: var(--ox-text-inverse);
}
.navbar-oxygen-scroll.navbar-invert .navbar-toggler i {
  color: var(--ox-text-inverse);
}

.offcanvas-oxygen {
  border-left: 1px solid var(--ox-border-medium);
  background: var(--ox-surface);
  width: min(380px, 88vw);
}
.offcanvas-oxygen .offcanvas-header {
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--ox-border);
}
.offcanvas-oxygen .offcanvas-brand-text {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ox-text);
}
.offcanvas-oxygen .offcanvas-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid var(--ox-border);
  background: var(--ox-surface-weak);
  color: var(--ox-text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition-property: background-color, color, border-color, box-shadow, transform;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.offcanvas-oxygen .offcanvas-close-btn:hover {
  background: var(--ox-surface-hover);
  color: var(--ox-text);
  border-color: var(--ox-border-medium);
  transform: rotate(90deg);
}
.offcanvas-oxygen .offcanvas-close-btn:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(2, 103, 115, 0.18);
}
.offcanvas-oxygen .offcanvas-body {
  padding: 14px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.offcanvas-oxygen .offcanvas-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.offcanvas-oxygen .offcanvas-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  text-decoration: none;
  color: var(--ox-text);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  background: transparent;
  border: 1px solid transparent;
  transition-property: background-color, color, border-color, box-shadow, transform;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.offcanvas-oxygen .offcanvas-nav-link i {
  font-size: 1.15rem;
  color: var(--ox-text-muted);
  width: 22px;
  text-align: center;
  flex: 0 0 auto;
  transition-property: color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.offcanvas-oxygen .offcanvas-nav-link:hover {
  background: rgba(2, 103, 115, 0.08);
  border-color: rgba(2, 103, 115, 0.22);
  color: var(--ox-text);
  box-shadow: var(--ox-shadow-sm);
}
.offcanvas-oxygen .offcanvas-nav-link:hover i {
  color: var(--ox-accent);
}
.offcanvas-oxygen .offcanvas-nav-link:active {
  transform: scale(0.985);
}
.offcanvas-oxygen .offcanvas-nav-link.active {
  background: rgba(2, 103, 115, 0.12);
  border-color: rgba(2, 103, 115, 0.28);
  color: var(--ox-accent);
}
.offcanvas-oxygen .offcanvas-nav-link.active i {
  color: var(--ox-accent);
}
.offcanvas-oxygen .offcanvas-nav-accordion-item {
  border-radius: 16px;
  border: 1px solid transparent;
  overflow: hidden;
  transition-property: background-color, border-color, box-shadow;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.offcanvas-oxygen .offcanvas-nav-accordion-item.is-open {
  background: rgba(2, 103, 115, 0.04);
  border-color: rgba(2, 103, 115, 0.15);
  box-shadow: var(--ox-shadow-sm);
}
.offcanvas-oxygen .offcanvas-nav-accordion-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  background: transparent;
  color: var(--ox-text);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  text-align: start;
  border-radius: 16px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.offcanvas-oxygen .offcanvas-nav-accordion-btn span {
  display: flex;
  align-items: center;
  gap: 14px;
}
.offcanvas-oxygen .offcanvas-nav-accordion-btn span i {
  font-size: 1.15rem;
  color: var(--ox-text-muted);
  width: 22px;
  text-align: center;
}
.offcanvas-oxygen .offcanvas-nav-accordion-btn:hover {
  background: rgba(2, 103, 115, 0.08);
  color: var(--ox-text);
}
.offcanvas-oxygen .offcanvas-nav-accordion-btn:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(2, 103, 115, 0.18);
}
.offcanvas-oxygen .offcanvas-nav-accordion-btn .offcanvas-caret {
  font-size: 0.85rem;
  color: var(--ox-text-muted);
  transition: transform 250ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.offcanvas-oxygen .offcanvas-nav-accordion-btn:not(.collapsed) .offcanvas-caret {
  transform: rotate(180deg);
}
.offcanvas-oxygen .offcanvas-nav-nested {
  padding: 4px 8px 10px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.offcanvas-oxygen .offcanvas-nested-link {
  padding: 9px 14px 9px 10px;
  font-size: 0.92rem;
  font-weight: 650;
  gap: 10px;
  border-radius: 12px;
}
.offcanvas-oxygen .offcanvas-nested-link .offcanvas-link-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ox-border-accent);
  flex: 0 0 auto;
  transition: background-color 200ms ease, transform 200ms ease;
}
.offcanvas-oxygen .offcanvas-nested-link:hover .offcanvas-link-dot {
  background: var(--ox-accent);
  transform: scale(1.2);
}
.offcanvas-oxygen .offcanvas-ec-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 6px;
  border-top: 1px solid var(--ox-border);
}
.offcanvas-oxygen .offcanvas-ec-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--ox-border);
  background: var(--ox-surface-weak);
  color: var(--ox-text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  transition-property: background-color, color, border-color, box-shadow, transform;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.offcanvas-oxygen .offcanvas-ec-btn i {
  font-size: 1.1rem;
  color: var(--ox-text-muted);
  transition-property: color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.offcanvas-oxygen .offcanvas-ec-btn:hover {
  background: rgba(2, 103, 115, 0.08);
  border-color: rgba(2, 103, 115, 0.22);
  box-shadow: var(--ox-shadow-sm);
}
.offcanvas-oxygen .offcanvas-ec-btn:hover i {
  color: var(--ox-accent);
}
.offcanvas-oxygen .offcanvas-ec-btn:active {
  transform: scale(0.98);
}
.offcanvas-oxygen .offcanvas-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--ox-border);
  text-align: center;
}
.offcanvas-oxygen .offcanvas-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}
.offcanvas-oxygen .offcanvas-social a {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--ox-surface-weak);
  border: 1px solid var(--ox-border);
  color: var(--ox-text-muted);
  text-decoration: none;
  font-size: 1rem;
  transition-property: background-color, color, border-color, box-shadow, transform;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.offcanvas-oxygen .offcanvas-social a:hover {
  background: rgba(2, 103, 115, 0.1);
  border-color: rgba(2, 103, 115, 0.22);
  color: var(--ox-accent);
  box-shadow: var(--ox-shadow-sm);
  transform: translateY(-2px);
}
.offcanvas-oxygen .offcanvas-copy {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ox-text-muted);
  letter-spacing: 0.01em;
}

/* Main nav link hover effect matching scroll menu */
.navbar-oxygen .nav-link:hover {
  padding: 10px 20px;
  border: 1px solid rgba(2, 103, 115, 0.32);
  background: rgba(2, 103, 115, 0.14);
  color: var(--ox-text);
  box-shadow: var(--ox-shadow-sm);
}
.navbar-oxygen .nav-link.active {
  padding: 10px 20px;
  border: 1px solid rgba(2, 103, 115, 0.32);
  background: rgba(2, 103, 115, 0.14);
  color: var(--ox-text);
}

/* Tablet: shrink nav links so they don't overflow */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-oxygen .nav-link {
    padding: 8px 10px;
    font-size: 0.85rem;
  }
  .navbar-oxygen .nav-link:hover,
  .navbar-oxygen .nav-link.active {
    padding: 8px 10px;
  }
  .navbar-oxygen .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}
/* RTL support */
/* Desktop hover support for third-level menu */
@media (min-width: 992px) {
  .navbar-oxygen .dropdown-submenu:hover > .dropdown-menu,
  .navbar-oxygen .dropdown-submenu:focus-within > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    transition: opacity 220ms ease, transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .navbar-oxygen .dropdown-submenu:hover > .flyout-item.has-children {
    border-color: rgba(2, 103, 115, 0.35);
    background: rgba(2, 103, 115, 0.08);
    box-shadow: 0 0 0 1px rgba(2, 103, 115, 0.12);
  }
  .navbar-oxygen .dropdown-submenu:hover > .flyout-item.has-children .submenu-caret {
    background: rgba(2, 103, 115, 0.14);
    color: var(--ox-accent);
  }
}
/* Responsive: submenu stacks below on tablet and below */
@media (max-width: 1199.98px) {
  .navbar-oxygen .dropdown-submenu > .dropdown-menu {
    position: static;
    inset-inline-start: auto;
    margin-top: 8px;
    margin-inline-start: 12px;
    transform: translateY(-6px);
    box-shadow: none;
    border: 1px solid var(--ox-border);
    width: calc(100% - 12px);
    min-width: auto;
    border-radius: 20px;
    padding: 10px;
  }
  .navbar-oxygen .dropdown-submenu > .dropdown-menu::before {
    display: none;
  }
  .navbar-oxygen .dropdown-submenu.is-open > .dropdown-menu, .navbar-oxygen .dropdown-submenu:focus-within > .dropdown-menu {
    transform: translateY(0);
  }
}
/* Offcanvas nested accordion improvements */
.offcanvas-oxygen .offcanvas-accordion .accordion-body .accordion .accordion-button {
  padding: 10px 0;
  font-size: 0.92rem;
  font-weight: 700;
}
.offcanvas-oxygen .offcanvas-accordion .accordion-body .accordion .accordion-body {
  padding: 4px 0 10px 12px;
}

@media (prefers-reduced-motion: reduce) {
  .navbar-oxygen .dropdown-mega-menu {
    transition: none;
    transform: none;
  }
  .navbar-oxygen .dropdown-flyout-menu {
    transition: none;
    transform: none;
  }
  .navbar-oxygen .dropdown-submenu > .dropdown-menu {
    transition: none;
    transform: none;
  }
  .subnav-oxygen {
    transition: none;
    transform: none;
  }
}
.hero-oxygen {
  position: relative;
  padding: 140px 0 86px;
  overflow: hidden;
}
.hero-oxygen.hero-dark {
  background: linear-gradient(135deg, var(--ox-primary-dark), var(--ox-secondary-dark));
  color: var(--ox-text-inverse);
}
.hero-oxygen.hero-dark .hero-badge {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--ox-border);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}
.hero-oxygen.hero-dark .hero-lead,
.hero-oxygen.hero-dark .text-muted-ox {
  color: var(--ox-text-inverse-muted) !important;
}
.hero-oxygen.hero-dark .trusted-row img {
  opacity: 0.8;
}
.hero-oxygen::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 520px;
  background: radial-gradient(closest-side, rgba(60, 166, 166, 0.35), rgba(60, 166, 166, 0) 72%), radial-gradient(closest-side, rgba(2, 103, 115, 0.28), rgba(2, 103, 115, 0) 72%);
  filter: blur(10px);
  pointer-events: none;
}
.hero-oxygen::after {
  content: "";
  position: absolute;
  inset: auto -30% -40% -30%;
  height: 520px;
  background: radial-gradient(closest-side, rgba(2, 73, 89, 0.22), rgba(2, 73, 89, 0) 72%), radial-gradient(closest-side, rgba(242, 227, 213, 0.75), rgba(242, 227, 213, 0) 72%);
  filter: blur(8px);
  pointer-events: none;
}
.hero-oxygen .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ox-surface-weak);
  border: 1px solid var(--ox-border);
  box-shadow: var(--ox-shadow-sm);
}
.hero-oxygen .hero-title {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.hero-oxygen .hero-title .accent {
  background: linear-gradient(135deg, var(--ox-accent), var(--ox-accent-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-oxygen .hero-lead {
  font-size: 1.1rem;
  color: var(--ox-text-muted);
  max-width: 46ch;
}
.hero-oxygen[data-hero-slider] .hero-slider {
  position: relative;
}
.hero-oxygen[data-hero-slider] .hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms cubic-bezier(0.2, 0.8, 0.2, 1), visibility 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
  position: absolute;
  inset: 0;
  width: 100%;
}
.hero-oxygen[data-hero-slider] .hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
.hero-oxygen[data-hero-slider] .hero-slide:not(.is-active) .reveal {
  opacity: 0;
  transform: translateY(12px);
}
.hero-oxygen[data-hero-slider] .hero-slide--centered .hero-badge {
  justify-content: center;
}
.hero-oxygen[data-hero-slider] .js-typing {
  display: inline-block;
  white-space: nowrap;
}
.hero-oxygen[data-hero-slider] .js-typing::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 1em;
  margin-left: 0.06em;
  border-right: 2px solid currentColor;
  transform: translateY(0.08em);
  animation: ox-caret 1s steps(1, end) infinite;
}
.hero-oxygen[data-hero-slider] .hero-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}
.hero-oxygen[data-hero-slider] .hero-slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(1, 46, 64, 0.2);
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}
.hero-oxygen[data-hero-slider] .hero-slider-dots button:hover {
  transform: scale(1.2);
}
.hero-oxygen[data-hero-slider] .hero-slider-dots button.is-active {
  background: var(--ox-accent);
  transform: scale(1.2);
}

.trusted-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.trusted-row img {
  height: 36px;
}
.trusted-row img:hover {
  opacity: 1;
  filter: saturate(1);
}

.hero-visual {
  position: relative;
}
.hero-visual .mockup {
  border-radius: 22px;
  box-shadow: var(--ox-shadow-lg);
  border: 1px solid var(--ox-border-medium);
}

.float-card {
  position: absolute;
  border-radius: 18px;
  padding: 14px 14px;
  box-shadow: var(--ox-shadow-md);
  background: var(--ox-surface);
  border: 1px solid var(--ox-border);
  animation: ox-float 8s ease-in-out infinite;
}
.float-card.card-1 {
  top: 12%;
  left: -6%;
  width: 220px;
}
.float-card.card-2 {
  bottom: 14%;
  right: -8%;
  width: 240px;
  animation-delay: -2s;
}

@keyframes ox-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes ox-caret {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}
.feature-card {
  height: 100%;
  padding: 22px 22px;
  border-radius: var(--ox-radius-lg);
  border: 1px solid var(--ox-border);
  background: var(--ox-surface);
  box-shadow: var(--ox-shadow-sm);
  transition-property: transform, box-shadow, border-color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(2, 103, 115, 0.22);
  box-shadow: var(--ox-shadow-md);
}
.feature-card h5 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.checklist {
  display: grid;
  gap: 10px;
}
.checklist .item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.checklist .item i {
  color: var(--ox-accent);
  font-size: 18px;
  margin-top: 2px;
}

.usecases-tabs .tab-pane .row {
  align-items: stretch;
}
.usecases-tabs .tab-pane .row > [class^=col],
.usecases-tabs .tab-pane .row > [class*=" col"] {
  display: flex;
}
.usecases-tabs .tab-pane .row > [class^=col] > .feature-card,
.usecases-tabs .tab-pane .row > [class^=col] > .card-ox,
.usecases-tabs .tab-pane .row > [class*=" col"] > .feature-card,
.usecases-tabs .tab-pane .row > [class*=" col"] > .card-ox {
  width: 100%;
  height: 100%;
}
.usecases-tabs .nav-pills {
  gap: 10px;
}
.usecases-tabs .nav-link {
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
  color: var(--ox-text);
  background: var(--ox-surface-weak);
  border: 1px solid var(--ox-border);
  transition-property: background-color, border-color, transform;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.usecases-tabs .nav-link:hover {
  transform: translateY(-1px);
  border-color: rgba(2, 103, 115, 0.22);
}
.usecases-tabs .nav-link.active {
  background: linear-gradient(135deg, rgba(2, 103, 115, 0.16), rgba(60, 166, 166, 0.14));
  border-color: rgba(2, 103, 115, 0.22);
  color: var(--ox-text);
}

.stats-block {
  border-radius: 28px;
  background: linear-gradient(135deg, var(--ox-primary-dark), var(--ox-secondary-dark));
  color: var(--ox-text-inverse);
  overflow: hidden;
  position: relative;
}

.stats-block::before {
  content: "";
  position: absolute;
  inset: -30% -30% auto auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(closest-side, rgba(60, 166, 166, 0.45), rgba(60, 166, 166, 0) 70%);
  filter: blur(10px);
  pointer-events: none;
}

.stat-number {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.preview-frame {
  border-radius: 22px;
  border: 1px solid var(--ox-border-medium);
  box-shadow: var(--ox-shadow-lg);
  background: var(--ox-body-bg);
  overflow: hidden;
}
.preview-frame .topbar {
  height: 44px;
  background: linear-gradient(180deg, var(--ox-body-bg), rgba(242, 227, 213, 0.55));
  border-bottom: 1px solid var(--ox-border);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
}
.preview-frame .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(1, 46, 64, 0.18);
}

[data-theme=dark] .preview-frame .dot {
  background: rgba(255, 255, 255, 0.25);
}

[data-theme=dark] .preview-frame .topbar {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.testimonial-card {
  padding: 26px 26px;
  border-radius: var(--ox-radius-lg);
  border: 1px solid var(--ox-border);
  background: var(--ox-surface);
  height: 100%;
}
.testimonial-card .quote {
  font-size: 1.02rem;
  color: var(--ox-text);
}

.rating-stars {
  color: var(--ox-accent);
}

.testimonial-carousel-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.testimonial-carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 2px solid rgba(1, 46, 64, 0.12);
  background: transparent;
  color: var(--ox-primary-dark);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 250ms ease;
}
.testimonial-carousel-btn:hover {
  background: rgba(2, 103, 115, 0.06);
  border-color: rgba(2, 103, 115, 0.35);
  color: var(--ox-accent);
  transform: scale(1.05);
}
.testimonial-carousel-btn i {
  font-size: 1.2rem;
}

#testimonialsCarousel .carousel-control-prev,
#testimonialsCarousel .carousel-control-next {
  display: none;
}

.pricing-card {
  height: 100%;
  border-radius: var(--ox-radius-lg);
  border: 1px solid var(--ox-border-medium);
  background: var(--ox-surface);
  box-shadow: var(--ox-shadow-sm);
  cursor: pointer;
  outline: none;
  transition-property: box-shadow, border-color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pricing-card:hover, .pricing-card:focus-visible {
  box-shadow: var(--ox-shadow-md);
}
.pricing-card.featured {
  border-color: rgba(2, 103, 115, 0.26);
  background: linear-gradient(180deg, rgba(2, 103, 115, 0.08), var(--ox-surface-hover));
  box-shadow: var(--ox-shadow-md);
}
@media (hover: hover) and (pointer: fine) {
  .pricing-card:hover .pricing-card-inner, .pricing-card:focus-within .pricing-card-inner {
    transform: rotateY(180deg);
  }
}
.pricing-card.is-flipped .pricing-card-inner {
  transform: rotateY(180deg);
}

.pricing-card-inner {
  position: relative;
  display: grid;
  grid-template: 1fr/1fr;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.pricing-card-front,
.pricing-card-back {
  grid-area: 1/1;
  backface-visibility: hidden;
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.pricing-card-back {
  transform: rotateY(180deg);
  background: var(--ox-surface);
  border-radius: var(--ox-radius-lg);
}

.pricing-card-flip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 10px;
  padding: 8px;
  border: none;
  background: transparent;
  color: var(--ox-accent);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 10px;
  transition-property: background-color, color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pricing-card-flip-btn:hover {
  background: rgba(2, 103, 115, 0.08);
}
.pricing-card-flip-btn:focus-visible {
  outline: 2px solid var(--ox-accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .pricing-card-inner {
    transition: none;
    transform: none !important;
  }
  .pricing-card-front,
  .pricing-card-back {
    transform: none !important;
    backface-visibility: visible;
  }
  .pricing-card-back {
    display: none;
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  .pricing-card.is-flipped .pricing-card-back {
    display: flex;
    opacity: 1;
  }
  .pricing-card.is-flipped .pricing-card-front {
    display: none;
  }
  .pricing-card:hover .pricing-card-inner,
  .pricing-card:focus-within .pricing-card-inner,
  .pricing-card.is-flipped .pricing-card-inner {
    transform: none !important;
  }
}
.badge-ox-soft {
  background: rgba(2, 103, 115, 0.12);
  color: var(--ox-accent);
  border: 1px solid rgba(2, 103, 115, 0.18);
}

.badge-ox-popular {
  background: linear-gradient(135deg, rgba(2, 103, 115, 0.18), rgba(60, 166, 166, 0.16));
  color: var(--ox-primary-dark);
  border: 1px solid rgba(2, 103, 115, 0.18);
}

.badge-ox-neutral {
  background: var(--ox-border);
  color: var(--ox-primary-dark);
  border: 1px solid var(--ox-border-strong);
}

.accordion-oxygen .accordion-item {
  border: 1px solid var(--ox-border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--ox-surface);
  box-shadow: var(--ox-shadow-sm);
}
.accordion-oxygen .accordion-button {
  font-weight: 700;
  color: var(--ox-text);
  padding: 18px 18px;
  background: transparent;
}
.accordion-oxygen .accordion-button.collapsed {
  background: transparent;
  color: var(--ox-text);
}
.accordion-oxygen .accordion-button:not(.collapsed) {
  color: var(--ox-text);
  background: linear-gradient(135deg, rgba(2, 103, 115, 0.12), rgba(60, 166, 166, 0.08));
}

.news-card {
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--ox-border-medium);
  background: var(--ox-surface);
  box-shadow: var(--ox-shadow-sm);
  display: flex;
  flex-direction: column;
  transition-property: transform, box-shadow, border-color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(2, 103, 115, 0.22);
  box-shadow: var(--ox-shadow-md);
}
.news-card:hover .news-thumb img {
  transform: scale(1.06);
}
.news-card:hover .news-thumb::after {
  opacity: 0.6;
}
.news-card.is-featured {
  border-color: rgba(2, 103, 115, 0.26);
  background: linear-gradient(180deg, rgba(2, 103, 115, 0.08), var(--ox-surface-hover));
}
.news-card .news-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(1, 46, 64, 0.9), rgba(2, 73, 89, 0.85));
  aspect-ratio: 16/9;
}
.news-card .news-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.18) 70%, rgba(0, 0, 0, 0.34) 100%);
  opacity: 0.75;
  transition-property: opacity;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.news-card .news-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.news-card .news-body {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
}
.news-card .news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.news-card .news-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  color: var(--ox-text);
  border: 1px solid rgba(2, 103, 115, 0.18);
  background: linear-gradient(135deg, rgba(2, 103, 115, 0.14), rgba(60, 166, 166, 0.1));
}
.news-card .news-date {
  font-size: 0.9rem;
  color: var(--ox-text-muted);
  font-weight: 600;
}
.news-card .news-title {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.news-card .news-title a {
  color: var(--ox-text);
  text-decoration: none;
}
.news-card .news-title a:hover {
  color: rgba(2, 103, 115, 0.95);
}
.news-card .news-excerpt {
  margin: 0;
  color: var(--ox-text-muted);
  flex: 1 1 auto;
}
.news-card .news-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  color: rgba(2, 103, 115, 0.95);
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  transition-property: color, transform;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.news-card .news-link:hover {
  color: var(--ox-text);
  transform: translateX(2px);
}

.cta-block {
  border-radius: 28px;
  padding: 56px 26px;
  background: linear-gradient(135deg, var(--ox-primary-dark), var(--ox-secondary-dark));
  color: var(--ox-text-inverse);
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  inset: -20% -20% auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(closest-side, rgba(2, 103, 115, 0.5), rgba(2, 103, 115, 0) 70%);
  filter: blur(10px);
  pointer-events: none;
}

.video-deck {
  display: flex;
  gap: 14px;
  align-items: stretch;
}

.video-card {
  position: relative;
  flex: 1 1 0;
  flex-grow: 1;
  min-height: 320px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--ox-border-medium);
  box-shadow: var(--ox-shadow-sm);
  display: flex;
  align-items: stretch;
  padding: 18px 18px;
  color: var(--ox-text-inverse);
  cursor: pointer;
  transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 240ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 240ms cubic-bezier(0.2, 0.8, 0.2, 1), flex-grow 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.video-card:hover {
  transform: translateY(-2px);
  border-color: rgba(2, 103, 115, 0.22);
  box-shadow: var(--ox-shadow-md);
}
.video-card.is-active {
  flex-grow: 2.4;
}
.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.62) 100%);
  pointer-events: none;
  z-index: 2;
  transition: opacity 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.video-card.is-playing::after {
  opacity: 0.34;
}
.video-card.is-active .video-card-bg, .video-card:hover .video-card-bg {
  transform: scale(1.06);
}
.video-card.is-playing .video-card-preview {
  opacity: 1;
  transform: scale(1);
}
.video-card.is-playing .video-card-play {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.video-card.is-playing.is-active .video-card-play {
  animation: ox-pulse 1.5s ease-in-out infinite;
}
.video-card:focus-within .video-card-meta, .video-card:hover .video-card-meta, .video-card.is-active .video-card-meta {
  opacity: 1;
  transform: translateY(0);
}
.video-card .video-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.video-bg-1 {
  background-image: radial-gradient(closest-side, rgba(2, 103, 115, 0.55), rgba(2, 103, 115, 0) 70%), linear-gradient(135deg, rgba(1, 46, 64, 0.92), rgba(2, 73, 89, 0.86));
}

.video-bg-2 {
  background-image: radial-gradient(closest-side, rgba(60, 166, 166, 0.5), rgba(60, 166, 166, 0) 70%), linear-gradient(135deg, rgba(2, 73, 89, 0.92), rgba(1, 46, 64, 0.9));
}

.video-bg-3 {
  background-image: radial-gradient(closest-side, rgba(242, 227, 213, 0.45), rgba(242, 227, 213, 0) 70%), linear-gradient(135deg, rgba(1, 46, 64, 0.92), rgba(2, 103, 115, 0.82));
}

.video-bg-4 {
  background-image: radial-gradient(closest-side, rgba(2, 103, 115, 0.45), rgba(2, 103, 115, 0) 70%), linear-gradient(135deg, rgba(2, 73, 89, 0.92), rgba(11, 31, 38, 0.9));
}

.video-card-preview {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 280ms ease, transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}
.video-card-preview iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.video-card-content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.video-card-logo {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 2.05rem;
}

.video-card-meta {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 340ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.video-card-title {
  margin-top: 6px;
  font-weight: 800;
  letter-spacing: -0.03em;
  opacity: 0.96;
  font-size: 1.55rem;
  line-height: 1.15;
}

.video-card-subrow {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  width: 100%;
}

.video-card-subtitle {
  font-size: 1.06rem;
  font-weight: 650;
  opacity: 0.9;
}

.video-card-play {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--ox-surface-hover);
  color: var(--ox-text);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
  border: 0;
  padding: 0;
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
  transition-property: transform, background-color, opacity;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.video-card-play:hover {
  transform: scale(1.06);
}
.video-card-play i {
  font-size: 22px;
  margin-left: 2px;
}

.video-modal {
  border-radius: 22px;
  border: 1px solid var(--ox-border-medium);
  background: var(--ox-surface);
  box-shadow: 0 28px 80px var(--ox-shadow-color-lg);
}

.video-modal-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--ox-border-medium);
}

@keyframes ox-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}
@media (max-width: 991.98px) {
  .video-deck {
    flex-direction: column;
  }
  .video-card {
    flex: 1 1 auto;
    min-height: 240px;
  }
}
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1030;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--ox-surface);
  border: 1px solid var(--ox-border-medium);
  box-shadow: var(--ox-shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition-property: opacity, transform;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.orbit-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0a1620 0%, #012E40 50%, #0a1620 100%);
  padding: 120px 0;
}
.orbit-section .orbit-header {
  text-align: center;
  margin-bottom: 80px;
}
.orbit-section .orbit-header .section-label {
  color: rgba(60, 166, 166, 0.9);
  border-color: rgba(60, 166, 166, 0.25);
}
.orbit-section .orbit-header h2 {
  color: #fff;
  letter-spacing: -0.02em;
}
.orbit-section .orbit-header p {
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  margin: 0 auto;
}
.orbit-section .orbit-stage {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 1/1;
}
@media (max-width: 767.98px) {
  .orbit-section .orbit-stage {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}
.orbit-section .orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(60, 166, 166, 0.35), rgba(2, 103, 115, 0.15));
  border: 1px solid rgba(60, 166, 166, 0.25);
  box-shadow: 0 0 60px rgba(60, 166, 166, 0.2), inset 0 0 30px rgba(60, 166, 166, 0.1);
  z-index: 2;
  display: grid;
  place-items: center;
}
@media (max-width: 767.98px) {
  .orbit-section .orbit-core {
    display: none;
  }
}
.orbit-section .orbit-core .orbit-core-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(60, 166, 166, 0.2);
  border: 1px solid rgba(60, 166, 166, 0.4);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 24px;
  animation: orbit-pulse 3s ease-in-out infinite;
}
.orbit-section .orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  height: 75%;
  border-radius: 50%;
  border: 1px dashed rgba(60, 166, 166, 0.12);
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .orbit-section .orbit-ring {
    display: none;
  }
}
.orbit-section .orbit-card {
  position: absolute;
  width: 180px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
  opacity: 0;
  transform: scale(0.6) translateY(30px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.34, 1.45, 0.64, 1), border-color 300ms ease, box-shadow 300ms ease;
}
@media (max-width: 767.98px) {
  .orbit-section .orbit-card {
    position: relative;
    width: 100%;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    opacity: 1;
  }
}
.orbit-section .orbit-card.is-revealed {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.orbit-section .orbit-card:hover {
  border-color: rgba(60, 166, 166, 0.35);
  box-shadow: 0 20px 60px rgba(2, 103, 115, 0.25);
  transform: scale(1.05);
}
@media (max-width: 767.98px) {
  .orbit-section .orbit-card:hover {
    transform: none;
  }
}
.orbit-section .orbit-card .orbit-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(60, 166, 166, 0.12);
  border: 1px solid rgba(60, 166, 166, 0.2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  margin: 0 auto 12px;
}
.orbit-section .orbit-card .orbit-card-title {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 4px;
}
.orbit-section .orbit-card .orbit-card-desc {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  line-height: 1.4;
}
.orbit-section .orbit-card {
  /* Position cards in orbit */
}
.orbit-section .orbit-card:nth-child(3) {
  top: 5%;
  left: 50%;
  transform: translateX(-50%) scale(0.6) translateY(30px);
}
.orbit-section .orbit-card:nth-child(4) {
  top: 20%;
  right: 5%;
}
.orbit-section .orbit-card:nth-child(5) {
  bottom: 20%;
  right: 5%;
}
.orbit-section .orbit-card:nth-child(6) {
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%) scale(0.6) translateY(30px);
}
.orbit-section .orbit-card:nth-child(7) {
  bottom: 20%;
  left: 5%;
}
.orbit-section .orbit-card:nth-child(8) {
  top: 20%;
  left: 5%;
}
.orbit-section .orbit-card.is-revealed:nth-child(3) {
  transform: translateX(-50%) scale(1) translateY(0);
}
.orbit-section .orbit-card.is-revealed:nth-child(4) {
  transform: scale(1) translateY(0);
}
.orbit-section .orbit-card.is-revealed:nth-child(5) {
  transform: scale(1) translateY(0);
}
.orbit-section .orbit-card.is-revealed:nth-child(6) {
  transform: translateX(-50%) scale(1) translateY(0);
}
.orbit-section .orbit-card.is-revealed:nth-child(7) {
  transform: scale(1) translateY(0);
}
.orbit-section .orbit-card.is-revealed:nth-child(8) {
  transform: scale(1) translateY(0);
}

@keyframes orbit-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(60, 166, 166, 0.3);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(60, 166, 166, 0);
  }
}
.bento-section {
  position: relative;
  overflow: hidden;
}
.bento-section .bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 991.98px) {
  .bento-section .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
}
@media (max-width: 767.98px) {
  .bento-section .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.bento-section .bento-cell {
  position: relative;
  border-radius: 24px;
  background: var(--ox-surface);
  border: 1px solid var(--ox-border);
  overflow: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transform: perspective(800px) rotateX(8deg) translateY(30px);
  transition: opacity 600ms ease, transform 700ms cubic-bezier(0.34, 1.45, 0.64, 1), border-color 300ms ease, box-shadow 300ms ease;
}
.bento-section .bento-cell.is-revealed {
  opacity: 1;
  transform: perspective(800px) rotateX(0) translateY(0);
}
.bento-section .bento-cell:hover {
  border-color: rgba(2, 103, 115, 0.3);
  box-shadow: 0 24px 70px rgba(2, 103, 115, 0.12);
  transform: perspective(800px) rotateX(0) translateY(-4px) scale(1.02);
  z-index: 2;
}
.bento-section .bento-cell {
  /* Grid placement */
}
.bento-section .bento-cell--large {
  grid-column: span 2;
  grid-row: span 2;
}
@media (max-width: 991.98px) {
  .bento-section .bento-cell--large {
    grid-column: span 2;
    grid-row: span 2;
  }
}
@media (max-width: 767.98px) {
  .bento-section .bento-cell--large {
    grid-column: span 1;
    grid-row: span 1;
  }
}
.bento-section .bento-cell--wide {
  grid-column: span 2;
}
@media (max-width: 767.98px) {
  .bento-section .bento-cell--wide {
    grid-column: span 1;
  }
}
.bento-section .bento-cell--tall {
  grid-row: span 2;
}
@media (max-width: 991.98px) {
  .bento-section .bento-cell--tall {
    grid-row: span 1;
  }
}
.bento-section .bento-cell .bento-cell-bg {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background: linear-gradient(135deg, var(--ox-accent), var(--ox-accent-soft));
  transition: opacity 400ms ease;
}
.bento-section .bento-cell:hover .bento-cell-bg {
  opacity: 0.08;
}
.bento-section .bento-cell .bento-cell-content {
  position: relative;
  z-index: 1;
}
.bento-section .bento-cell .bento-cell-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(2, 103, 115, 0.1);
  border: 1px solid rgba(2, 103, 115, 0.18);
  color: var(--ox-accent);
  font-size: 22px;
  margin-bottom: 16px;
}
.bento-section .bento-cell .bento-cell-title {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--ox-text);
  margin-bottom: 8px;
}
.bento-section .bento-cell .bento-cell-desc {
  color: var(--ox-text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}
.bento-section .bento-cell .bento-cell-stat {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--ox-accent), var(--ox-accent-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bento-section .bento-cell .bento-cell-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bento-section .bento-cell .bento-cell-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}
.bento-section .bento-cell .bento-cell-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 46, 64, 0.1) 0%, rgba(1, 46, 64, 0.6) 100%);
  border-radius: 24px;
}
.bento-section .bento-cell .bento-cell-footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.holo-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #080e14 0%, #0d1b22 40%, #012E40 100%);
  padding: 120px 0;
}
.holo-section .holo-header {
  text-align: center;
  margin-bottom: 64px;
}
.holo-section .holo-header .section-label {
  color: rgba(60, 166, 166, 0.9);
  border-color: rgba(60, 166, 166, 0.25);
}
.holo-section .holo-header h2 {
  color: #fff;
  letter-spacing: -0.02em;
}
.holo-section .holo-header p {
  color: rgba(255, 255, 255, 0.5);
  max-width: 520px;
  margin: 0 auto;
}
.holo-section .holo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  perspective: 1200px;
}
@media (max-width: 991.98px) {
  .holo-section .holo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .holo-section .holo-grid {
    grid-template-columns: 1fr;
    perspective: none;
  }
}
.holo-section .holo-card {
  position: relative;
  border-radius: 28px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transform-style: preserve-3d;
  will-change: transform;
  opacity: 0;
  transform: translateY(60px) rotateX(25deg);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.34, 1.45, 0.64, 1), box-shadow 400ms ease, border-color 400ms ease;
  overflow: hidden;
  cursor: pointer;
}
.holo-section .holo-card.is-revealed {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}
.holo-section .holo-card {
  /* Animated border glow on hover */
}
.holo-section .holo-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 29px;
  background: conic-gradient(from var(--holo-angle, 0deg), rgba(60, 166, 166, 0.4), rgba(2, 103, 115, 0.2), rgba(60, 166, 166, 0.4));
  z-index: -1;
  opacity: 0;
  transition: opacity 400ms ease;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  padding: 1px;
  pointer-events: none;
}
.holo-section .holo-card:hover::before {
  opacity: 1;
}
.holo-section .holo-card {
  /* Moving shine overlay */
}
.holo-section .holo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: radial-gradient(600px circle at var(--holo-x, 50%) var(--holo-y, 50%), rgba(255, 255, 255, 0.12), transparent 40%);
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.holo-section .holo-card:hover::after {
  opacity: 1;
}
.holo-section .holo-card {
  /* 3D inner content offset */
}
.holo-section .holo-card .holo-content {
  position: relative;
  z-index: 1;
  transform: translateZ(40px);
}
.holo-section .holo-card .holo-number {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.08);
  position: absolute;
  top: 20px;
  right: 24px;
  pointer-events: none;
}
.holo-section .holo-card .holo-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(60, 166, 166, 0.15), rgba(2, 103, 115, 0.1));
  border: 1px solid rgba(60, 166, 166, 0.25);
  color: rgba(255, 255, 255, 0.85);
  font-size: 22px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(2, 103, 115, 0.2);
}
.holo-section .holo-card .holo-title {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.holo-section .holo-card .holo-desc {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  line-height: 1.5;
}
.holo-section .holo-card {
  /* Accent glow per card */
}
.holo-section .holo-card--cyan:hover {
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15), inset 0 0 30px rgba(0, 212, 255, 0.05);
}
.holo-section .holo-card--purple:hover {
  border-color: rgba(167, 139, 250, 0.35);
  box-shadow: 0 20px 60px rgba(167, 139, 250, 0.15), inset 0 0 30px rgba(167, 139, 250, 0.05);
}
.holo-section .holo-card--amber:hover {
  border-color: rgba(251, 191, 36, 0.35);
  box-shadow: 0 20px 60px rgba(251, 191, 36, 0.15), inset 0 0 30px rgba(251, 191, 36, 0.05);
}
.holo-section .holo-card--rose:hover {
  border-color: rgba(251, 113, 133, 0.35);
  box-shadow: 0 20px 60px rgba(251, 113, 133, 0.15), inset 0 0 30px rgba(251, 113, 133, 0.05);
}
.holo-section .holo-card--emerald:hover {
  border-color: rgba(52, 211, 153, 0.35);
  box-shadow: 0 20px 60px rgba(52, 211, 153, 0.15), inset 0 0 30px rgba(52, 211, 153, 0.05);
}
.holo-section .holo-card--indigo:hover {
  border-color: rgba(129, 140, 248, 0.35);
  box-shadow: 0 20px 60px rgba(129, 140, 248, 0.15), inset 0 0 30px rgba(129, 140, 248, 0.05);
}

/* Animated border angle for conic gradient */
@property --holo-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes holo-spin {
  to {
    --holo-angle: 360deg;
  }
}
.holo-card::before {
  animation: holo-spin 4s linear infinite;
}

.news-carousel-section {
  background: linear-gradient(135deg, #289094 0%, #256162 50%, #152f59 100%);
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}
.news-carousel-section::before {
  content: "";
  position: absolute;
  inset: -50% -50% auto auto;
  width: 600px;
  height: 600px;
  background: radial-gradient(closest-side, rgba(0, 212, 255, 0.12), rgba(0, 212, 255, 0) 70%);
  filter: blur(60px);
  pointer-events: none;
}
.news-carousel-section::after {
  content: "";
  position: absolute;
  inset: auto auto -50% -50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(closest-side, rgba(0, 212, 255, 0.08), rgba(0, 212, 255, 0) 70%);
  filter: blur(50px);
  pointer-events: none;
}

.news-carousel-header {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.news-carousel-title-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.news-carousel-title-icon {
  font-size: 2.5rem;
  color: #00d4ff;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

.news-carousel-title {
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0;
  font-size: 2.5rem;
}

.news-carousel-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  font-size: 1.05rem;
}

.news-carousel-wrapper-full {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 16px;
  box-sizing: border-box;
}

.news-carousel-nav-header {
  display: flex;
  gap: 8px;
}

.news-carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 40px 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  width: 100%;
  box-sizing: border-box;
}
.news-carousel-track::-webkit-scrollbar {
  display: none;
}

.news-carousel-card {
  flex: 0 0 400px;
  border-radius: 18px;
  overflow: visible;
  position: relative;
  cursor: pointer;
  transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
  transform-origin: center center;
  scroll-snap-align: start;
}
.news-carousel-card:hover {
  transform: scale(1.06);
  z-index: 30;
}

.news-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 18px;
}
.news-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.news-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
}
.news-carousel-card:hover .news-card-image img {
  transform: scale(1.05);
}

.news-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.95);
}

.news-card-category {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.15);
  color: #00d4ff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.news-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.98);
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.news-card-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.news-card-meta-item i {
  font-size: 0.9rem;
}

.news-card-trending {
  color: #00d4ff;
  font-weight: 600;
}

.news-card-expanded {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0) 0%, rgba(11, 18, 32, 0.95) 30%, rgba(11, 18, 32, 0.98) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: none;
  z-index: 4;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 320ms ease, transform 320ms ease;
  pointer-events: none;
  border-radius: 0 0 18px 18px;
}
.news-carousel-card:hover .news-card-expanded {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.news-card-excerpt {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  font-weight: 400;
}

.news-card-actions {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
}

.news-card-btn {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  transition: all 250ms ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.news-card-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}
.news-card-btn.btn-primary {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.9), rgba(0, 180, 216, 0.9));
  border-color: rgba(0, 212, 255, 0.5);
  color: #0b1220;
}
.news-card-btn.btn-primary:hover {
  background: linear-gradient(135deg, rgb(0, 212, 255), rgb(0, 180, 216));
}
.news-card-btn i {
  font-size: 0.8rem;
}

.news-carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 250ms ease;
}
.news-carousel-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: #00d4ff;
  transform: scale(1.05);
}
.news-carousel-btn i {
  font-size: 1.2rem;
}

@media (max-width: 991.98px) {
  .news-carousel-section {
    padding: 60px 0;
  }
  .news-carousel-title {
    font-size: 2rem;
  }
  .news-carousel-title-icon {
    font-size: 2rem;
  }
  .news-carousel-card {
    flex: 0 0 320px;
  }
  .news-card-title {
    font-size: 1.15rem;
  }
}
@media (max-width: 767.98px) {
  .news-carousel-card {
    flex: 0 0 280px;
  }
  .news-card-title {
    font-size: 1.05rem;
  }
  .news-card-excerpt {
    font-size: 0.85rem;
  }
  .news-carousel-progress {
    position: relative;
    top: 0;
    right: 0;
    margin-top: 16px;
  }
  .news-carousel-btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  .news-carousel-btn i {
    font-size: 1rem;
  }
}
@media (max-width: 575.98px) {
  .news-carousel-card {
    flex: 0 0 calc(100% - 40px);
  }
  .news-card-content {
    padding: 18px;
  }
  .news-card-expanded {
    padding: 18px;
  }
}
.top-10-hot-news-section {
  background: linear-gradient(135deg, #024959 0%, #012E40 50%, #152f59 100%);
  color: rgba(255, 255, 255, 0.92);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.top-10-hot-news-section::before {
  content: "";
  position: absolute;
  inset: -50% -50% auto auto;
  width: 600px;
  height: 600px;
  background: radial-gradient(closest-side, rgba(0, 212, 255, 0.12), rgba(0, 212, 255, 0) 70%);
  filter: blur(60px);
  pointer-events: none;
}
.top-10-hot-news-section::after {
  content: "";
  position: absolute;
  inset: auto auto -50% -50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(closest-side, rgba(0, 212, 255, 0.08), rgba(0, 212, 255, 0) 70%);
  filter: blur(50px);
  pointer-events: none;
}

.top-10-hot-news-container {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0;
}

.top-10-header {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
  padding: 0 20px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.top-10-nav-header {
  display: flex;
  gap: 8px;
}

.top-10-carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 250ms ease;
}
.top-10-carousel-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: #00d4ff;
  transform: scale(1.05);
}
.top-10-carousel-btn i {
  font-size: 1.2rem;
}

.top-10-title-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-10-icon {
  font-size: 2.5rem;
  color: #00d4ff;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 35px rgba(0, 212, 255, 0.8));
  }
}
.top-10-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
  color: rgba(255, 255, 255, 0.98);
  position: relative;
}
.top-10-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00d4ff, transparent);
  border-radius: 2px;
}

.top-10-carousel-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 16px;
  box-sizing: border-box;
}

.top-10-carousel-track {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 0px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  width: 100%;
  box-sizing: border-box;
}
.top-10-carousel-track::-webkit-scrollbar {
  display: none;
}

.top-10-item {
  flex: 0 0 400px;
  position: relative;
  cursor: pointer;
  transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
  height: 480px;
  transform-origin: center center;
  scroll-snap-align: start;
}
.top-10-item:hover {
  transform: scale(1.06);
  z-index: 20;
}
.top-10-item.is-clone {
  pointer-events: none;
}
.top-10-item.is-clone:hover {
  transform: none;
  z-index: 1;
}

.top-10-rank {
  position: absolute;
  inset-inline-start: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  z-index: 3;
  font-size: clamp(140px, 18vw, 260px);
  font-weight: 900;
  line-height: 1;
  font-style: italic;
  opacity: 0.28;
  color: transparent;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(0, 203, 208, 0.45), rgba(255, 255, 255, 0.55));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.22);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 24px rgba(0, 203, 208, 0.18);
  pointer-events: none;
  transition: all 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.top-10-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: visible;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(1, 46, 64, 0.3);
  transition: all 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
}

.top-10-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  background: rgba(0, 212, 255, 0.15);
  color: #00d4ff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 5;
  border: 1px solid rgba(0, 212, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.top-10-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 18px;
  z-index: 1;
}
.top-10-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.top-10-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
  z-index: 2;
}
.top-10-item:hover .top-10-image img {
  transform: scale(1.05);
}

.top-10-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 4;
  color: rgba(255, 255, 255, 0.95);
}

.top-10-category {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.15);
  color: #00d4ff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.top-10-headline {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.98);
}

.top-10-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}
.top-10-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-10-meta span i {
  font-size: 0.9rem;
}

.top-10-item:hover .top-10-rank {
  opacity: 0.35;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 80px rgba(255, 255, 255, 0.2));
  transform: translate(-50%, -50%) skewX(-10deg) scale(1.1);
}
.top-10-item:hover .top-10-card {
  box-shadow: 0 30px 80px rgba(1, 46, 64, 0.4);
  border-color: rgba(0, 212, 255, 0.3);
}
.top-10-item:hover .top-10-badge {
  background: rgba(0, 212, 255, 0.25);
  border-color: rgba(0, 212, 255, 0.5);
}

@media (max-width: 991.98px) {
  .top-10-hot-news-section {
    padding: 60px 0;
  }
  .top-10-title {
    font-size: 2rem;
  }
  .top-10-icon {
    font-size: 2rem;
  }
  .top-10-item {
    flex: 0 0 320px;
  }
  .top-10-rank {
    font-size: 10rem;
  }
  .top-10-headline {
    font-size: 1.15rem;
  }
}
@media (max-width: 767.98px) {
  .top-10-item {
    flex: 0 0 280px;
  }
  .top-10-rank {
    font-size: 8rem;
  }
  .top-10-headline {
    font-size: 1.05rem;
  }
  .top-10-content {
    padding: 18px;
  }
  .top-10-carousel-btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  .top-10-carousel-btn i {
    font-size: 1rem;
  }
}
@media (max-width: 575.98px) {
  .top-10-item {
    flex: 0 0 calc(100% - 40px);
  }
  .top-10-rank {
    font-size: 7rem;
  }
  .top-10-content {
    padding: 18px;
  }
}
.blog-hero {
  padding: 100px 0 50px;
  background: linear-gradient(135deg, rgba(1, 46, 64, 0.03), rgba(2, 73, 89, 0.02));
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: "";
  position: absolute;
  inset: -30% -30% auto auto;
  width: 500px;
  height: 500px;
  background: radial-gradient(closest-side, rgba(60, 166, 166, 0.2), rgba(60, 166, 166, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
}
.blog-hero::after {
  content: "";
  position: absolute;
  inset: auto auto -30% -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(closest-side, rgba(2, 103, 115, 0.15), rgba(2, 103, 115, 0) 70%);
  filter: blur(60px);
  pointer-events: none;
}

.blog-hero-content {
  position: relative;
  z-index: 2;
}

.blog-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(2, 103, 115, 0.12), rgba(60, 166, 166, 0.1));
  color: var(--ox-accent);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  border: 1px solid rgba(2, 103, 115, 0.18);
  margin-bottom: 20px;
  animation: pulse-soft 3s ease-in-out infinite;
}

@keyframes pulse-soft {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(2, 103, 115, 0.2);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(2, 103, 115, 0);
  }
}
.blog-hero-title {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--ox-text);
}
.blog-hero-title .accent {
  background: linear-gradient(135deg, var(--ox-accent), var(--ox-accent-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-hero-subtitle {
  font-size: 1.25rem;
  color: var(--ox-text-muted);
  font-weight: 500;
  max-width: 600px;
}

.blog-filters {
  margin-bottom: 0;
  margin-top: 20px;
  padding: 16px;
  border-radius: var(--ox-radius-lg);
  background: var(--ox-surface);
  border: 1px solid rgba(1, 46, 64, 0.1);
  box-shadow: var(--ox-shadow-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 300ms ease;
}

.blog-filters.is-fixed {
  position: fixed;
  top: 100px;
  z-index: 100;
  box-shadow: var(--ox-shadow-md);
  margin-top: 0;
  padding: 10px 12px;
}
.blog-filters.is-fixed .blog-search-wrapper {
  margin-bottom: 8px;
}
.blog-filters.is-fixed .blog-search-wrapper i {
  left: 14px;
  font-size: 1rem;
}
.blog-filters.is-fixed .blog-search-input {
  padding: 10px 14px 10px 42px;
  border-radius: 14px;
  font-size: 0.95rem;
}
.blog-filters.is-fixed .blog-category-chip {
  padding: 7px 14px;
  font-size: 0.85rem;
}

.blog-search-wrapper {
  position: relative;
  margin-bottom: 12px;
}
.blog-search-wrapper i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ox-text-muted);
  font-size: 1.1rem;
}

.blog-search-input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  border-radius: 16px;
  border: 1px solid rgba(1, 46, 64, 0.14);
  background: var(--ox-surface);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ox-text);
  transition: all 250ms ease;
}
.blog-search-input::-moz-placeholder {
  color: var(--ox-text-muted);
}
.blog-search-input::placeholder {
  color: var(--ox-text-muted);
}
.blog-search-input:focus {
  outline: none;
  border-color: rgba(2, 103, 115, 0.22);
  box-shadow: 0 0 0 4px rgba(2, 103, 115, 0.12);
}

.blog-category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-category-chip {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 1px solid rgba(1, 46, 64, 0.1);
  background: var(--ox-surface-weak);
  color: var(--ox-text);
  cursor: pointer;
  transition: all 250ms ease;
  text-decoration: none;
}
.blog-category-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(2, 103, 115, 0.22);
  background: rgba(2, 103, 115, 0.08);
}
.blog-category-chip.active {
  background: linear-gradient(135deg, rgba(2, 103, 115, 0.16), rgba(60, 166, 166, 0.14));
  border-color: rgba(2, 103, 115, 0.22);
  color: var(--ox-text);
  box-shadow: 0 4px 12px rgba(2, 103, 115, 0.12);
}

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

.blog-card {
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(1, 46, 64, 0.1);
  background: var(--ox-surface);
  box-shadow: var(--ox-shadow-sm);
  display: flex;
  flex-direction: column;
  transition-property: transform, box-shadow, border-color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(2, 103, 115, 0.22);
  box-shadow: var(--ox-shadow-md);
}
.blog-card:hover .blog-card-thumb img {
  transform: scale(1.08);
}
.blog-card:hover .blog-card-thumb::after {
  opacity: 0.6;
}
.blog-card.is-featured {
  border-color: rgba(2, 103, 115, 0.26);
  background: linear-gradient(180deg, rgba(2, 103, 115, 0.08), var(--ox-surface-hover));
}

.blog-card-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.blog-card-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.18) 70%, rgba(0, 0, 0, 0.34) 100%);
  opacity: 0.75;
  transition-property: opacity;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.blog-card-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.blog-card-body {
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 auto;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.blog-card-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  color: var(--ox-text);
  border: 1px solid rgba(2, 103, 115, 0.18);
  background: linear-gradient(135deg, rgba(2, 103, 115, 0.14), rgba(60, 166, 166, 0.1));
}

.blog-card-date {
  font-size: 0.85rem;
  color: var(--ox-text-muted);
  font-weight: 600;
}

.blog-card-title {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  font-size: 1.2rem;
  color: var(--ox-text);
}

.blog-card-excerpt {
  margin: 0;
  color: var(--ox-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1 1 auto;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(1, 46, 64, 0.08);
}

.blog-card-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ox-text);
}
.blog-card-author img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-card-read-time {
  font-size: 0.85rem;
  color: var(--ox-text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}
.blog-card-read-time i {
  font-size: 0.9rem;
}

.blog-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget {
  padding: 24px;
  border-radius: var(--ox-radius-lg);
  border: 1px solid rgba(1, 46, 64, 0.1);
  background: var(--ox-surface);
  box-shadow: var(--ox-shadow-sm);
}

.sidebar-widget-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.15rem;
  margin-bottom: 20px;
  color: var(--ox-text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-widget-title i {
  color: var(--ox-accent);
  font-size: 1.2rem;
}

.trending-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trending-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 14px;
  transition: all 250ms ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.trending-item:hover {
  background: rgba(242, 227, 213, 0.15);
  transform: translateX(4px);
}

.trending-rank {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  background: linear-gradient(135deg, var(--ox-accent), var(--ox-accent-soft));
  flex-shrink: 0;
}

.trending-content {
  flex: 1;
  min-width: 0;
}

.trending-title {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
  margin-bottom: 6px;
  color: var(--ox-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.trending-meta {
  font-size: 0.8rem;
  color: var(--ox-text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trending-meta i {
  font-size: 0.85rem;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-pill {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 1px solid rgba(1, 46, 64, 0.1);
  background: var(--ox-surface-weak);
  color: var(--ox-text);
  cursor: pointer;
  transition: all 250ms ease;
  text-decoration: none;
  display: inline-block;
}
.tag-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(2, 103, 115, 0.22);
  background: rgba(2, 103, 115, 0.08);
  color: var(--ox-accent);
}
.tag-pill.size-lg {
  font-size: 1rem;
  padding: 10px 20px;
}
.tag-pill.size-sm {
  font-size: 0.75rem;
  padding: 6px 12px;
}

.featured-slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.featured-slider-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.featured-slider-track::-webkit-scrollbar {
  display: none;
}

.featured-slider-card {
  flex: 0 0 100%;
  scroll-snap-align: center;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.featured-slider-card img {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.featured-slider-card:hover img {
  transform: scale(1.05);
}
.featured-slider-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.75) 100%);
}

.featured-slider-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  z-index: 2;
}

.featured-slider-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--ox-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.featured-slider-title {
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--ox-text-inverse);
  margin: 0;
}

.featured-slider-nav {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  justify-content: center;
}

.featured-slider-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 2px solid rgba(1, 46, 64, 0.1);
  background: var(--ox-surface-weak);
  color: var(--ox-text);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 250ms ease;
}
.featured-slider-btn:hover {
  border-color: rgba(2, 103, 115, 0.22);
  background: rgba(2, 103, 115, 0.08);
  color: var(--ox-accent);
  transform: scale(1.05);
}
.featured-slider-btn i {
  font-size: 1rem;
}

.newsletter-widget {
  background: linear-gradient(135deg, var(--ox-primary-dark), var(--ox-secondary-dark));
  color: var(--ox-text-inverse);
  position: relative;
  overflow: hidden;
}
.newsletter-widget::before {
  content: "";
  position: absolute;
  inset: -20% -20% auto auto;
  width: 300px;
  height: 300px;
  background: radial-gradient(closest-side, rgba(2, 103, 115, 0.4), rgba(2, 103, 115, 0) 70%);
  filter: blur(40px);
  pointer-events: none;
}

.newsletter-widget-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.15rem;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.newsletter-widget-desc {
  font-size: 0.9rem;
  color: var(--ox-text-inverse-muted);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.newsletter-form {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--ox-border);
  background: rgba(255, 255, 255, 0.1);
  color: var(--ox-text-inverse);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 250ms ease;
}
.newsletter-input::-moz-placeholder {
  color: var(--ox-text-inverse-muted);
}
.newsletter-input::placeholder {
  color: var(--ox-text-inverse-muted);
}
.newsletter-input:focus {
  outline: none;
  border-color: var(--ox-accent);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, var(--ox-accent), var(--ox-accent-soft));
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 250ms ease;
}
.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 103, 115, 0.3);
}

.popular-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.popular-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  transition: all 250ms ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.popular-item:hover {
  background: rgba(242, 227, 213, 0.15);
}

.popular-number {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--ox-accent);
  background: rgba(2, 103, 115, 0.12);
  flex-shrink: 0;
}

.popular-title {
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.3;
  color: var(--ox-text);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-article-hero {
  padding: 100px 0 0;
  background: linear-gradient(135deg, rgba(1, 46, 64, 0.02), rgba(2, 73, 89, 0.01));
}

.article-featured-image {
  width: 100%;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--ox-shadow-md);
}
.article-featured-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767.98px) {
  .article-featured-image {
    height: 240px;
  }
}

.article-body {
  padding-top: 0;
}

.article-header-sticky {
  position: sticky;
  top: 96px;
  z-index: 30;
  margin-bottom: 32px;
}

.article-header {
  background: var(--ox-surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 24px;
  border-radius: var(--ox-radius-lg);
  border: 1px solid rgba(1, 46, 64, 0.1);
  box-shadow: var(--ox-shadow-md);
  transition: all 300ms ease;
}

.article-header-sticky.is-stuck .article-header {
  padding: 10px 16px;
  border-radius: 14px;
  box-shadow: var(--ox-shadow-md);
}
.article-header-sticky.is-stuck .article-header .article-title {
  font-size: 1.15rem;
  line-height: 1.2;
  margin-bottom: 8px;
}
.article-header-sticky.is-stuck .article-header .article-meta {
  padding-bottom: 0;
  border-bottom: none;
  gap: 12px;
}
.article-header-sticky.is-stuck .article-header .article-category {
  padding: 4px 10px;
  font-size: 0.7rem;
  margin-bottom: 6px;
}
.article-header-sticky.is-stuck .article-header .article-author img {
  width: 32px;
  height: 32px;
}
.article-header-sticky.is-stuck .article-header .article-author-name {
  font-size: 0.85rem;
}
.article-header-sticky.is-stuck .article-header .article-author-role {
  font-size: 0.7rem;
}
.article-header-sticky.is-stuck .article-header .article-date,
.article-header-sticky.is-stuck .article-header .article-read-time {
  font-size: 0.78rem;
}
.article-header-sticky.is-stuck .article-header .article-share {
  gap: 4px;
}
.article-header-sticky.is-stuck .article-header .article-share-btn {
  width: 28px;
  height: 28px;
}
@media (max-width: 767.98px) {
  .article-header-sticky.is-stuck .article-header {
    padding: 8px 12px;
    border-radius: 12px;
  }
  .article-header-sticky.is-stuck .article-header .article-title {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  .article-header-sticky.is-stuck .article-header .article-meta {
    gap: 8px;
  }
  .article-header-sticky.is-stuck .article-header .article-category {
    padding: 3px 8px;
    font-size: 0.65rem;
    margin-bottom: 5px;
  }
  .article-header-sticky.is-stuck .article-header .article-author img {
    width: 28px;
    height: 28px;
  }
  .article-header-sticky.is-stuck .article-header .article-author-name {
    font-size: 0.8rem;
  }
  .article-header-sticky.is-stuck .article-header .article-author-role {
    display: none;
  }
  .article-header-sticky.is-stuck .article-header .article-share-btn {
    width: 24px;
    height: 24px;
  }
}

.article-category {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(2, 103, 115, 0.12), rgba(60, 166, 166, 0.1));
  color: var(--ox-accent);
  font-size: 0.85rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(2, 103, 115, 0.18);
}

.article-title {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--ox-text);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(1, 46, 64, 0.1);
}

.article-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.article-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.article-author-info {
  display: flex;
  flex-direction: column;
}

.article-author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ox-text);
}

.article-author-role {
  font-size: 0.8rem;
  color: var(--ox-text-muted);
  font-weight: 500;
}

.article-date,
.article-read-time {
  font-size: 0.9rem;
  color: var(--ox-text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.article-date i,
.article-read-time i {
  font-size: 1rem;
}

.article-share {
  margin-left: auto;
  display: flex;
  gap: 8px;
}

.article-share-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(1, 46, 64, 0.1);
  background: var(--ox-surface-weak);
  color: var(--ox-text);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 250ms ease;
}
.article-share-btn:hover {
  border-color: rgba(2, 103, 115, 0.22);
  background: rgba(2, 103, 115, 0.08);
  color: var(--ox-accent);
  transform: translateY(-2px);
}
.article-share-btn i {
  font-size: 1.1rem;
}

.article-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--ox-text);
  max-width: 900px;
  margin: 0 auto;
}
.article-content h2 {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.85rem;
  margin-top: 48px;
  margin-bottom: 20px;
  color: var(--ox-text);
}
.article-content h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.5rem;
  margin-top: 36px;
  margin-bottom: 16px;
  color: var(--ox-text);
}
.article-content p {
  margin-bottom: 24px;
}
.article-content a {
  color: var(--ox-accent);
  text-decoration: none;
  font-weight: 600;
}
.article-content a:hover {
  text-decoration: underline;
}
.article-content blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--ox-accent);
  background: rgba(2, 103, 115, 0.08);
  border-radius: 0 16px 16px 0;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ox-text);
}
.article-content ul,
.article-content ol {
  margin: 24px 0;
  padding-left: 28px;
}
.article-content ul li,
.article-content ol li {
  margin-bottom: 12px;
  line-height: 1.7;
}
.article-content ul {
  list-style-type: disc;
}
.article-content ul li::marker {
  color: var(--ox-accent);
}
.article-content ol {
  list-style-type: decimal;
}
.article-content ol li::marker {
  color: var(--ox-accent);
  font-weight: 700;
}
.article-content img {
  width: 100%;
  border-radius: 16px;
  margin: 32px 0;
  box-shadow: var(--ox-shadow-sm);
}
.article-content code {
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(1, 46, 64, 0.08);
  font-family: "Monaco", "Consolas", monospace;
  font-size: 0.9em;
  color: var(--ox-accent);
}
.article-content pre {
  margin: 24px 0;
  padding: 20px;
  border-radius: 16px;
  background: rgba(1, 46, 64, 0.04);
  border: 1px solid rgba(1, 46, 64, 0.1);
  overflow-x: auto;
}
.article-content pre code {
  padding: 0;
  background: none;
  color: var(--ox-text);
}
.article-content hr {
  border: none;
  height: 1px;
  background: rgba(1, 46, 64, 0.1);
  margin: 40px 0;
}

.comments-section {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(1, 46, 64, 0.1);
}

.comments-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.75rem;
  margin-bottom: 32px;
  color: var(--ox-text);
  display: flex;
  align-items: center;
  gap: 12px;
}
.comments-title i {
  color: var(--ox-accent);
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.comment-item {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(1, 46, 64, 0.1);
  background: var(--ox-surface);
  box-shadow: var(--ox-shadow-sm);
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.comment-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ox-accent), var(--ox-accent-soft));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.comment-author {
  flex: 1;
}

.comment-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--ox-text);
  margin-bottom: 2px;
}

.comment-date {
  font-size: 0.85rem;
  color: var(--ox-text-muted);
  font-weight: 500;
}

.comment-reply-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(1, 46, 64, 0.1);
  background: var(--ox-surface-weak);
  color: var(--ox-text);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 250ms ease;
}
.comment-reply-btn:hover {
  border-color: rgba(2, 103, 115, 0.22);
  background: rgba(2, 103, 115, 0.08);
  color: var(--ox-accent);
}

.comment-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ox-text);
  margin-bottom: 0;
}

.comment-form-wrapper {
  padding: 32px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(2, 103, 115, 0.08), var(--ox-surface-hover));
  border: 1px solid rgba(2, 103, 115, 0.18);
  box-shadow: var(--ox-shadow-sm);
}

.comment-form-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: var(--ox-text);
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.comment-form-input,
.comment-form-textarea {
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(1, 46, 64, 0.14);
  background: var(--ox-surface);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ox-text);
  transition: all 250ms ease;
  font-family: inherit;
}
.comment-form-input::-moz-placeholder, .comment-form-textarea::-moz-placeholder {
  color: var(--ox-text-muted);
}
.comment-form-input::placeholder,
.comment-form-textarea::placeholder {
  color: var(--ox-text-muted);
}
.comment-form-input:focus,
.comment-form-textarea:focus {
  outline: none;
  border-color: rgba(2, 103, 115, 0.22);
  box-shadow: 0 0 0 4px rgba(2, 103, 115, 0.12);
}

.comment-form-textarea {
  min-height: 140px;
  resize: vertical;
}

.comment-form-submit {
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--ox-accent), var(--ox-accent-soft));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 250ms ease;
  align-self: flex-start;
}
.comment-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2, 103, 115, 0.3);
}

.related-posts {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(1, 46, 64, 0.1);
}

.related-posts-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.75rem;
  margin-bottom: 32px;
  color: var(--ox-text);
}

.related-posts-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1199.98px) {
  .blog-sidebar {
    position: static;
  }
}
@media (max-width: 991.98px) {
  .blog-hero-title {
    font-size: 2.5rem;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-main {
    flex-direction: column;
  }
  .blog-sidebar {
    position: static;
    width: 100%;
  }
  .article-title {
    font-size: 2rem;
  }
  .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .blog-hero {
    padding: 80px 0 60px;
  }
  .blog-hero-title {
    font-size: 2rem;
  }
  .blog-hero-subtitle {
    font-size: 1.1rem;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-filters {
    padding: 12px 14px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .article-title {
    font-size: 1.75rem;
  }
  .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .article-share {
    margin-left: 0;
  }
  .article-content {
    font-size: 1rem;
  }
  .article-content h2 {
    font-size: 1.5rem;
  }
  .article-content h3 {
    font-size: 1.25rem;
  }
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.98px) {
  .blog-hero {
    padding: 60px 0 40px;
  }
  .blog-hero-title {
    font-size: 1.75rem;
  }
  .blog-hero-label {
    font-size: 11px;
    padding: 6px 12px;
  }
  .blog-category-chips {
    gap: 8px;
  }
  .blog-category-chip {
    font-size: 0.85rem;
    padding: 8px 14px;
  }
  .sidebar-widget {
    padding: 20px;
  }
  .article-featured-image {
    border-radius: 18px;
  }
  .article-title {
    font-size: 1.5rem;
  }
  .comment-form-wrapper {
    padding: 24px;
  }
  .comments-list {
    gap: 16px;
  }
  .comment-item {
    padding: 20px;
  }
}
.footer-oxygen {
  background: linear-gradient(180deg, var(--ox-primary-dark), var(--ox-secondary-dark));
  color: rgba(255, 255, 255, 0.92);
}
.footer-oxygen a {
  color: rgba(255, 255, 255, 0.72);
  transition-property: color, transform;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.footer-oxygen a:hover {
  color: #fff;
}
.footer-oxygen .footer-title {
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.footer-oxygen .footer-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 6px 0;
}
.footer-oxygen .social a {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition-property: background-color, transform, border-color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.footer-oxygen .social a:hover {
  transform: translateY(-2px);
  border-color: rgba(60, 166, 166, 0.4);
  background: rgba(60, 166, 166, 0.14);
}
.footer-oxygen .newsletter {
  border-radius: 18px;
  padding: 14px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-oxygen .newsletter .form-control,
.footer-oxygen .newsletter .input-group .form-control {
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  color: #fff !important;
  box-shadow: none !important;
}
.footer-oxygen .newsletter .form-control::-moz-placeholder, .footer-oxygen .newsletter .input-group .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.55) !important;
}
.footer-oxygen .newsletter .form-control::placeholder,
.footer-oxygen .newsletter .input-group .form-control::placeholder {
  color: rgba(255, 255, 255, 0.55) !important;
}
.footer-oxygen .newsletter .form-control:focus,
.footer-oxygen .newsletter .input-group .form-control:focus {
  border-color: rgba(255, 255, 255, 0.35) !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.1) !important;
}

.page-hero {
  position: relative;
  padding: 140px 0 86px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(1, 46, 64, 0.03), rgba(2, 73, 89, 0.04));
  border-bottom: 1px solid var(--ox-border);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: -30% -20% auto -20%;
  height: 480px;
  background: radial-gradient(closest-side, rgba(60, 166, 166, 0.35), rgba(60, 166, 166, 0) 72%), radial-gradient(closest-side, rgba(2, 103, 115, 0.22), rgba(2, 103, 115, 0) 72%);
  filter: blur(10px);
  pointer-events: none;
}
.page-hero .page-hero-title {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.page-hero .page-hero-lead {
  font-size: 1.1rem;
  color: var(--ox-text-muted);
  max-width: 52ch;
}

.value-card {
  height: 100%;
  padding: 28px;
  border-radius: var(--ox-radius-lg);
  border: 1px solid var(--ox-border);
  background: var(--ox-surface);
  box-shadow: var(--ox-shadow-sm);
  transition-property: transform, box-shadow, border-color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(2, 103, 115, 0.22);
  box-shadow: var(--ox-shadow-md);
}
.value-card .value-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(2, 103, 115, 0.12), rgba(60, 166, 166, 0.1));
  color: var(--ox-accent);
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.value-card h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.value-card p {
  color: var(--ox-text-muted);
  margin: 0;
}

.timeline {
  position: relative;
  padding-left: 28px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(2, 103, 115, 0.22), rgba(2, 103, 115, 0.08));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-bottom: 32px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-item .timeline-dot {
  position: absolute;
  left: -24px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ox-accent);
  border: 3px solid var(--ox-body-bg);
  box-shadow: 0 0 0 2px rgba(2, 103, 115, 0.22);
}
.timeline-item .timeline-year {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(2, 103, 115, 0.12), rgba(60, 166, 166, 0.1));
  color: var(--ox-accent);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.timeline-item h5 {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.timeline-item p {
  color: var(--ox-text-muted);
  margin: 0;
  max-width: 48ch;
}

.team-card {
  height: 100%;
  padding: 24px;
  border-radius: var(--ox-radius-lg);
  border: 1px solid var(--ox-border);
  background: var(--ox-surface);
  box-shadow: var(--ox-shadow-sm);
  text-align: center;
  transition-property: transform, box-shadow, border-color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(2, 103, 115, 0.22);
  box-shadow: var(--ox-shadow-md);
}
.team-card .team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid var(--ox-border-strong);
  box-shadow: var(--ox-shadow-sm);
}
.team-card .team-avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(2, 103, 115, 0.12), rgba(60, 166, 166, 0.1));
  color: var(--ox-accent);
  font-weight: 800;
  font-size: 1.4rem;
  border: 3px solid var(--ox-border-strong);
  box-shadow: var(--ox-shadow-sm);
}
.team-card h5 {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.team-card .team-role {
  color: var(--ox-accent);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 10px;
}
.team-card .team-desc {
  color: var(--ox-text-muted);
  font-size: 0.92rem;
  margin: 0 0 14px;
}
.team-card .team-social {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.team-card .team-social a {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(1, 46, 64, 0.05);
  color: var(--ox-text);
  font-size: 0.9rem;
  transition-property: background-color, color, transform;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.team-card .team-social a:hover {
  background: var(--ox-accent);
  color: #fff;
  transform: translateY(-2px);
}

.contact-form-wrapper {
  padding: 32px;
  border-radius: var(--ox-radius-lg);
  border: 1px solid var(--ox-border);
  background: var(--ox-surface);
  box-shadow: var(--ox-shadow-sm);
}

.contact-info-card {
  padding: 24px;
  border-radius: var(--ox-radius-lg);
  border: 1px solid var(--ox-border);
  background: var(--ox-surface);
  box-shadow: var(--ox-shadow-sm);
  height: 100%;
  transition-property: transform, box-shadow, border-color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.contact-info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(2, 103, 115, 0.22);
  box-shadow: var(--ox-shadow-md);
}
.contact-info-card .contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(2, 103, 115, 0.12), rgba(60, 166, 166, 0.1));
  color: var(--ox-accent);
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.contact-info-card h5 {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.contact-info-card .contact-value {
  color: var(--ox-text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-info-card .contact-desc {
  color: var(--ox-text-muted);
  font-size: 0.88rem;
  margin: 0;
}

.inquiry-pill {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid var(--ox-border-medium);
  background: var(--ox-surface-weak);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--ox-text);
  cursor: pointer;
  transition-property: background-color, color, transform, border-color, box-shadow;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.inquiry-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(2, 103, 115, 0.22);
}
.inquiry-pill.is-active {
  background: linear-gradient(135deg, rgba(2, 103, 115, 0.16), rgba(60, 166, 166, 0.1));
  border-color: rgba(2, 103, 115, 0.22);
  color: var(--ox-primary-dark);
  box-shadow: 0 12px 30px rgba(1, 46, 64, 0.1);
}

.map-block {
  border-radius: var(--ox-radius-lg);
  border: 1px solid var(--ox-border-medium);
  background: linear-gradient(135deg, rgba(1, 46, 64, 0.03), rgba(2, 73, 89, 0.04));
  box-shadow: var(--ox-shadow-sm);
  overflow: hidden;
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(closest-side, rgba(60, 166, 166, 0.2), rgba(60, 166, 166, 0) 70%), radial-gradient(closest-side, rgba(2, 103, 115, 0.12), rgba(2, 103, 115, 0) 70%);
  pointer-events: none;
}

.map-pin {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ox-accent), var(--ox-accent-soft));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  box-shadow: 0 18px 45px rgba(1, 46, 64, 0.22);
  animation: ox-map-bounce 2.5s ease-in-out infinite;
}

@keyframes ox-map-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.why-card {
  height: 100%;
  padding: 22px;
  border-radius: var(--ox-radius-lg);
  border: 1px solid var(--ox-border);
  background: var(--ox-surface);
  box-shadow: var(--ox-shadow-sm);
  transition-property: transform, box-shadow, border-color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(2, 103, 115, 0.22);
  box-shadow: var(--ox-shadow-md);
}
.why-card .why-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(2, 103, 115, 0.12), rgba(60, 166, 166, 0.1));
  color: var(--ox-accent);
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.why-card h5 {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.why-card p {
  color: var(--ox-text-muted);
  margin: 0;
  font-size: 0.95rem;
}

.story-highlight {
  border-radius: var(--ox-radius-lg);
  padding: 28px;
  background: linear-gradient(135deg, rgba(2, 103, 115, 0.08), rgba(60, 166, 166, 0.06));
  border: 1px solid rgba(2, 103, 115, 0.12);
}

.form-message {
  display: none;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
}
.form-message.is-visible {
  display: block;
}
.form-message--success {
  background: rgba(25, 135, 84, 0.08);
  border: 1px solid rgba(25, 135, 84, 0.25);
  color: rgba(25, 135, 84, 0.95);
}
.form-message--error {
  background: rgba(220, 53, 69, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.25);
  color: rgba(220, 53, 69, 0.95);
}

.partner-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.partner-row img {
  height: 38px;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 240ms ease, filter 240ms ease, transform 240ms ease;
}
.partner-row img:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-2px);
}

.quote-card {
  padding: 32px;
  border-radius: var(--ox-radius-lg);
  border: 1px solid var(--ox-border);
  background: var(--ox-surface);
  box-shadow: var(--ox-shadow-sm);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition-property: transform, box-shadow, border-color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.quote-card:hover {
  transform: translateY(-4px);
  border-color: rgba(2, 103, 115, 0.22);
  box-shadow: var(--ox-shadow-md);
}
.quote-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: radial-gradient(closest-side, rgba(2, 103, 115, 0.12), rgba(2, 103, 115, 0) 70%);
  pointer-events: none;
}
.quote-card .quote-icon {
  font-size: 1.8rem;
  color: var(--ox-accent);
  opacity: 0.35;
  margin-bottom: 12px;
}
.quote-card .quote-text {
  font-size: 1.05rem;
  color: var(--ox-text);
  line-height: 1.6;
  margin-bottom: 22px;
}
.quote-card .quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.quote-card .quote-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(2, 103, 115, 0.12), rgba(60, 166, 166, 0.1));
  color: var(--ox-accent);
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.quote-card .quote-name {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.quote-card .quote-role {
  font-size: 0.85rem;
  color: var(--ox-text-muted);
}

.promise-bar {
  border-radius: var(--ox-radius-lg);
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--ox-primary-dark), var(--ox-secondary-dark));
  color: var(--ox-text-inverse);
  position: relative;
  overflow: hidden;
}
.promise-bar::before {
  content: "";
  position: absolute;
  inset: -20% -20% auto auto;
  width: 340px;
  height: 340px;
  background: radial-gradient(closest-side, rgba(60, 166, 166, 0.45), rgba(60, 166, 166, 0) 70%);
  filter: blur(10px);
  pointer-events: none;
}
.promise-bar .promise-item {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.promise-bar .promise-item .promise-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--ox-text-inverse);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.promise-bar .promise-item .promise-title {
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.promise-bar .promise-item .promise-desc {
  font-size: 0.88rem;
  opacity: 0.75;
}

.connect-card {
  padding: 28px;
  border-radius: var(--ox-radius-lg);
  border: 1px solid var(--ox-border);
  background: var(--ox-surface);
  box-shadow: var(--ox-shadow-sm);
  height: 100%;
  text-align: center;
  transition-property: transform, box-shadow, border-color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.connect-card:hover {
  transform: translateY(-4px);
  border-color: rgba(2, 103, 115, 0.22);
  box-shadow: var(--ox-shadow-md);
}
.connect-card .connect-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(2, 103, 115, 0.12), rgba(60, 166, 166, 0.1));
  color: var(--ox-accent);
  font-size: 1.6rem;
}
.connect-card h5 {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.connect-card p {
  color: var(--ox-text-muted);
  font-size: 0.92rem;
  margin: 0 0 14px;
}
.connect-card .connect-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--ox-accent);
  font-size: 0.92rem;
  transition-property: color, transform;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.connect-card .connect-link:hover {
  color: var(--ox-text);
  transform: translateX(2px);
}

.award-card {
  padding: 22px;
  border-radius: var(--ox-radius-lg);
  border: 1px solid var(--ox-border);
  background: var(--ox-surface);
  box-shadow: var(--ox-shadow-sm);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  transition-property: transform, box-shadow, border-color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.award-card:hover {
  transform: translateY(-3px);
  border-color: rgba(2, 103, 115, 0.22);
  box-shadow: var(--ox-shadow-md);
}
.award-card .award-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(2, 103, 115, 0.12), rgba(60, 166, 166, 0.1));
  color: var(--ox-accent);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.award-card h5 {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.award-card p {
  color: var(--ox-text-muted);
  font-size: 0.88rem;
  margin: 0;
}

.ec-section {
  padding: var(--ox-section-py-sm) 0;
}

.ec-breadcrumb {
  font-size: 0.88rem;
  color: var(--ox-text-muted);
}
.ec-breadcrumb a {
  color: var(--ox-text-muted);
  transition-property: color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ec-breadcrumb a:hover {
  color: var(--ox-accent);
}
.ec-breadcrumb .active {
  color: var(--ox-text);
  font-weight: 600;
}

.mini-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(1, 46, 64, 0.45);
  opacity: 0;
  pointer-events: none;
  z-index: 1050;
  transition: opacity 300ms ease;
}
.mini-cart-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

body:has(.mini-cart-drawer.is-open) {
  overflow: hidden;
}

.mini-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--ox-surface);
  z-index: 1051;
  transform: translateX(100%);
  transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 50px rgba(1, 46, 64, 0.12);
}
.mini-cart-drawer.is-open {
  transform: translateX(0);
}
.mini-cart-drawer .mini-cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(1, 46, 64, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mini-cart-drawer .mini-cart-header h5 {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}
.mini-cart-drawer .mini-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.mini-cart-drawer .mini-cart-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(1, 46, 64, 0.08);
  background: linear-gradient(180deg, rgba(242, 227, 213, 0.3), rgba(242, 227, 213, 0.1));
}
.mini-cart-drawer .mini-cart-footer .mini-cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-weight: 700;
  font-size: 1.05rem;
}

.mini-cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(1, 46, 64, 0.08);
}
.mini-cart-item:last-child {
  border-bottom: none;
}
.mini-cart-item .mini-cart-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--ox-radius-sm);
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid rgba(1, 46, 64, 0.08);
  flex-shrink: 0;
}
.mini-cart-item .mini-cart-info {
  flex: 1;
  min-width: 0;
}
.mini-cart-item .mini-cart-info .mini-cart-title {
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mini-cart-item .mini-cart-info .mini-cart-meta {
  font-size: 0.82rem;
  color: var(--ox-text-muted);
  margin-bottom: 8px;
}
.mini-cart-item .mini-cart-info .mini-cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card {
  border: 1px solid rgba(1, 46, 64, 0.08);
  border-radius: var(--ox-radius-lg);
  background: var(--ox-surface);
  box-shadow: var(--ox-shadow-sm);
  overflow: hidden;
  position: relative;
  transition-property: transform, box-shadow, border-color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(2, 103, 115, 0.22);
  box-shadow: var(--ox-shadow-md);
}
.product-card:hover .product-card-actions {
  opacity: 1;
  transform: translateY(0);
}
.product-card:hover .product-image-primary {
  transform: scale(1.06);
}
.product-card .product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-card .product-badge .badge-pill {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.product-card .product-badge .badge-sale {
  background: linear-gradient(135deg, #dc3545, #ff6b6b);
  color: #fff;
}
.product-card .product-badge .badge-new {
  background: linear-gradient(135deg, var(--ox-accent), var(--ox-accent-soft));
  color: #fff;
}
.product-card .product-badge .badge-hot {
  background: linear-gradient(135deg, #fd7e14, #ffc107);
  color: #fff;
}
.product-card .product-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, rgba(1, 46, 64, 0.03), rgba(2, 73, 89, 0.04));
}
.product-card .product-image-wrap .product-image-primary {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-card .product-card-actions {
  position: absolute;
  right: 14px;
  top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 240ms ease, transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-card .product-card-actions .action-btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--ox-surface);
  border: 1px solid rgba(1, 46, 64, 0.1);
  color: var(--ox-text);
  box-shadow: var(--ox-shadow-sm);
  cursor: pointer;
  transition-property: background-color, color, border-color, transform;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-card .product-card-actions .action-btn:hover {
  background: var(--ox-accent);
  color: #fff;
  border-color: var(--ox-accent);
  transform: translateY(-2px);
}
.product-card .product-card-actions .action-btn.is-active {
  background: var(--ox-accent);
  color: #fff;
  border-color: var(--ox-accent);
}
.product-card .product-card-body {
  padding: 20px;
}
.product-card .btn-add-cart {
  width: 100%;
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-weight: 700;
  font-size: 0.88rem;
  border: 1px solid rgba(1, 46, 64, 0.1);
  background: var(--ox-surface);
  color: var(--ox-text);
  transition-property: background-color, color, border-color, box-shadow, transform;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-card .btn-add-cart:hover {
  background: linear-gradient(135deg, var(--ox-accent), var(--ox-accent-soft));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(2, 103, 115, 0.22);
  transform: translateY(-1px);
}

.product-category {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ox-accent);
  margin-bottom: 6px;
}

.product-title {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.product-rating .stars {
  display: flex;
  gap: 2px;
  color: #ffc107;
  font-size: 0.82rem;
}
.product-rating .reviews-count {
  font-size: 0.82rem;
  color: var(--ox-text-muted);
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}
.product-price-row .price {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ox-text);
}
.product-price-row .price-old {
  font-size: 0.92rem;
  color: var(--ox-text-muted);
  text-decoration: line-through;
}

.product-list-item {
  border: 1px solid rgba(1, 46, 64, 0.08);
  border-radius: var(--ox-radius-lg);
  background: var(--ox-surface);
  box-shadow: var(--ox-shadow-sm);
  overflow: hidden;
  display: flex;
  gap: 20px;
  padding: 20px;
  transition-property: transform, box-shadow, border-color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-list-item:hover {
  transform: translateY(-3px);
  border-color: rgba(2, 103, 115, 0.22);
  box-shadow: var(--ox-shadow-md);
}
.product-list-item .product-list-image-link {
  display: block;
  flex-shrink: 0;
  text-decoration: none;
}
.product-list-item .product-list-image {
  width: 220px;
  height: 220px;
  border-radius: var(--ox-radius-md);
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid rgba(1, 46, 64, 0.08);
  display: block;
}
.product-list-item .product-list-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-list-item .product-list-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.product-list-item .product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.product-list-item .product-rating .stars {
  display: flex;
  gap: 2px;
  color: #ffc107;
  font-size: 0.82rem;
}
.product-list-item .product-rating .reviews-count {
  font-size: 0.82rem;
  color: var(--ox-text-muted);
}
.product-list-item .product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}
.product-list-item .product-price-row .price {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ox-text);
}
.product-list-item .product-price-row .price-old {
  font-size: 0.92rem;
  color: var(--ox-text-muted);
  text-decoration: line-through;
}
@media (max-width: 991.98px) {
  .product-list-item {
    flex-direction: column;
  }
  .product-list-item .product-list-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 20px;
  border: 1px solid rgba(1, 46, 64, 0.08);
  border-radius: var(--ox-radius-md);
  background: var(--ox-surface);
  margin-bottom: 24px;
}
.shop-toolbar .toolbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.shop-toolbar .toolbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.shop-toolbar .view-toggle {
  display: flex;
  gap: 4px;
}
.shop-toolbar .view-toggle .view-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(1, 46, 64, 0.1);
  background: var(--ox-surface);
  color: var(--ox-text-muted);
  cursor: pointer;
  transition-property: background-color, color, border-color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.shop-toolbar .view-toggle .view-btn:hover, .shop-toolbar .view-toggle .view-btn.is-active {
  background: var(--ox-accent);
  color: #fff;
  border-color: var(--ox-accent);
}
.shop-toolbar .toolbar-count {
  font-size: 0.88rem;
  color: var(--ox-text-muted);
}

.filter-sidebar .filter-group {
  border: 1px solid var(--ox-border);
  border-radius: var(--ox-radius-md);
  background: var(--ox-surface);
  overflow: hidden;
  margin-bottom: 16px;
}
.filter-sidebar .filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition-property: background-color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.filter-sidebar .filter-header:hover {
  background: rgba(2, 103, 115, 0.04);
}
.filter-sidebar .filter-header i {
  transition: transform 240ms ease;
}
.filter-sidebar .filter-header.is-open i {
  transform: rotate(180deg);
}
.filter-sidebar .filter-body {
  padding: 8px 20px 18px;
  display: none;
}
.filter-sidebar .filter-body.is-open {
  display: block;
}
.filter-sidebar .filter-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-sidebar .filter-chip {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(1, 46, 64, 0.1);
  background: var(--ox-surface-weak);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ox-text);
  cursor: pointer;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.filter-sidebar .filter-chip:hover {
  border-color: rgba(2, 103, 115, 0.22);
}
.filter-sidebar .filter-chip.is-active {
  background: linear-gradient(135deg, rgba(2, 103, 115, 0.16), rgba(60, 166, 166, 0.1));
  border-color: rgba(2, 103, 115, 0.22);
  color: var(--ox-text);
}
.filter-sidebar .color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(1, 46, 64, 0.1);
  cursor: pointer;
  position: relative;
  transition-property: box-shadow, transform;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.filter-sidebar .color-swatch:hover {
  transform: scale(1.1);
}
.filter-sidebar .color-swatch.is-active {
  box-shadow: 0 0 0 2px var(--ox-accent);
}
.filter-sidebar .price-range-slider {
  margin-top: 8px;
}
.filter-sidebar .range-track {
  height: 6px;
  border-radius: 3px;
  background: rgba(1, 46, 64, 0.1);
  position: relative;
  margin-bottom: 12px;
}
.filter-sidebar .range-track .range-fill {
  position: absolute;
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--ox-accent), var(--ox-accent-soft));
}
.filter-sidebar .range-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-sidebar .range-inputs input {
  flex: 1;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(1, 46, 64, 0.1);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}
.filter-sidebar .range-inputs input:focus {
  border-color: rgba(2, 103, 115, 0.22);
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(2, 103, 115, 0.08);
}

.active-filters-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.active-filters-bar .active-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(2, 103, 115, 0.12), rgba(60, 166, 166, 0.1));
  border: 1px solid rgba(2, 103, 115, 0.22);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ox-text);
  cursor: pointer;
  transition-property: background-color, border-color, transform, box-shadow;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.active-filters-bar .active-filter-tag i {
  font-size: 0.7rem;
  opacity: 0.7;
  transition-property: opacity, color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.active-filters-bar .active-filter-tag:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(2, 103, 115, 0.16), rgba(60, 166, 166, 0.14));
  border-color: rgba(2, 103, 115, 0.26);
  box-shadow: 0 4px 12px rgba(2, 103, 115, 0.12);
}
.active-filters-bar .active-filter-tag:hover i {
  opacity: 1;
  color: var(--ox-accent);
}
.active-filters-bar .clear-filters {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--ox-accent), var(--ox-accent-soft));
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(2, 103, 115, 0.2);
  transition-property: transform, box-shadow, background-color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.active-filters-bar .clear-filters:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 103, 115, 0.28);
  background: linear-gradient(135deg, var(--ox-primary-dark), var(--ox-accent));
}

.filter-offcanvas .offcanvas-header {
  border-bottom: 1px solid rgba(1, 46, 64, 0.08);
}
.filter-offcanvas .offcanvas-header h5 {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}
.filter-offcanvas .offcanvas-body {
  padding: 20px;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(1, 46, 64, 0.1);
  border-radius: 999px;
  overflow: hidden;
  flex-wrap: nowrap;
  white-space: nowrap;
  flex-shrink: 0;
}
.qty-control button {
  width: 40px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ox-surface);
  border: none;
  color: var(--ox-text);
  font-size: 1.1rem;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  transition-property: background-color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.qty-control button:hover {
  background: rgba(2, 103, 115, 0.08);
}
.qty-control input {
  width: 50px;
  height: 44px;
  border: none;
  text-align: center;
  font-weight: 800;
  flex-shrink: 0;
  padding: 0;
  background: transparent;
  font-size: 0.95rem;
  color: var(--ox-text);
}
.qty-control input:focus {
  outline: none;
}

.mini-cart-row .qty-control {
  transform: scale(0.85);
  transform-origin: left center;
}

.product-gallery .gallery-main {
  border-radius: var(--ox-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(1, 46, 64, 0.08);
  background: linear-gradient(135deg, rgba(1, 46, 64, 0.02), rgba(2, 73, 89, 0.03));
  aspect-ratio: 1/1;
  position: relative;
}
.product-gallery .gallery-main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-gallery .gallery-main:hover img {
  transform: scale(1.05);
}
.product-gallery .gallery-main:hover .gallery-nav {
  opacity: 1;
}
.product-gallery .gallery-main .gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  display: grid;
  place-items: center;
  color: var(--ox-text);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
  transition: opacity 200ms ease, background-color 200ms ease, transform 150ms ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.product-gallery .gallery-main .gallery-nav:hover {
  background: var(--ox-surface);
  transform: translateY(-50%) scale(1.1);
}
.product-gallery .gallery-main .gallery-nav:active {
  transform: translateY(-50%) scale(0.95);
}
.product-gallery .gallery-main .gallery-nav.gallery-prev {
  left: 12px;
}
.product-gallery .gallery-main .gallery-nav.gallery-next {
  right: 12px;
}
.product-gallery .gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.product-gallery .gallery-thumbs .thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--ox-radius-sm);
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  transition-property: border-color, box-shadow;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-gallery .gallery-thumbs .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-gallery .gallery-thumbs .thumb:hover, .product-gallery .gallery-thumbs .thumb.is-active {
  border-color: var(--ox-accent);
  box-shadow: 0 0 0 3px rgba(2, 103, 115, 0.12);
}

@media (max-width: 767.98px) {
  .product-gallery .gallery-main .gallery-nav {
    opacity: 1;
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .product-gallery .gallery-main .gallery-nav.gallery-prev {
    left: 8px;
  }
  .product-gallery .gallery-main .gallery-nav.gallery-next {
    right: 8px;
  }
}
@keyframes heart-beat {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.3);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes confetti-pop {
  0% {
    transform: scale(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: scale(1.5) rotate(180deg);
    opacity: 0;
  }
}
.celebration-particles {
  position: absolute;
  pointer-events: none;
  z-index: 100;
}
.celebration-particles .particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: confetti-pop 600ms ease-out forwards;
}
.celebration-particles .particle:nth-child(1) {
  background: #ff6b6b;
  transform: translate(-20px, -20px);
}
.celebration-particles .particle:nth-child(2) {
  background: #4ecdc4;
  transform: translate(20px, -20px);
  animation-delay: 50ms;
}
.celebration-particles .particle:nth-child(3) {
  background: #45b7d1;
  transform: translate(-20px, 20px);
  animation-delay: 100ms;
}
.celebration-particles .particle:nth-child(4) {
  background: #f9ca24;
  transform: translate(20px, 20px);
  animation-delay: 150ms;
}
.celebration-particles .particle:nth-child(5) {
  background: #6c5ce7;
  transform: translate(0, -30px);
  animation-delay: 200ms;
}
.celebration-particles .particle:nth-child(6) {
  background: #a29bfe;
  transform: translate(0, 30px);
  animation-delay: 250ms;
}

.product-details-meta .product-detail-category {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ox-accent);
  margin-bottom: 8px;
}
.product-details-meta .product-detail-title {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.product-details-meta .product-detail-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.product-details-meta .product-detail-rating .stars {
  display: flex;
  gap: 3px;
  color: #ffc107;
}
.product-details-meta .product-detail-rating .reviews-link {
  font-size: 0.88rem;
  color: var(--ox-text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.product-details-meta .product-detail-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}
.product-details-meta .product-detail-price .current-price {
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.02em;
  color: var(--ox-text);
}
.product-details-meta .product-detail-price .old-price {
  font-size: 1.15rem;
  color: var(--ox-text-muted);
  text-decoration: line-through;
}
.product-details-meta .product-detail-price .discount-badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #dc3545, #ff6b6b);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}
.product-details-meta .product-detail-stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(25, 135, 84, 0.08);
  border: 1px solid rgba(25, 135, 84, 0.2);
  color: rgba(25, 135, 84, 0.9);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.product-details-meta .product-detail-stock.out-of-stock {
  background: rgba(220, 53, 69, 0.08);
  border-color: rgba(220, 53, 69, 0.2);
  color: rgba(220, 53, 69, 0.9);
}
.product-details-meta .product-detail-desc {
  color: var(--ox-text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
}
.product-details-meta .variant-group {
  margin-bottom: 18px;
}
.product-details-meta .variant-group .variant-label {
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 10px;
  display: block;
}
.product-details-meta .variant-group .variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-details-meta .variant-group .variant-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(1, 46, 64, 0.1);
  background: var(--ox-surface);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ox-text);
  cursor: pointer;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-details-meta .variant-group .variant-btn:hover {
  border-color: rgba(2, 103, 115, 0.22);
}
.product-details-meta .variant-group .variant-btn.is-active {
  background: linear-gradient(135deg, var(--ox-accent), var(--ox-accent-soft));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(2, 103, 115, 0.2);
}
.product-details-meta .variant-group .variant-color {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(1, 46, 64, 0.1);
  cursor: pointer;
  position: relative;
  transition-property: box-shadow, transform;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-details-meta .variant-group .variant-color:hover {
  transform: scale(1.12);
}
.product-details-meta .variant-group .variant-color.is-active {
  box-shadow: 0 0 0 2px var(--ox-accent);
}
.product-details-meta .quantity-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.product-details-meta .product-detail-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.product-details-meta .product-detail-actions .btn-wishlist,
.product-details-meta .product-detail-actions .btn-compare {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(1, 46, 64, 0.1);
  background: var(--ox-surface);
  color: var(--ox-text);
  cursor: pointer;
  transition-property: background-color, color, border-color, transform;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-details-meta .product-detail-actions .btn-wishlist:hover,
.product-details-meta .product-detail-actions .btn-compare:hover {
  background: var(--ox-accent);
  color: #fff;
  border-color: var(--ox-accent);
  transform: translateY(-2px);
}
.product-details-meta .product-detail-actions .btn-wishlist.is-active,
.product-details-meta .product-detail-actions .btn-compare.is-active {
  background: var(--ox-accent);
  color: #fff;
  border-color: var(--ox-accent);
}
.product-details-meta .product-detail-actions .btn-wishlist.is-active.celebrate,
.product-details-meta .product-detail-actions .btn-compare.is-active.celebrate {
  animation: heart-beat 400ms ease;
}
.product-details-meta .product-detail-actions.btn-wishlist.is-active {
  background: #dc3545;
  border-color: #dc3545;
  color: #fff;
}
.product-details-meta .product-meta-table {
  font-size: 0.88rem;
  color: var(--ox-text-muted);
}
.product-details-meta .product-meta-table td {
  padding: 4px 0;
}
.product-details-meta .product-meta-table td:first-child {
  padding-right: 16px;
  font-weight: 700;
  color: var(--ox-text);
  white-space: nowrap;
}

.product-tabs .nav-pills {
  gap: 8px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(1, 46, 64, 0.08);
  padding-bottom: 12px;
}
.product-tabs .nav-pills .nav-link {
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ox-text-muted);
  border: 1px solid transparent;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-tabs .nav-pills .nav-link:hover {
  background: rgba(2, 103, 115, 0.06);
  color: var(--ox-text);
}
.product-tabs .nav-pills .nav-link.active {
  background: linear-gradient(135deg, var(--ox-accent), var(--ox-accent-soft));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(2, 103, 115, 0.2);
}
.product-tabs .tab-content .tab-pane {
  animation: ox-fade-in 300ms ease;
}

@keyframes ox-fade-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reviews-summary {
  border: 1px solid rgba(1, 46, 64, 0.08);
  border-radius: var(--ox-radius-lg);
  padding: 28px;
  background: var(--ox-surface);
  margin-bottom: 24px;
}
.reviews-summary .summary-big {
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: -0.03em;
  line-height: 1;
}
.reviews-summary .summary-stars {
  color: #ffc107;
  font-size: 1.1rem;
  margin: 8px 0;
}
.reviews-summary .rating-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  margin-bottom: 6px;
}
.reviews-summary .rating-bar .rating-bar-track {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: rgba(1, 46, 64, 0.1);
  overflow: hidden;
}
.reviews-summary .rating-bar .rating-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--ox-accent), var(--ox-accent-soft));
}

.review-card {
  border: 1px solid rgba(1, 46, 64, 0.08);
  border-radius: var(--ox-radius-lg);
  padding: 22px;
  background: var(--ox-surface);
  margin-bottom: 16px;
}
.review-card .review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.review-card .review-header .review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(2, 103, 115, 0.12), rgba(60, 166, 166, 0.1));
  color: var(--ox-accent);
  font-weight: 800;
  font-size: 0.9rem;
}
.review-card .review-header .review-meta .review-name {
  font-weight: 800;
  font-size: 0.95rem;
}
.review-card .review-header .review-meta .review-date {
  font-size: 0.82rem;
  color: var(--ox-text-muted);
}
.review-card .review-header .review-stars {
  margin-left: auto;
  color: #ffc107;
  font-size: 0.85rem;
}
.review-card .review-text {
  color: var(--ox-text-muted);
  line-height: 1.6;
  margin: 0;
}

.benefit-card-sm {
  padding: 18px;
  border-radius: var(--ox-radius-md);
  border: 1px solid rgba(1, 46, 64, 0.08);
  background: var(--ox-surface);
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
  transition-property: transform, box-shadow, border-color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.benefit-card-sm:hover {
  transform: translateY(-3px);
  border-color: rgba(2, 103, 115, 0.22);
  box-shadow: var(--ox-shadow-sm);
}
.benefit-card-sm .benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(2, 103, 115, 0.12), rgba(60, 166, 166, 0.1));
  color: var(--ox-accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.benefit-card-sm .benefit-title {
  font-weight: 800;
  font-size: 0.92rem;
  margin-bottom: 2px;
}
.benefit-card-sm .benefit-desc {
  font-size: 0.82rem;
  color: var(--ox-text-muted);
  margin: 0;
}

.cart-table-wrap {
  border: 1px solid rgba(1, 46, 64, 0.08);
  border-radius: var(--ox-radius-lg);
  background: var(--ox-surface);
  overflow: hidden;
}
.cart-table-wrap .cart-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border-bottom: 1px solid rgba(1, 46, 64, 0.08);
}
.cart-table-wrap .cart-item:last-child {
  border-bottom: none;
}
.cart-table-wrap .cart-item .cart-item-thumb {
  width: 90px;
  height: 90px;
  border-radius: var(--ox-radius-sm);
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid rgba(1, 46, 64, 0.08);
  flex-shrink: 0;
}
.cart-table-wrap .cart-item .cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-table-wrap .cart-item .cart-item-info .cart-item-title {
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-table-wrap .cart-item .cart-item-info .cart-item-variant {
  font-size: 0.85rem;
  color: var(--ox-text-muted);
}
.cart-table-wrap .cart-item .cart-item-price {
  font-weight: 800;
  font-size: 1rem;
  white-space: nowrap;
}
.cart-table-wrap .cart-item .cart-item-subtotal {
  font-weight: 800;
  font-size: 1.05rem;
  white-space: nowrap;
  min-width: 90px;
  text-align: right;
}
.cart-table-wrap .cart-item .cart-item-remove {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(1, 46, 64, 0.1);
  background: var(--ox-surface);
  color: rgba(220, 53, 69, 0.7);
  cursor: pointer;
  flex-shrink: 0;
  transition-property: background-color, color, border-color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cart-table-wrap .cart-item .cart-item-remove:hover {
  background: rgba(220, 53, 69, 0.08);
  color: #dc3545;
  border-color: rgba(220, 53, 69, 0.2);
}

.cart-summary-card {
  border: 1px solid rgba(1, 46, 64, 0.08);
  border-radius: var(--ox-radius-lg);
  background: var(--ox-surface);
  padding: 28px;
  position: sticky;
  top: 100px;
}
.cart-summary-card .summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.95rem;
}
.cart-summary-card .summary-row.summary-total {
  border-top: 1px solid rgba(1, 46, 64, 0.08);
  margin-top: 8px;
  padding-top: 14px;
  font-weight: 800;
  font-size: 1.15rem;
}
.cart-summary-card .coupon-row {
  display: flex;
  gap: 8px;
  margin: 14px 0;
}
.cart-summary-card .coupon-row .form-control {
  border-radius: 999px;
}
.cart-summary-card .coupon-row .btn {
  border-radius: 999px;
  flex-shrink: 0;
}

.cart-mobile-card {
  border: 1px solid rgba(1, 46, 64, 0.08);
  border-radius: var(--ox-radius-lg);
  background: var(--ox-surface);
  padding: 16px;
  margin-bottom: 14px;
}
.cart-mobile-card .cart-mobile-header {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}
.cart-mobile-card .cart-mobile-header img {
  width: 80px;
  height: 80px;
  border-radius: var(--ox-radius-sm);
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid rgba(1, 46, 64, 0.08);
  flex-shrink: 0;
}
.cart-mobile-card .cart-mobile-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  gap: 12px;
  flex-wrap: wrap;
}
.cart-mobile-card .cart-mobile-row .qty-control {
  order: 1;
}
.cart-mobile-card .cart-mobile-row > .fw-bold {
  order: 2;
}
.cart-mobile-card .cart-mobile-row > button {
  order: 3;
}

.checkout-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
}
.checkout-stepper .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.checkout-stepper .step .step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(1, 46, 64, 0.1);
  color: var(--ox-text-muted);
  font-weight: 800;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.checkout-stepper .step .step-number i {
  display: none;
}
.checkout-stepper .step .step-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ox-text-muted);
  white-space: nowrap;
}
.checkout-stepper .step.is-completed .step-number {
  background: linear-gradient(135deg, var(--ox-accent), var(--ox-accent-soft));
  color: #fff;
  box-shadow: 0 10px 28px rgba(2, 103, 115, 0.2);
}
.checkout-stepper .step.is-completed .step-number span {
  display: none;
}
.checkout-stepper .step.is-completed .step-number i {
  display: block;
}
.checkout-stepper .step.is-completed .step-label {
  color: var(--ox-text);
}
.checkout-stepper .step.is-active .step-number {
  background: var(--ox-surface);
  color: var(--ox-accent);
  border-color: var(--ox-accent);
  box-shadow: 0 0 0 4px rgba(2, 103, 115, 0.12);
}
.checkout-stepper .step.is-active .step-label {
  color: var(--ox-text);
  font-weight: 800;
}
.checkout-stepper .step-line {
  flex: 1;
  max-width: 80px;
  height: 2px;
  background: rgba(1, 46, 64, 0.1);
  margin: 0 8px;
  margin-bottom: 26px;
  transition: background-color 300ms ease;
}
.checkout-stepper .step-line.is-completed {
  background: linear-gradient(90deg, var(--ox-accent), var(--ox-accent-soft));
}

.checkout-card {
  border: 1px solid rgba(1, 46, 64, 0.08);
  border-radius: var(--ox-radius-lg);
  background: var(--ox-surface);
  padding: 28px;
  margin-bottom: 20px;
}
.checkout-card .checkout-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkout-card .checkout-title .checkout-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(2, 103, 115, 0.12), rgba(60, 166, 166, 0.1));
  color: var(--ox-accent);
  font-size: 1.1rem;
}

.selectable-card {
  border: 2px solid rgba(1, 46, 64, 0.1);
  border-radius: var(--ox-radius-md);
  padding: 18px;
  cursor: pointer;
  background: var(--ox-surface);
  transition-property: border-color, box-shadow, background-color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.selectable-card:hover {
  border-color: rgba(2, 103, 115, 0.22);
  background: rgba(2, 103, 115, 0.02);
}
.selectable-card.is-selected {
  border-color: var(--ox-accent);
  background: rgba(2, 103, 115, 0.04);
  box-shadow: 0 0 0 3px rgba(2, 103, 115, 0.12);
}
.selectable-card .selectable-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.selectable-card .selectable-header .selectable-radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(1, 46, 64, 0.1);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition-property: border-color;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.selectable-card .selectable-header .selectable-radio::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ox-accent);
  opacity: 0;
  transition: opacity 200ms ease;
}
.selectable-card .selectable-header .selectable-title {
  font-weight: 800;
  font-size: 0.95rem;
}
.selectable-card .selectable-header .selectable-price {
  margin-left: auto;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ox-accent);
}
.selectable-card .selectable-desc {
  font-size: 0.85rem;
  color: var(--ox-text-muted);
  margin: 0;
  padding-left: 34px;
}
.selectable-card.is-selected .selectable-radio {
  border-color: var(--ox-accent);
}
.selectable-card.is-selected .selectable-radio::after {
  opacity: 1;
}

.order-success-card {
  border: 1px solid rgba(1, 46, 64, 0.08);
  border-radius: var(--ox-radius-lg);
  background: rgba(255, 255, 255, 0.96);
  padding: 48px 36px;
  text-align: center;
  box-shadow: var(--ox-shadow-md);
}
.order-success-card .success-icon-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(25, 135, 84, 0.12), rgba(25, 135, 84, 0.06));
  color: #198754;
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  margin: 0 auto 24px;
  animation: ox-success-pop 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.order-success-card .success-title {
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.order-success-card .success-meta {
  color: var(--ox-text-muted);
  margin-bottom: 24px;
}
.order-success-card .order-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  text-align: left;
  margin-bottom: 28px;
}
.order-success-card .order-info-grid .order-info-item {
  padding: 14px 16px;
  border-radius: var(--ox-radius-md);
  background: rgba(1, 46, 64, 0.03);
  border: 1px solid rgba(1, 46, 64, 0.08);
}
.order-success-card .order-info-grid .order-info-item .order-info-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ox-text-muted);
  margin-bottom: 4px;
}
.order-success-card .order-info-grid .order-info-item .order-info-value {
  font-weight: 800;
  font-size: 0.95rem;
}

@keyframes ox-success-pop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  60% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.order-table-wrap {
  border: 1px solid rgba(1, 46, 64, 0.08);
  border-radius: var(--ox-radius-lg);
  background: var(--ox-surface);
  overflow: hidden;
}
.order-table-wrap table {
  width: 100%;
  margin: 0;
}
.order-table-wrap table th {
  padding: 16px 20px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ox-text-muted);
  border-bottom: 1px solid rgba(1, 46, 64, 0.08);
  white-space: nowrap;
}
.order-table-wrap table td {
  padding: 16px 20px;
  font-size: 0.92rem;
  vertical-align: middle;
  border-bottom: 1px solid rgba(1, 46, 64, 0.08);
}
.order-table-wrap table tr:last-child td {
  border-bottom: none;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.status-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.status-badge.status-pending {
  background: rgba(255, 193, 7, 0.1);
  color: #b38600;
}
.status-badge.status-processing {
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
}
.status-badge.status-shipped {
  background: rgba(111, 66, 193, 0.1);
  color: #6f42c1;
}
.status-badge.status-delivered {
  background: rgba(25, 135, 84, 0.1);
  color: #198754;
}
.status-badge.status-cancelled {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.order-card-mobile {
  border: 1px solid rgba(1, 46, 64, 0.08);
  border-radius: var(--ox-radius-lg);
  background: var(--ox-surface);
  padding: 18px;
  margin-bottom: 14px;
}
.order-card-mobile .order-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.order-card-mobile .order-card-header .order-number {
  font-weight: 800;
}
.order-card-mobile .order-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 0.9rem;
}
.order-card-mobile .order-card-row .label {
  color: var(--ox-text-muted);
}

.order-timeline {
  position: relative;
  padding-left: 32px;
}
.order-timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(1, 46, 64, 0.1);
  border-radius: 2px;
}
.order-timeline .timeline-step {
  position: relative;
  padding-bottom: 28px;
}
.order-timeline .timeline-step:last-child {
  padding-bottom: 0;
}
.order-timeline .timeline-step .timeline-dot {
  position: absolute;
  left: -26px;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ox-surface);
  border: 2px solid rgba(1, 46, 64, 0.1);
  display: grid;
  place-items: center;
}
.order-timeline .timeline-step .timeline-dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(1, 46, 64, 0.1);
}
.order-timeline .timeline-step .timeline-content .timeline-title {
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.order-timeline .timeline-step .timeline-content .timeline-date {
  font-size: 0.82rem;
  color: var(--ox-text-muted);
}
.order-timeline .timeline-step.is-completed .timeline-dot {
  border-color: var(--ox-accent);
}
.order-timeline .timeline-step.is-completed .timeline-dot::after {
  background: var(--ox-accent);
}
.order-timeline .timeline-step.is-completed .timeline-title {
  color: var(--ox-text);
}
.order-timeline .timeline-step.is-current .timeline-dot {
  border-color: var(--ox-accent);
  box-shadow: 0 0 0 4px rgba(2, 103, 115, 0.12);
}
.order-timeline .timeline-step.is-current .timeline-dot::after {
  background: var(--ox-accent);
}

.compare-wrap {
  border: 1px solid rgba(1, 46, 64, 0.08);
  border-radius: var(--ox-radius-lg);
  background: var(--ox-surface);
  overflow-x: auto;
}
.compare-wrap::-webkit-scrollbar {
  height: 8px;
}
.compare-wrap::-webkit-scrollbar-track {
  background: rgba(1, 46, 64, 0.08);
  border-radius: 4px;
}
.compare-wrap::-webkit-scrollbar-thumb {
  background: rgba(1, 46, 64, 0.12);
  border-radius: 4px;
}
.compare-wrap table {
  width: 100%;
  min-width: 700px;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
}
.compare-wrap table th,
.compare-wrap table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(1, 46, 64, 0.08);
  vertical-align: middle;
}
.compare-wrap table th {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ox-text-muted);
  background: rgba(1, 46, 64, 0.02);
  position: sticky;
  left: 0;
  z-index: 2;
  min-width: 160px;
  text-align: left;
}
.compare-wrap table td {
  text-align: center;
  min-width: 180px;
}
.compare-wrap table tr:last-child th,
.compare-wrap table tr:last-child td {
  border-bottom: none;
}
.compare-wrap table .compare-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.compare-wrap table .compare-product img {
  width: 100px;
  height: 100px;
  border-radius: var(--ox-radius-sm);
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid rgba(1, 46, 64, 0.08);
}
.compare-wrap table .compare-product .compare-title {
  font-weight: 800;
  font-size: 0.92rem;
}

.empty-state {
  text-align: center;
  padding: 64px 24px;
}
.empty-state .empty-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(2, 103, 115, 0.08), rgba(60, 166, 166, 0.1));
  color: var(--ox-accent);
  display: grid;
  place-items: center;
  font-size: 2.2rem;
  margin: 0 auto 24px;
  opacity: 0.8;
}
.empty-state .empty-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.empty-state .empty-desc {
  color: var(--ox-text-muted);
  max-width: 40ch;
  margin: 0 auto 24px;
}

.quick-view-modal .modal-content {
  border: 1px solid rgba(1, 46, 64, 0.08);
  border-radius: var(--ox-radius-lg);
  overflow: hidden;
}
.quick-view-modal .modal-header {
  border-bottom: 1px solid rgba(1, 46, 64, 0.08);
  padding: 16px 24px;
}
.quick-view-modal .modal-header .modal-title {
  font-weight: 800;
  letter-spacing: -0.02em;
}
.quick-view-modal .quick-view-image {
  border-radius: var(--ox-radius-md);
  overflow: hidden;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, rgba(1, 46, 64, 0.02), rgba(2, 73, 89, 0.03));
}
.quick-view-modal .quick-view-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.header-ec-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-ec-actions .ec-header-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ox-text);
  position: relative;
  cursor: pointer;
  transition-property: background-color, color, border-color, transform;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.header-ec-actions .ec-header-btn:hover {
  background: rgba(2, 103, 115, 0.08);
  color: var(--ox-accent);
}
.header-ec-actions .ec-header-btn .ec-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ox-accent), var(--ox-accent-soft));
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.ec-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 36px;
}
.ec-pagination .page-btn {
  min-width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(1, 46, 64, 0.1);
  background: var(--ox-surface);
  color: var(--ox-text);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ec-pagination .page-btn:hover {
  border-color: rgba(2, 103, 115, 0.22);
  background: rgba(2, 103, 115, 0.06);
}
.ec-pagination .page-btn.is-active {
  background: linear-gradient(135deg, var(--ox-accent), var(--ox-accent-soft));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(2, 103, 115, 0.2);
}
.ec-pagination .page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@media (max-width: 991.98px) {
  .product-list-item .product-list-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }
}
@media (max-width: 767.98px) {
  .checkout-stepper .step-line {
    max-width: 30px;
  }
  .checkout-stepper .step-label {
    font-size: 0.7rem;
  }
  .cart-table-wrap .cart-item {
    flex-wrap: wrap;
  }
  .cart-table-wrap .cart-item .cart-item-thumb {
    width: 70px;
    height: 70px;
  }
  .cart-table-wrap .cart-item .cart-item-subtotal {
    width: 100%;
    text-align: left;
    margin-top: 8px;
    padding-left: 88px;
  }
  .order-success-card {
    padding: 32px 20px;
  }
  .mini-cart-drawer {
    max-width: 100%;
  }
  .shop-toolbar .toolbar-left {
    width: 100%;
  }
  .shop-toolbar .toolbar-right {
    width: 100%;
    justify-content: space-between;
  }
}
.shop-action-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
  transition: transform 200ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 200ms ease, background-color 200ms ease, color 200ms ease;
}
.shop-action-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 300ms ease, transform 300ms ease;
  background: radial-gradient(circle at center, rgba(2, 103, 115, 0.15), transparent 70%);
}
.shop-action-btn:hover::after {
  opacity: 1;
  transform: scale(1);
}
.shop-action-btn:active {
  transform: scale(0.92);
}
.shop-action-btn.is-clicked {
  animation: shop-btn-pop 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.shop-action-btn.is-clicked i {
  animation: shop-icon-bounce 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.shop-action-btn--active {
  background: linear-gradient(135deg, var(--ox-accent), var(--ox-accent-soft)) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 8px 24px rgba(2, 103, 115, 0.25);
}
.shop-action-btn--active.is-clicked {
  animation: shop-btn-celebrate 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.shop-action-btn--wishlist.is-active, .shop-action-btn--wishlist.shop-action-btn--active {
  background: linear-gradient(135deg, #dc3545, #ff6b6b) !important;
  box-shadow: 0 8px 24px rgba(220, 53, 69, 0.25);
}

.shop-action-btn--remove {
  color: rgba(220, 53, 69, 0.7);
  border: 1px solid rgba(1, 46, 64, 0.1);
  background: var(--ox-surface);
  border-radius: 10px;
}
.shop-action-btn--remove:hover {
  background: rgba(220, 53, 69, 0.08);
  color: #dc3545;
  border-color: rgba(220, 53, 69, 0.2);
}
.shop-action-btn--remove.is-clicked {
  animation: shop-btn-shake 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.shop-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: shop-ripple-anim 600ms linear forwards;
  pointer-events: none;
}

.shop-qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ox-border-medium);
  border-radius: 999px;
  background: var(--ox-surface);
  overflow: hidden;
}

.shop-qty-btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--ox-text);
  cursor: pointer;
  transition: background-color 150ms ease, transform 150ms ease;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.shop-qty-btn:hover {
  background: rgba(2, 103, 115, 0.08);
}
.shop-qty-btn:active {
  transform: scale(0.88);
}
.shop-qty-btn.is-clicked {
  animation: shop-btn-pop 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.shop-qty-value {
  flex: 1;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ox-text);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  min-width: 28px;
}

.js-cart-btn-wrap .btn-add-cart {
  animation: shop-btn-appear 280ms ease forwards;
}

.product-card .js-cart-btn-wrap .shop-qty-control,
.product-card .js-cart-btn-wrap .btn-add-cart {
  width: 100%;
}

.cart-item.is-removing,
.mini-cart-item.is-removing,
.cart-mobile-card.is-removing {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 350ms ease, transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

@keyframes shop-btn-pop {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.88);
  }
  55% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes shop-icon-bounce {
  0% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(0.78) rotate(-10deg);
  }
  55% {
    transform: scale(1.18) rotate(6deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}
@keyframes shop-btn-celebrate {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(0.82);
  }
  45% {
    transform: scale(1.14);
    box-shadow: 0 0 30px rgba(2, 103, 115, 0.3);
  }
  70% {
    transform: scale(0.94);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes shop-btn-shake {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-5px) rotate(-3deg);
  }
  40% {
    transform: translateX(5px) rotate(3deg);
  }
  60% {
    transform: translateX(-3px) rotate(-2deg);
  }
  80% {
    transform: translateX(3px) rotate(2deg);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes shop-ripple-anim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
@keyframes shop-qty-appear {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(6px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes shop-btn-appear {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.action-btn,
.cart-item-remove {
  position: relative;
  overflow: hidden;
}
.action-btn.is-clicked,
.cart-item-remove.is-clicked {
  animation: shop-btn-pop 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.action-btn.is-clicked i,
.cart-item-remove.is-clicked i {
  animation: shop-icon-bounce 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ec-header-btn {
  position: relative;
}
.ec-header-btn.is-clicked {
  animation: shop-btn-pop 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.shop-action-btn:focus-visible,
.shop-qty-btn:focus-visible,
.btn-add-cart:focus-visible,
.action-btn:focus-visible,
.cart-item-remove:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(2, 103, 115, 0.25);
}

@media (prefers-reduced-motion: reduce) {
  .shop-action-btn.is-clicked,
  .shop-action-btn--active.is-clicked,
  .shop-qty-control,
  .shop-qty-btn.is-clicked,
  .cart-item.is-removing,
  .mini-cart-item.is-removing,
  .cart-mobile-card.is-removing,
  .btn-add-cart,
  .action-btn.is-clicked,
  .cart-item-remove.is-clicked,
  .ec-header-btn.is-clicked {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
.card-deck-showcase {
  overflow: hidden;
}
.card-deck-showcase .deck-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.card-deck-showcase .deck {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: 480px;
  perspective: 1200px;
  margin: 0 auto;
}
.card-deck-showcase .deck-card {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  background: var(--ox-body-bg);
  box-shadow: 0 24px 70px var(--ox-shadow-color);
  cursor: pointer;
  transition: all 650ms cubic-bezier(0.34, 1.45, 0.64, 1);
  transform-origin: center bottom;
}
.card-deck-showcase .deck-card img {
  width: 100%;
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  pointer-events: none;
}
.card-deck-showcase .deck-card .deck-card-info {
  padding: 24px 28px 28px;
}
.card-deck-showcase .deck-card .deck-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ox-text);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.card-deck-showcase .deck-card .deck-card-desc {
  font-size: 0.9rem;
  color: var(--ox-text-muted);
  margin: 0;
  line-height: 1.5;
}
.card-deck-showcase .deck-card[data-position="0"] {
  z-index: 4;
  transform: translateY(0) scale(1) rotate(0deg);
  opacity: 1;
}
.card-deck-showcase .deck-card[data-position="1"] {
  z-index: 3;
  transform: translateY(28px) scale(0.94) rotate(2.5deg);
  opacity: 0.82;
}
.card-deck-showcase .deck-card[data-position="2"] {
  z-index: 2;
  transform: translateY(52px) scale(0.88) rotate(-1.5deg);
  opacity: 0.58;
}
.card-deck-showcase .deck-card[data-position="3"] {
  z-index: 1;
  transform: translateY(74px) scale(0.82) rotate(1deg);
  opacity: 0.38;
}
.card-deck-showcase .deck-card.reveal-enter {
  animation: deck-pop 600ms cubic-bezier(0.34, 1.45, 0.64, 1) forwards;
}
.card-deck-showcase .deck-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.card-deck-showcase .deck-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 16px;
  background: var(--ox-surface-weak);
  border: 1px solid var(--ox-border);
  transition: all 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.card-deck-showcase .deck-feature:hover {
  background: var(--ox-surface-hover);
  transform: translateX(4px);
  box-shadow: var(--ox-shadow-sm);
  border-color: rgba(2, 103, 115, 0.12);
}
.card-deck-showcase .deck-feature .deck-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--ox-accent), var(--ox-accent-soft));
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(2, 103, 115, 0.22);
}
.card-deck-showcase .deck-feature .deck-feature-title {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ox-text);
  letter-spacing: -0.01em;
}
.card-deck-showcase .deck-feature .deck-feature-desc {
  font-size: 0.82rem;
  color: var(--ox-text-muted);
  margin-top: 2px;
  line-height: 1.45;
}
.card-deck-showcase .deck-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.card-deck-showcase .deck-nav .deck-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(1, 46, 64, 0.45);
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.card-deck-showcase .deck-nav .deck-dot:hover {
  background: rgba(2, 103, 115, 0.65);
  transform: scale(1.3);
}
.card-deck-showcase .deck-nav .deck-dot.is-active {
  width: 32px;
  border-radius: 999px;
  background: var(--ox-accent);
  box-shadow: 0 4px 14px rgba(2, 103, 115, 0.35);
}

@keyframes deck-pop {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.92);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 767.98px) {
  .card-deck-showcase .deck {
    height: 420px;
    max-width: 340px;
  }
  .card-deck-showcase .deck-card {
    border-radius: 20px;
  }
  .card-deck-showcase .deck-card img {
    height: 260px;
  }
  .card-deck-showcase .deck-card .deck-card-info {
    padding: 18px 20px 22px;
  }
  .card-deck-showcase .deck-card[data-position="0"] {
    transform: translateY(0) scale(1) rotate(0deg);
  }
  .card-deck-showcase .deck-card[data-position="1"] {
    transform: translateY(20px) scale(0.94) rotate(2deg);
  }
  .card-deck-showcase .deck-card[data-position="2"] {
    transform: translateY(38px) scale(0.88) rotate(-1deg);
  }
  .card-deck-showcase .deck-card[data-position="3"] {
    transform: translateY(54px) scale(0.82) rotate(1deg);
  }
}
.page-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--ox-body-bg);
  transition: opacity 500ms ease, visibility 500ms ease;
}
.page-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-atom {
  position: relative;
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
}

.preloader-nucleus {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #026773, #3CA6A6);
  box-shadow: 0 0 20px rgba(2, 103, 115, 0.5), 0 0 40px rgba(2, 103, 115, 0.2);
  animation: nucleus-pulse 1.5s ease-in-out infinite;
}

.preloader-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(2, 103, 115, 0.25);
}
.preloader-orbit--1 {
  animation: orbit-rotate 2.5s linear infinite;
}
.preloader-orbit--2 {
  animation: orbit-rotate 2s linear infinite reverse;
  transform: rotate(60deg);
}

.preloader-electron {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: #3CA6A6;
  box-shadow: 0 0 8px rgba(60, 166, 166, 0.6);
}

.preloader-text {
  margin-top: 24px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--ox-text);
  animation: text-breathe 2s ease-in-out infinite;
}

@keyframes nucleus-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.75;
  }
}
@keyframes orbit-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes text-breathe {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 2px solid var(--ox-border);
  background: transparent;
  color: var(--ox-primary-dark);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 250ms ease;
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: var(--ox-surface);
  border-color: var(--ox-border-accent);
  color: var(--ox-accent);
  transform: scale(1.05);
}
.theme-toggle i {
  font-size: 1.15rem;
  line-height: 1;
}
.theme-toggle .bi-sun-fill {
  display: none;
}
.theme-toggle .bi-moon-fill {
  display: block;
}

[data-theme=dark] .theme-toggle .bi-sun-fill {
  display: block;
  color: #ffc107;
}
[data-theme=dark] .theme-toggle .bi-moon-fill {
  display: none;
}

@media (max-width: 991.98px) {
  .hero-oxygen {
    padding: 120px 0 72px;
  }
  .float-card.card-1, .float-card.card-2 {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .section {
    padding: var(--ox-section-py-sm) 0;
  }
  .hero-oxygen .hero-title {
    font-size: 2.35rem;
  }
  .hero-oxygen .hero-lead {
    max-width: none;
  }
}
/*# sourceMappingURL=oxygen.css.map */
