/** Shopify CDN: Minification failed

Line 267:10 Expected identifier but found whitespace
Line 267:15 Unexpected ";"
Line 508:10 Expected identifier but found whitespace
Line 508:15 Unexpected ";"

**/
:root {
  --ovo-color-bg: #000;
  --ovo-color-surface: #2e2c29;
  --ovo-color-surface-strong: #24231f;
  --ovo-color-text: #fff;
  --ovo-color-text-muted: rgb(255 255 255 / 90%);
  --ovo-color-accent: #9ccfff;
  --ovo-color-button: #1f85e4;
  --ovo-font-heading: "Lora", serif;
  --ovo-font-body: "Rethink Sans", sans-serif;
  --ovo-radius-card: 12px;
  --ovo-radius-media: 8px;
  --ovo-page-inline: clamp(18px, 3vw, 40px);
}

.ovo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 41px;
  padding: 12px 32px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--ovo-font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.ovo-button:hover {
  opacity: 0.82;
}

.ovo-button--primary {
  background: var(--ovo-color-button);
  color: var(--ovo-color-text);
  border-color: rgb(255 255 255 / 32%);
}

.ovo-button--primary:hover,
.ovo-button--primary:focus-visible {
  opacity: 1;
  background: #fff;
  color: var(--ovo-color-button);
  border-color: var(--ovo-color-button);
}

.ovo-button--primary:focus-visible {
  outline: 2px solid var(--ovo-color-button);
  outline-offset: 2px;
}

.ovo-button--secondary {
  border-color: var(--ovo-color-accent);
  background: transparent;
  color: var(--ovo-color-text);
}

.ovo-button--secondary:hover,
.ovo-button--secondary:focus-visible {
  opacity: 1;
  background: rgb(255 255 255 / 6%);
  border-color: var(--ovo-color-accent);
}

.ovo-button--compact {
  min-height: 28px;
  padding: 8px 18px;
  font-size: 0.6875rem;
}

.ovo-article-card {
  overflow: hidden;
  height: 100%;
  border-radius: var(--ovo-radius-card);
  background: var(--ovo-color-surface);
  color: var(--ovo-color-text);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.ovo-article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgb(0 0 0 / 28%);
}

.ovo-article-card__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.ovo-article-card__media {
  overflow: hidden;
  padding: 14px 14px 0;
  background: var(--ovo-color-surface);
}

.ovo-article-card__image,
.ovo-article-card__placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 1.86 / 1;
  border-radius: var(--ovo-radius-media);
  object-fit: cover;
  object-position: center;
  background: #d9eef9;
}

.ovo-article-card__placeholder {
  color: rgb(255 255 255 / 20%);
}

.ovo-article-card__body {
  padding: 14px 16px 18px;
  font-family: var(--ovo-font-body);
}

.ovo-article-card__title {
  margin: 0;
  font-family: var(--ovo-font-body);
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 500;
  line-height: 1.08;
  color: var(--ovo-color-text);
}

.ovo-article-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 7px;
  color: var(--ovo-color-accent);
  font-size: 11px;
  line-height: 1.25;
}

.ovo-article-card__excerpt {
  margin: 18px 0 0;
  max-width: 95%;
  font-family: var(--ovo-font-body);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.35;
  color: var(--ovo-color-text-muted);
}

.ovo-article-card--large .ovo-article-card__media {
  padding: 16px 16px 0;
}

.ovo-article-card--large .ovo-article-card__image,
.ovo-article-card--large .ovo-article-card__placeholder {
  aspect-ratio: 1.78 / 1;
  border-radius: 10px;
}

.ovo-article-card--large .ovo-article-card__body {
  padding: 18px 18px 24px;
}

