/* --- Desktop Grid Layout (3 Videos) --- */
.sr-grid-wrapper_23ff9893 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1200px; /* Prevents the 9:16 videos from getting too massive on huge monitors */
    margin: 0 auto; /* Centers the grid on the page */
}

.sr-container_23ff9893 {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16; /* MAGIC LINE: Forces strict TikTok/Reel shape on desktop */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

/* --- Mobile TikTok Fullscreen Layout --- */
@media (max-width: 767px) {
    .sr-grid-wrapper_23ff9893 {
        display: block;
        height: 100vh; /* Fills the actual phone screen */
        width: 100vw;
        margin-left: calc(-50vw + 50%); /* Forces full width ignoring Elementor padding */
        overflow-y: scroll;
        scroll-snap-type: y mandatory; /* Creates the vertical swipe snap */
        scroll-behavior: smooth;
        max-width: none;
    }

    .sr-container_23ff9893 {
        height: 100vh; /* Ensures it fills the whole phone screen vertically */
        width: 100%;
        aspect-ratio: auto; /* Removes 9:16 restriction so it adapts to extra-tall modern phones perfectly */
        border-radius: 0;
        scroll-snap-align: start;
    }
}

/* --- Video & UI Overlays --- */
.sr-video_23ff9893 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video fills the 9:16 box without black bars */
}

.sr-video-placeholder_23ff9893 {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background: #111;
}

.sr-mute-toggle_23ff9893 {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.sr-mute-toggle_23ff9893:hover {
    opacity: 1;
}

.sr-overlay_23ff9893 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    pointer-events: none;
}

.sr-bottom-left_23ff9893 {
    flex: 1;
    pointer-events: auto;
    padding-bottom: 10px;
}

.sr-title_23ff9893 {
    color: #fff;
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
}

.sr-price_23ff9893 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
}

.sr-add-to-cart_23ff9893 {
    background: #e21b70;
    color: #fff !important;
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.1s;
}

.sr-add-to-cart_23ff9893:active {
    transform: scale(0.95);
}

.sr-actions-right_23ff9893 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    pointer-events: auto;
    align-items: center;
    padding-bottom: 20px;
}

.sr-action-btn_23ff9893 {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s;
}

.sr-action-btn_23ff9893 svg {
    margin-bottom: 6px;
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.6));
    transition: fill 0.2s, transform 0.2s;
}

/* Ensure Like Heart turns red when active */
.sr-action-btn_23ff9893.is-liked svg {
    fill: #ff0000 !important;
}

.sr-action-btn_23ff9893 span {
    font-size: 13px;
    font-weight: 600;
    text-shadow: 0px 1px 3px rgba(0,0,0,0.8);
}