.ozooc-product-notes { border-top: 1px solid rgba(17,17,17,.28); margin: 26px 0 0; padding: 12px 0 0; }
.ozooc-product-notes p { display: grid; grid-template-columns: 110px 1fr; gap: 18px; margin: 0; padding: 12px 0; border-bottom: 1px solid rgba(17,17,17,.1); }
.ozooc-product-notes strong { text-transform: uppercase; font-size: 11px; }
.ozooc-product-notes span { color: #3d3932; }
.ozooc-floating-cart { position: fixed; right: 24px; top: 50%; z-index: 60; transform: translateY(-50%); display: grid; place-items: center; gap: 8px; text-decoration: none; text-transform: uppercase; font-weight: 700; font-size: 12px; writing-mode: vertical-rl; color: #111; }
.ozooc-floating-cart i { display: block; width: 1px; height: 46px; background: #111; }
@media (max-width: 900px) { .ozooc-floating-cart { display:none; } }

/* Ozooc glass floating navigation */
.ozooc-glass-nav,
.ozooc-glass-nav * {
  box-sizing: border-box;
}
.ozooc-glass-nav {
  --ozooc-glass-bg: rgba(228, 228, 224, .86);
  --ozooc-glass-line: rgba(255, 255, 255, .62);
  --ozooc-glass-ink: #0b0b0b;
  position: fixed;
  z-index: 9000;
  left: 50%;
  right: auto;
  bottom: clamp(12px, 2.8vh, 26px);
  width: min(1160px, calc(100vw - 32px));
  min-height: 36px;
  display: grid;
  grid-template-columns: minmax(118px, 1fr) auto minmax(118px, 1fr);
  align-items: center;
  gap: clamp(12px, 2.2vw, 32px);
  padding: 6px 8px 6px 18px;
  border: 1px solid var(--ozooc-glass-line);
  border-radius: 999px;
  background: var(--ozooc-glass-bg);
  color: var(--ozooc-glass-ink);
  box-shadow: 0 18px 60px rgba(0,0,0,.10), inset 0 1px 0 rgba(255,255,255,.40);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  font-family: Helvetica, Arial, sans-serif;
  transform: translate3d(-50%, 0, 0);
  opacity: 1;
  visibility: visible;
  transition: transform .28s ease, opacity .22s ease, visibility .22s ease;
}
.ozooc-glass-nav.is-hidden,
.ozooc-glass-nav.is-footer-visible {
  transform: translate3d(-50%, calc(100% + 34px), 0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.ozooc-glass-nav__brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}
.ozooc-glass-nav__logo {
  display: block;
  width: clamp(76px, 8.5vw, 118px);
  height: auto;
  max-height: 18px;
  object-fit: contain;
}
.ozooc-glass-nav__menu {
  justify-self: center;
  min-width: 0;
}
.ozooc-glass-nav__menu-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3.2vw, 48px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.ozooc-glass-nav__menu-list a {
  display: block;
  color: var(--ozooc-glass-ink);
  text-decoration: none;
  font-size: clamp(10px, .9vw, 13px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -.035em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: .88;
  transition: opacity .18s ease, transform .18s ease;
}
.ozooc-glass-nav__menu-list a:hover,
.ozooc-glass-nav__menu-list .current-menu-item > a {
  opacity: 1;
  transform: translateY(-1px);
}
.ozooc-glass-nav__actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ozooc-glass-nav__icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(11,11,11,.22);
  border-radius: 999px;
  color: #0b0b0b;
  background: rgba(255,255,255,.52);
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.ozooc-glass-nav__icon:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.82);
  border-color: rgba(11,11,11,.42);
}
.ozooc-glass-nav__icon svg {
  width: 15px;
  height: 15px;
  display: block;
  fill: currentColor;
}
@media (max-width: 720px) {
  .ozooc-glass-nav {
    width: calc(100vw - 24px);
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    padding: 7px 8px 7px 12px;
  }
  .ozooc-glass-nav__logo { width: 76px; }
  .ozooc-glass-nav__menu-list { gap: 12px; }
  .ozooc-glass-nav__menu-list a { font-size: 10px; }
  .ozooc-glass-nav__icon { width: 26px; height: 26px; }
}
@media (max-width: 460px) {
  .ozooc-glass-nav {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    border-radius: 22px;
    padding: 9px 10px;
  }
  .ozooc-glass-nav__menu {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
  }
  .ozooc-glass-nav__menu-list {
    justify-content: space-between;
  }
  .ozooc-glass-nav__actions {
    grid-column: 2;
    grid-row: 1;
  }
}

