/* ======================================================
    VARIABLES GLOBALES
    ====================================================== */
:root {
    --primary: #3a4ee5;
    --primary-hover: #2a3ad0;
    --secondary: #ffd783;
    --border-light: #e5e5e5;
    --bg-light: #f1f4f7;
    --text-dark: #313b50;
    --text-muted: #777;
    --white: #fff;
    --danger: #f90c4c;
    --success: #54d3c2;
    --font-primary: 'Poppins, sans-serif';
    --font-secondary: 'Quicksand';
    --border-radius: 15px;
    --box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, 0.07);
}

/* ======================================================
    LAYOUT PRINCIPAL
    ====================================================== */
.mn-single-product {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.mn-product-column {
    flex: 0 0 70%;
    max-width: 70%;
    padding: 0 15px;
}

.mn-sidebar-column {
    flex: 0 0 30%;
    max-width: 30%;
    padding: 0 15px;
}

/* ======================================================
    BREADCRUMB
    ====================================================== */
.mn-breadcrumb .gi_breadcrumb_inner {
    margin: 0 0 30px 0;
    padding: 15px 20px;
    border: 1px solid var(--border-light);
    background-color: var(--white);
    border-radius: var(--border-radius);
}

.mn-breadcrumb-title {
    color: var(--text-dark);
    font-size: 15px;
    font-family: var(--font-primary);
    font-weight: 600;
    margin: 0;
    text-transform: capitalize;
}

.mn-breadcrumb-list {
    text-align: right;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mn-breadcrumb-list li {
    display: inline-block;
    font-size: 14px;
    color: var(--text-muted);
}

.mn-breadcrumb-list li a {
    color: var(--text-muted);
    text-decoration: none;
}

.mn-breadcrumb-list li a:hover {
    color: var(--primary);
}

.mn-breadcrumb-list li.active {
    color: var(--primary);
}

.mn-breadcrumb-list li:after {
    content: "/";
    margin: 0 8px;
    color: var(--text-muted);
}

.mn-breadcrumb-list li:last-child:after {
    display: none;
}

/* ======================================================
    TARJETA DE PRODUCTO
    ====================================================== */
.mn-product-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
}

.mn-product-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.mn-gallery-column {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.mn-info-column {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

/* ======================================================
    GALERÍA DE IMÁGENES
    ====================================================== */
.mn-gallery {
    width: 100%;
}

.mn-gallery-main {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 15px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
}

.mn-gallery-main .slick-slide {
    outline: none;
}

.mn-gallery-main .mn-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    height: 400px;
}

.mn-gallery-main .mn-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.mn-gallery-thumbs {
    margin: 0 -5px;
}

.mn-gallery-thumbs .slick-slide {
    padding: 0 5px;
    outline: none;
    cursor: pointer;
}

.mn-gallery-thumbs .mn-thumb {
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    opacity: 0.7;
    transition: all 0.3s ease;
    background: var(--bg-light);
    height: 80px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.mn-gallery-thumbs .slick-current .mn-thumb {
    opacity: 1;
    border-color: var(--primary);
}

.mn-gallery-thumbs .mn-thumb:hover {
    opacity: 1;
}

.mn-gallery-thumbs .mn-thumb img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.mn-gallery-thumbs .slick-prev,
.mn-gallery-thumbs .slick-next {
    width: 28px;
    height: 28px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    z-index: 2;
}

.mn-gallery-thumbs .slick-prev {
    left: -5px;
}

.mn-gallery-thumbs .slick-next {
    right: -5px;
}

.mn-gallery-thumbs .slick-prev:before,
.mn-gallery-thumbs .slick-next:before {
    color: var(--text-dark);
    font-size: 18px;
    opacity: 1;
    font-family: 'slick';
}

/* ======================================================
    INFORMACIÓN DEL PRODUCTO
    ====================================================== */
.mn-product-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-family: var(--font-primary);
    line-height: 1.3;
}

.mn-rating-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.mn-stars {
    display: flex;
    gap: 2px;
}

.mn-stars i {
    color: var(--secondary);
    font-size: 14px;
}

.mn-stars i.grey {
    color: #ddd;
}

.mn-reviews-link a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
}

.mn-reviews-link a:hover {
    color: var(--primary);
}

.mn-price-block {
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.mn-current-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
    font-family: var(--font-secondary);
}

.mn-price-discount {
    background: var(--success);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 12px;
    margin-left: 10px;
    display: inline-block;
}

.mn-old-price {
    font-size: 14px;
    color: var(--text-muted);
}

.mn-old-price span {
    text-decoration: line-through;
    margin-left: 5px;
}

.mn-sku-stock {
    margin-top: 10px;
}

.mn-sku {
    font-size: 14px;
    color: var(--text-muted);
    margin-right: 15px;
}

.mn-stock {
    display: inline-block;
    padding: 3px 10px;
    background: #d1e7dd;
    color: #0f5132;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.mn-stock.out {
    background: #f8d7da;
    color: #842029;
}

/* ======================================================
    SELECTOR DE VARIANTES - NUEVO
    ====================================================== */
.mn-variant-section {
    margin: 20px 0;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.mn-variant-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: block;
}

.mn-variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.mn-variant-option {
    min-width: 60px;
    padding: 8px 15px;
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.mn-variant-option:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.mn-variant-option.selected {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.mn-variant-color {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    cursor: pointer;
    transition: all 0.2s ease;
}

.mn-variant-color:hover {
    transform: scale(1.1);
    border-color: var(--primary);
}

.mn-variant-color.selected {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--primary);
}

.mn-variant-info {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed var(--border-light);
    font-size: 13px;
    color: var(--text-muted);
}

.mn-variant-price {
    font-weight: 600;
    color: var(--primary);
    font-size: 16px;
}

/* ======================================================
    SELECTOR DE CANTIDAD Y BOTONES
    ====================================================== */
.mn-qty-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.mn-qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-light);
    border-radius: 30px;
    width: 120px;
    height: 42px;
    background: var(--white);
}

