.crm-bazaar-hero {
    padding: 120px 0 50px;
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.95) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.crm-filter-bar {
    background: var(--bg-glass, rgba(30, 41, 59, 0.65));
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
    border-radius: var(--radius-lg, 16px);
    padding: 1.25rem;
}

.crm-card {
    background: var(--bg-glass, rgba(30, 41, 59, 0.6));
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
    border-radius: var(--radius-lg, 16px);
    overflow: hidden;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
}

.crm-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.crm-card-thumb {
    aspect-ratio: 16 / 10;
    background: #0f172a;
    overflow: hidden;
    position: relative;
}

.crm-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crm-card-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.2s;
}

.crm-card:hover .crm-card-play {
    opacity: 1;
}

.crm-card-play i {
    font-size: 2.5rem;
    color: #fff;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.crm-detail-shot {
    border-radius: var(--radius-lg, 16px);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.crm-video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg, 16px);
    background: #000;
}

.crm-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.crm-screenshot-carousel .crm-carousel-img {
    max-height: 480px;
    object-fit: contain;
    background: #0f172a;
}

.crm-carousel-indicators {
    position: static;
    margin: 0.75rem 0 0;
    gap: 0.5rem;
    justify-content: center;
}

.crm-carousel-indicators button {
    width: 72px;
    height: 48px;
    text-indent: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0.6;
}

.crm-carousel-indicators button.active {
    opacity: 1;
    border-color: var(--primary, #6366f1);
}

.crm-carousel-indicators button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crm-video-modal-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
}

.crm-video-modal-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.crm-admin-thumb {
    width: 120px;
    height: 72px;
    object-fit: cover;
}

.crm-admin-thumb-wrap {
    display: inline-block;
}
