/* =========================================
   ECOWOOD FINAL GREEN COMING SOON
========================================= */

body .products .product-box
a.product-card.coming-soon-card {
    position: relative !important;
    overflow: hidden !important;
    pointer-events: none !important;
    cursor: not-allowed !important;
}

/* Product image unavailable effect */

body .products .product-box
a.product-card.coming-soon-card > img {
    opacity: 0.48 !important;
    filter: grayscale(70%) brightness(0.82) !important;
}

/* Final green badge */

body .products .product-box
a.product-card.coming-soon-card
> .coming-soon-label {
    position: absolute !important;

    top: 12px !important;
    left: 50% !important;
    right: auto !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;
    padding: 9px 20px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: linear-gradient(
        135deg,
        #064d2d,
        #0b7038,
        #149052
    ) !important;

    color: #ffffff !important;

    border: 3px solid #ffffff !important;
    border-radius: 40px !important;

    font-size: 11px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    letter-spacing: 1.2px !important;
    text-align: center !important;
    white-space: nowrap !important;
    text-transform: uppercase !important;

    transform: translateX(-50%) !important;

    box-shadow:
        0 8px 20px rgba(6, 77, 45, 0.35) !important;

    z-index: 999999 !important;
}

/* Card content */

body .products .product-box
a.product-card.coming-soon-card
.card-content {
    position: relative !important;
    z-index: 5 !important;
    opacity: 0.78 !important;
}

/* Green clock */

body .products .product-box
a.product-card.coming-soon-card
.arrow-btn {
    background: #0b7038 !important;
    border: 2px solid #d9efe1 !important;
}

body .products .product-box
a.product-card.coming-soon-card
.arrow-btn i {
    color: #ffffff !important;
}

/* Remove every old overlay */

body .products .product-box
a.product-card.coming-soon-card::before,
body .products .product-box
a.product-card.coming-soon-card::after {
    content: none !important;
    display: none !important;
}