/* =========================================================
   EXPLORE REELS SECTION
========================================================= */

.explore-reels-section {
    position: relative;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    width: 100%;
    max-width: 100%;

    padding: 35px 0 45px;

    background: #fff;

    overflow: visible;

    clear: both;
    z-index: 1;
}


/* =========================================================
   HEADING
========================================================= */

.explore-reels-heading {
    position: relative;

    display: block;
    width: 100%;

    margin: 0 0 22px;

    text-align: center;
}

.explore-reels-heading h2 {
    margin: 0;

    color: #111;

    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}


/* =========================================================
   SLIDER
========================================================= */

.explore-reels-slider {
    position: relative;

    display: block;
    width: calc(100% + 16px);

    margin-left: -8px;
    margin-right: -8px;

    visibility: visible !important;
    opacity: 1 !important;
}

.explore-reels-slider .slick-list {
    width: 100%;

    overflow: hidden;
}

.explore-reels-slider .slick-track {
    display: flex;

    align-items: stretch;

    margin-left: 0;
    margin-right: 0;
}

.explore-reels-slider .slick-slide {
    height: auto;

    padding-left: 8px;
    padding-right: 8px;
}

.explore-reels-slider .slick-slide > div {
    height: 100%;
}

.explore-slide {
    width: 100%;
    height: 100%;
}


/* =========================================================
   VIDEO CARD
========================================================= */

.explore-video-card {
    position: relative;

    display: block;

    width: 100%;
    aspect-ratio: 9 / 16;

    overflow: hidden;

    border-radius: 14px;

    background: #111;

    cursor: pointer;

    isolation: isolate;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, .08);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.explore-video-card:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .18);
}


/* =========================================================
   VIDEO FRAME
========================================================= */

.explore-video-frame {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background: #000;

    z-index: 1;
}


/* =========================================================
   YOUTUBE PREVIEW
========================================================= */

.explore-youtube-preview {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    border: 0;

    background: #000;

    pointer-events: none;

    transform: scale(1.01);
}


/* =========================================================
   OVERLAY
========================================================= */

.explore-video-overlay {
    position: absolute;

    inset: 0;

    z-index: 5;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, .38) 0%,
            rgba(0, 0, 0, .05) 30%,
            rgba(0, 0, 0, .03) 55%,
            rgba(0, 0, 0, .88) 100%
        );
}


/* =========================================================
   VIDEO CLICK
========================================================= */

.explore-video-click {
    position: absolute;

    inset: 0;

    z-index: 20;

    width: 100%;
    height: 100%;

    padding: 0;

    border: 0;

    background: transparent;

    cursor: pointer;

    outline: none !important;
}

.explore-video-click:focus {
    outline: none !important;
}

.explore-video-share,
.explore-video-action,
.explore-video-views,
.explore-video-bottom {
    pointer-events: auto;
}


/* =========================================================
   PLAY ICON
========================================================= */

.explore-play-icon {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 54px;
    height: 54px;

    transform:
        translate(-50%, -50%)
        scale(.92);

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(0, 0, 0, .68);

    color: #fff;

    opacity: 0;

    pointer-events: none;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, .25);

    transition:
        opacity .25s ease,
        transform .25s ease,
        background .25s ease;
}

.explore-play-icon svg {
    width: 22px;
    height: 22px;
}

.explore-video-card:hover .explore-play-icon {
    opacity: 1;

    transform:
        translate(-50%, -50%)
        scale(1);

    background: rgba(0, 0, 0, .82);
}


/* =========================================================
   VIEWS
========================================================= */