.ovo-article-card--large .ovo-article-card__title {
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.ovo-article-card--large .ovo-article-card__meta {
  margin-top: 8px;
  font-size: 12px;
}

.ovo-article-card--large .ovo-article-card__excerpt {
  margin-top: 26px;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.ovo-content-block {
  font-family: var(--ovo-font-body);
  color: var(--ovo-color-text);
}

.ovo-content-block__eyebrow {
  margin: 0 0 12px;
  color: var(--ovo-color-accent);
  font-size: 0.75rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ovo-content-block__title {
  margin: 0;
  font-family: var(--ovo-font-heading);
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.ovo-content-block__copy {
  margin: 18px 0 0;
  max-width: 68ch;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.35;
  color: var(--ovo-color-text-muted);
}

.ovo-image-frame {
  overflow: hidden;
  border-radius: var(--ovo-radius-card);
  background: var(--ovo-color-surface-strong);
}

.ovo-image-frame__image,
.ovo-image-frame__placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
}

.ovo-image-frame__placeholder {
  color: rgb(255 255 255 / 20%);
}

.ovo-layout {
  background: var(--ovo-color-bg);
  color: var(--ovo-color-text);
}

.ovo-layout__inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: var(--ovo-page-inline);
}

.ovo-split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}



  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 1.9vw, 28px);
  min-height: 74px;
  padding: 10px var(--ovo-page-inline);
  background: var(--ovo-color-bg);
  color: var(--ovo-color-text);
  font-family: var(--ovo-font-body);
}

.ovo-navbar__logo {
  color: inherit;
  text-decoration: none;
}

.ovo-navbar__logo img {
  width: auto;
  max-height: 32px;
}

.ovo-navbar__links {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ovo-navbar__links a {
  color: inherit;
  font-size: 0.75rem;
  text-decoration: none;
}

@media screen and (max-width: 989px) {
  .ovo-split-layout {
    grid-template-columns: 1fr;
  }

  .ovo-navbar {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .ovo-navbar__links {
    display: none;
  }
}

@media screen and (max-width: 749px) {
  .ovo-button {
    min-height: 34px;
    padding: 10px 20px;
    font-size: 0.75rem;
  }

  .ovo-article-card__media {
    padding: 10px 10px 0;
  }

  .ovo-article-card__body {
    padding: 12px 12px 16px;
  }

  .ovo-article-card__title {
    font-size: 30px;
  }
  .ovo-article-card__meta span{
     font-size: 14px;
  }

  .ovo-article-card__excerpt {
    max-width: none;
    margin-top: 14px;
    font-size: 20px;
  }

  .ovo-content-block__title {
    font-size: 34px;
  }
}

/* ---------------------------------------------------------------------------
   About page — interactive timeline + sustainability (ovo-about-hero /
   snippets/ovo-about-timeline-sustainability.liquid / ovo-timeline section)
--------------------------------------------------------------------------- */

.ovo-about-timeline-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 5vw, 56px);
  width: 100%;
}

.ovo-about-timeline {
  position: relative;
  width: 100%;
  max-width: 1360px;
  margin-inline: auto;
  box-sizing: border-box;
}

.ovo-about-timeline__line {
  display: none;
}

.ovo-about-timeline__grid {
  display: grid;
  grid-template-columns: repeat(var(--ovo-timeline-steps, 6), minmax(0, 1fr));
  width: 100%;
  box-sizing: border-box;
}

.ovo-about-timeline__step {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.ovo-about-timeline__step:focus-visible {
  outline: 2px solid rgb(31 133 228 / 90%);
  outline-offset: 3px;
}

.ovo-about-timeline__step-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  min-height: 180px;
}

.ovo-about-timeline__step:not(:last-child) .ovo-about-timeline__step-inner {
  border-inline-end: 1px solid rgba(255, 255, 255, 0.18);
}

.ovo-about-timeline__dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.88);
  transition:
    transform 320ms cubic-bezier(0.2, 0, 0, 1),
    background-color 320ms cubic-bezier(0.2, 0, 0, 1);
}

.ovo-about-timeline__text {
  display: block;
  flex: 1;
  width: 100%;
  max-width: 100%;
  padding: 0 clamp(8px, 1vw, 14px);
  font-family: 'Rethink Sans', sans-serif;
  font-size: clamp(13px, 1.05vw, 17px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.92);
  text-wrap: balance;
  transition:
    color 320ms cubic-bezier(0.2, 0, 0, 1),
    font-weight 320ms cubic-bezier(0.2, 0, 0, 1);
}

