/* wp-content/plugins/ozbunji-product-catalog/assets/catalog.css */

.ozb-catalog {
  --ozb-green: #4a7c1f;
  --ozb-green-dark: #2f5713;
  --ozb-green-soft: #eaf1e2;
  --ozb-ink: #1c2415;
  --ozb-muted: #6b7280;
  --ozb-line: #e5e7eb;
  --ozb-surface: #fff;
  --ozb-surface-alt: #f6f7f4;
  --ozb-radius: 10px;
  --ozb-control: 42px;
  --ozb-gap: clamp(1rem, 2vw, 1.75rem);
  --ozb-shadow: 0 1px 2px rgb(16 24 40 / 6%), 0 8px 24px rgb(16 24 40 / 6%);

  display: grid;
  grid-template-columns: minmax(240px, 280px) 1fr;
  gap: var(--ozb-gap);
  color: var(--ozb-ink);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 991px) { .ozb-catalog { grid-template-columns: 1fr; } }

/* Neutralise theme styling inside the catalog only. */
.ozb-catalog button,
.ozb-catalog select,
.ozb-catalog input[type="range"] {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  box-shadow: none;
  text-shadow: none;
  font-family: inherit;
  line-height: normal;
}

.ozb-catalog button { text-transform: none; letter-spacing: normal; }
.ozb-catalog button:focus { outline: none; }

.ozb-catalog ul,
.ozb-catalog ol { list-style: none; margin: 0; padding: 0; }
.ozb-catalog li { margin: 0; padding: 0; list-style: none; }
.ozb-catalog li::marker { content: none; }
.ozb-catalog p { margin: 0; }
.ozb-catalog h3 { margin: 0; }

.ozb-catalog .screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* --------------------------------------------------------- sidebar shell */
.ozb-catalog .ozb-catalog__sidebar-toggle {
  display: none;
  width: 100%;
  min-height: var(--ozb-control);
  padding: .7rem 1rem;
  border: 1px solid var(--ozb-line);
  border-radius: 6px;
  background: var(--ozb-surface);
  color: var(--ozb-ink);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}

.ozb-catalog .ozb-catalog__sidebar-toggle::after {
  content: "";
  flex: none;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .2s ease;
}

.ozb-catalog .ozb-catalog__sidebar-toggle[aria-expanded="true"] {
  background: var(--ozb-green);
  border-color: var(--ozb-green);
  color: #fff;
}

.ozb-catalog .ozb-catalog__sidebar-toggle[aria-expanded="true"]::after {
  transform: rotate(-135deg) translate(-2px, -2px);
}

@media (max-width: 991px) {
  .ozb-catalog .ozb-catalog__sidebar-toggle { display: flex; }
  .ozb-catalog__sidebar[hidden] { display: none; }
}

.ozb-catalog__sidebar {
  align-self: start;
  position: sticky;
  top: 100px;
  background: var(--ozb-surface-alt);
  border: 1px solid var(--ozb-line);
  border-radius: var(--ozb-radius);
  padding: 1.25rem;
}

@media (max-width: 991px) { .ozb-catalog__sidebar { position: static; } }

/* --------------------------------------------------------------- filters */
.ozb-filter + .ozb-filter {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--ozb-line);
}

.ozb-catalog .ozb-filter__title {
  margin: 0 0 .75rem;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ozb-ink);
}

.ozb-catalog .ozb-filter__list { display: grid; gap: .2rem; }

.ozb-catalog .ozb-filter__list--child {
  margin: .2rem 0 .35rem .85rem;
  padding-left: .6rem;
  border-left: 1px solid var(--ozb-line);
}

.ozb-catalog .ozb-filter__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .55rem .75rem;
  border-radius: 6px;
  color: var(--ozb-ink);
  text-decoration: none;
  font-size: .95rem;
  line-height: 1.35;
  transition: background-color .15s ease, color .15s ease;
}