.explore-video-views {
    position: absolute;

    top: 10px;
    left: 10px;

    z-index: 50;

    display: flex;

    align-items: center;

    gap: 5px;

    min-height: 27px;

    padding: 6px 9px;

    border-radius: 20px;

    background: rgba(0, 0, 0, .68);

    color: #fff;

    font-size: 10px;
    font-weight: 500;

    line-height: 1;

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.explore-video-views svg {
    flex-shrink: 0;

    width: 15px;
    height: 15px;

    color: #fff;
}


/* =========================================================
   SHARE BUTTON
========================================================= */

.explore-video-share {
    position: absolute;

    top: 10px;
    right: 10px;

    z-index: 100;

    width: 35px;
    height: 35px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    color: #fff;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, .55);

    cursor: pointer;

    outline: none;

    transition:
        background .2s ease,
        transform .2s ease;
}

.explore-video-share:hover {
    background: #000;

    transform: scale(1.08);
}

.explore-video-share:focus {
    outline: none;
}

.explore-video-share svg {
    width: 16px;
    height: 16px;

    color: #fff;

    pointer-events: none;
}


/* =========================================================
   BOTTOM RELATED INFO
========================================================= */

.explore-video-bottom {
    position: absolute;

    left: 8px;
    right: 8px;
    bottom: 46px;

    z-index: 60;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 7px 8px;

    color: #fff;

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    pointer-events: none;
}

.explore-video-bottom.is-open {
    pointer-events: auto;
}


/* =========================================================
   RELATED INFO
========================================================= */

.explore-video-related-info {
    flex: 1;

    min-width: 0;

    overflow: hidden;
}

.explore-video-related {
    display: flex;

    align-items: center;

    gap: 8px;

    min-width: 0;
    width: 100%;
}

.explore-video-related-image {
    flex: 0 0 42px;

    width: 42px !important;
    height: 42px !important;

    object-fit: cover;

    border-radius: 5px;
}

.explore-video-related-content {
    min-width: 0;

    overflow: hidden;
}

.explore-video-related-name {
    width: 100%;

    overflow: hidden;

    color: #fff;

    font-size: 12px;
    font-weight: 600;

    line-height: 1.3;

    white-space: nowrap;

    text-overflow: ellipsis;
}

.explore-video-related-price {
    margin-top: 3px;

    color: #fff;

    font-size: 11px;
    font-weight: 600;

    line-height: 1.2;
}


/* =========================================================
   CARD ACTION
========================================================= */

.explore-video-action {
    position: absolute;

    left: 8px;
    right: 8px;
    bottom: 8px;

    z-index: 80;

    min-height: 34px;

    padding: 7px 10px;

    border: 0;
    border-radius: 6px;

    background: #fff;

    color: #111 !important;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 6px;

    font-size: 14px;
    font-weight: 600;

    line-height: 1.2;

    text-decoration: none !important;

    white-space: nowrap;

    opacity: 1;

    pointer-events: auto;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.explore-video-action:hover {
    background: #f5f5f5;

    color: #111 !important;

    text-decoration: none !important;

    transform: translateY(-1px);
}

.explore-video-action svg {
    flex: 0 0 auto;

    width: 14px;
    height: 14px;

    color: currentColor;
}


/* =========================================================
   OLD CARD DETAILS
========================================================= */

.explore-video-details {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 150;

    max-height: 0;

    overflow: hidden;

    border-radius: 14px 14px 0 0;

    background: rgba(255, 255, 255, .98);

    color: #111;

    opacity: 0;

    transform: translateY(100%);

    box-shadow:
        0 -5px 20px rgba(0, 0, 0, .12);

    transition:
        max-height .35s ease,
        transform .35s ease,
        opacity .25s ease;
}

.explore-video-details.show {
    max-height: 180px;

    opacity: 1;

    transform: translateY(0);
}

.explore-product-details,
.explore-related-details {
    padding: 15px;
}

.explore-product-details-title,
.explore-related-details strong {
    margin-bottom: 6px;

    color: #111;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.4;
}

.explore-product-description,
.explore-related-details p {
    margin-bottom: 12px;

    color: #555;

    font-size: 12px;

    line-height: 1.5;
}

.explore-related-details p {
    margin: 0;
}

.explore-product-cart-btn {
    min-height: 36px;

    padding: 7px 12px;

    border-radius: 7px;

    background: #111;

    color: #fff !important;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 6px;

    font-size: 11px;
    font-weight: 600;

    text-decoration: none !important;
}

.explore-product-cart-btn:hover {
    background: #222;

    color: #fff !important;
}


/* =========================================================
   EXPLORER ADS CARD
========================================================= */

.explore-reel-card {
    position: relative;

    width: 100%;

    aspect-ratio: 9 / 16;

    height: auto;

    overflow: hidden;

    border-radius: 14px;

    background: #000;
}

.explore-reel-media {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* =========================================================
   EXPLORER ADS PRODUCT INFO
========================================================= */

.explore-reel-product {
    position: absolute;

    left: 10px;
    right: 10px;
    bottom: 10px;

    z-index: 5;

    display: flex;

    flex-direction: column;

    align-items: stretch;

    padding: 0;

    background: transparent !important;
}

.explore-reel-product-name,
.explore-reel-product-price {
    color: #fff !important;

    background: transparent !important;

    padding: 0 10px;

    text-align: center;

    text-shadow:
        0 1px 4px rgba(0, 0, 0, .7);
}

.explore-reel-product-name {
    margin-bottom: 5px;

    font-size: 14px;
    font-weight: 600;
}

.explore-reel-product-price {
    margin-bottom: 8px;

    font-size: 14px;
    font-weight: 600;
}

.explore-reel-product-image {
    width: 55px !important;
    height: 55px !important;

    min-width: 55px;
    min-height: 55px;

    max-width: 55px;
    max-height: 55px;

    margin: 0 auto 8px;

    object-fit: cover;

    border-radius: 8px;

    display: block;
}


/* =========================================================
   EXPLORER ADS ACTION
========================================================= */

.explore-reel-add-cart {
    position: static !important;

    width: 100%;
    height: 48px;

    display: flex !important;

    align-items: center;
    justify-content: center;

    gap: 6px;

    padding: 0;

    margin: 0;

    border: none;
    border-radius: 10px;

    background: #fff !important;

    color: #000 !important;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none !important;

    opacity: 1 !important;
    visibility: visible !important;

    transform: none !important;

    z-index: 10;

    transition:
        background .2s ease,
        transform .2s ease;
}

.explore-reel-add-cart:hover {
    background: #f4f4f4 !important;

    color: #000 !important;

    transform: translateY(-1px) !important;
}

.explore-reel-add-cart span,
.explore-reel-add-cart i,
.explore-reel-add-cart svg {
    color: #000 !important;

    stroke: #000 !important;
}

.explore-reel-product-arrow {
    color: #000 !important;
}


/* =========================================================
   MODAL BACKDROP
========================================================= */

.modal-backdrop.show {
    opacity: .72;
}


/* =========================================================
   EXPLORE VIDEO MODAL
========================================================= */

#exploreVideoModal {
    position: fixed !important;

    inset: 0 !important;

    z-index: 99999 !important;

    width: 100% !important;
    height: 100% !important;

    padding: 0 !important;
    margin: 0 !important;

    overflow: hidden !important;
}


/* =========================================================
   MODAL DIALOG
========================================================= */

#exploreVideoModal .explore-modal-dialog {
    position: relative !important;

    width: 100% !important;
    max-width: 100% !important;

    height: 100vh !important;
    min-height: 100vh !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;
}


/* =========================================================
   MODAL CONTENT
========================================================= */

#exploreVideoModal .explore-modal-content {
    position: relative !important;

    width: 100% !important;
    max-width: 100% !important;

    height: 100% !important;
    max-height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;

    border: 0 !important;
    border-radius: 0 !important;

    box-shadow: none !important;

    overflow: visible !important;
}