.mn-qty-control button {
    width: 35px;
    height: 100%;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mn-qty-control button:hover {
    color: var(--primary);
}

.mn-qty-control input {
    width: 40px;
    text-align: center;
    border: none;
    outline: none;
    font-weight: 600;
    background: transparent;
    color: var(--text-dark);
    font-size: 14px;
}

.mn-cart-btn {
    flex: 1;
}

.mn-btn-add {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0 25px;
    height: 42px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.mn-btn-add:hover {
    background: var(--primary-hover);
}

.mn-btn-add i {
    font-size: 16px;
}

.mn-wishlist-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.mn-wishlist-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.mn-wishlist-btn i {
    font-size: 20px;
}

/* ======================================================
    PRODUCTOS RELACIONADOS - NUEVO
    ====================================================== */
.mn-related-products {
    margin-top: 40px;
}

.mn-related-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.mn-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mn-related-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mn-related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.mn-related-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    padding: 10px;
}

.mn-related-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.mn-related-info {
    padding: 15px;
    border-top: 1px solid var(--border-light);
}

.mn-related-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: block;
    text-decoration: none;
}

.mn-related-name:hover {
    color: var(--primary);
}

.mn-related-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

.mn-related-variants {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 5px;
}

/* ======================================================
    TABS DE PRODUCTO
    ====================================================== */
.mn-tabs-wrapper {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-top: 20px;
}

.mn-tabs-nav {
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.mn-tab-btn {
    border: none;
    background: transparent;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
    font-family: var(--font-primary);
}

.mn-tab-btn:hover {
    color: var(--primary);
}

.mn-tab-btn.active {
    color: var(--primary);
    background: rgba(58, 78, 229, 0.1);
}

.mn-tab-pane {
    display: none;
    padding: 10px 0;
}

.mn-tab-pane.active {
    display: block;
}

.mn-tab-content {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* Videos */
.mn-video-main {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
    margin-bottom: 20px;
}

.mn-video-main iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.mn-video-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.mn-video-thumb {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.mn-video-thumb:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.mn-video-thumb img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.mn-video-thumb span {
    font-weight: 500;
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.3;
}

/* Especificaciones */
.mn-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.mn-specs-table tr {
    border-bottom: 1px solid var(--border-light);
}

.mn-specs-table tr:last-child {
    border-bottom: none;
}

.mn-specs-table th {
    width: 30%;
    padding: 12px 10px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
}

.mn-specs-table td {
    padding: 12px 10px;
    color: var(--text-muted);
}

/* Reviews */
.mn-review-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
}

.mn-review-item:last-child {
    border-bottom: none;
}

.mn-review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.mn-reviewer {
    font-weight: 600;
    color: var(--text-dark);
}

.mn-review-rating {
    color: var(--secondary);
    font-size: 13px;
}

.mn-review-text {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ======================================================
    SIDEBAR DE FILTROS
    ====================================================== */
.mn-sidebar-wrap {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 20px;
    position: sticky;
    top: 30px;
}

.mn-sidebar-block {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 15px;
}

.mn-sidebar-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.mn-sb-header {
    padding: 5px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mn-sb-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: var(--text-dark);
    font-family: var(--font-secondary);
}

.mn-sb-header i {
    transition: transform 0.3s;
    font-size: 20px;
    color: var(--text-muted);
}

.mn-sb-header.active i {
    transform: rotate(180deg);
}

.mn-sb-content {
    display: none;
    padding: 15px 0 5px;
}

.mn-sb-content.active {
    display: block;
}

.mn-sb-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mn-sb-content li {
    margin-bottom: 10px;
}

.mn-filter-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
}

.mn-filter-item:hover {
    color: var(--primary);
}

.mn-filter-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--primary);
}