.ovo-about-timeline__step.is-active .ovo-about-timeline__dot {
  background: #1f85e4;
  transform: translate(-50%, -50%) scale(1.14);
}

.ovo-about-timeline__step.is-active .ovo-about-timeline__text {
  color: #1f85e4;
  font-weight: 500;
}

@media screen and (min-width: 750px) {
  .ovo-about-timeline {
    height: 180px;
  }

  .ovo-about-timeline__line {
    display: block;
    position: absolute;
    inset-inline: 0;
    top: 90px;
    height: 1px;
    background: rgba(255, 255, 255, 0.26);
    pointer-events: none;
    z-index: 0;
  }

  .ovo-about-timeline__grid {
    position: relative;
    z-index: 1;
    height: 180px;
    align-items: stretch;
  }

  .ovo-about-timeline__step-inner {
    height: 100%;
    min-height: 0;
  }

  .ovo-about-timeline__step .ovo-about-timeline__dot {
    position: absolute;
    left: 50%;
    top: 90px;
    transform: translate(-50%, -50%) scale(1);
  }

  .ovo-about-timeline__text {
    padding-top: 108px;
    text-align: center;
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .ovo-about-timeline {
    overflow-x: auto;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .ovo-about-timeline__grid {
    min-width: 1024px;
  }
}



  display: flex;
  flex-direction: column;
  gap: clamp(26px, 4vw, 46px);
  width: 100%;
}

.ovo-about-sustain__heading {
  margin: 0;
  font-family: 'Rethink Sans', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
}

.ovo-about-sustain__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  align-items: stretch;
}

.ovo-about-sustain__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: clamp(22px, 2.6vw, 30px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-sizing: border-box;
  background: rgba(46, 44, 41, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
}

.ovo-about-sustain__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  margin-block-end: clamp(22px, 2.8vw, 32px);
  color: #1f85e4;
}

.ovo-about-sustain__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.ovo-about-sustain__title {
  margin: 0 0 clamp(14px, 2vw, 18px);
  font-family: 'Rethink Sans', sans-serif;
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 500;
  line-height: 1.22;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
}

.ovo-about-sustain__body {
  margin: 0;
  font-family: 'Rethink Sans', sans-serif;
  font-size: clamp(14px, 1.08vw, 16px);
  font-weight: 400;
  line-height: 1.45;
  color: #d8d8d8;
}

.ovo-about-sustain__body p {
  margin: 0 0 0.75em;
}

.ovo-about-sustain__body p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 989px) {
  .ovo-about-sustain__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 749px) {
  .ovo-about-timeline__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .ovo-about-timeline__line {
    display: block;
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
    margin-top: 0;
    inset-inline: unset;
    background: rgba(255, 255, 255, 0.26);
    z-index: 0;
  }

  .ovo-about-timeline__step-inner {
    position: relative;
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(14px, 4vw, 22px);
    min-height: 0;
    padding-block: clamp(14px, 3vw, 20px);
    padding-inline-start: clamp(38px, 10vw, 48px);
    text-align: left;
    border-inline-end: none !important;
  }

  .ovo-about-timeline {
    height: auto;
    padding-inline-start: clamp(10px, 3vw, 16px);
  }

  .ovo-about-timeline__step .ovo-about-timeline__dot {
    position: absolute;
    left: 7px;
    top: clamp(22px, 5vw, 28px);
    transform: none;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.65);
    z-index: 1;
  }

  .ovo-about-timeline__step.is-active .ovo-about-timeline__dot {
    transform: scale(1.1);
    background: #1f85e4;
  }

  .ovo-about-timeline__text {
    flex: 1;
    padding: 0;
    font-size: clamp(15px, 3.9vw, 17px);
    line-height: 1.42;
    text-align: left;
    text-wrap: unset;
    color: rgba(255, 255, 255, 0.88);
  }

  .ovo-about-timeline__step.is-active .ovo-about-timeline__text {
    color: #1f85e4;
  }

  .ovo-about-sustain__grid {
    grid-template-columns: 1fr;
  }
}