/* =========================================================
   MODAL VIDEO AREA
========================================================= */

#exploreVideoModal .explore-modal-video {
    position: relative !important;

    width: 100% !important;
    height: 100vh !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    background: transparent !important;

    overflow: visible !important;
}


/* =========================================================
   VIDEO STAGE
========================================================= */

#exploreVideoModal .explore-video-stage {
    position: relative !important;

    width: 100% !important;
    height: 100% !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 28px !important;

    overflow: visible !important;
}


/* =========================================================
   ACTIVE VIDEO
========================================================= */

#exploreVideoModal .explore-video-active {
    position: relative !important;

    flex: 0 0 auto !important;

    width: min(
        420px,
        32vw,
        calc((100vh - 40px) * .5625)
    ) !important;

    height: min(
        746px,
        calc(100vh - 40px),
        calc(32vw * 1.7777778)
    ) !important;

    aspect-ratio: 9 / 16 !important;

    background: #000 !important;

    border-radius: 14px !important;

    overflow: hidden !important;

    z-index: 5 !important;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, .55) !important;
}


/* =========================================================
   YOUTUBE PLAYER
========================================================= */

#exploreVideoModal #exploreYoutubePlayer,
#exploreVideoModal .explore-youtube-player {
    position: absolute !important;

    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    background: #000 !important;

    z-index: 1 !important;
}

#exploreVideoModal #exploreYoutubePlayer iframe,
#exploreVideoModal .explore-youtube-iframe {
    position: absolute !important;

    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    display: block !important;

    border: 0 !important;

    background: #000 !important;
}


/* =========================================================
   SIDE PREVIEWS
========================================================= */

#exploreVideoModal .explore-video-preview {
    position: relative !important;

    flex: 0 0 auto !important;

    width: 220px !important;
    height: 391px !important;

    aspect-ratio: 9 / 16 !important;

    border-radius: 12px !important;

    overflow: hidden !important;

    background: #111 !important;

    opacity: .35 !important;

    transform: scale(.92) !important;

    z-index: 2 !important;

    cursor: pointer !important;

    transition:
        opacity .25s ease,
        transform .25s ease;
}

#exploreVideoModal .explore-video-preview img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

#exploreVideoModal .explore-video-preview-prev {
    order: 1 !important;
}

#exploreVideoModal .explore-video-active {
    order: 2 !important;
}

#exploreVideoModal .explore-video-preview-next {
    order: 3 !important;
}

#exploreVideoModal .explore-video-preview:hover {
    opacity: .5 !important;

    transform: scale(.95) !important;
}

#exploreVideoModal .explore-video-preview-overlay {
    position: absolute !important;

    inset: 0 !important;

    display: flex !important;

    align-items: flex-end !important;
    justify-content: center !important;

    padding: 15px !important;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, .65),
            rgba(0, 0, 0, .08) 55%,
            transparent
        ) !important;
}

#exploreVideoModal .explore-video-preview-label {
    padding: 5px 11px !important;

    border-radius: 20px !important;

    background: rgba(0, 0, 0, .55) !important;

    color: #fff !important;

    font-size: 11px !important;
    font-weight: 600 !important;

    line-height: 1 !important;

    white-space: nowrap !important;
}


/* =========================================================
   MODAL NAVIGATION
========================================================= */

#exploreVideoModal .explore-modal-nav {
    position: fixed !important;

    top: 50% !important;

    z-index: 100000 !important;

    width: 48px !important;
    height: 48px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 50% !important;

    background: rgba(255, 255, 255, .12) !important;

    color: #fff !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    cursor: pointer !important;

    transform: translateY(-50%) !important;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        background .2s ease,
        transform .2s ease !important;
}

#exploreVideoModal .explore-modal-nav:hover {
    background: rgba(255, 255, 255, .22) !important;

    transform:
        translateY(-50%)
        scale(1.08) !important;
}

#exploreVideoModal .explore-modal-prev {
    left: 28px !important;
}

#exploreVideoModal .explore-modal-next {
    right: 28px !important;
}

#exploreVideoModal .explore-modal-nav svg {
    width: 22px !important;
    height: 22px !important;

    color: #fff !important;

    pointer-events: none !important;
}


/* =========================================================
   MODAL CLOSE
========================================================= */

#exploreVideoModal .explore-modal-close {
    position: fixed !important;

    top: 20px !important;
    right: 20px !important;

    width: 42px !important;
    height: 42px !important;

    padding: 0 !important;

    border: 0 !important;
    border-radius: 50% !important;

    background: rgba(0, 0, 0, .65) !important;

    color: #fff !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    z-index: 100001 !important;

    cursor: pointer !important;

    transition:
        background .2s ease,
        transform .2s ease;
}

#exploreVideoModal .explore-modal-close:hover {
    background: rgba(0, 0, 0, .9) !important;

    transform: scale(1.05);
}


/* =========================================================
   MODAL SHARE
========================================================= */

#exploreVideoModal .explore-modal-share {
    position: fixed !important;

    top: 20px !important;
    right: 72px !important;

    width: 42px !important;
    height: 42px !important;

    padding: 0 !important;

    border: 0 !important;
    border-radius: 50% !important;

    background: rgba(0, 0, 0, .65) !important;

    color: #fff !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    z-index: 100001 !important;

    cursor: pointer !important;

    transition:
        background .2s ease,
        transform .2s ease;
}