.mn-filter-count {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 13px;
}

.mn-color-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mn-color-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.mn-color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 0 0 1px var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mn-color-swatch:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 1px var(--primary);
}

.mn-price-inputs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    gap: 10px;
}

.mn-price-field {
    display: flex;
    align-items: center;
    gap: 3px;
    background: var(--bg-light);
    padding: 5px 10px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
}

.mn-price-field span {
    font-size: 13px;
    color: var(--text-dark);
}

.mn-price-field input {
    width: 60px;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 13px;
    color: var(--text-dark);
    outline: none;
    padding: 0;
}

#mn-price-slider {
    height: 4px;
    background: var(--border-light);
    border-radius: 10px;
    margin: 20px 0;
}

.noUi-connect {
    background: var(--primary);
}

.noUi-horizontal .noUi-handle {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary);
    box-shadow: none;
    cursor: pointer;
    top: -5px;
    right: -7px;
}

.noUi-handle:before,
.noUi-handle:after {
    display: none;
}

.mn-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.mn-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-light);
    color: var(--text-muted);
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.mn-tag:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.mn-apply-filters {
    width: 100%;
    padding: 10px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.mn-apply-filters:hover {
    background: var(--primary-hover);
}

/* ======================================================
    NOTIFICACIONES
    ====================================================== */
.mn-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-left: 4px solid var(--success);
    z-index: 9999;
    transform: translateX(150%);
    opacity: 0;
    transition: all 0.3s;
    max-width: 320px;
}

.mn-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.mn-notification-content {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mn-notification.error {
    border-left-color: var(--danger);
}

.mn-notification i {
    font-size: 20px;
}

.mn-notification.success i {
    color: var(--success);
}

.mn-notification.error i {
    color: var(--danger);
}

.mn-notification span {
    color: var(--text-dark);
    font-size: 14px;
}

/* ======================================================
    RESPONSIVE
    ====================================================== */
@media (max-width: 1199px) {
    .mn-gallery-main .mn-slide {
        height: 350px;
    }

    .mn-related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {

    .mn-product-column,
    .mn-sidebar-column {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .mn-sidebar-wrap {
        position: static;
        margin-top: 30px;
    }

    .mn-gallery-column,
    .mn-info-column {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .mn-info-column {
        margin-top: 30px;
    }

    .mn-gallery-main .mn-slide {
        height: 400px;
    }

    .mn-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .mn-breadcrumb-list {
        text-align: left;
        margin-top: 10px;
    }

    .mn-breadcrumb-list li:after {
        margin: 0 5px;
    }

    .mn-product-title {
        font-size: 20px;
    }

    .mn-gallery-main .mn-slide {
        height: 350px;
    }

    .mn-tabs-nav {
        flex-direction: column;
    }

    .mn-tab-btn {
        width: 100%;
        text-align: left;
    }

    .mn-related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .mn-gallery-main .mn-slide {
        height: 300px;
    }

    .mn-gallery-thumbs .mn-thumb {
        height: 60px;
    }

    .mn-qty-selector {
        flex-wrap: wrap;
    }

    .mn-qty-control {
        width: 100%;
    }

    .mn-video-thumbs {
        grid-template-columns: 1fr;
    }

    .mn-video-thumb img {
        width: 60px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .mn-gallery-main .mn-slide {
        height: 250px;
    }
}



.mn-variant-color {
    width: 18px;
    height: 18px;
    border-radius: 3px;
    /* cuadradito leve */
    border: 1px solid var(--border-light);
    cursor: pointer;
    display: inline-block;
}

.mn-variant-color.selected {
    outline: 2px solid var(--primary);
    outline-offset: 1px;
}

.mn-variant-color:hover {
    /* sin efectos */
}



/* ======================================================
    VIDEOS 
    ====================================================== */
.mn-video-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    cursor: pointer;
}

.mn-video-player img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mn-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mn-video-play-btn:hover {
    background: var(--primary);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.mn-video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.mn-video-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.mn-video-list h5 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 8px;
}

.mn-video-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.mn-video-thumb {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s;
}

.mn-video-thumb:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
    border-color: var(--primary);
}

.mn-video-thumb.active {
    border-color: var(--primary);
    background: rgba(58, 78, 229, 0.05);
}

.mn-video-thumb img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 6px;
}

.mn-video-thumb span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}