/* === ORİJİNAL STİLLER (AYNEN KORUNDU) === */
.pstcartcountdown-block {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    text-align: center;
    background-position: 0 0;
    -webkit-background-size: cover;
    background-size: cover;
}
.pstcartcountdown-block .pstcartcountdown {
    display: inline-block;
    font-family: "Lucida Console", Monaco, monospace;
    margin-top: -20px;
}
.pstcartcountdown-block .pcc-label {
    display: block;
    font-weight: normal;
    font-size: 0.5em;
    line-height: 0.5;
    padding-top: 4px;
}
.pstcartcountdown-block .pcc-time,
.pstcartcountdown-block .pcc-colon {
    display: inline-block;
    vertical-align: top;
}
.pstcartcountdown-block .pcc-labels-0 .pcc-label {
    display: none;
}
.pstcartcountdown-block-after p:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}

.pccStickyTop,
.pccStickyBottom {
    position: fixed !important;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 4px 0 !important;
    background-size: auto;
}
.pccStickyTop {
    top: 0;
}
.pccStickyBottom {
    bottom: 0;
}
.pcc-close {
    position: absolute;
    right: 20px;
    top: 50%;
    font-size: 23px;
    line-height: 16px;
    color: #ffffff;
    margin-top: -5px;
    cursor: pointer;
    display: none;
}
.pccStickyTop .pcc-close,
.pccStickyBottom .pcc-close,
.pcc-close.pcc-close-after {
    display: inline-block;
}
#pcc-pccPopup {
    width: 390px;
    max-width: 100%;
    padding: 20px;
    position: fixed;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    border-radius: 3px;
    box-shadow: 0 0 5px #999;
    z-index: 100;
    background: white;
}
#pcc-pccPopup.top_left {
    left: 30px;
    top: 30px;
}
#pcc-pccPopup.top_center {
    left: 50%;
    margin-left: -195px;
    top: 50px;
}
#pcc-pccPopup.top_right {
    top: 30px;
    right: 30px;
}
#pcc-pccPopup.bottom_right {
    bottom: 30px;
    right: 30px;
}
#pcc-pccPopup.bottom_center {
    bottom: 30px;
    left: 50%;
    margin-left: -195px;
}
#pcc-pccPopup.bottom_left {
    left: 30px;
    bottom: 30px;
}
.pcc_popup_product_link {
    float: left;
    position: relative;
}
.pcc_popup_product_link .pcc_popup_product_img {
    width: 60px;
    border-radius: 2px;
}
.pcc_popup_col_discount {
    line-height: 1.6;
    padding-left: 10px;
}
.pcc_popup_col_discount .pcc-text {
    line-height: 1.2;
}
.pcc-text p {
    padding: 12px 20px;
}

.pcc_pd_val {
    font-size: 120%;
    font-weight: bold;
}
#pcc-pccPopup .pcc_popup_wrp {
    display: table;
    width: 100%;
}
#pcc-pccPopup .pcc_popup_row {
    display: table-row;
}
#pcc-pccPopup .pcc_popup_col {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
}
#pcc-pccPopup .pcc_popup_col .pstcartcountdown {
    text-align: center;
}
#pcc-pccPopup .pcc_popup_col_timer {
    min-width: 110px;
    white-space: nowrap;
    text-align: center;
}
#pcc-pccPopup .pcc-close {
    right: 10px;
    top: 14px;
    color: #000;
}
#pcc-pccPopup .pcc_popup_discount {
    margin-top: 6px;
    background: rgb(243, 157, 114);
    color: #fff;
    font-weight: 600;
    padding: 1px 4px;
    font-size: 0.8rem;
    margin-left: 0;
    text-transform: uppercase;
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
}

/* === YENİ MINI CART STİLLERİ (TPL ile Uyumlu) === */
.pcc-mini-cart-countdown {
    background: #fffdf7;
    border-radius: 10px;
    padding: 12px 14px 8px;
    margin: 10px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    font-size: 13px;
    border: 1px solid #f0f0f0;
}

.pcc-content-row {
    display: flex;
    align-items: center;
    justify-content: center; /* Ortalar */
    gap: 5px;
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
}

.pcc-icon {
    font-size: 16px;
    margin-right: 2px;
}

.pcc-content-row strong {
    color: #d9534f; /* Kırmızı sayaç rengi */
    font-weight: 700;
    margin-left: 2px;
}

/* Progress bar container */
.pcc-progress-container {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
}

/* Hareket eden bar */
.pcc-progress-bar {
    display: block;
    height: 100%;
    width: 100%; /* JS ile % değişecek */
    background: linear-gradient(90deg, #2ecc71, #27ae60);
    border-radius: 3px;
    transition: width 1s linear;
}

/* Gizleme class'ı */
.pcc-hidden {
    display: none !important;
}