#exploreVideoModal .explore-modal-share:hover {
    background: rgba(0, 0, 0, .9) !important;

    transform: scale(1.05);
}


/* =========================================================
   DETAILS BUTTON
========================================================= */

#exploreVideoModal .explore-modal-details,
#exploreVideoModal .explore-video-details-btn-overlay {
    position: absolute !important;

    z-index: 100002 !important;

    width: 42px !important;
    height: 42px !important;

    padding: 0 !important;

    border: 0 !important;
    border-radius: 50% !important;

    background: rgba(255, 255, 255, .12) !important;

    color: #fff !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    cursor: pointer !important;

    pointer-events: auto !important;

    outline: none !important;

    transition:
        background .2s ease,
        transform .2s ease;
}

#exploreVideoModal .explore-modal-details:hover,
#exploreVideoModal .explore-video-details-btn-overlay:hover {
    background: rgba(0, 0, 0, .9) !important;

    transform: scale(1.06);
}

#exploreVideoModal .explore-modal-details {
    right: 20px !important;
    bottom: 20px !important;
}

#exploreVideoModal .explore-video-details-btn-overlay {
    right: 18px !important;
    bottom: 105px !important;
}

#exploreVideoModal .explore-modal-details svg,
#exploreVideoModal .explore-video-details-btn-overlay svg {
    width: 17px !important;
    height: 17px !important;

    color: #fff !important;

    pointer-events: none !important;

    transition: transform .25s ease;
}

#exploreVideoModal .explore-modal-details.active svg,
#exploreVideoModal .explore-video-details-btn-overlay.active svg {
    transform: rotate(180deg);
}


/* =========================================================
   VIDEO OVERLAY BUTTONS
========================================================= */

.explore-video-overlay-btn {
    position: absolute;

    z-index: 25;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;
    border-radius: 50%;

    color: #fff;

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(6px);

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease;
}

.explore-video-overlay-btn:hover {
    background: rgba(0, 0, 0, .82);

    transform: scale(1.06);
}

.explore-video-share-btn {
    top: 45%;
    right: 18px;
}


/* =========================================================
   MODAL INFO OVERLAY
========================================================= */

.explore-video-info-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 20;

    padding: 65px 14px 14px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(0, 0, 0, .88)
        );

    transition:
        padding .3s ease,
        background .3s ease;
}


/* =========================================================
   MODAL INFO
========================================================= */

#exploreVideoModal .explore-video-info {
    width: 100%;

    opacity: 1;
    visibility: visible;

    transform: translateY(0);

    pointer-events: auto;
}

.explore-video-info-main {
    display: flex;

    align-items: center;

    gap: 12px;

    width: 100%;
}

.explore-video-info-image {
    flex: 0 0 72px;

    width: 72px;
    height: 72px;

    overflow: hidden;

    border-radius: 10px;

    background: #f3f3f3;
}

.explore-video-info-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.explore-video-info-image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #999;
}

.explore-video-info-text {
    flex: 1;

    min-width: 0;
}

.explore-video-info-name {
    margin-bottom: 5px;

    max-width: 100%;

    color: #fff;

    font-size: 15px;
    font-weight: 700;

    line-height: 1.4;

    display: -webkit-box;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
}

.explore-video-info-price {
    color: rgba(255, 255, 255, .9);

    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   INFO ACTION
========================================================= */

.explore-video-info-action {
    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: auto;
    min-width: 105px;

    height: 40px;

    margin: 0;

    padding: 0 15px;

    border-radius: 8px;

    color: #111 !important;

    background: #fff;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none !important;

    transition:
        transform .2s ease,
        background .2s ease;
}

.explore-video-info-action:hover {
    color: #111 !important;

    background: #f1f1f1;

    transform: translateY(-1px);
}


/* =========================================================
   INFO DETAILS
========================================================= */

.explore-video-info-details {
    width: 100%;

    max-height: 150px;

    margin-top: 10px;

    padding: 10px 5px 3px;

    overflow-y: auto;

    color: rgba(255, 255, 255, .86);

    font-size: 12px;

    line-height: 1.7;

    scrollbar-width: thin;

    display: none;
}

.explore-video-info-details.open {
    display: block;

    animation: exploreDetailsFadeIn .25s ease;
}

.explore-video-info-details-inner {
    width: 100%;
}

.explore-video-info-details-inner p {
    margin: 0;
}

.explore-detail-extra {
    margin-top: 7px;

    color: #fff;

    font-weight: 600;
}

@keyframes exploreDetailsFadeIn {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   LOADING
========================================================= */

.explore-video-info-loading {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 54px;

    color: #fff;
}


/* =========================================================
   AUDIO CONTROLS
========================================================= */

.explore-video-audio-controls {
    position: absolute;

    right: 85%;
    top: 2%;

    z-index: 30;

    display: flex;

    align-items: center;
}

.explore-video-audio-btn {
    position: relative !important;

    inset: auto !important;

    width: 40px;
    height: 40px;

    min-width: 40px;
    min-height: 40px;

    padding: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 0;

    border-radius: 50%;

    background: rgba(255, 255, 255, .12);

    color: #fff;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease;
}

.explore-video-audio-btn:hover {
    background: rgba(255, 255, 255, .25);

    transform: scale(1.05);
}

.explore-video-audio-btn:active {
    transform: scale(.95);
}

.explore-video-audio-btn svg {
    display: block;

    pointer-events: none;
}

.explore-video-volume-value {
    min-width: 42px;

    text-align: center;

    color: #fff;

    font-size: 11px;

    font-weight: 600;

    line-height: 1;
}


/* =========================================================
   COPY MESSAGE
========================================================= */

.explore-copy-message {
    position: fixed;

    left: 50%;
    bottom: 35px;

    z-index: 999999;

    padding: 11px 18px;

    border-radius: 8px;

    color: #fff;

    background: rgba(0, 0, 0, .85);

    font-size: 13px;

    opacity: 0;

    transform:
        translateX(-50%)
        translateY(15px);

    pointer-events: none;

    transition:
        opacity .25s ease,
        transform .25s ease;
}

.explore-copy-message.show {
    opacity: 1;

    transform:
        translateX(-50%)
        translateY(0);
}


/* =========================================================
   RTL
========================================================= */

[dir="rtl"] .explore-video-views {
    left: auto;
    right: 10px;
}

[dir="rtl"] .explore-video-share {
    right: auto;
    left: 10px;
}

[dir="rtl"] .explore-video-related {
    direction: rtl;
}

[dir="rtl"] .explore-video-info-main {
    direction: rtl;
}

[dir="rtl"] #exploreVideoModal .explore-modal-close {
    right: auto !important;
    left: 20px !important;
}

[dir="rtl"] #exploreVideoModal .explore-modal-share {
    left: auto !important;
    right: 72px !important;
}

