/* ==========================================================
   EVOSAH SHOPPABLE SHORTS & REELS STYLING
   ========================================================== */

.evosah-shorts-section {
    width: 100%;
    max-width: 1400px;
    margin: 40px auto 30px auto;
    padding: 0 20px;
    box-sizing: border-box;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
}

.evosah-shorts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.evosah-shorts-title-wrap {
    display: flex;
    flex-direction: column;
}

.evosah-shorts-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #f7a81b 0%, #e05b00 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 6px;
    box-shadow: 0 2px 8px rgba(247, 168, 27, 0.4);
}

.evosah-shorts-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    background-color: #fff;
    border-radius: 50%;
    animation: pulse-dot 1.2s infinite ease-in-out;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(0.8); opacity: 0.6; }
    50% { transform: scale(1.4); opacity: 1; }
}

.evosah-shorts-title {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.evosah-shorts-subtitle {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}

.evosah-shorts-nav-btns {
    display: flex;
    gap: 10px;
}

.evosah-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: all 0.25s ease;
    font-size: 18px;
}

.evosah-nav-btn:hover {
    background: #f7a81b;
    color: #fff;
    border-color: #f7a81b;
    transform: scale(1.08);
}

.evosah-shorts-carousel {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 4px 20px 4px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.evosah-shorts-carousel::-webkit-scrollbar {
    display: none;
}

.evosah-short-card {
    flex: 0 0 220px;
    height: 380px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    background: #000;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
}

@media (min-width: 768px) {
    .evosah-short-card {
        flex: 0 0 240px;
        height: 410px;
    }
}

.evosah-short-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 36px rgba(247, 168, 27, 0.25);
}

.evosah-short-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.evosah-short-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
    pointer-events: none;
}

.evosah-sound-toggle {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
    z-index: 5;
}

.evosah-sound-toggle:hover {
    background: rgba(247, 168, 27, 0.9);
}

.evosah-views-count {
    position: absolute;
    top: 14px;
    left: 14px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    padding: 3px 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 5;
}

.evosah-product-badge {
    position: absolute;
    bottom: 12px;
    left: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 5;
    transition: all 0.2s ease;
}

.evosah-short-card:hover .evosah-product-badge {
    background: #ffffff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.evosah-product-img {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: #f1f5f9;
}

.evosah-product-info {
    flex: 1;
    min-width: 0;
}

.evosah-product-name {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.evosah-product-price {
    font-size: 13px;
    font-weight: 800;
    color: #d97706;
    margin: 0;
}

.evosah-buy-btn {
    background: #f7a81b;
    color: #111;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    flex-shrink: 0;
    transition: transform 0.2s ease, background 0.2s ease;
}

.evosah-buy-btn:hover {
    background: #e05b00;
    color: #fff;
    transform: scale(1.12);
}

/* Fullscreen Modal */
.evosah-reels-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(16px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.evosah-reels-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.evosah-reels-content {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 92vh;
    max-height: 800px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

@media (max-width: 480px) {
    .evosah-reels-content {
        max-width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }
}

.evosah-modal-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.evosah-reels-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.evosah-reels-product-bar {
    position: absolute;
    bottom: 24px;
    left: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 20;
}

.evosah-reels-cta-btn {
    background: linear-gradient(135deg, #f7a81b 0%, #e05b00 100%);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(247, 168, 27, 0.35);
}
