.plg-product-card, .plg-product-card * {
    box-sizing: border-box;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

.plg-product-card {
    /* --productcard-accent-color: $accent_color */
    --productcard-maxwidth: 1000px;
    --productcard-bg: #fff;
    --productcard-titlecolor: #424942;
    --productcard-radius: 10px;
    --productcard-spacing-mid: 20px;
    --productcard-spacing-large: 40px;
    --productcard-fontfamily: Helvetica, aria, 'sans-serif';

    font-size: 16px;
    background-color: var(--productcard-bg);
    padding: var(--productcard-spacing-large);
    gap: var(--productcard-spacing-mid);
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: var(--productcard-maxwidth);
    width: 100%;
    border-radius: var(--productcard-radius);
    box-shadow: 0px 0px 60px -20px rgba(0, 0, 0, 0.1);
    position: relative;
    font-family: var(--productcard-fontfamily);
    overflow: hidden;
    margin: auto;
}

.plg-product-card-detail {
    height: 100%;
    width: 400px;
    position: absolute;
    top: 0;
    right: -100px;
    z-index: 0;
}

.plg-product-card img {
    max-width: 100%;
    transition: all .3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.plg-product-card-image {
    display: flex;
    justify-content: center;
    max-width: 300px;
}

.plg-product-card-content {
    flex: 1;
    min-width: 50%;
    gap: var(--productcard-spacing-mid);
    display: flex;
    flex-direction: column;
}

.plg-product-benefits-list div {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 4px 0;
}

.plg-product-benefits-list div span {
    opacity: .5;
}

.plg-product-title:before,
.plg-product-title:after {
    content: '';
    display: none;
}
.plg-product-title {
    font-family: var(--productcard-fontfamily);
    font-weight: 600;
    font-size: 2.5em;
    line-height: 110%;
    margin: 0 !important;
    padding: 0 !important;
    color: var(--productcard-titlecolor);
}

.plg-product-card-btn {
    background: var(--productcard-accent-color) !important;
    color: var(--productcard-cta-text-color) !important;
    padding: 14px 26px !important;
    min-height: 44px;
    align-items: center;
    border-radius: 6px;
    display: inline-flex;
    font-weight: 600;
    text-decoration: none !important;
    font-size: 1.2em !important;
    transition: all .3s ease;
    border: 0 !important;
    line-height: 1em !important;
}

.plg-product-card-btn:hover {
    filter: brightness(1.1);
}

.plg-product-card:not(.plg-product-card-related):hover img {
    transform: translateX(-4%);
}

@media screen and (max-width: 767px) {
    .plg-product-card-wrapper {
        text-align: center;
    }

    .plg-product-card {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: var(--productcard-spacing-large) var(--productcard-spacing-mid);
        gap: var(--productcard-spacing-large);
    }

    .plg-product-card:hover img {
        transform: translateY(-4%);
    }

    .plg-product-card-detail svg {
        display: none
    }

    .plg-product-card-detail {
        width: 150%;
        height: 400px;
        top: inherit;
        bottom: -240px;
        transform: rotate(10deg);
        left: -100px;
        right: 0;
        background: #333;
    }

    .plg-product-benefits-list {
        display: flex;
        flex-direction: column;
    }

    .plg-product-benefits-list div {
        justify-content: center;
    }
}


.plg-product-card-countdown {
    background: #E85050;
    padding: 4px 14px;
    color: #fff;
    font-size: 13px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 1;
    bottom: -22px;
    font-weight: 600;
    font-family: Helvetica, aria, 'sans-serif';
}

.plg-product-card-countdown svg {
    margin-right: 8px;
}

.plg-product-card-counter {
    color: #606060;
    font-weight: 600;
}

.plg-product-animation-pulse {
    box-shadow: 0 0 0 rgb(170 170 170 / 20%);
    animation: plgProductAnimatePulse 1.3s infinite;
}

@keyframes plgProductAnimatePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0,0,0,0.15);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0,0,0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0,0,0,0);
    }
}

.plg-product-animation-brightness {
    animation: plgProductAnimateBrightness 1s infinite;
}

@keyframes plgProductAnimateBrightness {
    0% {
        filter: brightness(.9);
    }

    70% {
        filter: brightness(1.1);
    }

    100% {
        filter: brightness(.9);
    }
}

@media screen and (min-width: 767px) {
    .plg-product-card-detail {
        background: none !important;
    }

    .plg-product-card-countdown {
        margin-left: 34px;
    }
}

/* Related */
.plg-product-card-related-wrapper {
    max-width: var(--productcard-maxwidth);
    margin: auto;
    padding-bottom: 30px;
}

.plg-product-card-related-track {
    display: flex;
    gap: 15px;
}

.plg-product-card-related-title {
    font-size: 22px !important;
    font-weight: 600;
    margin: 20px 0 !important;
    padding: 0;
}

.plg-product-card-related {
    flex-direction: column;
    gap: 1rem;
    display: inline-flex;
    text-align: center;
    padding: 0px !important;
}

.plg-product-card-related .plg-product-card-image {
    max-width: 600px;
    background: none !important;
    border: 0 !important;
    box-shadow: none !important;
}

.plg-product-card-related .plg-product-card-detail {
    width: 150%;
    height: 400px;
    top: inherit;
    bottom: -240px;
    transform: rotate(10deg);
    left: -100px;
    right: 0;
    background: #333;
}

.plg-product-card-related .plg-product-card-content {
    gap: 10px;
    justify-content: space-between;
}

.plg-product-card-related .plg-product-title {
    font-size: 20px !important;
}

.plg-product-card-related:hover img {
    transform: translateY(-4%);
}

.plg-product-card-related .plg-product-card-btn {
    font-size: 18px !important;
    height: 40px !important;
    min-height: auto !important;
}