[dir="rtl"] #exploreVideoModal .explore-modal-prev {
    left: auto !important;
    right: 28px !important;
}

[dir="rtl"] #exploreVideoModal .explore-modal-next {
    right: auto !important;
    left: 28px !important;
}

[dir="rtl"] #exploreVideoModal .explore-modal-details {
    right: auto !important;
    left: 20px !important;
}

[dir="rtl"] #exploreVideoModal .explore-video-details-btn-overlay {
    left: auto !important;
    right: 18px !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {

    #exploreVideoModal .explore-video-stage {
        gap: 18px !important;
    }

    #exploreVideoModal .explore-video-preview {
        width: 180px !important;
        height: 320px !important;
    }

    #exploreVideoModal .explore-video-active {
        width: min(
            380px,
            34vw,
            calc((100vh - 40px) * .5625)
        ) !important;

        height: min(
            676px,
            calc(100vh - 40px)
        ) !important;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

    .explore-reels-section {
        padding: 30px 0 40px;
    }

    .explore-video-card,
    .explore-reel-card {
        border-radius: 11px;
    }

    .explore-video-action {
        min-height: 34px;
        opacity: 1;
        transform: none;
    }
}


/* =========================================================
   TABLET MODAL
========================================================= */

@media (max-width: 900px) {

    #exploreVideoModal .explore-video-stage {
        gap: 12px !important;
    }

    #exploreVideoModal .explore-video-preview {
        width: 170px !important;
        height: 430px !important;
    }

    #exploreVideoModal .explore-video-active {
        width: 320px !important;

        height: min(
            590px,
            75vh
        ) !important;

        min-height: 480px !important;
    }

    .explore-video-info-action {
        min-width: 90px;

        padding: 0 10px;
    }
}


/* =========================================================
   MOBILE MODAL
========================================================= */

@media (max-width: 991px) {

    #exploreVideoModal .explore-video-stage {
        gap: 0 !important;
    }

    #exploreVideoModal .explore-video-preview {
        display: none !important;
    }

    #exploreVideoModal .explore-video-active {
        width: min(
            92vw,
            calc((100vh - 20px) * .5625)
        ) !important;

        height: min(
            calc(100vh - 20px),
            calc(92vw * 1.7777778)
        ) !important;

        min-height: 0 !important;

        border-radius: 10px !important;
    }

    #exploreVideoModal .explore-modal-prev {
        left: 10px !important;
    }

    #exploreVideoModal .explore-modal-next {
        right: 10px !important;
    }

    [dir="rtl"] #exploreVideoModal .explore-modal-prev {
        left: auto !important;
        right: 10px !important;
    }

    [dir="rtl"] #exploreVideoModal .explore-modal-next {
        right: auto !important;
        left: 10px !important;
    }
}


/* =========================================================
   MOBILE SECTION
========================================================= */

