/** Shopify CDN: Minification failed

Line 386:9 Unexpected "{"
Line 386:14 Expected ":"
Line 386:18 Unexpected "{"
Line 387:16 Expected identifier but found whitespace
Line 387:21 Unexpected "{"
Line 387:30 Expected ":"
Line 387:56 Expected ":"
Line 388:19 Expected identifier but found whitespace
Line 388:21 Unexpected "{"
Line 388:30 Expected ":"
... and 1 more hidden warnings

**/
/* ============================================================================
   ORCA VIDEO GRID — canonical product video showcase
   assets/orca-video.css

   Ported from the .ovs-* block in orca-android-box-a21 (the richest of the
   three implementations that existed). Changes made during the port:

   - The --ovs-* token namespace is gone. It was a fifth prefix holding the
     same Orca values with three small drifts: #F5F7FA vs #f4f5f7, radius
     24px, transition .28s. Now uses --oa-* throughout, so radius snaps to
     --oa-rl (20px) and timing to --oa-t (.26s).
   - Every !important removed. They existed to beat Dawn's global h2/p rules;
     scoping under .ovg__ does that without them.
   - Headings are real <h2> elements in the snippet, not
     role="heading" aria-level="2".
   ============================================================================ */

.ovg__head {
  margin-bottom: clamp(40px, 6vw, 64px);
}
.ovg__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--oa-bd);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--oa-ink-m);
  margin-bottom: 16px;
}
.ovg__eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2.5px;
  background: var(--oa-ac);
  border-radius: 2px;
  flex-shrink: 0;
}
.ovg__heading {
  font-family: var(--oa-dp);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -.032em;
  line-height: 1.06;
  color: var(--oa-ink);
  margin: 0 0 12px;
  word-break: normal;
}
.ovg__section-desc {
  font-family: var(--oa-bd);
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--oa-ink-s);
  line-height: 1.65;
  max-width: 52ch;
  margin: 0;
}
.ovg__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 28px);
}
.ovg__grid--carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: clamp(14px, 3vw, 20px);
  margin-left:  calc(-1 * clamp(16px, 4vw, 48px));
  margin-right: calc(-1 * clamp(16px, 4vw, 48px));
  padding-left:  clamp(16px, 4vw, 48px);
  padding-right: clamp(16px, 4vw, 48px);
  padding-bottom: 4px; /* prevents clipping of card shadow */
}
.ovg__grid--carousel::-webkit-scrollbar { display: none; }
.ovg__grid--carousel .ovg__card {
  flex: 0 0 min(82vw, 320px);
  scroll-snap-align: start;
}
.ovg__card {
  display: flex;
  flex-direction: column;
  border-radius: var(--oa-rl);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(8,8,10,.07);
  transition: transform var(--oa-t) var(--oa-ez),
              box-shadow var(--oa-t) var(--oa-ez);
}
.ovg__card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(8,8,10,.1); border-color: transparent; }
.ovg__thumb {
  position: relative;
  width: 100%;
  background: var(--oa-bgs);
  border-radius: var(--oa-rl) var(--oa-rl) 0 0;
  overflow: hidden;
  /* 16:9 via padding trick — works on all iOS unlike aspect-ratio */
  padding-bottom: 56.25%;
}
.ovg__thumb-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ovg__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s var(--oa-ez);
}
.ovg__card:hover .ovg__thumb img { transform: scale(1.03); }
.ovg__play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8,8,10,.18);
  transition: background var(--oa-t) var(--oa-ez);
  cursor: pointer;
  border: none;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.ovg__card:hover .ovg__play-btn { background: rgba(8,8,10,.28); }