.ozb-catalog .ozb-filter__link:hover { background: var(--ozb-green-soft); color: var(--ozb-green-dark); }
.ozb-catalog .ozb-filter__link.is-active { background: var(--ozb-green); color: #fff; }
.ozb-catalog .ozb-filter__link.is-active .ozb-filter__count { background: rgb(255 255 255 / 22%); color: #fff; }

.ozb-catalog .ozb-filter__count {
  flex: none;
  min-width: 22px;
  padding: 1px 6px;
  border-radius: 999px;
  background: #e8ebe4;
  font-size: .72rem;
  font-style: normal;
  font-weight: 600;
  text-align: center;
  color: var(--ozb-muted);
}

.ozb-catalog .ozb-filter__item--level-2 > .ozb-filter__link { font-size: .88rem; color: #4b5563; }

.ozb-catalog .ozb-filter__check {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 0;
  padding: .3rem 0;
  cursor: pointer;
  color: #414b39;
  font-size: .95rem;
  font-weight: 400;
}

.ozb-catalog .ozb-filter__check input {
  appearance: auto;
  -webkit-appearance: checkbox;
  accent-color: var(--ozb-green);
  width: 16px;
  height: 16px;
  margin: 0;
  flex: none;
}

.ozb-filter--cta { text-align: left; }
.ozb-catalog .ozb-filter__cta-title { margin: 0 0 .35rem; font-weight: 600; }
.ozb-catalog .ozb-filter__cta-text { margin: 0 0 .85rem; font-size: .85rem; color: var(--ozb-muted); }

/* ----------------------------------------------------------- price range */
.ozb-catalog .ozb-range { position: relative; height: 26px; margin: .35rem 0 .25rem; }

.ozb-catalog .ozb-range__track {
  position: absolute;
  inset: 11px 0 auto;
  height: 4px;
  border-radius: 2px;
  background: #d7dbd2;
}

.ozb-catalog .ozb-range__track span {
  position: absolute;
  top: 0;
  bottom: 0;
  border-radius: 2px;
  background: var(--ozb-green);
}

.ozb-catalog .ozb-range input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 26px;
  padding: 0;
  border: 0;
  background: none;
  pointer-events: none;
}

.ozb-catalog .ozb-range input[type="range"]::-webkit-slider-runnable-track {
  height: 26px;
  background: none;
  border: 0;
}

.ozb-catalog .ozb-range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: auto;
  margin-top: 4px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--ozb-green);
  border-radius: 50%;
  background: #fff;
  cursor: grab;
  box-shadow: 0 1px 3px rgb(16 24 40 / 20%);
}

.ozb-catalog .ozb-range input[type="range"]::-moz-range-track { height: 26px; background: none; border: 0; }

.ozb-catalog .ozb-range input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
  width: 18px;
  height: 18px;
  border: 2px solid var(--ozb-green);
  border-radius: 50%;
  background: #fff;
  cursor: grab;
}

.ozb-catalog .ozb-range__label { margin: .5rem 0 0; font-size: .875rem; color: var(--ozb-muted); }
.ozb-catalog .ozb-range__label strong { color: var(--ozb-green-dark); }

/* --------------------------------------------------------------- toolbar */
.ozb-catalog__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: var(--ozb-gap);
}

.ozb-catalog .ozb-catalog__count { margin: 0; font-size: .875rem; color: var(--ozb-muted); }

.ozb-catalog__tools {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-left: auto;
}

.ozb-catalog .ozb-catalog__sort { display: block; width: auto; margin: 0; }

.ozb-catalog .ozb-catalog__sort select {
  display: block;
  height: var(--ozb-control);
  min-height: 0;
  width: auto;
  min-width: 180px;
  max-width: 100%;
  padding: 0 2.25rem 0 .9rem;
  border: 1px solid var(--ozb-line);
  border-radius: 6px;
  background-color: var(--ozb-surface);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1.4 0 6 4.6 10.6 0 12 1.4 6 7.4 0 1.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .85rem center;
  background-size: 11px 7px;
  color: var(--ozb-ink);
  font-size: .9rem;
  cursor: pointer;
}