@media (max-width: 576px) {

    .explore-reels-section {
        width: 100%;
        padding: 25px 0 35px;
    }

    .explore-reels-heading {
        margin-bottom: 16px;
    }

    .explore-reels-heading h2 {
        font-size: 20px;
    }

    .explore-reels-slider {
        width: calc(100% + 10px);

        margin-left: -5px;
        margin-right: -5px;
    }

    .explore-reels-slider .slick-slide {
        padding-left: 5px;
        padding-right: 5px;
    }

    .explore-video-card,
    .explore-reel-card {
        border-radius: 9px;
    }

    /* VIEWS */

    .explore-video-views {
        top: 8px;
        left: 8px;

        min-height: 25px;

        padding: 5px 7px;

        font-size: 9px;
    }

    .explore-video-views svg {
        width: 13px;
        height: 13px;
    }

    /* SHARE */

    .explore-video-share {
        top: 8px;
        right: 8px;

        width: 32px;
        height: 32px;
    }

    .explore-video-share svg {
        width: 14px;
        height: 14px;
    }

    /* PLAY */

    .explore-play-icon {
        width: 46px;
        height: 46px;

        opacity: .9;
    }

    .explore-play-icon svg {
        width: 19px;
        height: 19px;
    }

    /* RELATED */

    .explore-video-bottom {
        left: 6px;
        right: 6px;
        bottom: 42px;

        padding: 6px;

        gap: 6px;
    }

    .explore-video-related-image {
        flex-basis: 30px;

        width: 30px !important;
        height: 30px !important;
    }

    .explore-video-related-name {
        font-size: 9px;
    }

    .explore-video-related-price {
        font-size: 9px;
    }

    /* ACTION */

    .explore-video-action {
        left: 6px;
        right: 6px;
        bottom: 6px;

        min-height: 32px;

        padding: 6px 8px;

        font-size: 9px;
    }

    .explore-video-action svg {
        width: 13px;
        height: 13px;
    }

    /* MODAL */

    #exploreVideoModal .explore-video-active {
        width: 88vw !important;

        height: calc(88vw * 1.7777778) !important;

        max-height: calc(100vh - 20px) !important;
    }

    /* MODAL BUTTONS */

    #exploreVideoModal .explore-modal-nav {
        width: 40px !important;
        height: 40px !important;
    }

    #exploreVideoModal .explore-modal-close,
    #exploreVideoModal .explore-modal-share,
    #exploreVideoModal .explore-modal-details,
    #exploreVideoModal .explore-video-details-btn-overlay {
        width: 36px !important;
        height: 36px !important;
    }

    #exploreVideoModal .explore-modal-close {
        top: 10px !important;
        right: 10px !important;
    }

    #exploreVideoModal .explore-modal-share {
        top: 10px !important;
        right: 54px !important;
    }

    #exploreVideoModal .explore-modal-details {
        right: 10px !important;
        bottom: 10px !important;
    }

    #exploreVideoModal .explore-video-details-btn-overlay {
        right: 10px !important;
        bottom: 105px !important;
    }

    /* INFO */

    .explore-video-info-overlay {
        padding: 60px 12px 12px;
    }

    .explore-video-info-main {
        gap: 8px;
    }

    .explore-video-info-image {
        width: 48px;
        height: 48px;

        flex-basis: 48px;
    }

    .explore-video-info-name {
        font-size: 13px;

        max-width: 145px;
    }

    .explore-video-info-price {
        font-size: 12px;
    }

    .explore-video-info-action {
        min-width: 92px;

        height: 38px;

        padding: 0 10px;

        font-size: 11px;
    }

    .explore-video-info-details {
        max-height: 125px;

        font-size: 11px;

        line-height: 1.6;
    }

    /* AUDIO */

    .explore-video-audio-controls {
        right: 88%;
        top: 2%;

        gap: 4px;

        padding: 5px 6px;
    }

    .explore-video-audio-btn {
        width: 30px;
        height: 30px;

        min-width: 30px;
        min-height: 30px;
    }

    .explore-video-audio-btn svg {
        width: 16px;
        height: 16px;
    }

    .explore-video-volume-value {
        min-width: 36px;

        font-size: 10px;
    }

    /* ADS */

    .explore-reel-product {
        left: 7px;
        right: 7px;
        bottom: 7px;
    }

    .explore-reel-product-name {
        font-size: 11px;
    }

    .explore-reel-product-price {
        font-size: 11px;
    }

    .explore-reel-product-image {
        width: 45px !important;
        height: 45px !important;

        min-width: 45px;
        min-height: 45px;

        max-width: 45px;
        max-height: 45px;
    }

    .explore-reel-add-cart {
        height: 42px;

        border-radius: 8px;

        font-size: 11px;
    }

    /* RTL */

    [dir="rtl"] #exploreVideoModal .explore-modal-close {
        right: auto !important;
        left: 10px !important;
    }

    [dir="rtl"] #exploreVideoModal .explore-modal-share {
        left: auto !important;
        right: 54px !important;
    }

    [dir="rtl"] #exploreVideoModal .explore-modal-details {
        right: auto !important;
        left: 10px !important;
    }

    [dir="rtl"] #exploreVideoModal .explore-video-details-btn-overlay {
        right: auto !important;
        left: 10px !important;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .explore-reels-section {
        padding-top: 20px;
    }

    .explore-reels-heading h2 {
        font-size: 18px;
    }

    .explore-video-card,
    .explore-reel-card {
        border-radius: 8px;
    }

    .explore-video-related-name {
        font-size: 8px;
    }

    .explore-video-related-price {
        font-size: 8px;
    }

    .explore-video-action {
        font-size: 8px;
    }

    .explore-video-info-name {
        max-width: 115px;
    }

    .explore-video-info-action {
        min-width: 82px;

        padding: 0 8px;

        font-size: 10px;
    }
}


/* =========================================================
   MOBILE MODAL - FINAL
========================================================= */

@media (max-width: 700px) {

    #exploreVideoModal .explore-modal-dialog {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
    }

    #exploreVideoModal .explore-modal-content {
        width: 100% !important;
        height: 100% !important;

        border-radius: 0 !important;
    }

    #exploreVideoModal .explore-video-stage {
        gap: 0 !important;
    }

    #exploreVideoModal .explore-video-preview {
        display: none !important;
    }

    #exploreVideoModal .explore-video-active {
        width: min(420px, 94vw) !important;

        height: min(
            745px,
            92vh
        ) !important;

        min-height: 0 !important;

        margin: auto;

        border-radius: 12px !important;
    }

    #exploreVideoModal .explore-modal-prev,
    #exploreVideoModal .explore-modal-next {
        display: none !important;
    }
}


/* =========================================================
   FINAL SAFETY - PREVENT HORIZONTAL OVERFLOW
========================================================= */

.explore-reels-section,
.explore-reels-slider {
    max-width: 100vw;
}

.explore-reels-section img,
.explore-reels-section video,
.explore-reels-section iframe {
    max-width: 100%;
}


/* =========================================================
   FINAL RTL
========================================================= */