.ovg__play-ring {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--oa-t) var(--oa-ez),
              box-shadow var(--oa-t) var(--oa-ez);
  box-shadow: 0 4px 24px rgba(8,8,10,.18);
  flex-shrink: 0;
}
.ovg__card:hover .ovg__play-ring {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(8,8,10,.24);
}
.ovg__play-ring svg {
  width: 22px;
  height: 22px;
  color: var(--oa-ink);
  margin-left: 3px; /* optical centering of triangle */
}
.ovg__duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(8,8,10,.72);
  color: #fff;
  font-family: var(--oa-bd);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 3px 8px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.ovg__source-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(8,8,10,.72);
  color: #fff;
  font-family: var(--oa-bd);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 8px 3px 6px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.ovg__source-badge svg { width: 12px; height: 12px; flex-shrink: 0; }
.ovg__thumb-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--oa-bgs);
}
.ovg__thumb-placeholder svg { opacity: .22; }
.ovg__thumb-placeholder p {
  font-size: 12px;
  color: var(--oa-ink-m);
  font-family: var(--oa-bd);
  margin: 0;
}
.ovg__card-body {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
  background: #fff;
}
.ovg__card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--oa-bd);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--oa-ac);
  margin-bottom: 8px;
}
.ovg__card-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--oa-ac);
  border-radius: 2px;
  flex-shrink: 0;
}
.ovg__card-title {
  font-family: var(--oa-dp);
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 700;
  letter-spacing: -.022em;
  line-height: 1.2;
  color: var(--oa-ink);
  margin: 0 0 8px;
  word-break: normal;
}
.ovg__card-desc {
  font-family: var(--oa-bd);
  font-size: 14px;
  color: var(--oa-ink-s);
  line-height: 1.65;
  margin: 0 0 16px;
  flex: 1;
}
.ovg__btn {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--oa-ac);
  color: #fff;
  font-family: var(--oa-bd);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--oa-t) var(--oa-ez),
              box-shadow var(--oa-t) var(--oa-ez),
              transform var(--oa-t) var(--oa-ez);
  -webkit-tap-highlight-color: transparent;
  align-self: flex-start;
  margin-top: auto;
}
.ovg__btn:hover {
  background: #1a70e0;
  box-shadow: 0 8px 24px rgba(46,139,255,.28);
  transform: translateY(-2px);
}
.ovg__btn:active { transform: scale(.97); }
.ovg__btn svg { width: 13px; height: 13px; flex-shrink: 0; }
.ovg__modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
  background: rgba(8,8,10,.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--oa-ez);
}
.ovg__modal.is-open {
  opacity: 1;
  pointer-events: all;
}
.ovg__modal-inner {
  position: relative;
  width: 100%;
  max-width: 960px;
  border-radius: var(--oa-rl);
  overflow: hidden;
  background: #000;
  transform: scale(.94);
  transition: transform .36s var(--oa-ez);
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
}
.ovg__modal.is-open .ovg__modal-inner { transform: scale(1); }
.ovg__modal-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.ovg__modal-frame video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.ovg__modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--oa-t) var(--oa-ez);
  -webkit-tap-highlight-color: transparent;
  padding: 0;
}
.ovg__modal-close:hover { background: rgba(255,255,255,.22); }
.ovg__modal-close svg { width: 16px; height: 16px; }
.ovg__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}
.ovg__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--oa-lines);
  transition: all .26s var(--oa-ez);
  padding: 0;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.ovg__dot.is-on { background: var(--oa-ac); width: 18px; border-radius: 3px; }

@media screen and (min-width: 750px) {
  .ovg__{{ sid }} {
    padding-top:    {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }
}
@media screen and (min-width: 750px) {
  .ovg__grid,
  .ovg__grid--carousel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 3vw, 28px);
    overflow: visible;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
  .ovg__grid--carousel .ovg__card {
    flex: unset;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .ovg__anim {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s var(--oa-ez), transform .6s var(--oa-ez);
  }
  .ovg__anim.ovg__anim--visible {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ovg__anim { opacity: 1; transform: none; }
}
@media screen and (min-width: 750px) { .ovg__dots { display: none; } }

@media screen and (min-width: 750px) {
  .ovg__grid[style*="--ovg-cols"],
  .ovg__grid--carousel[style*="--ovg-cols"] {
    grid-template-columns: repeat(var(--ovg-cols, 2), 1fr);
  }
}