@media (max-width: 575px) {
  .ozb-catalog__tools { width: 100%; margin-left: 0; }
  .ozb-catalog .ozb-catalog__sort { flex: 1; }
  .ozb-catalog .ozb-catalog__sort select { width: 100%; min-width: 0; }
}

.ozb-catalog__view { display: inline-flex; gap: .4rem; flex: none; }

.ozb-catalog .ozb-catalog__view button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--ozb-control);
  height: var(--ozb-control);
  padding: 0;
  border: 1px solid var(--ozb-line);
  border-radius: 6px;
  background: var(--ozb-surface);
  color: var(--ozb-muted);
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.ozb-catalog .ozb-catalog__view button:hover { border-color: var(--ozb-green); color: var(--ozb-green); }

.ozb-catalog .ozb-catalog__view button.is-active {
  background: var(--ozb-green);
  border-color: var(--ozb-green);
  color: #fff;
}

.ozb-catalog .ozb-catalog__view svg { fill: currentColor; display: block; }

/* --------------------------------------------------------------- results */
.ozb-catalog__results {
  display: grid;
  gap: var(--ozb-gap);
  transition: opacity .18s ease;
}

.ozb-catalog__results[aria-busy="true"] { opacity: .45; pointer-events: none; }

.ozb-catalog__results.is-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ozb-catalog__results.is-grid[data-columns="2"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ozb-catalog__results.is-grid[data-columns="4"] { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ozb-catalog__results.is-list { grid-template-columns: 1fr; }

@media (max-width: 1199px) {
  .ozb-catalog__results.is-grid,
  .ozb-catalog__results.is-grid[data-columns="4"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 575px) {
  .ozb-catalog__results.is-grid { grid-template-columns: 1fr; }
}

.ozb-catalog .ozb-catalog__empty {
  grid-column: 1 / -1;
  padding: 3rem 0;
  text-align: center;
  color: var(--ozb-muted);
}

/* ------------------------------------------------------------------ card */
.ozb-catalog .ozb-card {
  display: flex;
  flex-direction: column;
  background: var(--ozb-surface);
  border: 1px solid var(--ozb-line);
  border-radius: var(--ozb-radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.ozb-catalog .ozb-card:hover { transform: translateY(-3px); box-shadow: var(--ozb-shadow); }

.ozb-catalog .ozb-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--ozb-surface-alt);
  overflow: hidden;
}

.ozb-catalog .ozb-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ozb-catalog .ozb-card__flag {
  position: absolute;
  inset: .7rem auto auto .7rem;
  padding: .25rem .6rem;
  border-radius: 3px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
}

.ozb-catalog .ozb-card__flag--sale { background: var(--ozb-green); }
.ozb-catalog .ozb-card__flag--out { background: #9ca3af; }

.ozb-catalog .ozb-card__body {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  padding: 1.1rem;
  flex: 1;
}

.ozb-catalog .ozb-card__title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 600;
  text-transform: none;
}

.ozb-catalog .ozb-card__title a { color: inherit; text-decoration: none; }
.ozb-catalog .ozb-card__title a:hover { color: var(--ozb-green); }
.ozb-catalog .ozb-card__price { margin: 0; font-weight: 700; color: var(--ozb-green-dark); }
.ozb-catalog .ozb-card__price del { opacity: .55; font-weight: 400; margin-right: .3rem; }
.ozb-catalog .ozb-card__text { margin: 0; font-size: .875rem; line-height: 1.6; color: var(--ozb-muted); }

.ozb-catalog .ozb-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: auto;
  padding-top: .4rem;
}

.ozb-catalog__results.is-list .ozb-card { flex-direction: row; }
.ozb-catalog__results.is-list .ozb-card__media { flex: 0 0 260px; aspect-ratio: 4 / 3; }
.ozb-catalog__results.is-list .ozb-card__body { justify-content: center; padding: 1.4rem; }

@media (max-width: 575px) {
  .ozb-catalog__results.is-list .ozb-card { flex-direction: column; }
  .ozb-catalog__results.is-list .ozb-card__media { flex: none; }
}

/* --------------------------------------------------------------- buttons */
.ozb-catalog .ozb-btn {
  --_bg: #fff;
  --_fg: var(--ozb-green-dark);
  --_bd: var(--ozb-line);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  min-height: var(--ozb-control);
  padding: .6rem 1.1rem;
  border: 1px solid var(--_bd);
  border-radius: 4px;
  background: var(--_bg);
  color: var(--_fg);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}

.ozb-catalog .ozb-btn--solid { --_bg: var(--ozb-green); --_fg: #fff; --_bd: var(--ozb-green); }
.ozb-catalog .ozb-btn--solid:hover,
.ozb-catalog .ozb-btn--solid:focus { --_bg: var(--ozb-green-dark); --_bd: var(--ozb-green-dark); --_fg: #fff; }
.ozb-catalog .ozb-btn--outline { --_fg: var(--ozb-ink); }
.ozb-catalog .ozb-btn--outline:hover,
.ozb-catalog .ozb-btn--outline:focus { --_bd: var(--ozb-green); --_fg: var(--ozb-green); --_bg: #fff; }
.ozb-catalog .ozb-btn--ghost { --_fg: var(--ozb-ink); }
.ozb-catalog .ozb-btn--ghost:hover { --_bd: var(--ozb-green); --_fg: var(--ozb-green); }
.ozb-catalog .ozb-btn--block { width: 100%; }
.ozb-catalog .ozb-btn:focus-visible { outline: 2px solid var(--ozb-green); outline-offset: 2px; }

/* ------------------------------------------------------------ pagination */
.ozb-catalog .ozb-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: var(--ozb-gap) 0 0;
  padding: 0;
  justify-content: center;
}

.ozb-catalog .ozb-pagination li { margin: 0; }

.ozb-catalog .ozb-pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--ozb-control);
  height: var(--ozb-control);
  padding: 0 .6rem;
  border: 1px solid var(--ozb-line);
  border-radius: 6px;
  background: var(--ozb-surface);
  color: var(--ozb-ink);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.ozb-catalog .ozb-pagination__btn:hover:not(:disabled),
.ozb-catalog .ozb-pagination__btn.is-current {
  background: var(--ozb-green);
  border-color: var(--ozb-green);
  color: #fff;
}

.ozb-catalog .ozb-pagination__btn:disabled { opacity: .4; cursor: not-allowed; }

.ozb-catalog .ozb-pagination__dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: var(--ozb-control);
  color: var(--ozb-muted);
}

/* ---------------------------------------------------------- archive page */
.ozb-archive {
  --ozb-hero-image: none;
  display: block;
}

.ozb-archive__hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  background: #1f2a17;
  color: #fff;
  overflow: hidden;
}

.ozb-archive__hero.has-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ozb-hero-image) center / cover no-repeat;
  opacity: .35;
}

