.plp-counter {
    width: 100%;
    max-width: 1080px;
    height: 450px;
    margin: 40px auto;
    background: linear-gradient(145deg, #08090c 0%, #0d0f15 60%, #8D0000 100%);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    color: #fff;
    overflow: hidden;
    position: relative;
}
.plp-counter::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(141,0,0,0.25), transparent 70%);
    z-index: 0;
}
.plp-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px;
}
.plp-title {
    font-size: 42px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 60px;
    color: #ffeded;
    text-transform: uppercase;
}
.plp-number {
    font-size: 120px;
    font-weight: 900;
    letter-spacing: -3px;
    color: #ffffff;
    text-shadow: 0 0 25px rgba(141,0,0,0.8);
    transition: transform 0.3s ease;
}
.plp-counter:hover .plp-number {
    transform: scale(1.05);
}
@media (max-width: 1024px) {
    .plp-counter { max-width: 90%; height: 350px; }
    .plp-title { font-size: 32px; margin-bottom: 40px; }
    .plp-number { font-size: 90px; }
}
@media (max-width: 768px) {
    .plp-counter { height: 300px; border-radius: 24px; }
    .plp-title { font-size: 26px; margin-bottom: 25px; }
    .plp-number { font-size: 70px; }
}
@media (max-width: 480px) {
    .plp-counter { height: 220px; max-width: 95%; margin: 20px auto; border-radius: 20px; }
    .plp-title { font-size: 20px; margin-bottom: 15px; }
    .plp-number { font-size: 50px; }
}