html[dir="rtl"] .explore-modal-info-section,
body.rtl .explore-modal-info-section {
    direction: rtl;
}
.explore-modal-info-section{
    position: absolute;
    top: 72%;
    right: 40%;
    z-index: 100000;
    color: #fff;
    font-weight: bold;
}
.explore-video-product-top{
    display: flex;
    gap: 10px;
}
.explore-video-product-image{
    display: flex;
    gap: 10px;
}
#exploreVideoModal .explore-video-product-image {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    min-width: 42px;
    min-height: 42px;

    max-width: 42px;
    max-height: 42px;

    overflow: hidden;

    border-radius: 5px;
}


#exploreVideoModal .explore-video-product-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}
/* =========================================================
   PRODUCT NAME
   ========================================================= */

#exploreVideoModal .explore-video-product-name {
    overflow: hidden;

    color: #fff;

    font-size: 12px;
    font-weight: 600;

    line-height: 1.3;

    white-space: nowrap;
    text-overflow: ellipsis;
}
/* =========================================================
   PRODUCT PRICE
   ========================================================= */

#exploreVideoModal .explore-video-product-price {
    margin-top: 3px;

    color: #fff;

    font-size: 11px;
    font-weight: 600;

    line-height: 1.2;
}


/* =========================================================
   ADD TO CART / ACTION
   ========================================================= */

#exploreVideoModal .explore-video-product-action {
    width: 100%;

    min-height: 34px;

    margin-top: 7px;

    padding: 7px 10px;

    border: 0;
    border-radius: 6px;

    background: #fff;

    color: #111 !important;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    font-size: 14px;
    font-weight: 600;

    line-height: 1.2;

    text-decoration: none !important;

    white-space: nowrap;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}


#exploreVideoModal .explore-video-product-action:hover {
    background: #f5f5f5;

    color: #111 !important;

    text-decoration: none !important;

    transform: translateY(-1px);
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

#exploreVideoModal .explore-video-product-description {
    margin-top: 8px;

    color: rgba(255, 255, 255, .86);

    font-size: 12px;

    line-height: 1.7;
}

#exploreVideoModal .explore-modal-info-section {
    width: min(100%, 405px);
    margin: 0 auto;
}

#exploreVideoModal .explore-video-product-card {
    width: 100%;
}

#exploreVideoModal .explore-video-product-action {
    width: 98%;
    margin-top: 1rem;
    display: block;
    text-align: center;
}
.explore-video-product-content{
    margin-top: auto;
    margin-bottom: auto;
}
/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 1600px) {
    #exploreVideoModal .explore-modal-info-section {
        width: min(100%, 330px);
        margin: 0 auto;
    }
    .explore-modal-info-section {
        top: 80%;
    }
}
@media (max-width: 576px) {

    #exploreVideoModal .explore-modal-info-section {
        right: 8%;
        width: min(100%, 377px);
        top: 79%;
    }

    #exploreVideoModal .explore-video-product-card {
        padding: 6px;
        border-radius: 6px;
    }

    #exploreVideoModal .explore-video-product-top {
        gap: 6px;
    }

    #exploreVideoModal .explore-video-product-image {
        flex-basis: 30px;

        width: 30px;
        height: 30px;

        min-width: 30px;
        min-height: 30px;

        max-width: 30px;
        max-height: 30px;
    }

    #exploreVideoModal .explore-video-product-name {
        font-size: 9px;
    }

    #exploreVideoModal .explore-video-product-price {
        font-size: 9px;
    }

    #exploreVideoModal .explore-video-product-action {
        min-height: 32px;

        padding: 6px 8px;

        font-size: 9px;
    }
}
@media (min-width: 1800px) {
    #exploreVideoModal .explore-modal-info-section {
        width: min(100%, 391px);
    }
}


/* =========================================================
   EXPLORE MODAL - ENTITY ACCORDION
========================================================= */

#exploreVideoModal .explore-video-product-top {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* CONTENT */

#exploreVideoModal .explore-video-product-content {
    flex: 1;
    min-width: 0;
}


/* ACCORDION BUTTON */

#exploreVideoModal .explore-video-accordion-btn {
    flex: 0 0 auto;

    margin-left: auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 4px;

    padding: 4px 7px;

    border: 0;
    outline: none;

    background: transparent;

    color: #fff;

    font-size: 10px;
    font-weight: 600;

    line-height: 1;

    cursor: pointer;

    white-space: nowrap;

    transition:
        color .2s ease,
        opacity .2s ease;
}


#exploreVideoModal .explore-video-accordion-btn:hover {
    opacity: .8;
}


#exploreVideoModal .explore-video-accordion-btn svg {
    flex: 0 0 auto;

    transition:
        transform .25s ease;
}


#exploreVideoModal .explore-video-accordion-btn.active svg {
    transform: rotate(180deg);
}


/* =========================================================
   DETAILS SECTION
========================================================= */

#exploreVideoModal #exploreVideoInfoDetails {
    display: none;

    width: 100%;

    margin-top: 8px;

    padding: 0;

    background: #fff;

    color: #111;

    border-radius: 7px;

    overflow: hidden;

    box-sizing: border-box;
}


/* INNER CONTENT */

#exploreVideoModal .explore-video-accordion-content {
    width: 100%;

    color: #111;

    text-align: start;
}


/* TITLE */

#exploreVideoModal .explore-video-accordion-title {
    margin-bottom: 6px;

    color: #111;

    font-size: 12px;
    font-weight: 700;

    line-height: 1.4;
}


/* TEXT */

#exploreVideoModal .explore-video-accordion-text {
    color: #222;

    font-size: 11px;
    font-weight: 400;

    line-height: 1.7;

    white-space: normal;

    word-break: break-word;
}