.ozb-archive__hero-inner {
  position: relative;
  width: min(1200px, 100% - 2.5rem);
  margin-inline: auto;
}

.ozb-archive__crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
  margin-bottom: .9rem;
  font-size: .82rem;
  color: rgb(255 255 255 / 72%);
}

.ozb-archive__crumbs a { color: inherit; text-decoration: none; }
.ozb-archive__crumbs a:hover { color: #a8d17a; }
.ozb-archive__crumbs [aria-current] { color: #a8d17a; }

.ozb-archive__title {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
}

.ozb-archive__intro {
  max-width: 60ch;
  margin-top: .85rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgb(255 255 255 / 82%);
}

.ozb-archive__intro p:last-child { margin-bottom: 0; }

.ozb-archive__body {
  width: min(1200px, 100% - 2.5rem);
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

/* ========================================================== SINGLE PRODUCT */
.ozb-single {
  --ozb-green: #4a7c1f;
  --ozb-green-dark: #2f5713;
  --ozb-green-soft: #eaf1e2;
  --ozb-ink: #1c2415;
  --ozb-muted: #6b7280;
  --ozb-line: #e5e7eb;
  --ozb-surface: #fff;
  --ozb-surface-alt: #f6f7f4;
  --ozb-control: 48px;
  --ozb-container: 1280px;

  display: block;
  width: 100%;
  max-width: 100%;
  color: var(--ozb-ink);
  font-size: 15px;
  line-height: 1.65;
}

.ozb-single ul { list-style: none; margin: 0; padding: 0; }
.ozb-single li { list-style: none; margin: 0; }

.ozb-single__inner {
  width: 100%;
  max-width: var(--ozb-container);
  margin-inline: auto;
  padding: 0 clamp(1rem, 4vw, 2rem) clamp(2.5rem, 5vw, 4rem);
}

/* -------------------------------------------------------- breadcrumb band */
.ozb-single .ozb-hero {
  --ozb-hero-image: none;

  position: relative;
  width: 100%;
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  padding: 50px 0;
  background: linear-gradient(105deg, #2f5713 0%, #4a7c1f 100%);
  overflow: hidden;
  isolation: isolate;
}

.ozb-single .ozb-hero.has-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--ozb-hero-image) center / cover no-repeat;
}

.ozb-single .ozb-hero.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, rgb(24 42 12 / 92%) 0%, rgb(47 87 19 / 70%) 100%);
}

