/* Plugarized 02042026 - PDME Frontend Styles */

/* Device visibility */
@media ( min-width: 769px ) {
    .pdme-device-mobile {
        display: none !important;
    }
}

@media ( max-width: 768px ) {
    .pdme-device-desktop {
        display: none !important;
    }
}

/* Badge */
.pdme-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    margin-left: 5px;
    background: #e74c3c;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    border-radius: 9px;
    vertical-align: middle;
}

@keyframes pdme-badge-breathe {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(231,76,60,0.45); }
    50% { transform: scale(1.2); box-shadow: 0 0 0 9px rgba(231,76,60,0); }
}

.pdme-badge {
    animation: pdme-badge-breathe 2.2s ease-in-out infinite;
} 