/* RTL */

[dir="rtl"] #exploreVideoModal .explore-video-accordion-btn {
    margin-left: 0;
    margin-right: auto;
}
/* =========================================================
   EXPLORE VIDEO DETAILS
========================================================= */

.explore-video-info-details {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 50;

    display: none;

    overflow-y: auto;

    background: #fff;
    color: #000;

    border-radius: 18px 18px 0 0;

    box-shadow:
        0 -8px 30px rgba(0, 0, 0, 0.18);

    padding: 22px 20px 24px;

    box-sizing: border-box;

    direction: inherit;
}


/* =========================================================
   DETAILS INNER
========================================================= */

.explore-video-details-inner {
    position: relative;

    width: 100%;
    height: 100%;

    color: #000;
}


/* =========================================================
   CLOSE
========================================================= */

.explore-video-details-close {
    position: absolute;

    top: 0;
    right: 0;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: #f2f2f2;
    color: #000;

    cursor: pointer;

    padding: 0;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.explore-video-details-close:hover {
    background: #e5e5e5;
    transform: scale(1.05);
}


/* =========================================================
   TITLE
========================================================= */

.explore-video-details-title {
    padding-right: 48px;

    margin-bottom: 20px;

    font-size: 20px;
    font-weight: 700;

    line-height: 1.4;

    color: #000;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.explore-video-details-description {
    font-size: 15px;

    line-height: 1.8;

    color: #222;

    white-space: normal;
}


/* =========================================================
   ACCORDION BUTTON
========================================================= */

.explore-video-accordion-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    border: 0;

    background: transparent;

    color: inherit;

    cursor: pointer;

    padding: 6px 8px;

    font-size: 13px;
    font-weight: 600;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.explore-video-accordion-btn:hover {
    opacity: 0.75;
}

.explore-video-accordion-btn svg {
    display: block;

    flex-shrink: 0;

    transition:
        transform 0.2s ease;
}


/* =========================================================
   MODAL CONTENT
========================================================= */

.explore-modal-content {
    position: relative;
}

.explore-product-details-inner {
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding: 18px;
    background: #fff;
    color: #111;
}

.explore-video-details-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background: #f3f3f3;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.explore-product-shop-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 12px;
    padding-right: 35px;
}

.explore-product-gallery {
    width: 100%;
    overflow: hidden;
}

.explore-product-thumbnails {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;

    overflow-x: auto;
    overflow-y: hidden;

    padding-bottom: 6px;

    scroll-behavior: smooth;

    -webkit-overflow-scrolling: touch;
}

.explore-product-thumbnails::-webkit-scrollbar {
    height: 5px;
}

.explore-product-thumbnails::-webkit-scrollbar-thumb {
    border-radius: 10px;
}

.explore-product-thumb {
    flex: 0 0 90px;
    width: 90px;
    height: 110px;

    border-radius: 8px;
    overflow: hidden;

    cursor: pointer;
}

.explore-product-thumb img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: fill;
}

.explore-product-name {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 700;
}

.explore-product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 7px;
    flex-wrap: wrap;
}

.explore-product-current-price {
    font-size: 17px;
    font-weight: 700;
}

.explore-product-old-price {
    font-size: 13px;
    text-decoration: line-through;
    color: #999;
}

.explore-product-discount {
    font-size: 11px;
    background: #111;
    color: #fff;
    padding: 4px 7px;
    border-radius: 5px;
}

.explore-product-option-section {
    margin-top: 13px;
}

.explore-product-option-label {
    font-size: 11px;
    font-weight: 600;
    color: #777;
    margin-bottom: 6px;
}

.explore-product-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.explore-product-option-btn {
    min-width: 48px;
    height: 32px;
    padding: 0 12px;
    border: 1px solid #d5d5d5;
    border-radius: 7px;
    background: #fff;
    color: #222;
    font-size: 11px;
    cursor: pointer;
}

.explore-product-option-btn.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

.explore-product-colors {
    align-items: center;
}

.explore-product-color-btn {
    width: 31px;
    height: 31px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    padding: 3px;
    cursor: pointer;
}

.explore-product-color-btn.active {
    border: 2px solid #111;
}

.explore-product-color-circle {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.explore-product-quantity {
    display: flex;
    align-items: center;
    width: 50%;
    height: 38px;
    margin-top: 15px;
    border: 1px solid #ddd;
    border-radius: 7px;
    overflow: hidden;
}

.explore-product-qty-btn {
    width: 40px;
    height: 100%;
    border: 0;
    background: #f7f7f7;
    cursor: pointer;
    font-size: 18px;
}

.explore-product-qty-input {
    flex: 1;
    min-width: 0;
    height: 100%;
    border: 0;
    outline: 0;
    text-align: center;
    font-weight: 600;
}

.explore-product-actions {
    display: flex;
    gap: 7px;
    margin-top: 13px;
}

.explore-product-add-cart,
.explore-product-buy-now {
    flex: 1;
    height: 40px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.explore-product-add-cart {
    background: #111;
    border: 1px solid #111;
    color: #fff;
}

.explore-product-buy-now {
    background: #fff;
    border: 1px solid #111;
    color: #111;
}

.explore-product-open-link {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    flex: 0 0 40px;
}

.explore-product-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 35px;
}
.explore-video-info-details {
    overflow: hidden;
}

.explore-product-details-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
}
.explore-video-details-close {
    flex: 0 0 auto;
    align-self: flex-start;
    margin-bottom: 25px;
}

.explore-product-actions {
    display: flex;
    gap: 7px;
    margin-top: auto;
    flex-shrink: 0;
}