.ozb-single .ozb-hero__inner {
  width: 100%;
  max-width: var(--ozb-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.ozb-single .ozb-hero__crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin: 0;
  padding: 0;
  font-size: .875rem;
  line-height: 1.5;
  color: rgb(255 255 255 / 78%);
}

.ozb-single .ozb-hero__crumbs a { color: inherit; text-decoration: none; transition: color .18s ease; }
.ozb-single .ozb-hero__crumbs a:hover { color: #fff; }
.ozb-single .ozb-hero__crumbs [aria-hidden] { color: rgb(255 255 255 / 45%); }
.ozb-single .ozb-hero__crumbs [aria-current] { color: #c3e39a; font-weight: 600; }

@media (max-width: 575px) {
  .ozb-single .ozb-hero { padding: 32px 0; }
  .ozb-single .ozb-hero__crumbs { font-size: .8rem; gap: .35rem; }
}

/* -------------------------------------------------------------- main grid */
.ozb-single__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

@media (max-width: 991px) {
  .ozb-single__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------------------------------------------------------------- gallery */
.ozb-single__media {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.ozb-single__media:not(:has(.ozb-thumbs)) { grid-template-columns: minmax(0, 1fr); }

.ozb-single .ozb-thumbs { display: grid; gap: .6rem; align-content: start; }

.ozb-single .ozb-thumbs__item {
  width: 100%;
  padding: 0;
  border: 2px solid var(--ozb-line);
  border-radius: 8px;
  background: var(--ozb-surface);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  transition: border-color .18s ease;
}

.ozb-single .ozb-thumbs__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
  display: block;
}

.ozb-single .ozb-thumbs__item:hover { border-color: #b9c9a6; }
.ozb-single .ozb-thumbs__item.is-active { border-color: var(--ozb-green); }

.ozb-single__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  margin: 0;
  padding: 1.25rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--ozb-line);
  border-radius: 12px;
  background: var(--ozb-surface-alt);
  overflow: hidden;
  cursor: zoom-in;
}

.ozb-single__stage img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  display: block;
  transition: transform .25s ease;
  will-change: transform;
}

.ozb-single__stage.is-zooming img { transform: scale(2); }

.ozb-single .ozb-stage__expand {
  position: absolute;
  inset: auto .75rem .75rem auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--ozb-line);
  border-radius: 50%;
  background: #fff;
  color: var(--ozb-green);
  cursor: pointer;
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 2;
}

.ozb-single__stage:hover .ozb-stage__expand,
.ozb-single .ozb-stage__expand:focus-visible { opacity: 1; }
.ozb-single .ozb-stage__expand:hover { transform: scale(1.08); }

@media (max-width: 575px) {
  .ozb-single__media { grid-template-columns: 1fr; }
  .ozb-single .ozb-thumbs {
    order: 2;
    grid-auto-flow: column;
    grid-auto-columns: 72px;
    overflow-x: auto;
    padding-bottom: .35rem;
  }
}

/* ----------------------------------------------------------- trust badges */
.ozb-single .ozb-badges {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 1rem;
  padding: 1.25rem .5rem;
  border: 1px solid var(--ozb-line);
  border-radius: 12px;
  background: var(--ozb-surface-alt);
}

@media (max-width: 767px) {
  .ozb-single .ozb-badges { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem 0; }
}

.ozb-single .ozb-badges__item {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: .35rem;
  padding: 0 .6rem;
  text-align: center;
}

.ozb-badges__item + .ozb-badges__item { border-left: 1px solid #e0e4dc; }

@media (max-width: 767px) {
  .ozb-badges__item:nth-child(odd) { border-left: 0; }
}

.ozb-badges__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ozb-green-soft);
  color: var(--ozb-green);
}

