/* =====================================
PRODUCT TOP WRAPPER
===================================== */

.d9-product-top-wrapper{

width:100%;

display:flex;

justify-content:center;

margin:0;

padding:0;

position:relative;

}



/* =====================================
DISCOUNT BUTTON BLOCK
===================================== */

.d9-product-progress{

width:100%;

max-width:750px;

background:linear-gradient(135deg,#ff9800,#ffb74d);

padding:18px 22px;

border-radius:12px;

box-shadow:0 6px 18px rgba(0,0,0,0.15);

display:flex;

flex-direction:column;

align-items:center;

text-align:center;

position:relative;

}



/* =====================================
DIVIDER LINE BELOW BUTTON
===================================== */

.d9-product-progress::after{

content:"";

display:block;

width:100%;

height:1px;

background:#e6e6e6;

margin-top:18px;

}



/* =====================================
MESSAGE
===================================== */

.d9-product-message{

font-size:18px;

font-weight:700;

color:#ffffff;

margin-bottom:10px;

line-height:1.4;

}



/* =====================================
PROGRESS BAR
===================================== */

.d9-product-bar{

width:100%;

max-width:450px;

height:10px;

background:rgba(255,255,255,0.4);

border-radius:20px;

overflow:hidden;

}



/* =====================================
PROGRESS FILL
===================================== */

.d9-product-fill{

height:100%;

width:0%;

background:#ffffff;

transition:width .4s ease;

}



/* =====================================
MOBILE RESPONSIVE
===================================== */

@media (max-width:768px){

.d9-product-progress{

padding:16px;

}

.d9-product-message{

font-size:16px;

}

.d9-product-bar{

height:8px;

}

}