.el-product-thumb {
    background-color: rgba(12, 12, 53, 0.9);
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 20%);
}

.el-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    object-position: center;
    position: absolute;
    left: 0;
    top: 0;
    transition: .5s cubic-bezier(.30, .30, .05, .95);
}

.el-product-thumb.format-jpg img {
    object-fit: cover;
}

.el-product-thumb .onsale {
    background-color: #ff4c4c;
    color: var(--galactic-white, #fff);
    border-radius: 2px;
    padding: 7px 15px;
    text-align: center;
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 11px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    z-index: 1;
}

.el-product-thumb .el-product-lightbox {
    background-color: #fff;
    color: var(--galactic-dark, #1b0e22);
    width: 45px;
    height: 45px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    right: -100%;
    top: 10px;
    transition: all cubic-bezier(.4, 0, .2, 1) 450ms;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

.el-product-thumb .el-product-lightbox:hover {
    background-color: var(--galactic-primary-color, #9841ff);
    color: var(--galactic-white, #fff);
}

.el-product-card:hover .el-product-thumb .el-product-lightbox {
    right: 10px;
    visibility: visible;
    opacity: 1;
}

.el-product-thumb a.button {
    width: 70%;
    height: 45px;
    line-height: 45px;
    text-align: center;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) translateY(100%);
    padding: 0 20px;
    margin-bottom: 20px;
    visibility: hidden;
    opacity: 0;
    transition: .5s cubic-bezier(.30, .30, .05, .95);
}

.el-product-card:hover .el-product-thumb a.button {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.el-product-card .button.loading::after {
    font-family: WooCommerce;
    content: "\e01c";
    vertical-align: top;
    font-weight: 400;
    position: absolute;
    top: 0;
    margin-left: 10px;
    animation: spin 2s linear infinite;
}

.el-product-card .button.added::after {
    font-family: WooCommerce;
    content: "\e017";
    margin-left: 0.53em;
    vertical-align: bottom;
}

.el-heading-wrap {
    margin-top: 15px;
}

.el-heading-wrap .meta-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.el-heading-wrap .dl-cat-items a {
    font-size: 12px;
    font-weight: 600;
    color: #f1d6c5;
    text-transform: uppercase;
    display: block;
    cursor: pointer;
    line-height: 1;
}

.el-heading-wrap .dl-cat-items a:hover {
    color: var(--galactic-white, #fff);
}

.el-heading-wrap .star-rating {
    overflow: hidden;
    position: relative;
    height: 15px;
    line-height: 1;
    font-size: 14px;
    width: 69px;
}

.el-heading-wrap .star-rating span {
    overflow: hidden;
    top: 0;
    left: 0;
    position: absolute;
    color: #FF9529;
    font-size: 0;
}

.el-heading-wrap .star-rating span::before,
.el-heading-wrap .star-rating::before {
    font-family: 'Line Awesome Free';
    content: "\f005 \f005 \f005 \f005 \f005";
    font-weight: 900;
    font-size: 14px;
}

.el-heading-wrap .star-rating span::before {
    text-indent: 0;
}

.el-heading-wrap .star-rating::before {
    top: 0;
    left: 0;
    position: absolute;
}

.el-product-title {
    color: var(--galactic-heading-color, #ffffff);
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 8px 0;
}

.el-product-title a {
    color: var(--galactic-heading-color, #ffffff);
}

.el-product-title a:hover {
    color: var(--galactic-primary-color, #9841ff);
}

.el-heading-wrap .price {
    color: var(--galactic-primary-color, #9841ff);
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 2px;
    flex-direction: row-reverse;
}

.el-heading-wrap .price del {
    opacity: 0.6;
}