.badge-cod {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1300px;
    height: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #1e293b;
    padding: 0 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10000;
    transition: all 0.3s ease;
    margin: 0 auto;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow:
        0 2px 20px rgba(0, 0, 0, 0.08),
        0 1px 4px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    margin-top: 30px;
}

.border-runner {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #39524F 0%, #80B8B1 50%);
    animation: borderRunner 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes borderRunner {
    0% {
        left: -100%;
    }

    50% {
        left: 0%;
    }

    100% {
        left: 100%;
    }
}

.badge-cod::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(59, 130, 246, 0.05),
            transparent);
    transition: left 0.6s ease;
}

.badge-cod:hover::before {
    left: 100%;
}

.badge-cod:hover {
    transform: translateY(-1px);
    box-shadow:
        0 4px 25px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border-color: rgba(203, 213, 225, 0.9);
    cursor: pointer;
}

.badge-content {
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 3;
    align-items: flex-end;
}

.badge-icon {
    font-size: 16px;
    animation: gentleGlow 2s ease-in-out infinite;
    color: #80B8B1 ;
}

@keyframes gentleGlow {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.badge-text {
    color: #1e293b;
    font-weight: 600;
    position: relative;
}

.status-indicator {
    position: absolute;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}