.eltdf-svg-pattern use {
    opacity: 0;
    transform: translateY(10px) scale(.8);
}

.eltdf-svg-pattern use.draw {
    opacity: 1;
    transform: translateY(0) scale(1);

    transition:
        opacity .4s ease,
        transform .8s cubic-bezier(.22,1,.36,1);
}

.product .eltdf-title-holder-inner {
	    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
}

.product .eltdf-title-holder-inner .eltdf-page-title {
    margin: 0;
    padding: 0 .37em 0 .52em;
}

.product .entry-summary .eltdf-single-product-title {
   display: none !important;
}

.product .eltdf-single-product-content {
   margin-top: 43px !important;
}

.product .eltdf-hero-wrapper {
    position: relative;
}

.product .eltdf-hero-badge {
  position: absolute;
    top: 40px;
    right: 40px;
    z-index: 99;
    background: #fff;
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    text-align: center;
    padding: 10px;
    
    /* Optional: animated entrance */
    animation: badgePop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.product .eltdf-badge-price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    margin-top: 4px;
}

.product .eltdf-hero-badge {
    background: #c9ab81;   
}
.product .eltdf-badge-label,
.product .eltdf-badge-price {
    color: #fff;
}

/* Pop animation */
@keyframes badgePop {
    0%   { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .product .eltdf-hero-badge {
        width: 80px;
        height: 80px;
        top: 15px;
        right: 15px;
    }
    .product .eltdf-badge-price {
        font-size: 15px;
    }
    .product .eltdf-badge-label {
        font-size: 9px;
    }
}