.ozb-badges__item strong { font-size: .8rem; font-weight: 700; line-height: 1.3; }
.ozb-badges__item span { font-size: .72rem; color: var(--ozb-muted); line-height: 1.35; }

/* ---------------------------------------------------------------- summary */
.ozb-single__summary { max-width: 560px; }

.ozb-single__stock {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin: 0 0 .85rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ozb-green);
}

.ozb-single__stock.is-out { color: #9ca3af; }

.ozb-single .ozb-single__title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.2;
  font-weight: 700;
  color: var(--ozb-ink);
}

.ozb-single__excerpt { margin-bottom: 1.4rem; color: var(--ozb-muted); }
.ozb-single__excerpt p { margin: 0 0 .6rem; }
.ozb-single__excerpt p:last-child { margin-bottom: 0; }

.ozb-single .ozb-features { display: grid; gap: .7rem; margin-bottom: 1.75rem; }

.ozb-single .ozb-features__item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .92rem;
  line-height: 1.5;
  color: var(--ozb-muted);
}

.ozb-features__tick { flex: none; margin-top: .18rem; color: var(--ozb-green); }
.ozb-single .ozb-features__item strong { color: var(--ozb-ink); font-weight: 600; }

.ozb-single__cta { display: grid; gap: .7rem; margin-bottom: 1.1rem; }

.ozb-single .ozb-btn {
  --_bg: #fff;
  --_fg: var(--ozb-green-dark);
  --_bd: var(--ozb-line);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: var(--ozb-control);
  padding: .75rem 1.4rem;
  border: 1px solid var(--_bd);
  border-radius: 6px;
  background: var(--_bg);
  color: var(--_fg);
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}

.ozb-single .ozb-btn--solid { --_bg: var(--ozb-green); --_fg: #fff; --_bd: var(--ozb-green); }
.ozb-single .ozb-btn--solid:hover { --_bg: var(--ozb-green-dark); --_bd: var(--ozb-green-dark); --_fg: #fff; }
.ozb-single .ozb-btn--outline:hover { --_bd: var(--ozb-green); --_fg: var(--ozb-green); }
.ozb-single .ozb-btn--block { width: 100%; }

.ozb-single__utility {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--ozb-line);
}

.ozb-single .ozb-utility__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  flex: 1 1 160px;
  min-height: 44px;
  padding: .6rem 1rem;
  border: 1px solid var(--ozb-line);
  border-radius: 6px;
  background: var(--ozb-surface);
  color: var(--ozb-ink);
  font-size: .78rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease;
}

.ozb-single .ozb-utility__btn:hover { border-color: var(--ozb-green); color: var(--ozb-green); }

.ozb-single__meta { margin: 1rem 0 0; font-size: .85rem; color: var(--ozb-muted); }
.ozb-single__meta a { color: var(--ozb-green); text-decoration: none; }

