.somesankarit-carousel-wrapper {
    position: relative;
    padding: 20px 40px; /* Base padding for mobile/tablet */
}

@media (min-width: 1024px) {
    .somesankarit-carousel-wrapper {
        padding: 20px 80px; 
    }
    .somesankarit-nav-next { right: 10px !important; }
    .somesankarit-nav-prev { left: 10px !important; }
}

.somesankarit-phone-card {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    background-color: #000;
    border-radius: 36px;
    border: 12px solid #1a1a1a;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2), inset 0 0 0 2px #333;
    overflow: hidden;
    margin: 0 auto;
}

.somesankarit-dynamic-island {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 32%;
    height: 25px;
    background-color: #000;
    border-radius: 20px;
    z-index: 10;
    box-shadow: inset 0 0 2px rgba(255,255,255,0.1);
}

.somesankarit-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111;
}
.somesankarit-video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}

.somesankarit-video-cover {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: #222;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}
.somesankarit-video-cover::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.4);
    transition: background-color 0.3s ease;
    z-index: 1;
}
.somesankarit-video-cover:hover::before {
    background-color: rgba(0,0,0,0.2);
}
.somesankarit-video-cover:hover {
    background-color: #2a2a2a;
}
.somesankarit-play-btn {
    width: 0;
    height: 0;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 40px solid rgba(255,255,255,0.9);
    transition: transform 0.2s ease, border-left-color 0.2s ease;
    margin-left: 10px;
    z-index: 2;
}
.somesankarit-video-cover:hover .somesankarit-play-btn {
    transform: scale(1.1);
    border-left-color: #E334E3;
}

.somesankarit-placeholder {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-family: "Poppins", sans-serif;
}

.somesankarit-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.85) 60%, transparent 100%);
    padding: 60px 20px 20px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    pointer-events: none;
    z-index: 5;
}

.somesankarit-title {
    color: #E334E3;
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #E334E3;
    pointer-events: auto;
    flex-shrink: 0;
}

.somesankarit-list {
    list-style: none;
    margin: 0;
    padding: 0;
    color: #B8B8B8;
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    line-height: 1.4;
    overflow-y: auto;
    flex-grow: 1;
    pointer-events: auto;
    padding-right: 5px;
}

.somesankarit-list::-webkit-scrollbar { width: 4px; }
.somesankarit-list::-webkit-scrollbar-track { background: transparent; }
.somesankarit-list::-webkit-scrollbar-thumb { background: #E334E3; border-radius: 10px; }

.somesankarit-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}
.somesankarit-list li span {
    display: inline-flex;
    margin-right: 8px;
    margin-top: 3px;
}
.somesankarit-list li svg { width: 16px; height: 16px; }

.somesankarit-nav-prev,
.somesankarit-nav-next {
    color: #E334E3 !important;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 24px !important;
    font-weight: bold;
}