/* product type 2 */
.ninetheme-loop-product.type-11 {
    position: relative;
    border-radius: 5px;
    border: 1px solid var(--ninetheme-border);
    background: var(--ninetheme-light);
}

.ninetheme-loop-product.type-11:hover {
    z-index: 4;
}

.type-11 .details-wrapper {
    padding: 15px;
    position: relative;
    border-top: 1px solid var(--ninetheme-border);
}

.type-11 .details-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.type-11 .product-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: absolute;
    top: 10px;
    right: 10px;
    flex-direction: column;
    background: var(--ninetheme-light);
    padding: 10px 7px;
    border: 1px solid;
    border-color: var(--ninetheme-border);
    border-radius: 3px;
    opacity: 0;
}

.type-11:hover .product-actions {
     opacity: 1;
}

.type-11 .ninetheme-btn {
    width: 100%;
    border-radius: 5px;
    margin: 0 auto;
}

.type-11 .ninetheme-swatches-wrapper {
    margin-top: 15px;
}

.type-11 .product-stock-rating {
    line-height: 1;
}

.type-11 .product-footer {
    max-width: 100%;
    width: 100%;
    left: auto;
    z-index: 2;
    padding: 0 15px;
}

.type-11 .content-hidden {
    position: absolute;
    background-color: var(--ninetheme-light);
    border: 1px solid var(--ninetheme-border);
    border-radius: 5px;
    -webkit-box-shadow: 0 5px 20px -5px rgba(33,37,41,.25);
    box-shadow: 0 5px 20px -5px rgba(33,37,41,.25);
    pointer-events: none;
    opacity: 0;
    will-change: opacity;
    -webkit-transition: all 0.15s cubic-bezier(.17,.62,.44,.99);
    transition: all 0.15s cubic-bezier(.17,.62,.44,.99);
    inset: -5px -5px -15px -5px;
    visibility: hidden;
    transform: scale(.98);
    margin-bottom: -106px;
}


@media screen and (min-width: 992px) {
    .type-11 .product-footer {
        position: absolute;
        opacity: 0;
        visibility: hidden;
        will-change: opacity;
        -webkit-transition: all 0.15s cubic-bezier(.17,.62,.44,.99);
        transition: all 0.15s cubic-bezier(.17,.62,.44,.99);
        margin-bottom: 0;
    }
    .type-11:hover .product-footer,
    .type-11:hover .content-hidden {
        opacity: 1;
        visibility: visible;
    }
    .type-11:hover .content-hidden {
        transform: scale(1);
    }
    .type-11:hover .thumb-wrapper,
    .type-11:hover .product-labels,
    .type-11:hover .details-wrapper {
        z-index: 1;
    }
    .type-11:hover {
        z-index: 2;
    }
}

@media (max-width: 992px) {
    .ninetheme-loop-product .product-inner {
        height: 100%;
        padding-bottom: 15px;
    }
    .outofstock .product-footer,
    .type-11:not(.product-type-variable) .product-footer {
        position: absolute;
        bottom: 15px;
    }
}

@media(max-width: 576px) {
    .type-11 .product-footer {
        width: 100%;
    }
}
.shop-catalog-mode .type-11 .content-hidden {
    margin-bottom: 10px;
}