/* --------------------------------------------------------- support strip */
.ozb-single .ozb-support {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding: clamp(1.5rem, 3vw, 2rem) clamp(.5rem, 1vw, 1rem);
  border: 1px solid var(--ozb-line);
  border-radius: 12px;
  background: var(--ozb-surface-alt);
}

@media (max-width: 767px) {
  .ozb-single .ozb-support { grid-template-columns: 1fr; gap: 1.5rem; }
}

.ozb-single .ozb-support__item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 0 clamp(1rem, 2vw, 1.75rem);
}

.ozb-support__item + .ozb-support__item { border-left: 1px solid #e0e4dc; }

@media (max-width: 767px) {
  .ozb-support__item + .ozb-support__item {
    border-left: 0;
    border-top: 1px solid #e0e4dc;
    padding-top: 1.5rem;
  }
}

.ozb-single .ozb-support__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid #cfdcc0;
  border-radius: 10px;
  background: #fff;
  color: var(--ozb-green);
}

.ozb-single .ozb-support__title {
  margin: 0 0 .3rem;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ozb-ink);
}

.ozb-single .ozb-support__text {
  margin: 0;
  font-size: .84rem;
  line-height: 1.55;
  color: var(--ozb-muted);
}

/* ---------------------------------------------------- description/related */
.ozb-single__description,
.ozb-related {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(1.75rem, 4vw, 2.5rem);
  border-top: 1px solid var(--ozb-line);
}

.ozb-single .ozb-single__section-title {
  margin: 0 0 1.25rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ozb-ink);
}

.ozb-single__content { max-width: 80ch; color: var(--ozb-muted); }
.ozb-single__content h2 { margin: 1.75rem 0 .75rem; font-size: 1.3rem; color: var(--ozb-ink); }
.ozb-single__content h3 { margin: 1.5rem 0 .6rem; font-size: 1.1rem; color: var(--ozb-ink); }
.ozb-single__content p { margin: 0 0 1rem; }
.ozb-single__content ul { list-style: disc; margin: 0 0 1rem; padding-left: 1.35rem; }
.ozb-single__content li { list-style: disc; margin: 0 0 .4rem; }
.ozb-single__content img { max-width: 100%; height: auto; border-radius: 8px; }
.ozb-single__content table { width: 100%; border-collapse: collapse; margin-bottom: 1rem; }
.ozb-single__content th,
.ozb-single__content td { padding: .6rem .8rem; border: 1px solid var(--ozb-line); text-align: left; }

.ozb-related__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (max-width: 991px) { .ozb-related__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .ozb-related__grid { grid-template-columns: 1fr; } }

.ozb-related__card {
  border: 1px solid var(--ozb-line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--ozb-surface);
  transition: transform .2s ease, box-shadow .2s ease;
}

.ozb-related__card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgb(16 24 40 / 8%); }

.ozb-related__media { display: block; aspect-ratio: 4 / 3; background: var(--ozb-surface-alt); }
.ozb-related__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ozb-single .ozb-related__title {
  margin: 0;
  padding: .9rem 1rem;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.35;
}

.ozb-related__title a { color: inherit; text-decoration: none; }
.ozb-related__title a:hover { color: var(--ozb-green); }

/* -------------------------------------------------------------- lightbox */
.ozb-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgb(12 16 10 / 88%);
  cursor: zoom-out;
  animation: ozb-fade .18s ease;
}

@keyframes ozb-fade { from { opacity: 0; } to { opacity: 1; } }

.ozb-lightbox img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.ozb-lightbox__close {
  position: absolute;
  inset: 1.25rem 1.5rem auto auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgb(255 255 255 / 12%);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color .18s ease;
}

.ozb-lightbox__close:hover { background: rgb(255 255 255 / 24%); }

/* -------------------------------------------- suppress theme leftovers */
.single-product .woocommerce-tabs,
.single-product .related.products,
.single-product .up-sells,
.single-product .product > .woocommerce-breadcrumb { display: none; }