/** Shopify CDN: Minification failed

Line 687:0 Unexpected "}"

**/
/* ==============================================
   VERTICAL VIDEOS — Thumbnail Grid
   ============================================== */

/* Carousel wrapper */
.vv-carousel {
    position: relative;
    margin-top: 40px;
}

.vv-carousel__viewport {
    overflow: hidden;
}

.vv-carousel__track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.vv-carousel__track .vv-item {
    flex: 0 0 calc((100% - 4 * 20px) / 5);
    min-width: 0;
}

@media screen and (max-width: 749px) {
    .vv-carousel__track {
        gap: 0;
    }
    .vv-carousel__track .vv-item {
        flex: 0 0 100%;
    }
}

/* Carousel arrow buttons */
.vv-carousel__arrow {
    position: absolute;
    top: 42%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
    transition: background 0.2s, transform 0.2s;
    color: #111;
    padding: 0;
}

.vv-carousel__arrow:hover {
    background: #fff;
    transform: translateY(0) scale(1.08);
}

.vv-carousel__arrow:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.vv-carousel__arrow[hidden] {
    display: none !important;
}

.vv-carousel__arrow--prev {
    left: 8px;
    transform: none;
}

.vv-carousel__arrow--next {
    right: 8px;
    transform: none;
}

.vv-carousel__arrow--prev:hover {
    transform: scale(1.08);
}

.vv-carousel__arrow--next:hover {
    transform: scale(1.08);
}

/* ==============================================
   Thumbnail Item
   ============================================== */

.vv-item {
    display: flex;
    flex-direction: column;
}

.vv-thumb {
    display: block;
    width: 100%;
    border: none;
    padding: 0;
    background: none;
    cursor: pointer;
    text-align: left;
}

.vv-thumb:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
    border-radius: 14px;
}

.vv-thumb__media {
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a1a;
}

.vv-thumb__img,
.vv-thumb__poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.vv-thumb__poster {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.vv-thumb:hover .vv-thumb__img,
.vv-thumb:focus-visible .vv-thumb__img {
    transform: scale(1.05);
}

/* Background autoplay video */
.vv-thumb__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
    pointer-events: none;
}

.vv-thumb__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.35);
}

.vv-thumb__play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 52px;
    height: 52px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.vv-thumb:hover .vv-thumb__play-icon,
.vv-thumb:focus-visible .vv-thumb__play-icon {
    background: rgba(0, 0, 0, 0.7);
    transform: translate(-50%, -50%) scale(1.1);
}

.vv-thumb__caption {
    display: block;
    margin-top: 8px;
    font-size: 0.8125rem;
    text-align: center;
    color: currentColor;
    opacity: 0.75;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ==============================================
   Modal Overlay
   ============================================== */

.vv-modal {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    background: rgb(0 0 0 / 89%);
}

.vv-modal[hidden] {
    display: none !important;
}

.vv-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    cursor: pointer;
    animation: vv-backdrop-in 0.25s ease;
}

@keyframes vv-backdrop-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Layout: video + desktop nav side by side */
.vv-modal__layout {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
    max-height: 760px;
}

@media screen and (max-width: 749px) {
    .vv-modal {
        padding: 0;
    }

    .vv-modal__layout {
        width: 100%;
        height: 100%;
        max-height: 100%;
    }
}

/* ==============================================
   Modal Inner (video card)
   ============================================== */

.vv-modal__inner {
    position: relative;
    width: 100%;
    max-width: 360px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    animation: vv-modal-in 0.25s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 749px) {
    .vv-modal__inner {
        max-width: 100%;
        height: 100svh;
        border-radius: 0;
    }
}

@keyframes vv-modal-in {
    from {
        opacity: 0;
        transform: scale(0.94);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==============================================
   Modal Header
   ============================================== */

.vv-modal__header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 12px 12px 24px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
}

.vv-modal__counter {
    margin-right: auto;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.03em;
}

.vv-modal__ctrl-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.vv-modal__ctrl-btn:hover {
    background: rgba(0, 0, 0, 0.72);
}

.vv-modal__ctrl-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.vv-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

/* Garante que [hidden] funcione mesmo com display:flex aplicado */
.vv-modal__ctrl-btn [hidden] {
    display: none !important;
}

/* ==============================================
   Video Area
   ============================================== */

.vv-modal__video-area {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #111;
    min-height: 0;
}

/* Wrapper used for TikTok-style slide transition */
.vv-video-wrap {
    position: absolute;
    inset: 0;
    will-change: transform;
}

.vv-video-wrap.is-transitioning {
    transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vv-modal__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vv-modal__no-video {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

/* ==============================================
   Share Button
   ============================================== */

.vv-modal__share-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.vv-modal__share-btn:hover {
  background: rgba(0, 0, 0, 0.72);
  transform: scale(1.1);
}

.vv-modal__share-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.vv-modal__share-toast {
  position: absolute;
  bottom: calc(100% + 8px);
  right: 0;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  pointer-events: none;
  animation: vv-toast-in 0.2s ease;
}

.vv-modal__share-toast[hidden] {
  display: none !important;
}

@keyframes vv-toast-in {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==============================================
   Product Card
   ============================================== */

.vv-modal__product-area {
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vv-product-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: #fff;
    transition: background 0.2s ease;
}

.vv-product-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.vv-product-card__img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    background: #222;
}

.vv-product-card__info {
    flex: 1;
    min-width: 0;
}

.vv-product-card__title {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 3px;
}

.vv-product-card__price {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
}

.vv-product-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1;
}

/* ==============================================
   Desktop Navigation Arrows
   ============================================== */

.vv-modal__nav-desktop {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

@media screen and (max-width: 749px) {
    .vv-modal__nav-desktop {
        display: none;
    }
}

.vv-modal__nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.vv-modal__nav-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.85);
    transform: scale(1.08);
}

.vv-modal__nav-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.vv-modal__nav-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
    pointer-events: none;
}

/* ==============================================
   Progress Bar
   ============================================== */

.vv-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
}

.vv-progress__fill {
  height: 100%;
  width: 0%;
  background: #fff;
  transition: width 0.25s linear;
  border-radius: 0 2px 2px 0;
}

/* ==============================================
   Mini Player (floating)
   ============================================== */

.vv-mini-player {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 8999;
  width: 130px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
  background: #000;
  animation: vv-mini-in 0.22s ease;
}

.vv-mini-player[hidden] {
  display: none !important;
}

@keyframes vv-mini-in {
  from { opacity: 0; transform: scale(0.85) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.vv-mini-player__slot {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
}

.vv-mini-player__slot .vv-video-wrap {
  position: absolute;
  inset: 0;
}

.vv-mini-player__slot .vv-modal__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vv-mini-player__controls {
  position: absolute;
  top: 6px;
  right: 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vv-mini-player__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.vv-mini-player__btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.vv-mini-player__btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
}